@font-face {
  font-family: caros-regular;
  src: url(../font/caros-regular.otf);
}
@font-face {
  font-family: caros-bold;
  src: url(../font/caros-bold.otf);
}
@font-face {
  font-family: caros-light;
  src: url(../font/caros-light.otf);
}
@font-face {
  font-family: caros-thin;
  src: url(../font/caros-thin.otf);
}
header .top-bar {
  width: 100%;
  background-color: #003E71;
  color: #fff;
  padding: 10px 0px;
  font-family: caros-light;
}
header .top-bar .row {
  justify-content: space-between;
  margin: 0;
}
header .top-bar .top-bar-content {
  display: flex;
}
header .top-bar .top-bar-content img {
  object-fit: contain;
  height: 25px;
  width: 25px;
  margin-right: 10px;
}
header .top-bar .top-bar-content p {
  margin: auto 0;
  font-size: 13px;
}
header .navbar {
  margin: 20px 0px;
}
header .navbar .navbar-brand img {
  width: 70%;
}
header .navbar .navbar-brand:focus {
  outline: none;
}
header .navbar .navbar-toggler {
  border: none;
  padding: 0;
}
header .navbar .navbar-toggler i {
  font-size: 30px;
  color: #ffa31c;
}
header .navbar .navbar-collapse {
  flex-direction: column;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: 10px 15px;
  color: #003E71;
  font-size: 14px;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
  color: #012441;
}
header .navbar .navbar-collapse .upper-nav {
  border-bottom: 1px solid #ffa31c;
  width: 62%;
  display: flex;
}
header .navbar .navbar-collapse .upper-nav .item-background {
  background-color: #FFA31C;
  margin-left: 0 !important;
  border: 2px solid #ffa31c;
}
header .navbar .navbar-collapse .upper-nav .item-background .nav-link {
  color: #fff;
  text-transform: capitalize;
}
header .navbar .navbar-collapse .upper-nav .item-background .nav-link:hover {
  color: #ffa31c;
}
header .navbar .navbar-collapse .upper-nav .item-background:hover {
  background: none;
}
header .navbar .navbar-collapse .upper-nav .nav-item {
  margin-left: auto;
}
header .navbar .navbar-collapse .upper-nav .nav-item .nav-link {
  padding: 5px 15px;
}

@media (max-width: 992px) {
  header .top-bar .top-bar-content img {
    height: 20px;
    width: 20px;
  }

  header .top-bar .top-bar-content p {
    font-size: 12px;
  }

  header .navbar .navbar-collapse .upper-nav {
    border-bottom: none;
    width: 100%;
    margin-top: 20px;
    margin-left: 0 !important;
  }

  header .navbar .navbar-collapse .upper-nav .nav-item {
    margin-left: 0;
  }

  header .navbar .navbar-collapse .upper-nav .nav-item .nav-link {
    padding: 0;
    margin-bottom: 5px;
  }

  header .navbar .navbar-collapse .upper-nav .item-background .nav-link {
    width: fit-content;
    background: #ffa31c;
    padding: 5px 10px;
    margin: auto 0;
  }

  header .navbar .navbar-collapse .upper-nav .item-background {
    background: none;
    border: none;
  }

  header .navbar .navbar-collapse .navbar-nav:last-child {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 10px;
  }

  header .navbar .navbar-collapse .navbar-nav:last-child .nav-item {
    width: fit-content;
  }

  header .navbar .navbar-collapse .navbar-nav:last-child .nav-item .nav-link {
    padding: 10px 5px;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  header .navbar .navbar-collapse .upper-nav {
    text-align: center;
  }

  header .navbar .navbar-collapse .upper-nav .item-background {
    margin: 0 auto !important;
  }

  header .navbar .navbar-collapse .navbar-nav:last-child {
    flex-direction: column;
  }

  header .navbar .navbar-collapse .navbar-nav:last-child .nav-item {
    margin: 0 auto;
  }

  header .navbar .navbar-collapse .navbar-nav:last-child {
    margin-top: 0;
  }
}
@media (max-width: 575px) {
  header .navbar {
    margin: 5px 0px;
  }

  header .navbar .navbar-brand img {
    width: 50%;
  }

  header .navbar .navbar-toggler i {
    font-size: 25px;
  }

  header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    font-size: 12px;
  }

  header .navbar .navbar-collapse .navbar-nav:last-child .nav-item .nav-link {
    padding: 5px;
  }
}
@media (max-width: 375px) {
  header .top-bar .row {
    flex-direction: column;
    text-align: center;
  }

  header .top-bar .top-bar-content {
    flex-direction: row;
    justify-content: center;
  }

  header .top-bar .top-bar-content:first-child {
    margin-bottom: 10px;
  }
}
.container-fluid {
  padding: 0 30px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: caros-bold;
}

p, a, button {
  letter-spacing: 1px;
  font-family: caros-light;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a:hover {
  text-decoration: none;
}

button:focus {
  outline: none;
}

.primary-button {
  background-color: #003E71;
  padding: 5px 15px;
  color: #fff;
  letter-spacing: 1px;
  border: 2px solid #003E71;
}
.primary-button:hover {
  color: #003E71;
  background: none;
}

.white-button {
  background-color: #fff;
  padding: 5px 15px;
  color: #003E71;
  letter-spacing: 1px;
  border: 2px solid #fff;
}
.white-button:hover {
  color: #fff;
  background: none;
}

.yellow-button {
  background-color: #ffa31c;
  padding: 5px 15px;
  color: #fff;
  letter-spacing: 1px;
  border: 2px solid #ffa31c;
}
.yellow-button:hover {
  color: #ffa31c;
  background: none;
}

.section-heading {
  text-align: center;
  width: 65%;
  margin: 0 auto;
}
.section-heading h2 {
  color: #003E71;
}
.section-heading .section-divider {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}
.section-heading .section-divider hr {
  width: 3%;
  border: 2px solid #ffa31c;
  border-radius: 20px;
  margin: 0;
}
.section-heading .section-divider hr:nth-child(02) {
  width: 2%;
  margin: 0 5px;
  border: 2px solid #003E71;
}
.section-heading p {
  color: #ffa31c;
}

.simple-section {
  text-align: center;
  padding: 0px 50px;
  margin-bottom: 80px;
}
.simple-section p {
  color: #959595;
}
.simple-section .video-para {
  display: flex;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 20px;
}
.simple-section .video-para p {
  width: 50%;
  text-align: left;
  margin: auto 0;
}
.simple-section .video-para video {
  width: 40%;
  margin-left: auto;
}

.header-banner {
  height: 500px;
  background-size: cover;
  margin-bottom: 80px;
}
.header-banner .gradient-overlay {
  height: 100%;
  display: flex;
}
.header-banner .gradient-overlay .banner-content {
  padding: 0px 100px;
  margin: auto 0;
}
.header-banner .gradient-overlay .banner-content h2 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 20px;
}
.header-banner .gradient-overlay .banner-content p {
  font-size: 18px;
  color: #fff;
  width: 90%;
}

.all-colorful-sections {
  margin: 100px 0px;
}
.all-colorful-sections .colorful-section {
  background: #ffa31c;
  padding: 60px;
  display: flex;
  position: relative;
  margin-top: 120px;
}
.all-colorful-sections .colorful-section .colorful-text {
  width: 50%;
  color: #fff;
  margin: auto 0;
}
.all-colorful-sections .colorful-section .colorful-text h2 {
  margin-bottom: 30px;
}
.all-colorful-sections .colorful-section .colorful-text p {
  margin: 0;
}
.all-colorful-sections .colorful-section .colorful-image {
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: absolute;
  right: 0;
  top: -10%;
  height: 120%;
  width: 50%;
}
.all-colorful-sections .colorful-section .colorful-image img {
  width: 50%;
  object-fit: cover;
}
.all-colorful-sections .colorful-section:nth-child(even) .colorful-text {
  margin-left: auto;
}
.all-colorful-sections .colorful-section:nth-child(even) .colorful-image {
  left: 0;
  right: initial;
}
.all-colorful-sections .colorful-section:nth-child(01) {
  margin-top: 0;
}
.all-colorful-sections .colorful-section:nth-child(4n+1) {
  background: #ffa31c;
}
.all-colorful-sections .colorful-section:nth-child(4n+2) {
  background: #003E71;
}
.all-colorful-sections .colorful-section:nth-child(4n+3) {
  background: #6B86AF;
}
.all-colorful-sections .colorful-section:nth-child(4n+4) {
  background: #6CA2BD;
}

.all-responsive-sections {
  display: none;
}

.med-pro {
  margin-bottom: 80px;
}
.med-pro .container-fluid .row .med-pro-content {
  width: 50%;
  text-align: center;
  padding: 70px 100px;
}
.med-pro .container-fluid .row .med-pro-content h2 {
  color: #003E71;
}
.med-pro .container-fluid .row .med-pro-content p {
  font-size: 15px;
  margin: 0;
  color: #959595;
}
.med-pro .container-fluid .row .med-pro-content:nth-child(02) {
  border-left: 1px solid #ffa31c;
}

.fixed-button a {
  margin: 0;
  font-family: caros-regular;
  font-size: 20px;
  color: #fff;
  text-align: center;
  background: linear-gradient(45deg, #003e71, #ffa31c, #6CA2BD, #6B86AF);
  background-size: 400% 400%;
  animation: gradient 3s ease infinite;
  padding: 10px;
  writing-mode: tb-rl;
  height: 75%;
  position: fixed;
  top: 12%;
  z-index: 999;
  right: 0;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 1260px) {
  p {
    font-size: 15px;
  }

  .med-pro .container-fluid .row .med-pro-content {
    padding: 50px 60px;
  }

  .all-colorful-sections .colorful-section .colorful-image {
    width: 40%;
  }

  .all-colorful-sections .colorful-section .colorful-image img {
    width: 70%;
  }
}
@media (max-width: 992px) {
  .primary-button, .white-button, .yellow-button {
    font-size: 14px;
  }

  .all-colorful-sections .colorful-section .colorful-image {
    justify-content: initial;
  }

  .all-colorful-sections .colorful-section .colorful-image img {
    width: 70%;
    margin: 0 auto;
  }

  .all-colorful-sections .colorful-section .colorful-text {
    width: 50%;
  }

  .all-colorful-sections .colorful-section:nth-child(even) .colorful-image {
    left: 35px;
  }

  .all-colorful-sections .colorful-section:nth-child(even) .colorful-image img {
    margin-left: 0;
  }

  .header-banner {
    height: 350px;
  }

  .header-banner .gradient-overlay .banner-content {
    padding: 0px 50px;
  }

  .med-pro .container-fluid .row .med-pro-content {
    padding: 50px;
  }

  .med-pro .container-fluid .row .med-pro-content h2 {
    font-size: 25px;
  }

  .med-pro .container-fluid .row .med-pro-content p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  p {
    font-size: 14px;
  }

  .all-colorful-sections .colorful-section .colorful-text h2 {
    margin-bottom: 15px;
    font-size: 25px;
  }

  .header-banner {
    margin-bottom: 50px;
    height: 300px;
  }

  .header-banner .gradient-overlay .banner-content h2 {
    font-size: 30px;
    margin-bottom: 5px;
  }

  .header-banner .gradient-overlay .banner-content p {
    font-size: 15px;
    width: 100%;
  }

  .all-colorful-sections {
    margin: 80px 0px;
  }

  .all-colorful-sections .colorful-section:nth-child(even) .colorful-text {
    margin-left: 45%;
  }

  .med-pro .container-fluid .row .med-pro-content {
    padding: 50px 30px;
  }

  .med-pro .container-fluid .row .med-pro-content p {
    font-size: 13px;
  }
}
@media (max-width: 575px) {
  .header-banner .gradient-overlay .banner-content {
    padding: 0px 100px;
    width: 100%;
    text-align: center;
  }

  .all-colorful-sections {
    display: none;
  }

  .header-banner {
    height: 250px;
  }

  .header-banner .gradient-overlay .banner-content h2 br {
    display: none;
  }

  .med-pro {
    margin-bottom: 50px;
  }

  .med-pro .container-fluid .row .med-pro-content {
    width: 100%;
    padding: 20px 30px;
  }

  .med-pro .container-fluid .row .med-pro-content:nth-child(02) {
    border: none;
  }

  .section-heading {
    width: 85%;
  }

  .all-responsive-sections {
    margin-top: 80px;
    margin-bottom: 50px;
    display: block;
  }
  .all-responsive-sections .responsive-section {
    background: #ffa31c;
    padding: 30px;
    color: #fff;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
  }
  .all-responsive-sections .responsive-section img {
    width: 35%;
    margin-top: -80px;
    margin-bottom: 30px;
    height: 200px;
    object-fit: cover;
  }
  .all-responsive-sections .responsive-section hr {
    width: 20%;
    border: 2px solid #fff;
    display: flex;
    margin: 0;
    margin-bottom: 20px;
  }
  .all-responsive-sections .responsive-section:nth-child(4n+1) {
    background: #ffa31c;
  }
  .all-responsive-sections .responsive-section:nth-child(4n+2) {
    background: #003E71;
  }
  .all-responsive-sections .responsive-section:nth-child(4n+3) {
    background: #6b86af;
  }
  .all-responsive-sections .responsive-section:nth-child(4n+4) {
    background: #6ca2bd;
  }
  .all-responsive-sections .responsive-section:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 525px) {
  .all-responsive-sections .responsive-section img {
    width: 40%;
  }
}
@media (max-width: 420px) {
  .all-responsive-sections .responsive-section img {
    width: 45%;
  }

  .all-responsive-sections .responsive-section h2 {
    font-size: 25px;
  }

  .header-banner .gradient-overlay .banner-content {
    padding: 0px 60px;
  }

  .container-fluid {
    padding: 0px 20px;
  }

  .all-responsive-sections .responsive-section {
    padding: 20px;
  }
}
@media (max-width: 375px) {
  .all-responsive-sections .responsive-section img {
    width: 50%;
  }

  .header-banner .gradient-overlay .banner-content h2 {
    font-size: 25px;
  }

  .header-banner {
    height: 200px;
  }

  .all-responsive-sections .responsive-section {
    padding: 20px;
  }
}
.carousel {
  margin-bottom: 80px;
}
.carousel .carousel-inner .carousel-item .slide {
  height: 500px;
  background-size: cover;
}
.carousel .carousel-inner .carousel-item .slide .gradient-overlay {
  height: 100%;
  display: flex;
}
.carousel .carousel-inner .carousel-item .slide .gradient-overlay .slide-content {
  padding: 0px 100px;
  margin: auto 0;
}
.carousel .carousel-inner .carousel-item .slide .gradient-overlay .slide-content h2 {
  font-family: caros-regular;
  color: #fff;
  font-size: 40px;
}
.carousel .carousel-inner .carousel-item .slide .gradient-overlay .slide-content p {
  font-family: caros-thin;
  color: #fff;
  letter-spacing: 1px;
}
.carousel .carousel-inner .carousel-item .slide-one {
  background-image: /*url(../images/slide-one.png)*/;
}
.carousel .carousel-inner .carousel-item .slide1 .gradient-overlay {
  background: linear-gradient(45deg, #ffa31c, transparent);
}
.carousel .carousel-inner .carousel-item .slide-two {
  background-image: /*url(../images/slide-two.png)*/;
}
.carousel .carousel-inner .carousel-item .slide2 .gradient-overlay {
  background: linear-gradient(45deg, #6CA2BD, transparent);
}
.carousel .carousel-inner .carousel-item .slide-three {
  background-image: /*url(../images/slide-three.png)*/;
}
.carousel .carousel-inner .carousel-item .slide3 .gradient-overlay {
  background: linear-gradient(45deg, #003E71, transparent);
}
.carousel .carousel-inner .carousel-item .slide-four {
  background-image: /*url(../images/slide-four.png)*/;
}
.carousel .carousel-inner .carousel-item .slide4 .gradient-overlay {
  background: linear-gradient(45deg, #6B86AF, transparent);
}
.carousel .carousel-control-prev {
  width: 5%;
}
.carousel .carousel-control-prev .carousel-control-prev-icon {
  background-image: url(../images/chevron-left.png);
  background-size: contain;
  width: 30px;
  height: 30px;
}
.carousel .carousel-control-next {
  width: 5%;
}
.carousel .carousel-control-next .carousel-control-next-icon {
  background-image: url(../images/chevron-right.png);
  background-size: contain;
  width: 30px;
  height: 30px;
}

.services-offered-section {
  margin-bottom: 80px;
}
.services-offered-section .services-heading {
  text-align: center;
  background: #003e71;
  padding: 20px;
}
.services-offered-section .services-heading h2 {
  color: #fff;
  margin: 0;
}
.services-offered-section .services-heading h2 span {
  color: #ffa31c;
}
.services-offered-section .services-heading p {
  margin: 0;
  color: #fff;
  letter-spacing: 1px;
}
.services-offered-section .services-offered {
  background: #EDF1F5;
  padding: 80px 20px;
}
.services-offered-section .services-offered .container-fluid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-flow: wrap;
}
.services-offered-section .services-offered .container-fluid .service {
  width: 40%;
  display: flex;
}
.services-offered-section .services-offered .container-fluid .service img {
  object-fit: contain;
  width: 45px;
  margin-bottom: auto;
}
.services-offered-section .services-offered .container-fluid .service .text-content {
  margin-left: 10px;
}
.services-offered-section .services-offered .container-fluid .service .text-content h5 {
  color: #003E71;
  font-size: 18px;
}
.services-offered-section .services-offered .container-fluid .service .text-content p {
  color: #003e71;
  font-size: 12px;
  margin: 0;
}
.services-offered-section .services-offered .container-fluid .service:nth-child(01), .services-offered-section .services-offered .container-fluid .service:nth-child(02) {
  margin-bottom: 90px;
}

.why-choose-section {
  padding: 0px 50px;
  margin-bottom: 40px;
}
.why-choose-section .container-fluid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-flow: wrap;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 40px;
}
.why-choose-section .container-fluid .property {
  width: 35%;
  margin-bottom: 40px;
}
.why-choose-section .container-fluid .property h5 {
  color: #ffa31c;
  font-size: 18px;
}
.why-choose-section .container-fluid .property p {
  color: #003e71;
  font-size: 12px;
  margin: 0;
}

@media (max-width: 768px) {
  .carousel .carousel-inner .carousel-item .slide {
    height: 300px;
  }

  .carousel .carousel-inner .carousel-item .slide .gradient-overlay .slide-content {
    padding: 0px 50px;
  }

  .simple-section {
    padding: 0px 30px;
    margin-bottom: 50px;
  }

  .section-heading h2 {
    font-size: 22px;
  }

  .container {
    max-width: none;
  }

  .carousel {
    margin-bottom: 50px;
  }

  .services-offered-section {
    margin-bottom: 50px;
  }

  .why-choose-section .container-fluid {
    background: none;
    text-align: center;
  }

  .services-offered-section .services-offered {
    padding: 40px 20px;
  }

  .services-offered-section .services-offered .container-fluid .service {
    width: 100%;
    flex-direction: column;
    text-align: center;
  }

  .services-offered-section .services-offered .container-fluid .service img {
    width: 70px;
    margin: 10px auto;
  }

  .services-offered-section .services-offered .container-fluid .service:nth-child(01), .services-offered-section .services-offered .container-fluid .service:nth-child(02), .services-offered-section .services-offered .container-fluid .service:nth-child(03) {
    margin-bottom: 40px;
  }

  .why-choose-section .container-fluid .property {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .carousel .carousel-inner .carousel-item .slide {
    height: 250px;
  }

  .carousel .carousel-inner .carousel-item .slide .gradient-overlay .slide-content {
    padding: 0px 100px;
    text-align: center;
    width: 100%;
  }

  .carousel .carousel-inner .carousel-item .slide .gradient-overlay .slide-content {
    padding: 0px 60px;
  }

  .header-banner .gradient-overlay .banner-content h2 {
    margin-bottom: 10px;
  }

  .why-choose-section {
    padding: 0px 20px;
  }
}
@media (max-width: 420px) {
  .services-offered-section .services-offered .container-fluid .service img {
    width: 50px;
  }

  .services-offered-section .services-offered .container-fluid .service .text-content h5 {
    font-size: 16px;
  }
}
.why-sigma-pain-banner {
  /* background-image: url(../images/banner-1.png); */
}
.why-sigma-pain-banner .gradient-overlay {
  background: linear-gradient(45deg, #6CA2BD, transparent);
}

.what-we-treat-banner {
  /* background-image: url(../images/banner-2.png); */
}
.what-we-treat-banner .gradient-overlay {
  background: linear-gradient(45deg, #003e71, transparent);
}

.why-choose-us {
  margin-bottom: 80px;
}
.why-choose-us .container-fluid {
  margin-top: 50px;
  padding: 0px 80px;
}
.why-choose-us .container-fluid .row {
  justify-content: space-around;
}
.why-choose-us .container-fluid .row .blurb-content {
  width: 30%;
  text-align: center;
  color: #003e71;
}
.why-choose-us .container-fluid .row .blurb-content img {
  width: 70px;
  margin-bottom: 20px;
}
.why-choose-us .container-fluid .row .blurb-content p {
  font-size: 15px;
  margin: 0;
}

@media (max-width: 992px) {
  .why-choose-us .container-fluid {
    margin-top: 40px;
  }

  .why-choose-us .container-fluid .row .blurb-content img {
    width: 50px;
    margin-bottom: 10px;
  }

  .why-choose-us .container-fluid .row .blurb-content h3 {
    font-size: 20px;
  }

  .why-choose-us .container-fluid .row .blurb-content p {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .why-choose-us .container-fluid .row .blurb-content {
    width: 80%;
    margin-bottom: 30px;
  }

  .why-choose-us .container-fluid .row .blurb-content:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 525px) {
  .why-choose-us .container-fluid {
    padding: 0px 50px;
  }
}
@media (max-width: 420px) {
  .why-choose-us .container-fluid {
    padding: 0px 20px;
  }
}
/* .pain-medicine-banner {
  background-image: url(../images/banner-3.png);
} */
.pain-medicine-banner .gradient-overlay {
  background: linear-gradient(45deg, #6B86AF, transparent);
}

.pain-medicine-colorful-section, .pain-medicine-responsive-section {
  background: #003e71 !important;
}

.pain-physician .container-fluid .row img {
  width: 50%;
  object-fit: contain;
}
.pain-physician .container-fluid .row .pain-physician-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pain-physician .container-fluid .row .pain-physician-text h1 {
  color: #ffa31c;
}
.pain-physician .container-fluid .row .pain-physician-text p {
  color: #003e71;
}

@media (max-width: 575px) {
  .pain-physician .container-fluid .row {
    flex-direction: column;
  }

  .pain-physician .container-fluid .row img {
    width: 70%;
    margin: 0 auto;
  }

  .pain-physician .container-fluid .row .pain-physician-text {
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }
}
@media (max-width: 525px) {
  .pain-physician .container-fluid .row .pain-physician-text h1 {
    font-size: 25px;
  }
}
.book-appointment-banner {
  /* background-image: url(../images/banner-4.png); */
}
.book-appointment-banner .gradient-overlay {
  background: linear-gradient(45deg, #ffa31c, transparent);
}

.book-appointment .colorful-section .colorful-text {
  width: 50%;
}
.book-appointment .colorful-section .colorful-text p {
  font-size: 15px;
}
.book-appointment .colorful-section .colorful-text p span {
  font-family: caros-bold;
  color: #ffa31c;
}
.book-appointment .colorful-section .colorful-image {
  height: 120%;
  top: -10%;
}
.book-appointment .colorful-section .colorful-image img {
  object-fit: cover;
}
.book-appointment .colorful-section:nth-child(4n+1) {
  background: #003e71;
}
.book-appointment .colorful-section:nth-child(4n+2) {
  background: #ffa31c;
}
.book-appointment .colorful-section:nth-child(4n+2) .colorful-text p span {
  color: #003e71;
}
.book-appointment .colorful-section:nth-child(4n+2) .colorful-text .select-option .custom-select {
  color: #ffa31c;
}
.book-appointment .colorful-section:nth-child(4n+2) .colorful-text .select-option .custom-select .select-items div {
  border-bottom: 1px solid #ffa31c;
}
.book-appointment .colorful-section:nth-child(4n+2) .colorful-text .select-option .custom-select .select-items div:last-child {
  border: none;
}
.book-appointment .colorful-section:nth-child(4n+2) .colorful-text h2 {
  color: #003e71;
}
.book-appointment .colorful-section:nth-child(4n+3) {
  background: #003e71;
}

.select-option {
  display: flex;
  margin: 20px 0px;
}
.select-option p {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.select-option .custom-select {
  position: relative;
  font-family: caros-light;
  background: transparent !important;
  border: 2px solid #fff !important;
  border-radius: 0;
  margin-left: 15px;
  width: 300px;
  height: 35px;
  color: #003e71;
}
.select-option .custom-select select {
  display: none;
}
.select-option .custom-select .select-selected {
  background-color: transparent;
  color: #ffffff;
  cursor: pointer;
  user-select: none;
  font-size: 15px;
  letter-spacing: 1px;
  padding-right: 20px;
}
.select-option .custom-select .select-selected .select-arrow-active::after {
  border-color: transparent transparent #fff transparent;
  top: 9px;
}
.select-option .custom-select .select-selected::before {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}
.select-option .custom-select .select-selected:focus {
  outline: none;
}
.select-option .custom-select .select-items {
  position: absolute;
  background-color: #fff;
  width: inherit;
  top: 100%;
  left: -2px;
  right: -2px;
  z-index: 99;
  padding-top: 2px;
  font-family: caros-light;
  width: 300px;
  cursor: pointer;
}
.select-option .custom-select .select-items div {
  padding: 8px 5px;
  border-bottom: 1px solid #003e71;
  font-size: 14px;
}
.select-option .custom-select .select-items div:hover {
  background-color: #003e71;
  color: #fff;
}
.select-option .custom-select .select-items div:last-child {
  border: none;
}
.select-option .custom-select .select-hide {
  display: none;
}
.select-option .custom-select .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

.doctor-appointment h2 {
  color: #ffa31c;
  margin-bottom: 0 !important;
}

@media (max-width: 768px) {
  .book-appointment .colorful-section .colorful-text p {
    font-size: 14px;
  }

  .select-option {
    flex-direction: column;
  }

  .select-option p {
    font-size: 16px !important;
  }

  .select-option .custom-select {
    margin-left: 0;
    margin-top: 5px;
  }
}
@media (max-width: 575px) {
  .book-appointment-responsive .responsive-section {
    background: #003e71 !important;
  }
  .book-appointment-responsive .responsive-section .colorful-text p span {
    color: #ffa31c;
    font-family: caros-bold;
  }
  .book-appointment-responsive .responsive-section .colorful-text .select-option p {
    margin: 0;
  }
  .book-appointment-responsive .responsive-section:nth-child(even) {
    background: #ffa31c !important;
  }
  .book-appointment-responsive .responsive-section:nth-child(even) .colorful-text p span {
    color: #003e71;
  }
  .book-appointment-responsive .responsive-section:nth-child(even) .colorful-text .doctor-appointment h2 {
    color: #003e71;
  }
}
@media (max-width: 525px) {
  .book-appointment-responsive .responsive-section .colorful-text .doctor-appointment h2 {
    font-size: 25px;
  }
}
.providers-banner {
  /* background-image: url(../images/banner-5.png); */
}
.providers-banner .gradient-overlay {
  background: linear-gradient(45deg, #003e71, transparent);
}

.providers {
  margin-bottom: 70px;
}
.providers .colorful-section .colorful-text {
  width: 60%;
}
.providers .colorful-section .colorful-text p {
  font-size: 20px;
  width: 60%;
}
.providers .colorful-section .colorful-text p span {
  font-family: caros-bold;
  color: #ffa31c;
}
.providers .colorful-section .colorful-image {
  height: 160%;
  top: -30%;
}
.providers .colorful-section .colorful-image img {
  object-fit: contain;
}
.providers .colorful-section:nth-child(4n+1) {
  background: #003e71;
}
.providers .colorful-section:nth-child(4n+3) {
  background: #ffa31c;
}
.providers .colorful-section:nth-child(4n+3) .colorful-text {
  margin-left: auto;
}
.providers .colorful-section:nth-child(4n+3) .colorful-text h2 {
  color: #003e71;
}
.providers .colorful-section:nth-child(4n+3) .colorful-image {
  left: 0;
  right: initial;
}
.providers .about-doctor {
  width: 80%;
  margin: 0 auto;
  margin-top: 100px;
  margin-bottom: 70px;
}
.providers .about-doctor p {
  text-align: center;
  font-size: 15px;
  color: #959595;
}

@media (max-width: 992px) {
  .all-colorful-sections .colorful-section {
    padding: 30px;
  }

  .providers .colorful-section:nth-child(4n+3) .colorful-image img {
    margin-left: 0;
  }

  .providers .colorful-section .colorful-text p {
    font-size: 16px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .providers .colorful-section .colorful-image {
    width: 40%;
  }

  .providers .colorful-section:nth-child(4n+3) .colorful-image img {
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .providers .colorful-section .colorful-text p {
    font-size: 14px;
  }

  .providers .about-doctor p {
    font-size: 14px;
  }

  .providers .about-doctor {
    margin-top: 70px;
  }

  .providers .colorful-section {
    margin-top: 50px;
  }

  .providers-responsive-sections .responsive-section {
    margin-bottom: 30px;
    background: #003e71 !important;
  }
  .providers-responsive-sections .responsive-section:nth-child(03) {
    background: #ffa31c !important;
  }
  .providers-responsive-sections .about-doctor {
    text-align: center;
    padding: 0px 50px;
    margin-bottom: 80px;
  }
  .providers-responsive-sections .about-doctor p {
    color: #959595;
    font-size: 13px;
  }
  .providers-responsive-sections .about-doctor:last-child {
    margin-bottom: 0;
  }
}
.first-map .mapouter, .first-map .gmap_canvas {
  height: 480px !important;
  width: 100% !important;
}

.sec-map {
  display: none;
}

.stop-suffering {
  background-color: #003E71;
  padding: 20px;
}
.stop-suffering .container-fluid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.stop-suffering .container-fluid .text {
  margin: auto 0;
}
.stop-suffering .container-fluid .text h1 {
  color: #fff;
  margin-bottom: 5px;
}
.stop-suffering .container-fluid .text h1 span {
  color: #ffa31c;
}
.stop-suffering .container-fluid .text p {
  color: #fff;
  margin: 0;
}
.stop-suffering .container-fluid .button {
  margin: auto 0;
}

footer {
  background: #edf1f5;
}
footer .container-fluid {
  padding: 40px 80px;
}
footer .container-fluid .row {
  justify-content: space-between;
}
footer .container-fluid .row .info-section {
  width: 30%;
}
footer .container-fluid .row .info-section p {
  font-size: 12px;
  color: #003e71;
  margin: 30px 0px;
}
footer .container-fluid .row .info-section .social-icons a img {
  width: 20px;
  margin-right: 10px;
}
footer .container-fluid .row .contact-info-section {
  width: 30%;
}
footer .container-fluid .row .contact-info-section h4 {
  color: #003E71;
  margin-bottom: 20px;
}
footer .container-fluid .row .contact-info-section h4 span {
  color: #ffa31c;
}
footer .container-fluid .row .contact-info-section .contact-info li {
  display: flex;
  margin-bottom: 10px;
}
footer .container-fluid .row .contact-info-section .contact-info li img {
  object-fit: contain;
  margin-right: 10px;
}
footer .container-fluid .row .contact-info-section .contact-info li p {
  margin: 0;
  font-size: 13px;
  color: #003e71;
}
footer .footer-bottom {
  background: #003e71;
  padding: 10px 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
footer .footer-bottom p {
  color: #fff;
  font-size: 12px;
  margin: 0;
}

@media (min-width: 1350px) {
  footer .container-fluid .row {
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .first-map {
    display: none;
  }

  .sec-map {
    display: block;
  }
  .sec-map .mapouter, .sec-map .gmap_canvas {
    height: 180px !important;
    width: 100% !important;
  }

  .stop-suffering {
    padding: 20px 10px;
  }

  .stop-suffering .container-fluid {
    padding: 0px 15px;
  }

  .stop-suffering .container-fluid .text h1 {
    margin-bottom: 0;
    font-size: 30px;
  }

  footer .container-fluid {
    padding: 40px 50px;
  }

  footer .container-fluid .row .info-section {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
  }

  footer .container-fluid .row .info-section p {
    margin: 15px 0px;
  }

  footer .container-fluid .row .contact-info-section {
    width: 45%;
  }

  footer .container-fluid .row .contact-info-section h4 {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .stop-suffering .container-fluid {
    flex-direction: column;
    justify-content: inherit;
    text-align: center;
  }

  .stop-suffering .container-fluid .text {
    margin-bottom: 15px;
  }

  footer .container-fluid {
    padding: 20px 40px;
  }

  footer .container-fluid .row .info-section {
    margin-bottom: 30px;
  }

  footer .container-fluid .row .contact-info-section {
    width: 100%;
  }

  footer .container-fluid .row .contact-info-section {
    margin-bottom: 20px;
  }

  footer .container-fluid .row .contact-info-section h4 {
    margin-bottom: 10px;
  }

  footer .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 375px) {
  footer .footer-bottom {
    padding: 10px 15px;
  }
}

/*# sourceMappingURL=style.css.map */
