* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
  word-break: break-word;
  scroll-behavior: smooth;
}

:root {
  --blue: #052f8b;
  --red: #f30d0d;
  --black: #2c2c2c;
  --white: #ffffff;
  --gray: #5c5c5c;
  --gray-2: #e5e5e5;
  --transparent-blue: rgba(5, 47, 139, 0.753);
}

/* Red Line */
.red-line {
  background-size: cover;
  position: relative;
  border-bottom: solid 1vw var(--red);
}


/* Banner Home Styles */

.section-banner-home {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
  background-image: url("../media/webp/banner-home.webp");
  height: 40vw;
  padding: 6vw;
}

.section-banner-home h1 {
  font-size: 2.8vw;
  font-weight: 600;
  color: var(--gray);
  margin: 0;
  line-height: 1.2;
  text-align: center;
}

.section-banner-home h1 span {
  color: var(--blue);
}

.section-banner-home p {
  font-size: 1.2vw;
  font-weight: 400;
  color: #444;
  max-width: 100%;
  line-height: 1.6;
  text-align: center;
}

.banner-home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1vw;
}

/* Welcome Message Styles */

.section-welcome-home {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  justify-content: space-between;
  gap: 2vw;
  background-color: var(--blue);
  padding: 6vw;
}

.welcome-home-msj {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.welcome-home-msj h2 {
  font-size: 2.8vw;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
}

.welcome-home-msj p {
  font-size: 1.2vw;
  font-weight: 400;
  color: var(--white);
  max-width: 100%;
  line-height: 1.6;
}

.welcome-home-img {
  flex: 1 1 400px;
  text-align: center;
}

.welcome-home-img img {
  width: 80%;
  height: auto;
  border-radius: 80px;
}

/* General btn Styles */

.btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.btn span {
  padding: .5vw 1vw;
}

.btn-white {
  background-color: var(--white);
  color: var(--blue);
}

.btn-white:hover {
  background-color: var(--red);
  color: var(--white);
  box-shadow: 0 4px 8px rgb(255, 255, 255, 0.3);

}

.btn-blue {
  background-color: var(--blue);
  color: var(--white);
  margin-left: 5vw;
}

.btn-blue:hover {
  background-color: var(--white);
  color: var(--blue);
  box-shadow: 0 4px 8px rgb(0, 0, 0, 0.3);
}

.btn-red {
  background-color: var(--red);
  color: var(--white);
}

.btn-red:hover {
  background-color: var(--white);
  color: var(--red);
  box-shadow: 0 4px 8px rgb(0, 0, 0, 0.3);
}

.icon-container {
  background-color: #0841bd;
  width: 32px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 .3vw .3vw 0;
}

.icon-container i {
  color: white;
  transition: transform 0.3s ease;
}

a {
  text-decoration: none;
}

@media (max-width: 900px) {
  .btn-white a {
    font-size: 3vw;
    padding: 3vw;
  }

  .btn-white i {
    padding: 3vw;
    font-size: 3vw;
  }
}

.btn-2 {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75vw 1vw 0.75vw 1.5vw;
  margin-left: 5vw;
  background: var(--blue);
  color: var(--white);
  font-size: 1vw;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  min-width: 200px;
  height: 50px;
}

.btn-2::before {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  background-color: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  transition: background-color 0.3s ease;
}

/* About Styles */
.section-about {
  position: relative;
  width: 100%;
  padding: 6vw;
  box-sizing: border-box;
  background-color: var(--white);
}

.team-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4vw;
  flex-wrap: wrap;
}

.image-box img {
  position: absolute;
  transform: scaleX(-1);
  width: 25vw;
  top: 2vw;
  left: 2vw;
}

.text-box {
  background-color: var(--gray-2);
  padding: 3vw;
  border-radius: 0 5vw 5vw 0;
  max-width: 65vw;
  flex: 1;
  box-sizing: border-box;
}

.text-box p {
  font-size: 1.2vw;
  font-weight: 400;
  line-height: 1.6;
  color: var(--gray);
  margin: 0 0 2vw 5vw;
}

/* Our Team Styles */

.section-team {
  width: 100%;
  padding: 160px 20px;
  text-align: center;
  color: var(--gray);
  box-sizing: border-box;
  background-size: cover;
  position: relative;
  border-bottom: solid 1vw 11px var(--red);
}

.section-team img {
  position: absolute;
  background-color: var(--blue);
  z-index: -2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-blend-mode: multiply var(--blue);
}

.section-team {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-color: var(--blue);
  background-image: url("../media/webp/banner-team.webp");
  height: 40vw;
  padding: 6vw;
  background-blend-mode: overlay;
  gap: 1vw;
}

.section-team h2 {
  font-size: 2.8vw;
  font-weight: 500;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
}

.section-team p {
  font-size: 1.2vw;
  line-height: 1.6;
  max-width: 800px;
  color: var(--white);
}

/* Conditions We Treat Styles */

.section-conditions-we-treat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6vw;
  flex-wrap: wrap;
}

.info-conditions-we-treat {
  display: flex;
  flex-direction: column;
  max-width: 40vw;
  position: relative;
  gap: 1vw;
}

.info-conditions-we-treat h2 {
  font-size: 2.8vw;
  font-weight: 500;
  color: var(--black);
}

.info-conditions-we-treat h2 span {
  color: var(--blue);
}

.info-conditions-we-treat h4 {
  font-size: 1.2vw;
  font-weight: 700;
  color: var(--gray);
}

.info-conditions-we-treat p {
  font-size: 1.2vw;
  color: var(--gray);
}

.brain-img {
  width: 70%;
  position: relative;
  left: 5vw;
}

.info-conditions-we-treat::before {
  content: "";
  position: absolute;
  background: var(--blue);
  z-index: 0;
  left: 38%;
  top: 70%;
  transform: translate(-50%, -50%);
  width: 25vw;
  height: 25vw;
  border-radius: 50%;
}

.conditions-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}

.condition {
  position: relative;
  display: flex;
  align-items: center;
  padding: 2vw 2vw;
  border-radius: 2vw 0 2vw 0;
  color: var(--white);
  font-weight: 600;
}

.condition .icon {
  width: 2.5vw;
  height: 2.5vw;
  margin-right: 1.5vw;
}

.condition .icon img {
  width: 4vw;
  height: 4vw;
  position: absolute;
  top: 1.5vw;
  left: 2vw;
}

.condition h4 {
  margin: 0;
  font-size: 1.2vw;
}

.condition.blue {
  background-color: var(--blue);
  justify-content: center;
}

.condition.blue:hover,
.condition.red:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.condition.red {
  background-color: var(--red);
  justify-content: center;
  text-decoration: none;
}

/* Treatments Section Styles */

.info-treatments {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1vw;
  padding: 6vw 6vw 0 6vw;
  background-color: var(--gray-2);
}

.section-treatments h2 {
  font-size: 2.8vw;
  font-weight: 500;
  color: var(--blue);
  margin: 0;
  line-height: 1.2;
}

.section-treatments h4 {
  font-size: 1.2vw;
  font-weight: 700;
  color: var(--black);
  line-height: 1.6;
  max-width: 800px;
}

.section-treatments p {
  font-size: 1.2vw;
  font-weight: 400;
  color: var(--gray);
  max-width: 31%;
  line-height: 1.6;
}

.benefitsSwiper {
  padding: 3vw 4vw 6vw 4vw;
  position: relative;
  background-color: var(--gray-2);
}

.benefit_card-1 {
  background-color: transparent;
  border-radius: 1.5vw;
  padding: 2vw 1.5vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: transform 0.3s ease;
  gap: 1vw;
}

.slide-icon-1 {
  background-color: var(--blue);
  padding: 2vw;
  border-radius: 50%;
}

.benefit_card-2 {
  background-color: transparent;
  border-radius: 1.5vw;
  padding: 2vw 1.5vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: transform 0.3s ease;
  gap: 1vw;
}

.slide-icon-2 {
  background-color: var(--red);
  padding: 2vw;
  border-radius: 50%;
}

.benefit_card-1 img,
.benefit_card-2 img {
  width: 4vw;
  height: 4vw;
}

.benefit_card-1 h4,
.benefit_card-2 h4 {
  font-size: 1vw;
  font-weight: 600;
  color: var(--black);
  margin: 0;
}

/* Swiper arrow styles */
.swiper-button-next,
.swiper-button-prev {
  color: var(--gray);
  width: 3vw;
  height: 3vw;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 2vw;
}


/* Testimonials Section Styles */

.section-testimonials {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 6vw;
  text-align: center;
  color: var(--gray);
  box-sizing: border-box;
  background-size: cover;
  position: relative;
  gap: 1vw;
}

.text-testimonials {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-wrap: balance;
}

.section-testimonials h2 {
  font-size: 2.8vw;
  font-weight: 500;
  color: var(--blue);
  margin: 0;
  line-height: 1.2;
}

.section-testimonials h4 {
  font-size: 1.2vw;
  font-weight: 700;
  color: var(--black);
  line-height: 1.6;
  max-width: 800px;
}

.section-testimonials p {
  font-size: 1.1vw;
  line-height: 1.4;
  max-width: 60vw;
}

/** Insurance Slider Section Styles **/

.insurance-slider-section {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0 6vw 6vw 6vw;
  gap: 1vw;
}

.insurance-slider-section .insurance-slider-container h2 {
  text-align: center;
  font-size: 2.8vw;
  font-weight: 500;
  color: var(--blue);
  margin: 0;
  line-height: 1.2;
  margin-bottom: 2vw;
}

.insurance-slider-section .insurance-slider-container span {
  color: var(--gray);
}

.slide-item img {
  margin-bottom: 3vw;
  width: 20vw;
}

@media (max-width: 996px) {
  .services-container .slick-initialized .slick-slide {
    padding-left: 1px !important;
  }

  .insurance-slide-box .slick-dots {
    bottom: -100%;
  }

  .slide-item img {
    width: 40vw;
  }
}

/* Request an Appointment Section Styles */

.section-request-an-appointment {
  background-color: var(--blue);
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  border-bottom: var(--red) solid .5vw;
}

.info-request {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  justify-content: center;
  padding: 0 6vw;
  color: var(--white);
}

.info-request h2 {
  font-size: 2.5vw;
  font-weight: 500;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
}

.info-request h3 {
  font-size: 2.5vw;
  font-weight: 500;
  color: var(--white);
  line-height: 1.6;
}

.info-request p {
  font-size: 1.2vw;
  font-weight: 400;
  color: var(--white);
  line-height: 1.6;
}

.img-request img {
  display: block;
  width: 100%;
  height: auto;
  padding: 0 6vw;
}

.banner-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-image: url("../media/webp/banner-about.webp");
  position: relative;
  height: 40vw;
}

.content-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1vw;
  background-color: var(--transparent-blue);
  padding: 8vw 2vw;
  border-radius: 5vw;
}

.content-about p {
  text-align: center;
  font-size: 1.2vw;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  width: 60%;
}

img.img-responsive-request {
    display: none;
  }

/* Responsive Design */

@media (max-width: 900px) {

  main {
    padding-top: 80px;
  }

  .btn span {
    padding: 2vw;
  }

  .btn-blue {
    margin: 0;
  }

  .red-line {
    border-bottom: solid 1.5vw var(--red);
  }

  .section-banner-home {
    background-color: #ffffff55;
    background-blend-mode: color;
    height: 100vw;
  }

  .section-banner-home h1 {
    font-size: 7vw;
  }

  .banner-home {
    display: flex;
    flex-direction: column;
    gap: 3vw;
  }

  .section-banner-home p {
    font-size: 4vw;
    font-weight: 600;
    border-radius: 2vw;
  }

  .section-welcome-home {
    grid-template-columns: 100%;
    gap: 12vw;
    padding: 12vw 6vw;
  }

  .welcome-home-msj {
    gap: 3vw;
    align-items: center;
    text-align: center;
  }

  .welcome-home-img {
    width: 100%;
    flex: 1 1 100%;
  }

  .welcome-home-msj h2 {
    font-size: 7vw;
  }

  .welcome-home-msj p {
    font-size: 4vw;
  }


  .welcome-home-img img {
    width: 100%;
    border-radius: 40px;
  }

  .section-about {
    padding: 8vw 6vw;
  }

  .team-info {
    flex-direction: column;
    gap: 2vw;
    text-align: center;
  }

  .image-box img {
    width: 60vw;
    rotate: 15deg;
    margin-bottom: 2vw;
    left: 19vw;
    top: -2vw;
  }

  .text-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 2vw;
    padding: 40vw 6vw 6vw 6vw;
    max-width: 100%;
    margin-top: 25vw;
  }

  .text-box p {
    font-size: 4vw;
    margin: 0;
    text-align: center;
    padding-bottom: 6vw;
  }

  .btn-2 {
    font-size: 4vw;
    padding: 1vw 2vw;
    margin-left: 0;
    min-width: 170px;
  }

  .section-team {
    background-position-x: center;
    height: 100vw;
    gap: 3vw;
  }

  .section-team h2,
  .insurance-slider-section .insurance-slider-container h2 {
    font-size: 7vw;
  }

  .insurance-slider-section {
    padding: 0px 6vw 12vw 6vw;
  }

  .section-team p {
    font-size: 4vw;
  }

  .btn-3 {
    font-size: 4vw;
    padding: 1vw 2vw;
    min-width: 115px;
  }

  .section-conditions-we-treat {
    flex-direction: column;
    gap: 12vw;
    padding: 12vw 6vw;
  }

  .info-conditions-we-treat,
  .conditions-box {
    max-width: 100%;
    gap: 3vw;
  }

  .info-conditions-we-treat h2 {
    font-size: 7vw;
    margin-left: 0;
    text-align: center;
  }

  .info-conditions-we-treat h4 {
    font-size: 5vw;
    margin-left: 0;
    text-align: center;
  }

  .info-conditions-we-treat p {
    font-size: 4vw;
    margin-left: 0;
    text-align: center;
  }

  .brain-img {
    width: 70%;
    left: 12vw;
  }

  .info-conditions-we-treat::before {
    width: 45vw;
    height: 45vw;
    left: 40%;
    top: 75%;
  }

  .condition {
    padding: 4vw 20vw;
  }

  .condition .icon {
    width: 5vw;
    height: 5vw;
    margin-right: 2vw;
  }

  .condition .icon img {
    width: 8vw;
    height: 8vw;
    top: 2vw;
    left: 3vw;
  }

  .condition h4 {
    font-size: 4vw;
  }

  .section-treatments h2 {
    font-size: 7vw;
  }

  .section-treatments h4 {
    font-size: 4vw;
  }

  .section-treatments p {
    font-size: 4vw;
    max-width: 100%;
  }

  .info-treatments {
    padding: 12vw 6vw 0 6vw;
    gap: 3vw;
  }

  .benefitsSwiper {
    padding: 6vw 6vw 12vw 6vw;
    background-color: var(--gray-2);
  }

  .benefit_card-1 h4,
  .benefit_card-2 h4 {
    font-size: 3.5vw;
  }

  .benefit_card-1 img,
  .benefit_card-2 img {
    width: 10vw;
    height: 10vw;
  }

  .slide-icon-1,
  .slide-icon-2 {
    padding: 4vw;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 6vw;
    height: 6vw;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 4vw;
  }


  .section-testimonials {
    padding: 12vw 6vw;
    background-position-x: center;
    gap: 3vw;
  }

  .section-testimonials h2 {
    font-size: 7vw;
  }

  .section-testimonials h4 {
    font-size: 4vw;
    max-width: 100%;
    margin: 0;
  }

  .section-testimonials p {
    font-size: 4vw;
    max-width: 100%;
  }

  .insurance-slider-section .insurance-slider-container h2 {
    font-size: 7vw;
    padding-bottom: 6vw;
  }

  .slide-item img {
    margin-bottom: 10vw;
    max-width: 40vw;
  }

  .section-request-an-appointment {
    grid-template-columns: 1fr;
    border-bottom: var(--red) solid 1.5vw;
  }

  .info-request {
    padding: 12vw 6vw;
    text-align: center;
    align-items: center;
    gap: 3vw;
  }

  .info-request h2 {
    font-size: 7vw;
    text-align: center;
  }

  .info-request h3 {
    font-size: 4vw;
    font-weight: 600;
    text-align: center;
  }

  .info-request p {
    font-size: 4vw;
    text-align: center;
  }

  .img-request img {
    width: 100vw;
    margin-top: 2vw;
    display: block;
    /*     border-top: var(--red) solid 1.5vw; */
    /* mask-image: linear-gradient(to top, var(--black) 56%, transparent); */
  }

  img.img-desktop-request {
    display: none;
  }

  img.img-responsive-request {
    display: block;
  }


  .banner-about {
    padding: 0 6vw;
    height: 80vw;
    background-position-x: left;
  }

  .content-about {
    border-radius: 2vw;
    gap: 3vw;
  }

  .content-about p {
    font-size: 4vw;
    width: 100%;
    text-wrap: balance;
  }
}

.nav-active {
  color: var(--blue) !important;
}