*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p {
  margin: 0 !important;
}

:root {
  --inter-font: "Inter", sans-serif;
  --outfit-font: "Outfit", sans-serif;

  --teal: #00a0aa !important;
  --teal-light: #d4fffc;
  --teal-extra-light: #e1fffd;
  --dark-blue: #081e29;
  --custom-blue: #004756;
  --gray-light: #757887;
  --white: #ffffff;
  --light-white: #f0fffe;
  --light-purple: #6f6c90;
  --red: #ef4444;
  --gray: #64748b;

  --nav-shadow: 0 3px 10px 0 rgba(0, 0, 0, 11%);

  --teal-gradient: linear-gradient(to right, #ffffff, #86dfda);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--inter-font);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.appointment-button {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start !important;
  justify-content: center;
  text-decoration: none !important;
  font-size: 15px;
  gap: 2px !important;
  font-weight: 400 !important;
  color: var(--black) !important;
}

.appointment-button span {
  font-size: 11px;
}

.custom_container {
  max-width: calc(1300px - 2rem);
  margin-inline: auto;
  padding-inline: 2rem;
}

.custom_container_2 {
  max-width: calc(1100px - 2rem);
  margin-inline: auto;
  padding-inline: 2rem;
}

a {
  color: inherit;
  font-size: inherit;
  transition: all 0.2s ease-in-out;
}

a:hover {
  text-decoration-color: inherit;
  text-decoration: none;
  color: inherit;
}

.bg-light-teal {
  background-color: var(--teal-light);
}

.bg-teal {
  background-color: var(--teal);
}

.bg-custom-blue {
  background-color: var(--custom-blue);
}

.bg-light-white {
  background-color: var(--light-white);
}

.button-teal {
  border: none;
  outline: transparent;
  font-weight: 700;
  font-size: 14.06px;
  text-align: center;
  padding: 13px 16px;
  border-radius: 3px;
  background: var(--teal);
  color: var(--white) !important;

  position: relative;
  overflow: hidden;
  width: fit-content;
}

.button-teal span {
  position: relative;
  z-index: 10;
}

.button-teal::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translateX(-100%);
  background: var(--dark-blue);
  transition: all 0.3s ease;
  border-radius: 3px;
}

.button-teal:hover::before {
  transform: translateX(0%);
}

.button_white_outlined {
  outline: transparent;
  background: transparent;
  font-weight: 700;
  font-size: 16.06px;
  text-align: center;
  padding: 16px 32px;
  border-radius: 3px;
  border: 2px solid var(--white);
  color: var(--white) !important;
  display: flex;
  transition: all 0.3s ease;
  position: relative;
  overflow: clip;
  width: fit-content;
}

.button_white_outlined span,
.button_white_outlined i {
  position: relative;
  z-index: 10;
}

.button_white_outlined::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translateX(-100%);
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 3px;
}

.button_white_outlined:hover::before,
.button_white_outlined:hover span,
.button_white_outlined:hover i {
  transform: translateX(0%);
  color: var(--dark-blue);
}

.light-gradient-blob {
  padding: 0 !important;
  background: linear-gradient(to right, #ffffff 45%, #86dfda 100%);
  width: clamp(250px, 30vw, 500px);
  height: clamp(250px, 30vw, 500px);
  border-radius: 50%;
  transform: rotate(45deg);
  position: absolute;
  top: 50px;
  left: 50px;
  z-index: 0;
  opacity: 50%;

  transition: all 0.1s ease;

  animation: jiggle 4s infinite ease-in-out;
}

/* NAV STYLES */
header {
  background-color: var(--teal-light);
}

header.scrolled .top_home_nav {
  display: none;
}

header.scrolled nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
}

header.scrolled nav > div {
  padding-block: 1rem;
}

.top_home_nav {
  padding-block: 24px 16px;
  gap: 50px;
}

.top_home_nav p {
  color: var(--dark-blue);
  font-weight: 500;
  font-size: 14.4px;
}

.top_home_nav p i {
  color: var(--teal);
  font-size: 18px;
}

.top_home_nav i.fa-whatsapp {
  font-size: 26px;
}

nav {
  background: var(--white);
  box-shadow: var(--nav-shadow);
  font-weight: 700;
}

nav .phone_link {
  font-weight: 500;
}

nav > div {
  padding-block: 32px;
  transition: all 0.3s ease-in-out;
}

nav ul {
  gap: 32px;
}

nav a {
  transition: all 0.3s ease;
  position: relative;
}

nav a:hover {
  text-decoration: none;
  color: var(--teal);
}

nav li.active a {
  color: var(--teal);
}

nav li a::before {
  content: "";
  position: absolute;
  height: 3px;
  border-radius: 10px;
  background: var(--teal);
  bottom: -5px;
  left: -10%;
  width: 0%;
  transition: all 0.3s ease-in;
}

nav li.active a::before {
  width: 120%;
}

/* SIDEBAR NAV */

.side_bar {
  position: fixed;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 200;

  background: rgba(17, 17, 17, 0.5);

  transform: translateX(-100%);

  transition: all 0.2s ease-in-out;
}

.side_bar.show {
  transform: translateX(0);
}

.side_bar > div {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: rgba(17, 17, 17, 0.5);
}

.side_bar nav {
  display: flex;
  position: relative;
  z-index: 20;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  max-width: 400px;
  background-color: var(--dark-blue);
  padding: 2rem;
  color: var(--white);

  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.side_bar ul {
  gap: 2rem;
  margin-block: 2rem auto !important;
}

.side_bar ul a,
.side_bar ul li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* SECTION STYLES START */

.section_styles h5 {
  font-size: 16px;
  line-height: 1.7em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 10px;
}

.section_styles h3 {
  font-size: 44px;
  line-height: 1.4em;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 3rem;
  text-wrap: balance;
}

.section_styles p {
  color: var(--gray-light);
  font-size: 1.5rem;
  line-height: 1.5em;
  font-weight: 400;
  margin-bottom: 4.5rem !important;
  max-width: 900px;
}

/* SECTION STYLES END */

/* HOME BANNER */
.home_fade_up {
  opacity: 0;
  transform: translateY(40px);
}

.scale-fade-in {
  transform: scale(0.7);
  opacity: 0;
}

.home_banner > div {
  padding-block: 150px;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: center;
  padding-block: 100px 60pxs;
}

.home_banner h5 {
  font-size: 19px;
}

.home_banner h1 {
  font-size: 65px;
  line-height: 1.4em;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 3rem;
  text-wrap: balance;
  text-wrap: balance;
}

.home_banner a {
  font-size: 19px;
}

.home_banner .image_container {
  position: relative;
  display: grid;
}

.home_banner .image_container img {
  position: relative;
  z-index: 10;
  width: 100%;
}

.bg-teal-gradient {
  position: absolute;
  top: 0;
  left: 15%;
  width: 80%;
  height: 60%;

  border-radius: 50%;

  filter: blur(16px);
  opacity: 50%;
  z-index: 1;

  background: var(--teal-gradient);
  background-size: cover;
}

/* WHY CHOOSE US */
.why_choose_us > div {
  padding-block: 100px;
}

.why_choose_us h3 {
  font-size: 44px;
  color: var(--white);
}

.why_choose_us h4 {
  font-family: var(--outfit-font);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1em;
  color: var(--dark-blue);
}

.why_choose_us p {
  color: var(--white);
  font-size: 26px;
  font-weight: 400;
}

.why_choose_us ul {
  margin-top: 52px;
  row-gap: 60px;
  column-gap: 45px;
}

.why_choose_us ul li {
  max-width: 360px;
}

.why_choose_us ul li img {
  width: 100%;
}

.why_choose_us ul div {
  background: var(--white);
  margin-top: -10%;
  position: relative;
  max-width: 80%;
  margin-inline: auto;
  padding: 26px 23px;
  border-radius: 5px;
  text-align: center;
}

.why_choose_us ul li.accent {
  background: var(--teal-light);
  padding: 48px 60px;
  border-radius: 18px;
}

.why_choose_us ul li.accent h4 {
  font-size: 40px;
  line-height: 1.1em;
  color: var(--teal);
  font-weight: 600;
  font-family: var(--outfit-font);
  margin-bottom: 32px;
}

.why_choose_us ul li.accent a {
  color: var(--teal);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--outfit-font);
}

/* WORK PROCESS */

.work_process > div {
  padding-block: 140px 160px;
}

.work_process .section_styles > div {
  text-align: center;
}

.work_process ul {
  margin-block: 45px 70px !important;
  gap: 40px;
}

.work_process li {
  max-width: 344px;
  text-align: center;
}

.work_process li img {
  margin-bottom: 33px;
  max-width: 243px;
  margin-inline: auto;
}

.work_process li h4 {
  margin-bottom: 12px;
}

/* WHAT WE OFFER */

.what_we_offer > div {
  padding-block: 148px 170px;
}

.what_we_offer .info_section {
  max-width: 846px;
  margin-inline: auto;
  text-align: center;
}

.what_we_offer ul {
  margin-block: 60px;
  row-gap: 45px;
  column-gap: 36px;
}

.what_we_offer li {
  max-width: 365px;
  padding: 42px;
  border-radius: 12px;
  background-color: var(--white);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}

.what_we_offer li.accent {
  background-color: var(--custom-blue);
}

.what_we_offer li a {
  font-size: 20px;
  font-weight: 700;
  color: var(--custom-blue);

  display: flex;
  align-items: center;
  gap: 5px;
}

.what_we_offer li img {
  width: 70px;
}

.what_we_offer h4 {
  font-family: var(--outfit-font);
  color: var(--dark-blue);
  font-size: 28px;
  font-weight: 600;
}

.what_we_offer p {
  font-size: 23px;
  line-height: 1.5em;
  color: var(--gray-light);
  display: block;
  margin-block: auto;
}

.what_we_offer li.accent h4,
.what_we_offer li.accent p,
.what_we_offer li.accent a {
  color: var(--white);
}

.what_we_offer li.accent h4 {
  font-size: 40px;
}

/* WHY CHOOSE US 2 */
.why_choose_us_2 > div {
  gap: 80px;
  padding-block: 120px;

  display: flex;
}

.why_choose_us_2 .reasons {
  padding: 45px;
  border-radius: 20px;
  background: var(--white);
  max-width: 390px;
  width: 100%;
}

.why_choose_us_2 .reasons h4 {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--inter-font);
  color: var(--dark-blue);

  margin-bottom: 27px;
}

.why_choose_us_2 ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why_choose_us_2 ul li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 500;
  color: var(--dark-blue);
}

.why_choose_us_2 li i {
  color: var(--teal);
  font-size: 26px;
}

.why_choose_us_2 h3,
.why_choose_us_2 p {
  color: var(--white);
}

.why_choose_us_2 p {
  font-size: 18px;
  line-height: 2em;
  font-weight: 500;
}

/* PRICING CARDS SECTION */

.pricing_section {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.pricing_gradient_1 {
  inset: auto;
  position: absolute;
  top: 40%;
  left: 0;
  opacity: 30%;
}

.pricing_gradient_2 {
  inset: auto;
  top: 10%;
  right: 0;
  position: absolute;
  opacity: 30%;
}

.pricing_section > .custom_container {
  max-width: calc(1400px - 2rem);
  padding-block: 120px 80px;
  text-align: center;

  position: relative;
  z-index: 20;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing_cards {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.pricing_card {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 18px;
  padding: 48px 32px;
  border: 1px solid #eff0f6;
  border-radius: 24px;
  background-color: var(--white);

  box-shadow: 0 2px 12px 0 rgba(20, 20, 43, 8%);
  position: relative;
}

.pricing_card:not(.highlight) img {
  background: var(--teal-light);
  border-radius: 16px;
}

.pricing_card.highlight {
  background: var(--custom-blue);
  border: none;
}

.pricing_card_header {
  display: flex;
  align-items: center;
  gap: 18px;
}

.pricing_card .price {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.pricing_card_header span,
.pricing_card p,
.pricing_card .price span {
  font-size: 18px;
  font-weight: 400;
  color: var(--light-purple);
  line-height: 1.8em;
  text-align: left;
}

.pricing_card_header h3 {
  text-align: left;
  font-weight: 700;
  font-size: 24px;
  margin: 0 !important;
  color: var(--dark-blue);
}

.pricing_card .price h3 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1em;
  margin: 0 !important;
  color: var(--custom-blue);
}

.pricing_card.highlight span,
.pricing_card.highlight p,
.pricing_card.highlight h3 {
  color: var(--white);
}

.pricing_card_header .popular {
  position: absolute;
  right: 32px;
  top: 32px;

  background-color: rgba(255, 255, 255, 20%);
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--white);
}

.pricing_card ul {
  text-align: left;

  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing_card ul h4 {
  margin-bottom: 8px;
}

.pricing_card ul li {
  display: flex;
  font-size: 14px;
  color: var(--light-purple);
  align-items: center;
  gap: 14px;
}

.pricing_card ul i {
  color: var(--custom-blue);
  font-size: 26px;
}

.pricing_card.highlight span,
.pricing_card.highlight p,
.pricing_card.highlight h3,
.pricing_card.highlight i,
.pricing_card.highlight li,
.pricing_card.highlight h4 {
  color: var(--white);
}

.pricing_card button {
  border-radius: 90px;
  outline: transparent;
  border: none;
  padding: 26px;
  background-color: var(--custom-blue);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  margin-top: 37px;

  cursor: pointer;
}

.pricing_card.highlight button {
  background: var(--white);
  color: var(--custom-blue);
}

/* TESTIMONIALS */

.testimonials > div {
  padding-block: 120px;
}

.single_testimonial_card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
}

.single_testimonial_card .testimonial_info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}

.testimonial_info .quote_icon {
  background-color: var(--white);
  border-bottom-right-radius: 100%;
  padding: 4px 12px 28px 4px;
  width: 57px;
  height: 57px;
}

.testimonial_info p {
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
}

.testimonial_info .quote_icon img {
  width: 100%;
}

.testimonial_image_container {
  position: relative;
  display: grid;
  place-items: center;
}

.testimonial_image_container .play_image {
  position: absolute;
  inset: auto;
  margin: auto;
}

.testimonial_name h3 {
  font-size: 17.75;
  font-weight: 700;
  color: var(--white);
}

.testimonial_name span {
  font-size: 13.3;
  font-weight: 500;
  line-height: 1.3em;
  color: var(--white);
}

.slider {
  position: relative;
}

.owl-stage-outer {
  overflow: hidden;
}

.owl-stage {
  display: flex;
  align-items: stretch;
}

.owl-dots {
  position: absolute;
  inset-inline: 0;
  bottom: -40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 40%;
  width: 100%;
}

.owl-dots {
  display: none;
}

.owl-nav button {
  background: transparent;
  outline: transparent;
  border: none;
  font-size: 48px;

  background: rgba(255, 255, 255, 10%);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 7px;
  border-radius: 50%;
  color: var(--white);
  line-height: 0;
  text-align: center;

  transition: all 0.3s ease;
}

.owl-nav button:hover {
  background: var(--dark-blue);
}

.owl-prev {
  transform: translateX(-150%);
}

.owl-next {
  transform: translateX(150%);
}

/* ANNOUNCEMENT SECTION */

.announcement_section {
  display: grid;
  grid-template-columns: auto minmax(300px, 600px) minmax(300px, 600px) auto;
  align-items: center;
}

.announcement_section .section_styles {
  padding-block: 120px;
  padding-inline: 32px 120px;
  grid-column: 2 / 3;
}

.announcement_section > img {
  grid-column: 3 / 5;
  width: 100%;
  object-fit: cover;
  max-height: 800px;
}

/* FOOTER */
.footer_content {
  padding-block: 65px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}

.footer_content img {
  width: 140px;
  margin-bottom: 12px;
}

.footer_content > div {
  width: fit-content;
}

.footer_logos {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

footer h4 {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3em;
  color: var(--white);
  margin-bottom: 20px;
}

footer a {
  color: rgba(255, 255, 255, 70%);
  font-weight: 500;
  font-size: 13.3px;
}

footer ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer .button_white_outlined {
  max-width: 280px;
  font-size: 14px;
}

.footer_coyright {
  padding-block: 44px;
}

.footer_coyright ul {
  flex-direction: row;
}

.footer_coyright p,
.footer_coyright a {
  font-size: 17px;
  color: rgba(255, 255, 255, 60%);
  transition: all 0.3s ease;
}

footer a:hover {
  color: var(--white);
}

@media (max-width: 1300px) {
  .home_banner h1 {
    font-size: 3rem;
  }

  .home_banner > div {
    grid-template-columns: 1fr;
    padding-block: 5rem 3rem;
    overflow-x: hidden;
  }

  .home_banner .image_container {
    max-width: 560px;
    margin-top: 2rem;
    margin-left: auto;
    transform: translateY(-20%);
  }

  .home_banner .section_styles {
    max-width: 700px;
  }

  .home_banner .image_container img {
    transform: scale(1);
  }

  .owl-next,
  .owl-prev {
    transform: translate(0);
  }

  .owl-nav button {
    width: 50px;
    height: 50px;
    font-size: 36px;
    border-radius: 16px;
  }

  .owl-nav {
    top: auto;
    justify-content: center;
    gap: 16px;
    margin-inline: auto;
    transform: translateY(75%);
  }

  .announcement_section > img {
    max-height: unset;
    height: 100%;
  }
}

@media (max-width: 1120px) {
  .home_banner .image_container {
    transform: translateY(-10%);
  }

  .announcement_section {
    grid-template-columns: 1fr;
    gap: 90px;
  }

  .announcement_section .section_styles {
    padding: 90px 32px 16px 32px;
    grid-column: unset;
  }

  .announcement_section > img {
    grid-column: unset;
    max-height: 800px;
  }
}

@media (max-width: 720px) {
  nav > div {
    padding-block: 20px;
  }

  .logo img {
    width: 112px;
  }

  .home_banner h1 {
    font-size: 2.5rem;
    line-height: 1.5em;
  }

  .home_banner a,
  .home_banner h5 {
    font-size: 16px;
  }

  .home_banner h5 {
    font-weight: 400;
  }

  .button-teal {
    padding: 8px 12px;
  }

  .home_banner .image_container {
    transform: translateY(0);
  }

  .section_styles h3 {
    font-size: 32px;
    margin-bottom: 1.5rem;
  }

  .why_choose_us p {
    font-size: 16px;
  }

  .section_styles p {
    font-size: 16px;
    margin-bottom: 2rem !important;
  }

  .why_choose_us > div,
  .what_we_offer > div,
  .work_process > div,
  .why_choose_us_2 > div,
  .pricing_section > .custom_container,
  .testimonials > div {
    padding-block: 90px;
  }

  .why_choose_us ul li h4 {
    font-size: 16px;
  }

  .why_choose_us ul li.accent h4 {
    font-size: 24px;
  }

  .why_choose_us ul li.accent {
    text-align: center;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .why_choose_us ul,
  .work_process ul,
  .what_we_offer ul {
    gap: 32px;
  }

  .what_we_offer ul {
    flex-direction: column;
    align-items: center;
  }

  .what_we_offer li {
    padding: 32px;
  }

  .what_we_offer p,
  .what_we_offer li a {
    font-size: 16px;
  }

  .why_choose_us_2 > div {
    flex-direction: column;
  }

  .why_choose_us_2 .reasons {
    padding: 24px;
  }

  .why_choose_us_2 i {
    font-size: 20px;
  }

  .pricing_cards {
    display: flex;
    flex-direction: column;
  }

  .pricing_card {
    padding: 32px;
  }

  .single_testimonial_card {
    display: flex;
    flex-direction: column;
  }

  .home_fade_up,
  .scale-fade-in {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 480px) {
  .home_banner h1 {
    font-size: 2rem;
    line-height: 1.5em;
  }

  .work_process li img {
    max-width: 150px;
  }

  .what_we_offer li {
    width: 100%;
  }

  .footer_content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
    padding-block: 60px 0;
  }

  .footer_content .footer_logos {
    align-items: center;
  }

  .footer_content img {
    margin-inline: auto;
  }

  .footer_content > div {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home_fade_up,
  .scale-fade-in {
    opacity: 1;
    transform: none;
  }
}

@keyframes jiggle {
  0%,
  100% {
    transform: rotate(45deg) translateX(0) translateY(0);
  }
  25% {
    transform: rotate(46deg) translateX(2px) translateY(-2px);
  }
  50% {
    transform: rotate(44deg) translateX(-2px) translateY(2px);
  }
  75% {
    transform: rotate(45deg) translateX(2px) translateY(2px);
  }
}
