@import url(https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200;300;400;600;700;800;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap);
/* colours palette */
/* images */
/* breakpoints */
/*________font names_________*/
/*_______sizes_________*/
/*_______borders and boxes_________*/
/*_______break points_________*/
/*_______border radius_________*/
/*********************************************************************************/
/*********************************** base ****************************************/
/*********************************************************************************/
html {
  height: 100%;
  scroll-behavior: smooth;
  margin: 0 auto;
}
html.scroll-lock, html.appointment-lock, html.menu-lock {
  overflow: hidden;
}

body {
  height: 100%;
  font-family: "Martel Sans", Arial, sans-serif;
  background: #FCFCFC;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  margin: 0 auto;
}
body[data-overlay=blur] .site-container {
  transition: none;
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: blur(10px);
}

h1, h2, h3, h4 {
  font-family: "Nanum Myeongjo", times, serif;
  font-weight: 400;
  line-height: 1.2;
  font-style: normal;
  margin: 0 auto 25px;
  color: #04201e;
}

h1, h2, h3, h4, div {
  letter-spacing: 0.8px;
}

h2 {
  font-size: 42px;
  text-align: center;
  margin: 0 0 40px 0;
}
@media (max-width: 460px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  text-transform: uppercase;
  font-size: 18px;
}
@media (max-width: 460px) {
  h3 {
    text-align: center;
  }
}
h3.wide {
  letter-spacing: 5px;
}

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

a {
  opacity: 1;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover, a:visited, a:active, a:focus {
  color: inherit;
  text-decoration: none;
  opacity: 0.6;
  outline: none;
}

p {
  font-weight: 400;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
  letter-spacing: 0.8px;
}
p a {
  font-weight: 700;
}

h1.italic, h1 em, h2.italic, h2 em, h3.italic, h3 em, h4.italic, h4 em, a.italic, a em {
  font-style: italic;
  font-family: "Cormorant Garamond", times, serif;
}

button {
  outline: none !important;
}

.line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

::-webkit-input-placeholder, ::-moz-placeholder, :-moz-placeholder, :-ms-input-placeholder {
  transition: 0.3s ease;
}

.white-font h1, .white-font h2, .white-font h3, .white-font h4, .white-font p, .white-font a, .white-font div {
  color: #FFFFFF;
}
.white-font .simple-text__center a, .white-font .simple-text a {
  color: #FFFFFF;
}

a.solid:hover, a.solid:visited, a.solid:active, a.solid:focus {
  color: inherit;
  text-decoration: none;
  opacity: 1;
}

.site-container {
  width: 100%;
}
.site-container.dimmed {
  background-color: #444444;
}

/*********************************************************************************/
/******************************* containers *****************************************/
/*********************************************************************************/
.text-container {
  margin: 0 auto;
  max-width: 1200px;
  padding: calc(60px + 5%) 0;
  position: relative;
}

.image-container {
  margin: 80px auto;
}

.gradient-container {
  background: linear-gradient(0deg, #fcfcfc 0%, rgba(217, 217, 205, 0.5) 30%, rgba(223, 223, 213, 0.5) 70%, #fcfcfc 100%);
  background-size: cover !important;
  position: relative;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.two-column {
  column-count: 2;
  column-gap: 40px;
}
@media (max-width: 757px) {
  .two-column {
    column-count: 1;
  }
}

.reverse-column {
  flex-direction: row-reverse;
}

/*********************************************************************************/
/******************************* buttons *****************************************/
/*********************************************************************************/
button {
  color: #FFFFFF;
  background: #04201e;
  font-size: 15px;
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 14px 30px;
  text-decoration: none;
  text-align: center;
  font-weight: 300;
  line-height: 1;
  user-select: none;
  border-radius: 2px;
  outline: none !important;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0);
  text-transform: uppercase;
  letter-spacing: 4px;
  transition: all 0.6s ease;
}
button:hover {
  color: #04201e;
  background: #FFFFFF;
  opacity: 1;
  border: 1px solid #04201e;
}

button.btn-outline {
  color: #04201e;
  background: #FFFFFF;
}
button.btn-outline:hover {
  color: #FFFFFF;
  background: transparent;
  border: 1px solid #FFFFFF;
}

.underline-link a {
  position: relative;
}
.underline-link a::after {
  content: "";
  position: absolute;
  height: 1px;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(204, 204, 204, 0.8);
  width: 100%;
}

.popup-text {
  font-size: 16px !important;
  border-radius: 2px !important;
}
.popup-text ul {
  list-style: inside;
}

.popup-title {
  font-weight: 400;
  font-size: 32px;
  margin: 20px auto;
}
@media (max-width: 460px) {
  .popup-title {
    font-size: 22px;
  }
}

.popup-button {
  font-size: 15px;
  display: inline-block;
  position: relative;
  padding: 14px 30px !important;
  font-weight: 300;
  line-height: 1;
  user-select: none;
  border-radius: 2px !important;
  text-transform: uppercase;
  letter-spacing: 4px;
  transition: none;
  margin-bottom: 8px;
  border: 1px solid #04201e;
}
.popup-button:focus, .popup-button:hover {
  box-shadow: none !important;
  opacity: 1;
  color: #FFFFFF;
}

.popup-cancel-button {
  color: #04201e !important;
  border: 1px solid #04201e !important;
}

.popup-footer-link a {
  color: #1f74b6;
}

.before-icon {
  position: relative;
}
.before-icon::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
}

.after-icon {
  position: relative;
}
.after-icon::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
}

.hover-underline-link a {
  position: relative;
}
.hover-underline-link a::after {
  content: "";
  position: absolute;
  height: 1px;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  width: 0;
  opacity: 0;
  transition: all 1.25s ease;
}
.hover-underline-link a:hover {
  opacity: 1;
}
.hover-underline-link a:hover::after {
  width: 100%;
  opacity: 1;
}

.muted {
  filter: grayscale(0.5);
}

.gray {
  filter: grayscale(1);
}

.white {
  background-color: white !important;
  color: #5ABBE9 !important;
}

.red {
  background-color: #D80108 !important;
}

.green {
  background-color: #2ecc71 !important;
}

.gold {
  background-color: #F8B832 !important;
}

.phone {
  margin: 0;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.contact-us .phone {
  text-align: center;
  font-size: 38px;
}
@media screen and (max-width: 375px) {
  .contact-us .phone {
    font-size: 36px;
  }
}
@media screen and (max-width: 700px) {
  .contact-us .phone {
    font-size: 36px;
  }
}

.no-wrap {
  white-space: nowrap;
}

.site-pagination .pagination .page-item .page-link {
  color: #666;
  margin: 0 10px;
  border: 1px solid #FFFFFF;
  border-radius: 7px;
  padding: 0.1rem 0.7rem;
}
.site-pagination .pagination .page-item .page-link:hover {
  cursor: pointer;
  border: 1px solid #5ABBE9 !important;
  background-color: rgba(90, 187, 234, 0.04);
}
@media screen and (max-width: 375px) {
  .site-pagination .pagination .page-item .page-link {
    margin: 0 5px;
    padding: 0.2rem 0.7rem;
  }
}
@media screen and (max-width: 700px) {
  .site-pagination .pagination .page-item .page-link {
    margin: 0 5px;
    padding: 0.2rem 0.7rem;
  }
}
.site-pagination .pagination .page-item.control .page-link {
  border: 1px solid #d7d7d7;
  border-radius: 50%;
}
.site-pagination .pagination .page-item.active .page-link {
  color: #FFFFFF;
  border: 1px solid #5ABBE9;
  background-color: #5ABBE9;
}

.testimonials {
  padding: 0 200px;
  text-align: center;
}
.testimonials .testimonial {
  display: none;
}
.testimonials .testimonial:first-child {
  display: block;
}
@media (max-width: 1024px) {
  .testimonials {
    padding: 0 80px;
  }
}
@media (max-width: 757px) {
  .testimonials {
    padding: 0 20px;
  }
}
.testimonials p {
  color: #494949;
  font-size: 22px;
  line-height: 1.75;
  font-family: "Nanum Myeongjo", times, serif;
}
@media (max-width: 757px) {
  .testimonials p {
    font-size: 18px;
  }
}
.testimonials a {
  color: #333;
}
.testimonials__link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
@media (max-width: 757px) {
  .testimonials__link {
    flex-direction: column;
  }
}
.testimonials__link__icons {
  display: flex;
}
@media (max-width: 757px) {
  .testimonials__link__icons {
    margin-bottom: 20px;
  }
}
.testimonials__link p {
  font-family: "Martel Sans", Arial, sans-serif;
  font-size: 18px;
  margin-left: 20px;
  margin-bottom: 0;
}
@media (max-width: 757px) {
  .testimonials__link p {
    margin-left: 0;
  }
}
.testimonials__link .fa-stack {
  width: 1.5em;
  height: 1.5em;
}
.testimonials__link i {
  font-size: 20px;
}

.reviews {
  z-index: 0;
  position: relative;
}
.reviews .text-container {
  padding: 0;
  max-width: 1320px;
  padding: 40px 20px;
}
@media (max-width: 757px) {
  .reviews .text-container {
    padding: 80px 20px 0;
  }
}
.reviews .qmUoS, .reviews .bCWDcM {
  font-family: "Nanum Myeongjo", times, serif;
  font-weight: 400;
  font-size: 42px;
  margin-bottom: 25px;
}
@media (max-width: 460px) {
  .reviews .qmUoS, .reviews .bCWDcM {
    font-size: 28px;
  }
}
.reviews .jjAvKL a {
  text-transform: uppercase;
  letter-spacing: 2.88px;
  color: #04201e;
}
.reviews .jCXFfl, .reviews .hXrUSE {
  transform: unset;
  top: 110%;
}
.reviews .kEYlto:not(:last-of-type) {
  margin-right: 8px;
}
.reviews .kNfncX {
  text-transform: uppercase;
}
.reviews .YusbI {
  max-height: unset;
}
.reviews .ibYSQo {
  line-height: 1.8;
}

.full-page .reviews .bCWDcM {
  display: none;
}
@media (max-width: 757px) {
  .full-page .reviews {
    padding: 0 20px 60px;
  }
}

.banner-mini {
  margin: 80px 0;
  padding: calc(100px + 3%) 20px;
  color: #FFFFFF;
  letter-spacing: 0.22em;
  background-image: url(/images/banner-health.webp);
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: center;
  z-index: 0;
  transition: background-image 0.6s ease;
}
@media (max-width: 757px) {
  .banner-mini {
    margin: 80px 0 0 0;
  }
}
.banner-mini.beauty-banner {
  background-image: url(/images/banner-beauty.webp);
}
.banner-mini:before {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #10302a;
  opacity: 0.85;
  width: 100%;
}
.banner-mini .center {
  flex-direction: unset;
}
@media (max-width: 460px) {
  .banner-mini .center {
    flex-direction: column;
    gap: 60px;
  }
}
.banner-mini h3 {
  font-size: 30px;
  letter-spacing: 0.22em;
  margin: 0;
}
.banner-mini h2, .banner-mini h3 {
  color: #FFFFFF;
}
.banner-mini__links {
  position: relative;
  justify-content: space-around;
  z-index: 1;
}
.banner-mini__links a {
  letter-spacing: 0.22em;
}

.banner-large {
  width: 100%;
  height: 70vh;
  overflow: hidden;
  position: relative;
  margin: 80px 0;
}
@media (max-width: 757px) {
  .banner-large {
    margin: 0 0 80px 0;
    height: 100%;
  }
}
.banner-large img {
  max-height: 100vh;
  width: 100vw;
  filter: brightness(0.6);
  object-fit: cover;
}
@media (max-width: 757px) {
  .banner-large img {
    height: 100vh;
    filter: brightness(0.8);
    object-fit: cover;
  }
}
.banner-large__content {
  position: absolute;
  top: 0;
  flex-direction: column;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 20px;
}
.banner-large__content a {
  border-bottom: 1px solid #FFFFFF;
  padding-bottom: 10px;
  color: #FFFFFF;
}
.banner-large__content h2 {
  font-size: clamp(70px, 5vw, 108px);
  color: #FFFFFF;
  margin-bottom: 56px;
}

.bio {
  position: relative;
  max-width: 1700px;
}
@media (max-width: 1450px) {
  .bio {
    max-width: 1300px;
  }
}
.bio h2, .bio h3, .bio p, .bio a, .bio span {
  color: #FFFFFF;
}
@media (max-width: 757px) {
  .bio h2, .bio h3, .bio p, .bio a, .bio span {
    color: unset;
  }
}
.bio img {
  filter: brightness(0.8);
  width: 100%;
  max-height: 850px;
  overflow: hidden;
  object-fit: cover;
}
@media (max-width: 757px) {
  .bio img {
    height: 50vh;
    filter: unset;
    position: relative;
  }
}
.bio__content {
  color: #04201e;
  letter-spacing: 0.2em;
  justify-content: center;
  align-items: start;
  height: 100%;
}
.bio__content a:before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  bottom: -5px;
  background-color: rgba(204, 204, 204, 0.8);
}
.bio__content a:after {
  background-color: #04201e;
  height: 2px;
}
.bio__content h2 {
  margin: 0 0 40px 0;
  text-align: left;
  font-size: 42px;
}
@media (max-width: 757px) {
  .bio__content h2 {
    text-align: center;
  }
}
.bio__content h3 {
  margin: 0 0 80px 0;
}
@media (max-width: 1450px) {
  .bio__content h3 {
    margin: 0 0 40px 0;
  }
}
@media (max-width: 757px) {
  .bio__content h3 {
    text-align: center;
  }
}
.bio__content p {
  font-size: 17px;
}
@media (max-width: 757px) {
  .bio__content p {
    font-size: 15px;
  }
}
.bio__content a:last-of-type {
  text-transform: uppercase;
}
.bio .content-overlay {
  padding: 60px;
  justify-content: end;
}
@media (max-width: 1024px) {
  .bio .content-overlay {
    left: 0;
    padding: 20px;
    max-width: 100%;
  }
}
@media (max-width: 757px) {
  .bio .content-overlay {
    position: relative;
  }
}
.bio__background {
  height: 100%;
  border-radius: 20px;
  padding: 50px;
  position: absolute;
  background-size: contain;
  filter: blur(50px);
  width: 100%;
}
@media (max-width: 1024px) {
  .bio__background {
    display: none;
  }
}
@media (max-width: 1024px) {
  .bio.dark-overlay::after {
    opacity: 0.5;
  }
}

.contact {
  position: relative;
  padding-top: 130px;
}
@media (max-width: 1024px) {
  .contact {
    padding-top: 0;
  }
}
.contact img {
  width: 100%;
  min-height: 80vh;
  max-height: 100vh;
  object-fit: cover;
}
@media (max-width: 460px) {
  .contact img {
    min-height: 100vh;
    max-height: 150vh;
  }
}
.contact h1 {
  text-transform: capitalize;
  margin-bottom: 60px;
  font-size: 58px;
}
.contact h2 {
  font-size: 32px;
}
.contact h1, .contact h2 {
  color: #FFFFFF;
}
.contact a h2 {
  font-weight: 700;
  padding-left: 40px;
  padding-top: 4px;
  background-image: url(/images/phonehome-white.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 28px;
}
.contact .content-overlay {
  background-image: url(/images/brooklyn-bridge.webp);
  background-size: cover;
  position: relative;
}
.contact .content-overlay::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 90%;
  height: 100%;
  background: linear-gradient(to left, rgba(0, 0, 0, 0), black);
}
.contact .content-overlay h3 {
  color: #FFFFFF;
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 460px) {
  .contact .content-overlay h3 {
    text-align: left;
  }
}
.contact .content-overlay .contact__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
  padding: 80px;
}
.contact .content-overlay .contact__content__text {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1024px) {
  .contact .content-overlay .contact__content {
    padding: 0;
  }
}
@media (max-width: 757px) {
  .contact .content-overlay .contact__content {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
}
.contact .content-overlay .contact__content button {
  width: 100%;
}
.contact .content-overlay .contact__content .comment__input__container.lg .comment__textarea {
  padding-left: 4px;
}
.contact .content-overlay .contact__content .community-block__top .comment__input__container {
  border: none;
  border-radius: 2px;
}
.contact .content-overlay .contact__content .community-block {
  margin: 0px auto 60px;
  position: relative;
}
.contact .content-overlay .contact__content .contact-info input {
  width: 100%;
  margin-top: 8px;
  padding: 8px 0 0 12px;
  outline: none;
  border: none;
  border-radius: 2px;
}
.contact .error {
  color: red;
  margin-top: 8px;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  transition-delay: 1s;
}
@media (max-width: 757px) {
  .intro {
    grid-template-columns: 1fr;
  }
}
.intro h3 {
  text-align: center;
}
.intro__image {
  position: relative;
  display: flex;
  margin: 0 auto;
  object-position: 80%;
}
@media (max-width: 757px) {
  .intro__image {
    margin: 20px;
    grid-row: 1;
    height: 90%;
  }
}
@media (max-width: 460px) {
  .intro__image {
    height: 400px;
  }
}
.intro__overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0.5;
  overflow: hidden;
}
.intro__content {
  flex-direction: column;
  padding: 0 80px;
  margin-left: auto;
  height: 900px;
  z-index: 0;
}
@media (max-width: 1024px) {
  .intro__content {
    padding: 0 20px;
  }
}
@media (max-width: 757px) {
  .intro__content {
    height: unset;
    padding: 20px 20px 0;
  }
}
.intro__content div {
  text-transform: uppercase;
  font-size: 24px;
  display: block;
  opacity: 1;
  letter-spacing: 5px;
  margin: 20px 0;
}
.intro img {
  width: 100%;
  /* transition: all 1.25s ease; */
  border-radius: 15px;
  object-fit: cover;
}
@media (max-width: 757px) {
  .intro img {
    height: 100%;
  }
}

.two-columns {
  display: flex;
  align-items: center;
  max-width: 1600px;
  padding: 80px 20px;
}
@media (max-width: 757px) {
  .two-columns {
    display: grid;
    padding: 0px 20px;
  }
}
.two-columns img {
  width: 100%;
  height: 800px;
  overflow: hidden;
  object-fit: cover;
}
@media (max-width: 757px) {
  .two-columns img {
    height: unset;
  }
}
@media (max-width: 460px) {
  .two-columns img {
    height: 40vh;
  }
}
.two-columns__content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 100px 80px 0 80px;
  flex-direction: column;
  letter-spacing: 0.8px;
}
@media (max-width: 757px) {
  .two-columns__content {
    padding: 40px 0 0 0;
  }
}
@media (max-width: 757px) {
  .two-columns__content h2 {
    margin: 0 0 25px 0;
  }
}
.two-columns__content a {
  letter-spacing: 2.88px;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 30px;
  color: #04201e;
}
.two-columns__content a:before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  bottom: -5px;
  background-color: rgba(204, 204, 204, 0.8);
}
.two-columns__content a:after {
  background-color: #04201e;
  height: 2px;
}
.two-columns__content p a {
  letter-spacing: unset;
  text-transform: unset;
  font-weight: 700;
  margin-top: unset;
}
.two-columns__content p a:before, .two-columns__content p a:after {
  content: none;
}
.two-columns__content ul {
  list-style: unset;
}
.two-columns__content ul li {
  padding: 8px;
}
.two-columns__content ol li {
  padding: 8px;
}
@media (max-width: 757px) {
  .two-columns__image {
    grid-row: 1;
  }
}

.videos {
  padding: calc(60px + 5%) 0;
}
.videos a {
  letter-spacing: 2.88px;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 60px;
  color: #04201e;
}
.videos a::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  bottom: -5px;
  background-color: rgba(204, 204, 204, 0.8);
}
.videos a::after {
  background-color: #04201e;
  height: 2px;
}
.videos h2 {
  margin: 0 auto 40px;
  max-width: 1240px;
}
.videos__media {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin: 0 auto;
  max-width: 1200px;
}
@media (max-width: 757px) {
  .videos__media {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 460px) {
  .videos__media {
    grid-template-columns: 1fr;
  }
}
.videos__media div {
  height: 400px;
}
@media (max-width: 460px) {
  .videos__media div {
    height: 100vw;
  }
}

.health-beauty {
  margin: 80px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 800px;
  overflow: hidden;
}
@media (max-width: 757px) {
  .health-beauty {
    margin: 0 auto;
  }
}
@media (max-width: 460px) {
  .health-beauty {
    grid-template-columns: 1fr;
    height: unset;
  }
}
@media (max-width: 460px) {
  .health-beauty h2 {
    margin-bottom: 80px;
  }
}
.health-beauty__left {
  color: #FFFFFF;
  letter-spacing: 0.22em;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 20px;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
  background-position-x: center;
}
.health-beauty__left.beauty {
  background-image: url(/images/beauty-gray.webp);
}
.health-beauty__left.health {
  background-image: url(/images/health-gray.webp);
}
.health-beauty__left::before {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #10302a;
  opacity: 0.9;
  width: 100%;
}
.health-beauty__left ul {
  flex-direction: column;
  justify-content: space-evenly;
  text-align: center;
}
@media (max-width: 460px) {
  .health-beauty__left ul {
    gap: 60px;
  }
}
.health-beauty__left a.before-icon {
  position: absolute;
  height: 100%;
  width: 45px;
  left: 0;
}
.health-beauty__left a.before-icon::before {
  background-image: url(/images/arrow-right-circle-thin.svg);
  left: 40px;
  top: 50%;
}
@media (max-width: 757px) {
  .health-beauty__left a.before-icon::before {
    left: 20px;
    top: 20px;
  }
}
.health-beauty__left a {
  color: #FFFFFF;
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
  letter-spacing: 0.22em;
}
.health-beauty__left a::after {
  transition: all 0.3s ease;
}
.health-beauty__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 460px) {
  .health-beauty__right img {
    height: unset;
  }
}

.quote {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 160px 0;
  overflow: hidden;
}
@media (max-width: 757px) {
  .quote {
    padding: 60px 40px;
  }
}
.quote p {
  font-weight: 700;
}
.quote h3 {
  text-transform: unset;
  font-size: 36px;
}
.quote .before-icon::before,
.quote .after-icon::after {
  background-image: url("../../images/quote.svg");
  width: 10%;
  height: 30%;
  top: 30%;
}
.quote .before-icon::before {
  left: -20%;
}
@media (max-width: 460px) {
  .quote .before-icon::before {
    left: -10%;
    top: 0;
  }
}
.quote .after-icon::after {
  left: unset;
  right: -20%;
  transform: rotateZ(180deg);
}
@media (max-width: 460px) {
  .quote .after-icon::after {
    right: -10%;
    top: unset;
    bottom: 0;
  }
}

.mission {
  position: relative;
}
.mission img {
  width: 100%;
}
.mission__content.content-overlay {
  max-width: 35%;
  left: 60%;
  align-items: start;
  justify-content: start;
  top: 20%;
}
@media (max-width: 1024px) {
  .mission__content.content-overlay p {
    display: none;
  }
}
@media (max-width: 757px) {
  .mission__content.content-overlay p {
    display: block;
  }
}
@media (max-width: 757px) {
  .mission__content.content-overlay {
    position: relative;
    padding: 40px 20px 0;
    left: 0;
    max-width: 100%;
    width: 100%;
  }
}
.mission__content h2, .mission__content h3 {
  margin-left: 0;
  text-align: left;
}

.new-patient {
  max-width: 1320px;
  width: 100%;
  position: relative;
  margin-top: 160px;
}
@media (max-width: 757px) {
  .new-patient {
    margin-top: 0;
  }
}
.new-patient h2, .new-patient p {
  color: #FFFFFF;
}
.new-patient h2 {
  text-transform: uppercase;
  font-size: clamp(50px, 4vw, 120px);
}
@media (max-width: 757px) {
  .new-patient h2 {
    font-size: 28px;
  }
}
@media (max-width: 757px) {
  .new-patient__content {
    padding: 40px 20px;
  }
}
.new-patient img {
  width: 100%;
  filter: brightness(0.4);
  max-height: 650px;
  object-fit: cover;
}
@media (max-width: 460px) {
  .new-patient img {
    height: 45vh;
    object-fit: cover;
  }
}
@media (max-width: 460px) {
  .new-patient button {
    padding: 14px;
  }
}

.overview {
  max-width: 100%;
  margin-bottom: 0;
  padding: 20px 0 0;
}
.overview .nav {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.overview .nav a {
  margin: 10px 30px;
  padding: 13px 20px;
  line-height: 1;
  font-weight: 300;
  color: #333;
  text-transform: uppercase;
  display: block;
  position: relative;
  border: 1px solid #04201e;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (max-width: 460px) {
  .overview .nav a {
    font-size: 12px;
    letter-spacing: unset;
    width: calc(50% - 20px);
    margin: 10px;
  }
}
.overview .nav a::after {
  content: "";
  position: absolute;
  background-color: #04201e;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  width: 0;
  opacity: 1;
  transition: all 0.3s ease;
}
.overview .nav a:hover {
  opacity: 1;
  color: #FFFFFF;
}
.overview .nav a:hover::after {
  width: 100%;
}
.overview .images {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  align-items: stretch;
  align-content: center;
  justify-content: center;
}
@media (max-width: 460px) {
  .overview .images {
    grid-template-columns: 1fr;
  }
}
.overview .images a:hover {
  opacity: 1;
}
.overview .images__group {
  position: relative;
  margin: 50px 0 20px;
  overflow: hidden;
  z-index: 0;
}
@media (max-width: 460px) {
  .overview .images__group {
    margin: 30px 0 20px;
  }
}
.overview .images__group::after {
  content: "";
  background: rgba(4, 32, 30, 0.5215686275);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  clip-path: circle(25%);
  transition: all 1.25s ease;
}
.overview .images__group:hover {
  opacity: 1;
}
.overview .images__group:hover img {
  transform: scale(1.2);
}
.overview .images__group:hover::after {
  width: 100%;
  opacity: 1;
  clip-path: circle(100%);
}
.overview .images__group img {
  object-fit: cover;
  width: 100%;
  height: 22vw;
  object-position: top;
  transition: all 0.6s ease;
}
@media (max-width: 1024px) {
  .overview .images__group img {
    height: 26vw;
  }
}
@media (max-width: 460px) {
  .overview .images__group img {
    height: 50vw;
  }
}
.overview .images__group span {
  position: absolute;
  text-align: center;
  font-weight: 700;
  color: #FFFFFF;
  top: 0;
  opacity: 0;
  transition: all 1.25s ease;
  z-index: 1;
}
.overview .images__group:hover span {
  opacity: 1;
}
.overview .images h3 {
  text-transform: capitalize;
  margin-bottom: 10px;
  font-size: 22px;
  transition: all 0.3s ease;
}
@media (max-width: 460px) {
  .overview .images h3 {
    font-size: 16px;
    text-align: left;
  }
}
.overview .images h3:hover {
  opacity: 0.6;
}

/*********************************************************************************/
/*********************************** base ****************************************/
/*********************************************************************************/
.error-404 h1 {
  font-weight: 400 !important;
  font-size: 48px;
}
.error-404 .error-number {
  font-size: 12rem;
}
@media screen and (max-width: 700px) {
  .error-404 .error-number {
    font-size: 10rem;
  }
}
.error-404 .btn-find, .error-404 .btn-home {
  width: 265px;
  padding: 0.375rem 0;
  transition: box-shadow 0.3s ease-in-out;
  -webkit-transition: box-shadow 0.25s ease-in-out;
  -moz-transition: box-shadow 0.25s ease-in-out;
  -ms-transition: box-shadow 0.25s ease-in-out;
  -o-transition: box-shadow 0.25s ease-in-out;
  transition: box-shadow 0.25s ease-in-out;
}
.error-404 .btn-find:hover, .error-404 .btn-home:hover {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}
.error-404 .btn-find {
  color: #FFFFFF;
}

/* colours palette */
/* images */
/* breakpoints */
/*________font names_________*/
/*_______sizes_________*/
/*_______borders and boxes_________*/
/*_______break points_________*/
/*_______border radius_________*/
.loader {
  top: 11rem;
  font-size: 5px;
  margin: 50px auto;
  text-indent: -9999em;
  width: 11em;
  height: 11em;
  border-radius: 50%;
  background: #13546D;
  background: -moz-linear-gradient(left, #13546D 10%, rgba(19, 84, 109, 0) 42%);
  background: -webkit-linear-gradient(left, #13546D 10%, rgba(19, 84, 109, 0) 42%);
  background: -o-linear-gradient(left, #13546D 10%, rgba(19, 84, 109, 0) 42%);
  background: -ms-linear-gradient(left, #13546D 10%, rgba(19, 84, 109, 0) 42%);
  background: linear-gradient(to right, #13546D 10%, rgba(19, 84, 109, 0) 42%);
  position: relative;
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.loader:before {
  width: 50%;
  height: 50%;
  background: #13546D;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
.loader:after {
  background: #ffffff;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.home-page .hero {
  overflow: hidden;
  padding-top: 130px;
}
@media (max-width: 1024px) {
  .home-page .hero {
    padding-top: 0;
  }
}
.home-page .hero__container {
  width: 100%;
  position: relative;
}
.home-page .hero__container__content {
  padding: 0 80px;
  position: absolute;
  top: calc(25% - 120px);
  text-align: center;
  width: 60%;
}
@media (max-width: 1024px) {
  .home-page .hero__container__content {
    width: 100%;
  }
}
@media (max-width: 757px) {
  .home-page .hero__container__content {
    padding: 0 20px;
  }
}
@media (max-width: 460px) {
  .home-page .hero__container__content {
    top: 0;
  }
}
.home-page .hero__container__content p {
  text-transform: uppercase;
  color: #FFFFFF;
}
.home-page .hero__container__content h1, .home-page .hero__container__content p {
  font-family: "Nanum Myeongjo", times, serif;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: clamp(0px, 1vw, 3px);
  color: #FFFFFF;
  font-weight: 700;
}
@media (max-width: 757px) {
  .home-page .hero__container__content h1, .home-page .hero__container__content p {
    font-size: 18px;
  }
}
.home-page .hero__container__content h1 {
  margin: 40px 0 80px 0;
  transition: all 1s ease-in;
}
@media (max-width: 460px) {
  .home-page .hero__container__content h1 {
    margin: 40px 0 20px 0;
  }
}
.home-page .hero__container__content p {
  margin: 60px 0 40px 0;
  transition: all 1s ease-in;
}
@media (max-width: 460px) {
  .home-page .hero__container__content p {
    margin: 20px 0 0 0;
  }
}
.home-page .hero__container__content h2 {
  font-size: clamp(50px, 3.5vw, 100px);
  letter-spacing: clamp(0px, 1vw, 6px);
  color: #FFFFFF;
  margin: 0;
  transition: all 1s ease-in;
}
@media (max-width: 757px) {
  .home-page .hero__container__content h2 {
    font-size: 32px;
  }
}
@media (max-width: 460px) {
  .home-page .hero__container__content h2 {
    font-size: 32px;
  }
  .home-page .hero__container__content h2:first-of-type {
    margin-bottom: 60vh;
  }
}
@media (max-width: 1024px) {
  .home-page .hero__container__content {
    padding-top: 0;
  }
}
.home-page .hero__container img {
  width: 100%;
  position: absolute;
  transition: opacity 1s ease-in;
}
@media (max-width: 1024px) {
  .home-page .hero__container img {
    height: 90vh;
    object-fit: cover;
  }
  .home-page .hero__container img.hero-1 {
    object-position: center;
  }
  .home-page .hero__container img.hero-2 {
    object-position: 77%;
  }
}
.home-page .hero__container picture {
  position: relative;
  display: block;
  height: 100vh;
}
@media (max-width: 1024px) {
  .home-page .hero__container picture {
    height: 90vh;
  }
}
.home-page .hero__container.slide-1 .hero__container__content h1 {
  margin: 0 0 30vh 0;
  font-size: clamp(50px, 3.5vw, 100px);
}
.home-page .hero__container.slide-1 .hero__container__content h2 {
  font-size: 22px;
}
.home-page .hero__container.slide-1 .hero__container__content p {
  margin: 7vh 0 0 0;
}
.home-page .hero__container.slide-1 img.hero-1 {
  opacity: 1;
}
.home-page .hero__container.slide-1 img.hero-2, .home-page .hero__container.slide-1 img.hero-3 {
  opacity: 0;
  position: absolute;
}
@media (max-width: 460px) {
  .home-page .hero__container.slide-1 .hero__container__content p {
    margin: 7vh 0 0 0;
    font-size: 18px;
  }
  .home-page .hero__container.slide-1 .hero__container__content h1 {
    margin: 4vh 0 50vh 0;
    font-size: 22px;
  }
  .home-page .hero__container.slide-1 .hero__container__content h2 {
    margin: 0;
  }
}
.home-page .hero__container.slide-2 .hero__container__content h1 {
  margin: 8vh 0 14vh 0;
}
.home-page .hero__container.slide-2 .hero__container__content h2 {
  font-size: 22px;
}
.home-page .hero__container.slide-2 .hero__container__content p {
  font-size: clamp(50px, 3.5vw, 100px);
  margin: 12vh 0 0 0;
}
.home-page .hero__container.slide-2 img.hero-2 {
  opacity: 1;
}
.home-page .hero__container.slide-2 img.hero-1, .home-page .hero__container.slide-2 img.hero-3 {
  opacity: 0;
  position: absolute;
}
@media (max-width: 460px) {
  .home-page .hero__container.slide-2 .hero__container__content p {
    margin: 7vh 0 0 0;
    font-size: 18px;
  }
  .home-page .hero__container.slide-2 .hero__container__content h1 {
    margin: 4vh 0 50vh 0;
    font-size: 22px;
  }
  .home-page .hero__container.slide-2 .hero__container__content h2 {
    margin: 0;
  }
}
.home-page .hero__container.slide-3 .hero__container__content h1 {
  margin: 33vh 0 20px 0;
}
.home-page .hero__container.slide-3 .hero__container__content p {
  margin: 20px 0 0 0;
}
.home-page .hero__container.slide-3 img.hero-3 {
  opacity: 1;
}
.home-page .hero__container.slide-3 img.hero-1, .home-page .hero__container.slide-3 img.hero-2 {
  opacity: 0;
  position: absolute;
}
@media (max-width: 460px) {
  .home-page .hero__container.slide-3 .hero__container__content p {
    margin: 7vh 0 0 0;
    font-size: 18px;
  }
  .home-page .hero__container.slide-3 .hero__container__content h1 {
    margin: 4vh 0 50vh 0;
    font-size: 22px;
  }
  .home-page .hero__container.slide-3 .hero__container__content h2 {
    margin: 0;
    font-size: 22px;
  }
}

.title {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 15px;
  padding-top: 130px;
}
@media (max-width: 1024px) {
  .title {
    padding-top: 0;
  }
  .title h1 {
    margin: 0 0 25px;
  }
}
@media (max-width: 757px) {
  .title {
    grid-template-columns: 1fr;
  }
  .title h1 {
    color: #04201e;
    width: 100%;
  }
}
.title__header {
  position: relative;
}
.title__header__background {
  position: relative;
  letter-spacing: 0.22em;
  background-image: url(/images/smile.webp);
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
  background-position: center;
}
@media (max-width: 757px) {
  .title__header__background {
    height: unset;
  }
}
.title__header__background::after {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #333;
  opacity: 0.65;
  width: 100%;
}
.title__header__text {
  position: absolute;
  top: 0;
  padding: 120px;
}
@media (max-width: 1024px) {
  .title__header__text {
    padding: 0 20px;
  }
  .title__header__text.center {
    align-items: start;
  }
}
@media (max-width: 757px) {
  .title__header__text {
    padding: 25px 20px;
    position: unset;
    align-items: start;
  }
}
.title__header__text span {
  display: block;
  font-size: 24px;
}
@media (max-width: 757px) {
  .title__header__text span {
    margin: 20px 0;
    color: #333;
  }
  .title__header__text p {
    color: #333;
  }
}
.title__image img {
  width: 100%;
  height: calc(300px + 30vh);
  max-height: 620px;
  object-fit: cover;
  object-position: top;
}
@media (max-width: 757px) {
  .title__image img {
    height: 100%;
  }
}
@media (max-width: 460px) {
  .title__image img {
    height: 40vh;
  }
}
@media (max-width: 757px) {
  .title__image {
    grid-row: 1;
  }
}
.title__breadcrumbs ul {
  display: inline-flex;
  text-transform: uppercase;
  font-size: 12px;
  font-family: "Nanum Myeongjo", times, serif;
  flex-wrap: wrap;
  margin-bottom: 8px;
  letter-spacing: 3px;
}
@media (max-width: 757px) {
  .title__breadcrumbs a {
    color: #333;
  }
}
.title__breadcrumbs li {
  display: flex;
  padding-left: 0;
  margin-right: 20px;
  position: relative;
}
.title__breadcrumbs li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: auto;
  right: -10px;
  transform: translate3d(0, -50%, 0);
  width: 3px;
  height: 3px;
  border-radius: 100%;
  padding: 0;
  background: #FFFFFF;
  display: inline-block;
}
@media (max-width: 757px) {
  .title__breadcrumbs li:not(:last-child)::before {
    background: #333;
  }
}

.section-container {
  padding: 45px 0;
  margin: 0 auto;
  max-width: 1200px;
}
.section-container ul {
  list-style: unset;
}
.section-container ul li {
  padding: 8px;
}
.section-container ol li {
  padding: 8px;
}
@media (max-width: 757px) {
  .section-container {
    padding: 45px 0 0 0;
  }
}

.image-section-container {
  padding: 45px 0;
  margin: 0 auto;
  max-width: 1200px;
}
@media (max-width: 757px) {
  .image-section-container {
    padding: 45px 0 0 0;
  }
}

.simple-text {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
.simple-text h2 {
  margin: 0 0 15px 0;
  text-align: left;
}
.simple-text p {
  margin-bottom: 20px;
}
.simple-text ul {
  list-style: unset;
  margin-left: 20px;
}
.simple-text ul li {
  padding: 8px;
}
.simple-text ol li {
  padding: 8px;
}
.simple-text__center {
  max-width: 580px;
  margin: 0 auto;
}
@media (max-width: 757px) {
  .simple-text__center {
    padding: 0 20px;
  }
}
.simple-text__center p, .simple-text__center h3, .simple-text__center h4 {
  text-align: center;
}
.simple-text__center a {
  color: #04201e;
  font-weight: 700;
}
.simple-text a {
  color: #04201e;
  font-weight: 700;
}

.image-overlay {
  background-image: url(/images/complex.webp);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}
@media (max-width: 1024px) {
  .image-overlay {
    background-image: url(/images/complex-reverse.webp);
  }
}
.image-overlay #insuranceChecker {
  padding-top: 40px;
}
.image-overlay .insurance-checker {
  text-align: center;
}
.image-overlay .insurance-checker button, .image-overlay .insurance-checker .green-overlay a, .image-overlay .insurance-checker .green-overlay li {
  color: #04201e;
}
.image-overlay .insurance-checker button:hover, .image-overlay .insurance-checker .green-overlay a:hover, .image-overlay .insurance-checker .green-overlay li:hover {
  color: unset;
}
.image-overlay .insurance-checker a {
  color: #04201e;
  background: #FFFFFF;
  font-size: 15px;
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 14px 30px;
  text-decoration: none;
  text-align: center;
  font-weight: 300;
  line-height: 1;
  user-select: none;
  border-radius: 2px;
  outline: none !important;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0);
  text-transform: uppercase;
  letter-spacing: 4px;
  transition: all 0.6s ease;
}
.image-overlay .insurance-checker a:hover {
  color: #FFFFFF;
  background: transparent;
  border: 1px solid #FFFFFF;
}
.image-overlay .insurance-checker a:focus, .image-overlay .insurance-checker a:visited {
  opacity: 1;
}
.image-overlay #insuranceAcceptance {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.image-overlay #insuranceAcceptance button, .image-overlay #insuranceAcceptance .green-overlay a, .image-overlay #insuranceAcceptance .green-overlay li {
  color: #04201e;
}
.image-overlay #insuranceAcceptance button:hover, .image-overlay #insuranceAcceptance .green-overlay a:hover, .image-overlay #insuranceAcceptance .green-overlay li:hover {
  color: unset;
}

.dark-overlay {
  position: relative;
  background-image: url(/images/banner-gray.webp);
  background-position: center;
}
.dark-overlay h1, .dark-overlay h2, .dark-overlay h3, .dark-overlay h4, .dark-overlay p, .dark-overlay button, .dark-overlay a, .dark-overlay li {
  color: #FFFFFF;
}
.dark-overlay a {
  font-weight: 700;
}
.dark-overlay h3 {
  text-align: center;
}
.dark-overlay ul {
  list-style: unset;
}
.dark-overlay ul li {
  padding: 8px;
}
.dark-overlay ol li {
  padding: 8px;
}
.dark-overlay::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #333;
  opacity: 0.5;
}

.green-overlay {
  position: relative;
  background-image: url(/images/banner-green.webp);
  background-position: center;
}
.green-overlay h1, .green-overlay h2, .green-overlay h3, .green-overlay h4, .green-overlay p, .green-overlay button, .green-overlay a, .green-overlay li {
  color: #FFFFFF;
}
.green-overlay a {
  font-weight: 700;
}
.green-overlay h3 {
  text-align: center;
}
.green-overlay ul {
  list-style: unset;
}
.green-overlay ul li {
  padding: 8px;
}
.green-overlay ol li {
  padding: 8px;
}
.green-overlay::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #10302a;
  opacity: 0.85;
}

.content-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.content-overlay ul {
  list-style: unset;
}
.content-overlay ul li {
  padding: 8px;
}
.content-overlay ol li {
  padding: 8px;
}
.content-overlay h1, .content-overlay h2, .content-overlay h3, .content-overlay h4, .content-overlay p, .content-overlay button, .content-overlay a {
  position: relative;
}

.color-overlay {
  position: relative;
}
.color-overlay::before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #10302a;
  opacity: 0.85;
}

.text-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
@media (max-width: 757px) {
  .text-image {
    grid-template-columns: 1fr;
  }
  .text-image picture {
    grid-row: 1;
  }
  .text-image h2 {
    margin: 15px auto 20px;
  }
}
.text-image img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
}
@media (max-width: 757px) {
  .text-image img {
    padding: 20px;
    height: 80vw;
  }
}
@media (max-width: 460px) {
  .text-image img {
    height: 100%;
    max-height: 60vh;
  }
}
.text-image ul {
  list-style: unset;
}
.text-image ul li {
  padding: 8px;
}
.text-image ol li {
  padding: 8px;
}
.text-image__content {
  display: flex;
  justify-content: center;
  align-items: start;
  width: 100%;
  padding: 0 60px;
  flex-direction: column;
  letter-spacing: 0.8px;
}
@media (max-width: 757px) {
  .text-image__content {
    padding: 0 20px;
  }
}
.text-image a {
  color: #04201e;
}

.image-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
@media (max-width: 757px) {
  .image-text {
    grid-template-columns: 1fr;
  }
}
.image-text img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
}
@media (max-width: 757px) {
  .image-text img {
    padding: 20px;
    height: 80vw;
  }
}
@media (max-width: 460px) {
  .image-text img {
    height: 100%;
    max-height: 60vh;
  }
}
.image-text ul {
  list-style: unset;
}
.image-text ul li {
  padding: 8px;
}
.image-text ol li {
  padding: 8px;
}
.image-text a {
  color: #04201e;
}

.small-image-text {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
}
@media (max-width: 757px) {
  .small-image-text {
    grid-template-columns: 1fr;
  }
}
.small-image-text-reverse {
  display: grid;
  align-items: center;
  grid-template-columns: 2fr 1fr;
}
@media (max-width: 757px) {
  .small-image-text-reverse {
    grid-template-columns: 1fr;
  }
  .small-image-text-reverse picture {
    grid-row: 1;
  }
}
.small-image-text-reverse img {
  width: 100%;
  min-height: 300px;
  max-height: 500px;
  object-fit: cover;
}
@media (max-width: 757px) {
  .small-image-text-reverse img {
    padding: 20px;
    height: 80vw;
  }
}
@media (max-width: 460px) {
  .small-image-text-reverse img {
    height: 100%;
    max-height: 60vh;
  }
}
.small-image-text-reverse h2 {
  text-align: left;
}
.small-image-text-reverse h2 a {
  font-weight: 400;
}
.small-image-text-reverse ul {
  list-style: unset;
}
.small-image-text-reverse ul li {
  padding: 8px;
}
@media (max-width: 757px) {
  .small-image-text-reverse ul li {
    margin-left: 20px;
  }
}
.small-image-text-reverse a {
  color: #04201e;
  font-weight: 700;
}
.small-image-text-reverse ol li {
  padding: 8px;
}
@media (max-width: 757px) {
  .small-image-text-reverse ol li {
    margin-left: 20px;
  }
}
.small-image-text img {
  width: 100%;
  min-height: 300px;
  max-height: 500px;
  object-fit: cover;
}
@media (max-width: 757px) {
  .small-image-text img {
    padding: 20px;
    height: 80vw;
  }
}
@media (max-width: 460px) {
  .small-image-text img {
    height: 100%;
    max-height: 60vh;
  }
}
.small-image-text h2 {
  text-align: left;
}
.small-image-text h2 a {
  font-weight: 400;
}
.small-image-text ul {
  list-style: unset;
}
.small-image-text ul li {
  padding: 8px;
}
@media (max-width: 757px) {
  .small-image-text ul li {
    margin-left: 20px;
  }
}
.small-image-text ol li {
  padding: 8px;
}
@media (max-width: 757px) {
  .small-image-text ol li {
    margin-left: 20px;
  }
}
.small-image-text a {
  color: #04201e;
  font-weight: 700;
}

.cards__two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}
@media (max-width: 757px) {
  .cards__two {
    grid-template-columns: 1fr;
  }
}
.cards__one {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 30px;
}
.cards__one ul {
  list-style: unset;
}
.cards__one ul li {
  padding: 8px;
}
.cards__one ol li {
  padding: 8px;
}
.cards .single-card {
  background-color: #f8f8f8;
  padding: 60px;
  border-radius: 2px;
}
.cards .single-card:nth-last-child(1):nth-child(odd) {
  width: calc(200% + 30px);
}
@media (max-width: 757px) {
  .cards .single-card:nth-last-child(1):nth-child(odd) {
    width: unset;
  }
}
@media (max-width: 757px) {
  .cards .single-card {
    padding: 20px;
    margin: 0 20px;
  }
}
.cards h3 {
  text-align: center;
  text-transform: unset;
  font-weight: 700;
  font-size: 22px;
}
.cards a {
  color: #04201e;
}

.complex {
  width: 100%;
  padding: 45px 0;
  margin: 0 auto;
}
.complex ul {
  list-style: unset;
}
@media (max-width: 757px) {
  .complex ul {
    margin: 0 0 20px 20px;
  }
}
.complex ul li {
  padding: 8px;
}
.complex ol li {
  padding: 8px;
}
.complex__content {
  padding: 80px 20px;
}
@media (max-width: 757px) {
  .complex__content {
    padding: 40px 0;
  }
}
.complex__content .cards .single-card {
  background-color: rgba(255, 255, 255, 0.87);
}
.complex .section-container {
  padding: 15px;
}
@media (max-width: 757px) {
  .complex .section-container {
    padding: 0;
  }
}

.dark-banner {
  width: 100%;
  margin: 45px 0;
}
.dark-banner ul {
  list-style: unset;
}
@media (max-width: 1450px) {
  .dark-banner ul {
    margin-left: 20px;
  }
}
.dark-banner ul li {
  padding: 8px;
}
.dark-banner ol li {
  padding: 8px;
}
.dark-banner__content {
  padding: calc(60px + 2.5%) 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 757px) {
  .dark-banner__content {
    padding: 45px 20px;
  }
}
.dark-banner__content__text {
  width: 100%;
  margin: 0 auto;
}
.dark-banner__content__text__narrow {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 757px) {
  .dark-banner__content__text__narrow {
    width: 100%;
  }
}

.green-banner {
  width: 100%;
  margin: 45px 0;
}
.green-banner ul {
  list-style: unset;
}
.green-banner ul li {
  padding: 8px;
}
.green-banner ol li {
  padding: 8px;
}
.green-banner__content {
  padding: calc(60px + 2.5%) 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.green-banner__content__text {
  width: 100%;
  margin: 0 auto;
}
.green-banner__content__text__narrow {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 757px) {
  .green-banner__content__text__narrow {
    width: 100%;
  }
}
@media (max-width: 757px) {
  .green-banner__content__text__narrow ul {
    margin-left: 20px;
  }
}

/*********************************************************************************/
/*********************************** header **************************************/
/*********************************************************************************/
header.header {
  border-bottom: 0;
  background: #FFFFFF;
  position: fixed;
  top: 0;
  z-index: 1;
  width: 100%;
}
@media (max-width: 1024px) {
  header.header {
    position: sticky;
  }
}
header.header a {
  color: #333;
  font-size: 18px;
  font-family: "Martel Sans", Arial, sans-serif;
  font-weight: 700;
}
header.header span {
  font-weight: 400;
}
header.header h1,
header.header h2,
header.header h3,
header.header h4,
header.header h5,
header.header h6,
header.header p {
  margin-top: 0;
}
header.header a {
  color: inherit;
}
header.header #menu ul {
  display: none;
  transition: all 0.3s ease;
}
header.header #menu ul.active {
  display: block;
}
header.header #menu a.after-icon.active:after {
  transform: rotateZ(180deg);
}
header.header .header__container {
  width: 100%;
  padding: 40px 20px;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  header.header .header__container {
    padding: 16px 20px;
    box-shadow: 0 0 15px -4px rgba(20, 20, 20, 0.4);
  }
}
header.header .header__nav {
  align-items: center;
  vertical-align: top;
  max-width: 1420px;
  display: grid;
  grid-template-columns: 300px 3fr 1fr;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  header.header .header__nav {
    grid-template-columns: auto 1fr;
  }
}
@media (max-width: 359px) {
  header.header .header__nav a span, header.header .header__nav a div {
    display: none;
  }
}
header.header .header__contacts {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.header .header__contacts .social-media-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.header .header__contacts .social-media-buttons .fa-stack {
  display: flex;
  align-items: center;
  margin: 3px;
}
header.header .header__contacts .social-media-buttons i {
  font-size: 20px;
}
@media (max-width: 1024px) {
  header.header .header__contacts.desktop-only {
    display: none;
  }
}
header.header .header__menu {
  display: flex;
  justify-content: end;
}
@media (max-width: 757px) {
  header.header .header__menu__link {
    display: none;
  }
}
header.header .header__menu__burger {
  position: relative;
  display: block;
  width: 40px;
  height: 20px;
  margin: 0 20px;
  cursor: pointer;
  z-index: 1;
}
@media (max-width: 460px) {
  header.header .header__menu__burger {
    margin-right: 0;
  }
}
header.header .header__menu__burger::before, header.header .header__menu__burger::after {
  content: "";
  height: 2px;
  position: absolute;
  width: 100%;
  left: 0;
  background-color: #04201e;
  transition: all 0.3s ease;
}
header.header .header__menu__burger::before {
  top: 4px;
}
header.header .header__menu__burger::after {
  bottom: 2px;
}
header.header .header__menu__burger.close-menu::before {
  transform: translateY(6px) rotateZ(45deg);
}
header.header .header__menu__burger.close-menu::after {
  transform: translateY(-6px) rotateZ(-45deg);
}
header.header .header__menu__list {
  background: #E5E5E5;
  position: fixed;
  top: 0;
  right: 0;
  padding: 140px 20px 30px;
  box-shadow: 0 10px 20px rgba(20, 20, 20, 0.15);
  height: 100vh;
  width: 430px;
  transform: translateX(430px);
  transition: all 0.3s ease;
}
@media (max-width: 757px) {
  header.header .header__menu__list {
    width: 100vw;
    transform: translateX(100vw);
  }
}
header.header .header__menu__list.menu-open {
  transform: translateX(0px);
  overflow-x: hidden;
}
header.header .header__menu__list.menu-open ul {
  padding-left: 20px;
}
@media (max-width: 757px) {
  header.header .header__menu__list.menu-open {
    transform: translateX(0vw);
  }
}
header.header .header__menu__list a {
  padding: 7px 20px 7px 0px;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  display: block;
  color: black;
  line-height: 1.6;
  width: 100%;
}
header.header .header__menu__list a.after-icon::after {
  background-image: url(/images/arrow.svg);
  height: 8px;
  width: 16px;
  top: 35%;
  left: calc(100% - 12px);
  transition: all 0.3s ease;
}
header.header .header__menu__list .header__contacts {
  flex-direction: column;
  margin-top: 40px;
}
header.header .header__menu__list .header__contacts a {
  padding: 0;
  font-family: "Nanum Myeongjo", times, serif;
  font-size: 14px;
}
header.header .header__menu__list .header__contacts .social-media-buttons {
  margin-bottom: 15px;
}
header.header .header__menu__list .header__contacts .social-media-buttons i {
  color: #FFFFFF;
  font-size: 14px;
  padding: 4px;
  background: black;
  width: 24px;
}
header.header .header__menu__list .header__contacts__phone {
  padding: 16px 13px;
}
header.header .header__link.phone {
  padding-left: 25px;
  padding-top: 4px;
  background-image: url(/images/phonehome.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 16px;
}
@media (max-width: 1013px) {
  header.header .header__link.phone {
    margin-right: 40px;
  }
}
@media (max-width: 757px) {
  header.header .header__link.phone {
    display: none;
  }
}
header.header .header__logo {
  position: relative;
  font-size: 32px;
  font-family: "Nanum Myeongjo", times, serif;
  line-height: 1.2;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  header.header .header__logo {
    font-size: 18px;
  }
}
header.header .header__logo span:last-of-type {
  color: #acacac;
}
header.header .header__logo div {
  font-family: "Martel Sans", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: clamp(0px, 1vw, 8.88px);
}
@media (max-width: 1024px) {
  header.header .header__logo div {
    font-size: 6px;
    letter-spacing: 4.99px;
  }
}
header.header .header__logo img {
  height: 42px;
  position: absolute;
  top: 5px;
  left: 100%;
}
@media (max-width: 1024px) {
  header.header .header__logo img {
    height: 24px;
    top: 3px;
  }
}
@media (max-width: 359px) {
  header.header .header__logo img {
    position: static;
  }
}
header.header.narrow .header__container {
  padding: 12px 20px;
  box-shadow: 0 0 15px -4px rgba(20, 20, 20, 0.4);
}
@media (max-width: 1024px) {
  header.header.narrow .header__container {
    padding: 16px 20px;
  }
}

/*********************************************************************************/
/*********************************** footer **************************************/
/*********************************************************************************/
.footer {
  width: 100%;
  bottom: 0;
  text-align: center;
}
.footer a:hover, .footer a:active, .footer a:focus {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 1024px) {
  .footer-links {
    display: none;
  }
}
.footer-links ul {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  color: #04201e;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
}
.footer-links ul a {
  font-weight: 700;
  color: #04201e;
}
.footer-links ul a:hover {
  opacity: 1;
}
.footer p {
  font-size: 12px;
  margin: 0;
}
.footer__overlay {
  position: absolute;
  height: 100%;
  opacity: 0.4;
}
.footer__overlay img {
  height: 100%;
}
.footer-banner {
  background: #04201e;
}
.footer-banner__content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  align-items: center;
  padding: 100px 40px;
  color: #FFFFFF;
}
@media (max-width: 1450px) {
  .footer-banner__content {
    grid-template-columns: 150px 1fr 200px;
  }
}
@media (max-width: 1024px) {
  .footer-banner__content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
@media (max-width: 460px) {
  .footer-banner__content {
    padding: 100px 20px;
  }
}
.footer-banner__content a {
  color: #FFFFFF;
}
.footer-banner__content .social-media-buttons, .footer-banner__content .review {
  display: flex;
  align-items: center;
}
.footer-banner__content .social-media-buttons .fa-stack, .footer-banner__content .review .fa-stack {
  display: flex;
  align-items: center;
}
.footer-banner__content i {
  font-size: 20px;
}
.footer-banner__content .phone {
  padding-left: 25px;
  padding-top: 4px;
  background-image: url(/images/phonehome-white.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 16px;
}
.footer-banner__content .social {
  display: flex;
  flex-direction: column;
  row-gap: 80px;
}
@media (max-width: 1024px) {
  .footer-banner__content .social {
    align-items: center;
    row-gap: 0;
  }
}
.footer-banner__content .review {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 11px;
  line-height: 1.4;
  position: relative;
}
.footer-banner__content .review span:first-of-type {
  margin-right: 10px;
  white-space: nowrap;
}
.footer-banner__content .review .stars {
  display: flex;
  top: -1px;
  position: relative;
}
.footer-banner__content .review .stars .fa-stack {
  margin: 1px;
}
.footer-banner__content .review .stars i {
  font-size: 12px;
}
.footer-banner__content .review:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 200px;
  bottom: -40px;
  left: 0;
  background-color: #fff;
  opacity: 0.5;
}
@media (max-width: 1024px) {
  .footer-banner__content .review:after {
    display: none;
  }
}
.footer-banner__content .contacts {
  display: flex;
  flex-direction: column;
  row-gap: 80px;
  text-align: left;
}
@media (max-width: 1024px) {
  .footer-banner__content .contacts {
    align-items: center;
    row-gap: 0;
  }
}
@media (max-width: 757px) {
  .footer-banner__content .contacts {
    text-align: center;
  }
}
.footer-banner__content .contacts .phone {
  position: relative;
  display: block;
}
.footer-banner__content .contacts .phone:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 200px;
  bottom: -40px;
  left: 0;
  background-color: #fff;
  opacity: 0.5;
}
@media (max-width: 1024px) {
  .footer-banner__content .contacts .phone:after {
    display: none;
  }
}
.footer-banner__content .contacts .address {
  font-size: 16px;
}
.footer .footer-container {
  padding: 40px 20px;
}
.footer__logo {
  position: relative;
  font-size: 38px;
  font-weight: 400;
  font-family: "Nanum Myeongjo", times, serif;
  text-align: left;
  line-height: 1.3;
  margin: 0 auto;
}
@media (max-width: 757px) {
  .footer__logo {
    grid-row: 1;
    font-size: 28px;
  }
}
@media (max-width: 460px) {
  .footer__logo {
    font-size: 18px;
  }
}
@media (max-width: 359px) {
  .footer__logo a span, .footer__logo a div {
    display: none;
  }
}
.footer__logo a img {
  height: 52px;
  position: absolute;
  left: 100%;
  top: 8px;
}
@media (max-width: 757px) {
  .footer__logo a img {
    height: 39px;
    top: 6px;
  }
}
@media (max-width: 460px) {
  .footer__logo a img {
    height: 24px;
    top: 3px;
  }
}
@media (max-width: 359px) {
  .footer__logo a img {
    position: static;
  }
}
.footer__logo div {
  font-size: 12px;
  font-family: "Martel Sans", Arial, sans-serif;
  letter-spacing: clamp(0px, 1vw, 10.5px);
}
@media (max-width: 1024px) {
  .footer__logo div {
    letter-spacing: 10.5px;
  }
}
@media (max-width: 757px) {
  .footer__logo div {
    font-size: 9px;
    letter-spacing: 7.8px;
  }
}
@media (max-width: 460px) {
  .footer__logo div {
    font-size: 6px;
    letter-spacing: 5px;
  }
}
.footer__logo img {
  height: 32px;
}
.footer h2 {
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.2em;
  color: #04201e;
  font-size: clamp(50px, 3.5vw, 120px);
}
@media (max-width: 757px) {
  .footer h2 {
    font-size: 42px;
  }
}
@media (max-width: 757px) {
  .footer h2 {
    font-size: 32px;
  }
}
.footer__copyright {
  display: grid;
  align-items: center;
  padding: 30px 20px;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  font-size: 12px;
  letter-spacing: 1px;
  color: #222;
}
@media (max-width: 757px) {
  .footer__copyright {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.footer__copyright a:first-of-type {
  font-weight: 700;
  text-transform: capitalize;
  color: #222;
}
.footer__copyright img {
  height: 44px;
}
.footer__disclosure {
  padding: 40px 20px;
  background: #FFFFFF;
}
.footer__disclosure p {
  max-width: 900px;
  margin: auto;
}
.footer__disclosure a {
  color: #333;
  font-weight: 400;
  transition: none;
}
.footer__disclosure a:hover, .footer__disclosure a:visited, .footer__disclosure a:active, .footer__disclosure a:focus {
  opacity: 1;
}
@media (max-width: 757px) {
  .footer__disclosure {
    padding-bottom: 80px;
  }
}
.footer__sticky-button {
  padding-bottom: 0;
  position: fixed;
  bottom: 0;
  right: 0;
  transition: all 400ms cubic-bezier(0.61, 0.24, 0.41, 0.87);
  z-index: 1;
}
@media (max-width: 757px) {
  .footer__sticky-button {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    box-shadow: 0 0 12px rgba(20, 20, 20, 0.25);
  }
}
.footer__sticky-button a {
  display: table;
  padding: 15px 38px 11px;
  font-size: 16px;
  background: #04201e;
  color: #FFFFFF;
  font-weight: 500;
  margin-left: auto;
  text-transform: uppercase;
  line-height: 1.2;
  border-top-left-radius: 4px;
  position: relative;
  letter-spacing: 0.5px;
  opacity: 1;
  cursor: pointer;
  white-space: nowrap;
}
.footer__sticky-button a:hover, .footer__sticky-button a:active, .footer__sticky-button a:focus {
  cursor: pointer;
  text-decoration: none;
  color: #FFFFFF;
}
.footer__sticky-button a.phone, .footer__sticky-button a.text {
  position: relative;
  color: #04201e;
  background: #ddd;
  display: none;
}
@media (max-width: 757px) {
  .footer__sticky-button a.phone, .footer__sticky-button a.text {
    display: flex;
    justify-content: center;
  }
}
.footer__sticky-button a.phone span, .footer__sticky-button a.text span {
  position: relative;
}
.footer__sticky-button a.phone span::before, .footer__sticky-button a.text span::before {
  content: "";
  position: absolute;
  background-image: url(/images/phonehome.svg);
  height: 24px;
  background-repeat: no-repeat;
  width: 24px;
  background-size: cover;
  left: -32px;
  bottom: -1px;
}
.footer__sticky-button a.text span::before {
  background-image: url(/images/text.svg);
}
@media (max-width: 757px) {
  .footer__sticky-button a {
    width: 100%;
    border-radius: 0;
    padding: 15px 0px 11px;
  }
}
@media (max-width: 359px) {
  .footer__sticky-button span {
    display: none;
  }
  .footer__sticky-button .text span {
    display: block;
  }
}

.iframe {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  align-items: center;
  justify-content: center;
  background: rgba(4, 32, 30, 0.5);
  z-index: 1;
  display: none;
}
.iframe.before-icon::before {
  background-image: url(/images/close-white.svg);
  height: 24px;
  left: calc(100% - 40px);
  top: 16px;
  cursor: pointer;
}
@media (max-width: 460px) {
  .iframe.before-icon::before {
    top: 20px;
  }
}
.iframe iframe {
  height: 442px;
  width: 612px;
  position: fixed;
  border: none;
}
.iframe iframe #document html {
  background: #F0F6F8;
}
@media (max-width: 757px) {
  .iframe iframe {
    top: 60px;
    height: calc(100vh - 60px);
    width: 100%;
  }
}
.iframe iframe::-webkit-scrollbar,
.iframe iframe::-webkit-scrollbar-thumb {
  width: 0.9vw;
  border-radius: 1vw;
  background-clip: padding-box;
  border: 4px solid transparent;
  color: #9B9B9B;
}
.iframe iframe::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 0 10px;
}
.iframe.visible {
  display: flex;
}

.ad .text-container {
  padding: 80px 20px;
}
.ad header.header .header__logo {
  line-height: unset;
  display: flex;
  align-items: center;
  min-width: 255px;
}
.ad header.header .header__logo img {
  position: relative;
  left: unset;
  height: 25px;
  top: -3px;
}
@media (max-width: 1024px) {
  .ad header.header .header__logo img {
    height: 14px;
    top: -2px;
  }
}
.ad .footer__logo {
  display: flex;
  align-items: center;
  min-width: 255px;
}
.ad .footer__logo img {
  height: 30px;
  position: relative;
  line-height: unset;
  top: -3px;
}
@media (max-width: 1024px) {
  .ad .footer__logo img {
    height: 29px;
    top: -3px;
  }
}
@media (max-width: 757px) {
  .ad .footer__logo img {
    height: 22px;
    top: -3px;
  }
}
@media (max-width: 460px) {
  .ad .footer__logo img {
    height: 14px;
    top: -2px;
  }
}
@media (max-width: 1024px) {
  .ad .address {
    text-align: center;
  }
}
.ad .footer__link.address {
  padding-left: 18px;
  background-image: url(/images/location-pin.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 22px;
}
.ad .footer__copyright {
  grid-template-columns: 1fr;
}
@media (max-width: 757px) {
  .ad .footer__copyright {
    padding-bottom: 80px;
  }
}
.ad .insurance-checker {
  text-align: center;
}
.ad .insurance-checker button, .ad .insurance-checker .green-overlay a, .ad .insurance-checker .green-overlay li {
  color: #04201e;
}
.ad .insurance-checker button:hover, .ad .insurance-checker .green-overlay a:hover, .ad .insurance-checker .green-overlay li:hover {
  color: unset;
}
.ad .insurance-checker a {
  color: #04201e;
  background: #FFFFFF;
  font-size: 15px;
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 14px 30px;
  text-decoration: none;
  text-align: center;
  font-weight: 300;
  line-height: 1;
  user-select: none;
  border-radius: 2px;
  outline: none !important;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0);
  text-transform: uppercase;
  letter-spacing: 4px;
  transition: all 0.6s ease;
}
.ad .insurance-checker a:hover {
  color: #FFFFFF;
  background: transparent;
  border: 1px solid #FFFFFF;
}
.ad .insurance-checker a:focus, .ad .insurance-checker a:visited {
  opacity: 1;
}
.ad #insuranceAcceptance {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.ad #insuranceAcceptance button, .ad #insuranceAcceptance .green-overlay a, .ad #insuranceAcceptance .green-overlay li {
  color: #04201e;
}
.ad #insuranceAcceptance button:hover, .ad #insuranceAcceptance .green-overlay a:hover, .ad #insuranceAcceptance .green-overlay li:hover {
  color: unset;
}
.ad .service h2 {
  margin-top: 20px;
  padding: 0 20px;
}
@media (max-width: 757px) {
  .ad .service h2 {
    padding: 40px 20px 0;
  }
}
.ad .error {
  color: red;
  margin-top: 8px;
}
.ad .contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
@media (max-width: 757px) {
  .ad .contact-info {
    grid-template-columns: 1fr;
  }
}
.ad .contact-info input {
  outline: none;
  padding: 8px;
  border: 1px solid #9b9b9b;
  width: 100%;
}
.ad .community-block__top .comment__input__container {
  margin-top: 16px;
}
.ad .community-block {
  padding-top: 80px;
  margin-top: 0;
}
@media (max-width: 757px) {
  .ad .two-columns__content span {
    display: none;
  }
}
.ad #insuranceChecker {
  padding-top: 40px;
}
@media (max-width: 757px) {
  .ad .content-text {
    text-align: center;
  }
}
.ad .two-columns a::before {
  height: 0;
}
@media (max-width: 1024px) {
  .ad .two-columns {
    padding: 0 0 40px 0;
  }
}
.ad .two-columns__content {
  padding: 0 80px 0 80px;
}
@media (max-width: 1024px) {
  .ad .two-columns__content {
    padding: 0 20px 0 20px;
  }
}
@media (max-width: 757px) {
  .ad .two-columns__content {
    padding: 40px 20px 0 20px;
  }
}
.ad .two-columns__content.banner {
  padding: 100px 80px 0 80px;
}
@media (max-width: 757px) {
  .ad .two-columns__content.banner {
    padding: 0px 20px 0 20px;
  }
}
.ad .faqs {
  position: relative;
  display: grid;
  grid-template-columns: 350px auto;
  align-items: start;
}
.ad .faqs h3 {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 20px;
  text-transform: none;
}
.ad .faqs p {
  font-size: 16px;
}
.ad .faqs a {
  color: #04201e;
  font-weight: 700;
}
.ad .faqs__title__and__questions {
  padding-right: 20px;
  position: sticky;
  top: 80px;
  width: 350px;
  text-align: left;
}
.ad .faqs__title__and__questions h2 {
  text-align: left;
}
.ad .faqs__title__and__questions p {
  font-weight: 700;
  cursor: pointer;
  line-height: 1.4;
  margin-top: 16px;
}
.ad .faqs__questions__answers {
  margin-bottom: 240px;
  padding: 0 0 20px 50px;
  text-align: left;
  border-left: 1px solid #E5E5E5;
}
.ad .faqs__questions__answers .faqs__question__answer {
  padding-top: 84px;
}
@media (max-width: 757px) {
  .ad .faqs {
    display: block;
  }
  .ad .faqs__title__and__questions {
    position: static;
    width: 100%;
  }
  .ad .faqs__title__and__questions h2 {
    text-align: center;
  }
  .ad .faqs.text-container {
    padding: 60px 20px 20px 20px;
  }
  .ad .faqs__questions {
    display: none;
  }
  .ad .faqs__question {
    pointer-events: none;
  }
  .ad .faqs__questions__answers {
    border: none;
    padding: 0;
    margin-bottom: 0;
  }
  .ad .faqs__questions__answers .faqs__question__answer {
    padding: 20px;
    border: 1px solid #E5E5E5;
    margin-bottom: 16px;
    transition: background-color 0.6s ease-in-out;
    cursor: pointer;
  }
  .ad .faqs__questions__answers .faqs__question__answer:hover {
    background-color: #E5E5E5;
  }
  .ad .faqs__questions__answers .faqs__question__answer p:hover {
    cursor: text;
  }
  .ad .faqs .inactive p {
    display: none;
  }
  .ad .faqs .inactive h3 {
    margin-bottom: 0;
  }
}
@media (max-width: 460px) {
  .ad .faqs h3 {
    font-size: 18px;
    text-align: left;
  }
}
.ad a.stars {
  margin-top: 0;
  display: flex;
}
@media (max-width: 757px) {
  .ad a.stars {
    margin-top: 20px;
  }
}
.ad a.stars span {
  display: flex;
}
.ad a.stars span.text {
  font-size: 18px;
}
.ad a.stars span.stars {
  color: #fcbf02;
}
.ad a.stars .star-group {
  font-size: 11px;
  padding-right: 8px;
  padding-left: 8px;
}
.ad .map .hours {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.ad .map .map-container {
  width: 100%;
  height: 800px;
  overflow: hidden;
  object-fit: cover;
}
@media (max-width: 757px) {
  .ad .map .map-container {
    height: 100vh;
  }
}
.ad .map a {
  margin-top: 0;
}
.ad .map h4 {
  margin-top: 20px;
}
.ad ul {
  padding: 0 20px;
}
.ad .contact.phone.phone-button {
  padding-left: 25px;
  padding-top: 4px;
  background-image: url(/images/phonehome.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 16px;
}
.ad .work .images__group img {
  height: unset;
}

.swal2-container #swal2-select {
  border: 1px solid #04201e;
  border-radius: 2px;
  cursor: pointer;
}
.swal2-container #swal2-select option:hover {
  cursor: pointer;
}
.swal2-container #swal2-html-container {
  overflow-x: hidden;
}
.swal2-container .popup-text {
  transition: height 0.6s ease-in-out;
}
.swal2-container .popup-text.initial-popup .popup-title {
  margin: 0 0 20px 0;
  padding: 0;
}
.swal2-container a.phone-button {
  color: #04201e;
}
.swal2-container .popup-footer-link a.phone-button {
  color: #1f74b6;
}
.swal2-container .popup-button {
  line-height: 1.5;
}
.swal2-container .popup-button-deny {
  color: #04201e;
  background: #FFFFFF;
  border: 1px solid #04201e;
  line-height: 1.5;
}
.swal2-container .popup-button-cancel {
  line-height: 1.5;
  width: 100%;
  border: 1px solid;
}
.swal2-container a.popup-footer-link {
  color: #1f74b6;
  opacity: 1;
  font-size: 24px;
}
@media (max-width: 460px) {
  .swal2-container a.popup-footer-link {
    font-size: 18px;
  }
}
.swal2-container #swal-input1, .swal2-container #swal-input2 {
  height: unset;
  margin-right: 16px;
}
.swal2-container .submit-button {
  background: #04201e;
}
.swal2-container .submit-button:hover {
  background: #04201e;
}
.swal2-container .swal-field {
  text-align: left;
}
.swal2-container .swal-field .date-time {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}
@media (max-width: 359px) {
  .swal2-container .swal-field .date-time {
    grid-template-columns: 1fr;
  }
}
.swal2-container .swal-field .swal2-input {
  margin: 0;
  width: 100%;
  color: #545454;
}
.swal2-container .swal-field select {
  box-sizing: border-box;
  width: auto;
  transition: border-color 0.1s, box-shadow 0.1s;
  border: 1px solid #d9d9d9;
  border-radius: 0.1875em;
  background: rgba(0, 0, 0, 0);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06), 0 0 0 3px rgba(0, 0, 0, 0);
  color: inherit;
  font-size: 1.125em;
  cursor: pointer;
}
.swal2-container .swal-field label {
  margin-top: 18px;
}
.swal2-container .name-field {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}
@media (max-width: 460px) {
  .swal2-container .name-field {
    grid-template-columns: 1fr;
  }
}
.swal2-container .name-field .swal2-input {
  margin-left: 0;
  width: 100%;
}
.swal2-container .treatment-field {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 20px;
}
.swal2-container .treatment-field .swal2-input {
  margin-left: 0;
  margin-top: 18px;
  width: 100%;
}
.swal2-container .treatment-field select {
  box-sizing: border-box;
  width: auto;
  transition: border-color 0.1s, box-shadow 0.1s;
  border: 1px solid #d9d9d9;
  border-radius: 0.1875em;
  background: rgba(0, 0, 0, 0);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06), 0 0 0 3px rgba(0, 0, 0, 0);
  color: inherit;
  font-size: 1.125em;
  cursor: pointer;
}
.swal2-container .dob-field {
  display: flex;
  align-items: end;
  gap: 10px;
}
.swal2-container .dob-field label {
  width: 50%;
}
.swal2-container .dob-field .swal2-input {
  margin-top: 18px;
  flex-grow: 1;
}
.swal2-container .insurance-field {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 460px) {
  .swal2-container .insurance-field {
    grid-template-columns: 1fr;
  }
}
.swal2-container .swal-radio {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.swal2-container .swal-radio input {
  margin: 0;
  height: unset;
  cursor: pointer;
}
.swal2-container .swal-radio label {
  cursor: pointer;
}
.swal2-container .hidden-input {
  display: none !important;
}
.swal2-container .swal2-radio {
  display: unset !important;
}
@media (max-width: 460px) {
  .swal2-container .swal2-radio {
    font-size: 0.8rem;
  }
}
.swal2-container .swal2-radio label, .swal2-container .swal2-radio input {
  cursor: pointer;
}
.swal2-container .swal2-radio label:not(:first-of-type), .swal2-container .swal2-radio input:not(:first-of-type) {
  margin-top: 20px;
}

.patient-reviews .reviews {
  column-count: 2;
  flex-wrap: wrap;
  padding: 30px 0;
}
.patient-reviews .reviews a {
  transition: none;
  color: #333;
}
.patient-reviews .reviews a:hover, .patient-reviews .reviews a:visited, .patient-reviews .reviews a:active, .patient-reviews .reviews a:focus {
  text-decoration: none;
  opacity: 1;
}
.patient-reviews .reviews .review {
  padding: 0 20px;
  margin-bottom: 60px;
  position: relative;
}
.patient-reviews .reviews .review::after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: -30px;
  width: calc(100% - 40px);
  border-top: 1px solid #ddd;
}
@media (max-width: 757px) {
  .patient-reviews .reviews .review {
    width: 100%;
  }
}
.patient-reviews .reviews .review .author {
  font-size: 12px;
}
@media (max-width: 757px) {
  .patient-reviews .reviews {
    column-count: 1;
  }
}

.community-block {
  width: 100%;
  margin: 60px auto 60px;
  max-width: 1320px;
  padding: 40px 20px;
}
@media (max-width: 757px) {
  .community-block {
    border-radius: 0;
    padding: 0;
  }
}
.community-block__title {
  font-size: 32px;
  text-align: center;
  font-family: "Nanum Myeongjo", times, serif;
  margin-bottom: 12px;
  text-transform: uppercase;
}
@media (max-width: 757px) {
  .community-block__title {
    font-size: 24px;
  }
}
.community-block__top {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
@media (max-width: 757px) {
  .community-block__top {
    padding: 24px 20px;
  }
}
.community-block__top .comment__input__container {
  border: 1px solid #9b9b9b;
  margin-top: 24px;
  background: #FFFFFF;
}
.community-block__top .comment__input__container .comment__textarea {
  min-height: 0px;
}
.community-block__bottom {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
}
@media (max-width: 757px) {
  .community-block__bottom {
    padding: 24px 20px;
  }
}
.community-block__bottom__comments {
  width: 100%;
}
.community-block__bottom__comments .comments {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.community-block__bottom__comments .comments .comment:nth-child(n+4) {
  display: none;
}
.community-block__bottom__comments .comments .comment:nth-child(n+4).active {
  display: block;
}
.community-block__bottom__comments .comments .reply {
  border-left: 1px solid #494949;
  padding-left: 6px;
  margin-left: 24px;
  margin-top: 12px;
  position: relative;
  top: -24px;
}
@media (max-width: 757px) {
  .community-block__bottom__comments .comments .reply {
    top: 0;
  }
}
.community-block__bottom__comments .comments .new-comments .comment {
  margin-bottom: 24px;
}
.community-block__bottom__comments .comments .new-comments .comment:last-child {
  margin-bottom: 0px;
}
.community-block__bottom__comments .comments a.more-comments {
  color: #333;
  text-transform: uppercase;
  text-align: left;
}
.community-block__bottom__comments .comments .comment, .community-block__bottom__comments .comments .reply {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: break-word;
}
.community-block__bottom__comments .comments .comment__header, .community-block__bottom__comments .comments .reply__header {
  display: flex;
  align-items: center;
}
.community-block__bottom__comments .comments .comment__header .avatar, .community-block__bottom__comments .comments .reply__header .avatar {
  display: flex;
  justify-content: center;
}
.community-block__bottom__comments .comments .comment__header .avatar span, .community-block__bottom__comments .comments .reply__header .avatar span {
  color: #FFFFFF;
  position: absolute;
  text-transform: uppercase;
}
.community-block__bottom__comments .comments .comment__text, .community-block__bottom__comments .comments .reply__text {
  padding-top: 5px;
  text-align: left;
}
.community-block__bottom__comments .comments .comment__text p, .community-block__bottom__comments .comments .reply__text p {
  padding-bottom: 8px;
  font-size: 16px;
}
.community-block__bottom__comments .comments .comment__text h3, .community-block__bottom__comments .comments .reply__text h3 {
  text-transform: none;
  margin: 0;
  font-family: "Martel Sans", Arial, sans-serif;
  text-align: left;
  line-height: 2.1;
}
.community-block__bottom__comments .comments .comment__links, .community-block__bottom__comments .comments .reply__links {
  display: flex;
  align-items: center;
  justify-content: right;
}
.community-block__bottom__comments .comments .comment__links a, .community-block__bottom__comments .comments .reply__links a {
  transition: none;
  color: #333;
}
.community-block__bottom__comments .comments .comment__links a:hover, .community-block__bottom__comments .comments .comment__links a:visited, .community-block__bottom__comments .comments .comment__links a:active, .community-block__bottom__comments .comments .comment__links a:focus, .community-block__bottom__comments .comments .reply__links a:hover, .community-block__bottom__comments .comments .reply__links a:visited, .community-block__bottom__comments .comments .reply__links a:active, .community-block__bottom__comments .comments .reply__links a:focus {
  opacity: 1;
}
.community-block__bottom__comments .comments .comment__links .util a, .community-block__bottom__comments .comments .reply__links .util a {
  margin-left: 16px;
}
.community-block__bottom__comments .comments .comment__links .util .btn-delete img, .community-block__bottom__comments .comments .comment__links .util .btn-delete svg, .community-block__bottom__comments .comments .reply__links .util .btn-delete img, .community-block__bottom__comments .comments .reply__links .util .btn-delete svg {
  pointer-events: none;
}

.comment__input__container {
  border: 1px solid #9b9b9b;
  padding: 8px;
}
.comment__input__container.lg {
  display: flex;
  flex-direction: column;
}
.comment__input__container.lg .comment__textarea {
  min-height: 80px;
}
.comment__input__container.lg button {
  justify-self: end;
  margin-top: 16px;
}
.comment__input__container.sm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0 44px;
  background: #FFFFFF;
}
.comment__input__container.sm .comment__textarea {
  padding-right: 14px;
}
.comment__input__container.sm.embed {
  margin: 0 12px 14px 12px;
}
.comment__input__container button {
  border: 0;
  outline: 0;
  align-self: end;
  word-break: normal;
  border: 1px solid #04201e;
}
.comment__input__container button:hover {
  border: 1px solid #04201e;
  box-sizing: border-box;
}
.comment__input__container .comment__textarea {
  display: grid;
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: break-word;
  width: 100%;
  letter-spacing: 0;
  line-height: 21px;
}
@media (max-width: 757px) {
  .comment__input__container .comment__textarea {
    width: 96%;
  }
}
.comment__input__container .comment__textarea::after {
  content: attr(data-replicated-value) " ";
  white-space: pre-wrap;
  visibility: hidden;
}
.comment__input__container .comment__textarea textarea {
  border: 0;
  outline: 0;
  width: 100%;
  line-height: 21px;
  resize: none;
  box-sizing: content-box;
  overflow: hidden;
  letter-spacing: 0;
}
.comment__input__container .comment__textarea textarea, .comment__input__container .comment__textarea::after {
  grid-area: 1/1/2/2;
}

@font-face {
  font-family: "Nanum Myeongjo";
  src: url(/fonts/NanumMyeongjo-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Nanum Myeongjo Bold";
  src: url(/fonts/NanumMyeongjo-Bold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Nanum Myeongjo Extra Bold";
  src: url(/fonts/NanumMyeongjo-ExtraBold.ttf) format("truetype");
  font-weight: 800;
  font-style: normal;
}