.content {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
  width: 100vw;
  background-color: #13182C;
}

/* HEADER */

.header {
  position: relative;
}

.toast {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  min-height: 140px;
  background-color: #0A122E;
  padding: 0 8px;
}

.toast .toast-content {
  width: 100%;
  max-width: 900px;
  color: #FFFFFF;
  font-size: 14px;
  line-height: 24px;
  padding: 16px;
}

.toast a {
    color: #FFFFFF;
}

.toast .close-icon {
  position: absolute;
  top: 25px;
  right: 25px;
  cursor: pointer;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  height: 80px;
  min-height: 80px;
  padding: 0 70px 0 120px;
  position: sticky;
  top: 0;
  z-index: 2;
}

.header .logo, .burger-menu-header .logo {
  position: relative;
  text-decoration: none;
  font-size: 28px;
  line-height: 28px;
  color: #FFFFFF;
  transition: 0.3s color;
}

.header .menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 20px 0 60px;
  max-width: 550px;
}

.header .menu .menu-item {
  cursor: pointer;
  color: #FFFFFF;
  font-size: 16px;
  transition: 0.3s color;
  text-decoration: none;
  white-space: nowrap;
}

.header .pages-list {
  cursor: pointer;
}

.header .pages-dropdown-title {
  color: #FFFFFF;
}

.header .pages-list .pagesDropBtn {
  display: flex;
  align-items: center;
}

.header .pages-list .pages-dropdown-content {
  display: none;
  position: absolute;
  background-color: #17334F;
  box-shadow: 2px 4px 12px rgba(156, 175, 205, 0.1);
  z-index: 1;
  top: 54px;
  border-radius: 16px;
  overflow: hidden;
  width: 140px;
}

.header .pages-list:hover .pages-dropdown-content {
  display: block;
}

.header .pages-list .pages-dropdown-content a {
  height: 46px;
  width: 100%;
  display: flex;
  padding: 0 16px;
  align-items: center;
  text-align: left;
  text-decoration: none;
  background-color: transparent;
  transition: 0.3s all;
  color: #FFFFFF;
  border: none;
  box-sizing: border-box;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.header .pages-list .pages-dropdown-content a:hover {
  background-color: #32577B;
}

.header .user-profile {
  display: none;
  cursor: pointer;
}

.header .user-profile .dropbtn {
  display: flex;
  align-items: center;
}

.header .user-profile .dropdown-content {
  display: none;
  position: absolute;
  background-color: #17334F;
  box-shadow: 2px 4px 12px rgba(156, 175, 205, 0.1);
  z-index: 1;
  top: 54px;
  border-radius: 16px;
  overflow: hidden;
  width: 140px;
}

.header .user-profile:hover .dropdown-content {
  display: block;
}

.header .user-profile .dropdown-content a,
.header .user-profile .dropdown-content button {
  height: 46px;
  width: 100%;
  display: flex;
  padding: 0 16px;
  align-items: center;
  text-align: left;
  text-decoration: none;
  background-color: transparent;
  transition: 0.3s all;
  color: #FFFFFF;
  border: none;
  box-sizing: border-box;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  outline: none;
}

.header .user-profile .dropdown-content a .img-box,
.header .user-profile .dropdown-content button .img-box {
  margin-right: 12px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .user-profile .dropdown-content a:hover,
.header .user-profile .dropdown-content button:hover {
  background-color: #32577B;
}

.header .user-profile .user-name {
  font-size: 16px;
  padding: 0 16px;
  color: #FFFFFF;
}

.header .user-profile .user-img-box {
  overflow: hidden;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  min-width: 30px;
}

.header .user-profile .user-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header .user-controls {
  display: flex;
  align-items: center;
  margin-left: 56px;
}

.header .user-controls a {
  padding: 10px 12px;
  margin: 0 3px;
  border: 1px solid transparent;
  background-color: transparent;
  transition: 0.3s all;
  cursor: pointer;
  color: #0a6cff;
  font-size: 14px;
  border-radius: 5px;
  font-family: "Poppins, medium";
  white-space: nowrap;
  text-decoration: none;
}

.header .user-controls a:hover {
  background: rgba(40, 48, 77, 0.4);
  backdrop-filter: blur(4px);
  border: 1px solid #2E3E64;
}

.header .burger-menu-btn {
  display: none;
  position: relative;
  width: 30px;
  height: 30px;
}

.header .burger-menu-btn img {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s all;
}

/* END HEADER */

/* BURGER MENU  */

.burger-menu-content {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 110vw;
  transition: 0.3s all;
  background-color: #13182C;
  z-index: 5;
  opacity: 0;
}

.burger-menu-content.open {
  left: 0;
  opacity: 1;
}

.burger-menu-content .burger-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 34px;
}

.burger-menu-content .burger-menu-header .logo {
  position: relative;
  width: 104px;
  height: 26px;
}

.burger-menu-content .burger-menu-header .logo img {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s opacity;
}

.burger-menu-content .burger-menu-header .burger-menu-btn {
  position: relative;
  height: 20px;
  width: 20px;
}

.burger-menu-content .burger-menu-header .burger-menu-btn img {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s all;
}

.burger-menu-content .menu {
  display: flex;
  flex-direction: column;
  padding: 0 34px;
}

.burger-menu-content .menu .menu-item {
  font-size: 18px;
  line-height: 18px;
  color: #FFFFFF;
  margin-top: 40px;
  text-decoration: none;
  transition: 0.3s all;
}

.burger-menu-content .theme-switcher {
  margin: 32px 34px;
}

.burger-menu-content .user-controls {
  margin: 20px auto 0;
  padding-top: 16px;
  border-top: 1px solid #eeeeee;
  display: flex;
  justify-content: center;
}

.burger-menu-content .user-controls a {
  height: 40px;
  width: 100px;
  backdrop-filter: blur(4px);
  border-radius: 5px;
  margin: 0 8px;
  color: #0a6cff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.burger-menu-content .user-controls a:last-of-type {
  background: rgba(232, 232, 232, 0.4);
  transition: 0.3s all;
  color: #FFFFFF;
}

/* END BURGER MENU  */

/* WELCOME */

.welcome-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
  height: 720px;
  min-height: 720px;
  z-index: 1;
  margin: 50px 0;
}

.welcome-box .bg-image {
  position: absolute;
  top: 0;
  right: 10%;
  width: 817px;
  height: 670px;
}

@media (max-width: 1440px) {
  .welcome-box .bg-image {
    right: -25px;
  }
}

.welcome-box .bg-image img {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s opacity;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 25px;
}

.welcome-box .welcome-content {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  background: rgba(16, 19, 43, 0.54);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  border: 1px solid #2F3F66;
  width: calc(100% - 32px);
  max-width: 925px;
  box-sizing: border-box;
  padding: 30px;
  transition: 0.3s background-color;
  margin-bottom: 22px;
}

.welcome-box .welcome-content .welcome-title {
  transition: 0.3s color;
  color: #FFFFFF;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -2px;
  margin-bottom: 22px;
  transition: 0.3s color;
}

.welcome-box .welcome-content .welcome-title .welcome-highlight {
  color: #0a6cff;
  font-family: "Poppins, medium";
}

.welcome-box .welcome-content .welcome-subtitle {
  font-size: 24px;
  line-height: 32px;
  transition: 0.3s color;
  color: #8E8E8E;
}

.welcome-box .welcome-controls {
  display: flex;
  padding: 0 30px;
  z-index: 1;
  position: relative;
  width: calc(100% - 32px);
  max-width: 925px;
}

.welcome-box .welcome-controls a {
  width: 248px;
  height: 50px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3px;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Poppins, medium";
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: 0.3s all;
}

.welcome-box .welcome-controls a:hover{
    opacity: 0.9;
}

.welcome-box .welcome-controls a.register {
  background-color: #F2F2F2;
  color: #000000;
  margin-right: 16px;
}

.welcome-box .welcome-controls a.schedule {
  background-color: #0a6cff;
}

/* END WELCOME */

/* TREATMENT PROGRAMS */

.treatment-programs-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 0 72px;
}

.treatment-programs-box .title {
  color: #FFFFFF;
  font-size: 48px;
  line-height: 72px;
  transition: 0.3s color;
}

.treatment-programs-box .treatment-programs-list {
  width: 100%;
  max-width: 1040px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 48px 61px;
}

.treatment-programs-box .treatment-programs-see-all {
  font-size: 16px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: #0a6cff;
}

/* END TREATMENT PROGRAMS */

/* MEDICAL TREATMENT */

.medical-treatment-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 36px;
}

.medical-treatment-box .title {
  color: #FFFFFF;
  font-size: 48px;
  line-height: 64px;
  margin-bottom: 40px;
}

.medical-treatment-box .treatment-points-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

.medical-treatment-box .treatment-points-row .treatment-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 360px;
  width: 100%;
  max-width: 315px;
  min-width: 300px;
  margin: 0 25px 25px;
}

.medical-treatment-box .treatment-points-row .treatment-point .point-icon {
  height: 66px;
  width: 66px;
  margin-bottom: 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.medical-treatment-box .treatment-points-row .treatment-point .point-icon .point-dot {
  height: 24px;
  width: 24px;
  border-radius: 50%;
}

.medical-treatment-box .treatment-points-row .treatment-point .point-title {
  color: #FFFFFF;
  font-size: 24px;
  margin-bottom: 10px;
}

.medical-treatment-box .treatment-points-row .treatment-point .point-description {
  font-size: 18px;
  line-height: 28px;
  font-family: "Gilroy";
  color: #E4E4E4;
  text-align: center;
}

/* END MEDICAL TREATMENT */

/* QUOTE */

.quote-box {
  width: 100%;
  box-sizing: border-box;
  padding: 40px 0 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin: 50px 0;
}

.quote-box .quote-background {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s opacity;
  width: 100%;
  height: 100%;
}

.quote-box .text {
  position: relative;
  z-index: 1;
  font-size: 32px;
  line-height: 56px;
  text-align: center;
  max-width: 900px;
  margin-bottom: 16px;
}

.quote-box .author {
  font-size: 18px;
  position: relative;
  z-index: 1;
}

/* END QUOTE */

/* ABOUT US */

.about-us-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
}

.about-us-box .about-title {
  color: #FFFFFF;
  font-size: 48px;
  line-height: 64px;
  margin-bottom: 40px;
  transition: 0.3s color;
}

.about-us-box .about-content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  max-width: 1300px;
  box-sizing: border-box;
}

.about-us-box .about-content .about-text {
  max-width: 660px;
  font-size: 16px;
  line-height: 32px;
  color: #E4E4E4;
  transition: 0.3s color;
}

.about-us-box .about-card {
  width: calc(100% - 122px);
  max-width: 1300px;
  box-sizing: border-box;
  padding: 100px 89px 64px 84px;
  margin-top: 120px;
  background-color: #031C34;
  display: flex;
  justify-content: space-between;
  transition: 0.3s background-color;
}
.about-us-box .about-card>img {
    margin-left: 16px;
}
.about-us-box .about-card .about-card-info {
  display: flex;
  flex-direction: column;
  max-width: 540px;
  flex: 1;
  justify-content: space-between;
}

.about-us-box .about-card .about-card-info .small-logo-box {
  position: relative;
  width: 104px;
  height: 28px;
  color: #FFFFFF;
}

.about-us-box .about-card .about-card-info .small-logo-box img {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s opacity;
}

.about-us-box .about-card .about-card-info .about-quote {
  font-size: 36px;
  line-height: 54px;
  margin-top: 24px;
  flex: 1;
  color: #FFFFFF;
  transition: 0.3s color;
}

.about-us-box .about-card .about-card-info .about-author {
  font-size: 24px;
  color: #E4E4E4;
  transition: 0.3s color;
}

.about-counters {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  padding: 64px 0;
}

.about-counters .counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 43px;
  color: #E4E4E4;
  transition: 0.3s color;
}

.about-counters .counter-item .value {
  font-size: 48px;
  margin-bottom: 12px;
}

.about-counters .counter-item .text {
  font-size: 24px;
}

/* END ABOUT US */

/* REGISTER */

.register-box {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 180px;
  min-height: 180px;
  margin: 50px 0;
}

.register-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s opacity;
}

.register-box .text {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  color: #ffffff;
  margin-right: 130px;
}

.register-box .text .register-title {
  font-size: 48px;
  line-height: 72px;
  margin-bottom: 6px;
}

.register-box .text .subtitle {
  font-size: 22px;
  opacity: 0.5;
}

.register-box a {
  z-index: 1;
  position: relative;
  width: 214px;
  height: 56px;
  background: #ffffff;
  border-radius: 8px;
  border: none;
  font-size: 18px;
  font-family: "Poppins, medium";
  color: #468ee7;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* END REGISTER */

/* FAQ */

.faq-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-box .faq-card {
  display: flex;
  flex-direction: column;
  padding: 54px 104px;
  background-color: #031C34;
  width: 90%;
  box-sizing: border-box;
  border-radius: 12px;
  transition: 0.3s background-color;
}

.faq-box .faq-card .faq-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
}

.faq-box .faq-card .faq-header .faq-title {
  font-size: 48px;
  line-height: 64px;
  color: #FFFFFF;
  width: calc(50% - 25px);
  transition: 0.3s color;
}

.faq-box .faq-card .faq-header .subtitle {
  font-size: 22px;
  line-height: 32px;
  color: #E4E4E4;
  width: calc(50% - 25px);
  transition: 0.3s color;
}

.faq-box .faq-card .faq-content {
  display: flex;
  justify-content: space-between;
}

.faq-box .faq-card .faq-content .column {
  width: calc(50% - 25px);
  display: flex;
  flex-direction: column;
  min-height: 400px;
}

.faq-box .faq-card .faq-content .column .column-title {
  font-size: 16px;
  line-height: 24px;
  color: #0a6cff;
  margin-bottom: 16px;
}

.faq-box .faq-card .faq-content .column .faq-item {
  height: fit-content;
  transition: 0.3s all;
  border: 1px solid #e1e4eb;
  border-radius: 10px;
  padding: 22px 27px;
  cursor: pointer;
  margin-bottom: 18px;
}

.faq-box .faq-card .faq-content .column .faq-item.active,
.faq-box .faq-card .faq-content .column .faq-item:hover {
  background: rgba(45, 156, 219, 0.02);
  border: 1px solid #0a6cff;
}

.faq-box .faq-card .faq-content .column .faq-item .item-header {
  font-size: 24px;
  color: #FFFFFF;
  transition: 0.3s color;
}

.faq-box .faq-card .faq-content .column .faq-item .text {
  transition: 0.3s all ease-out;
  max-height: 0px;
  overflow: hidden;
  font-size: 14px;
  color: #E4E4E4;
  box-sizing: border-box;
  opacity: 0;
}

.faq-box .faq-card .faq-content .column .faq-item.active .text {
  opacity: 1;
  padding-top: 16px;
  max-height: 999px;
}

/* END FAQ */

/* CONNECT */

.connect-box {
  display: flex;
  padding: 48px 0;
}

.connect-box img {
  margin-right: 87px;
}

.connect-box .connect-info {
  display: flex;
  flex-direction: column;
  padding: 44px 0;
}

.connect-box .connect-info .product {
  color: #FFFFFF;
  font-size: 24px;
  transition: 0.3s color;
}

.connect-box .connect-info .connect-title {
  font-size: 64px;
  line-height: 72px;
  margin-top: 10px;
  color: #FFFFFF;
  transition: 0.3s color;
}

.connect-box .connect-info .subtitle {
  font-size: 22px;
  line-height: 32px;
  margin: 24px 0;
  color: #E4E4E4;
  transition: 0.3s color;
}

.connect-box .connect-info a {
  background: #0a6cff;
  border-radius: 5px;
  width: 350px;
  height: 50px;
  font-size: 16px;
  font-family: "Poppins, medium";
  color: #f2f2f2;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

/* END CONNECT */

/* TESTIMONIALS */

.testimonials-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 63px 0;
}

.testimonials-box .testimonials-title {
  font-weight: normal;
  font-size: 48px;
  text-align: center;
  color: #FFFFFF;
  transition: 0.3s color;
  padding-bottom: 30px;
}

.testimonials-box .slider-card {
  display: flex;
  box-sizing: border-box;
  width: 92%;
  height: 660px;
  justify-content: center;
  background-color: #031C34;
  transition: 0.3s background-color;
  padding: 58px;
  border-radius: 12px;
}

.testimonials-box .slider-card.tour {
  height: 800px;
  background-color: transparent;
}

.testimonials-box .slider-card .control-item {
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 60px;
  border-radius: 50%;
  transition: 0.3s background-color;
  cursor: pointer;
  margin: auto;
  border: none;
  background-color: transparent;
}

.testimonials-box .slider-card .control-item:hover {
  background-color: #123456;
}

.testimonials-box .slider-card .control-item img {
  height: 20px;  
}

.testimonials-box .slider-card .center-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: fit-content;
}

.testimonials-box .slider-card .center-container .slides-container {
  position: relative;
  height: 350px;
  margin-bottom: 60px;
  display: flex;
  width: 100%;
  overflow: hidden;
}

.testimonials-box .slider-card .center-container .slides-container.tour {
  height: 550px;
}

.testimonials-box .slider-card .center-container .slides-container .slide-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  transition: 0.3s left, 0.2s opacity;
  overflow: hidden;
  opacity: 1;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonials-box .slider-card .center-container .slides-container .slide-item.prev {
  left: -100%;
  opacity: 0;
}

.testimonials-box .slider-card .center-container .slides-container .slide-item.next {
  left: 100%;
  opacity: 1;
}

.testimonials-box .slider-card .center-container .slides-container .slide-item .slide-title {
  font-size: 24px;
  color: #FFFFFF;
}

.testimonials-box .slider-card .center-container .slides-container .slide-item .slide-subtitle {
  font-size: 14px;
  color: #FFFFFF;
  opacity: 0.5;
}

.testimonials-box .slider-card .center-container .slides-container .slide-item .text {
  font-size: 36px;
  color: #FFFFFF;
  margin-top: 85px;
  width: 100%;
  text-align: center;
}

.testimonials-box .slider-card .center-container .slides-container .tour-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  transition: 0.3s left, 0.2s opacity;
  overflow: hidden;
  opacity: 1;
  width: 100%;
  height: 550px;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonials-box .slider-card .center-container .slides-container .tour-item img {
  max-height: 550px;
  max-width: 900px;
}

.testimonials-box .slider-card .center-container .slides-container .tour-item.prev {
  left: -100%;
  opacity: 0;
}

.testimonials-box .slider-card .center-container .slides-container .tour-item.next {
  left: 100%;
  opacity: 1;
}

.testimonials-box .slider-card .center-container .images-container {
  display: flex;
  align-items: center;
}

.testimonials-box .slider-card .center-container .images-container .slide-img {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  margin: 0 33px;
  opacity: 0.7;
  transition: 0.3s all;
  cursor: pointer;
  object-fit: cover;
}

.testimonials-box .slider-card .center-container .images-container .tour-img {
  height: 80px;
  width: 80px;
  border-radius: 8px;
  margin: 0 6px;
  transition: 0.3s all;
  cursor: pointer;
}

.testimonials-box .slider-card .center-container .images-container .tour-img:hover,
.testimonials-box .slider-card .center-container .images-container .tour-img.active {
  transform: scale(1.1);
}

.testimonials-box .slider-card .center-container .images-container .slide-img.active {
  transform: scale(1.5);
  opacity: 1;
}

/* END TESTIMONIALS */

/* FOOTER */

.footer-box {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-box .row {
  display: flex;
  width: 80%;
  justify-content: space-between;
  padding: 48px 0 67px;
  max-width: 1300px;
}

.footer-box .row .column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-box .row .column .logo {
  font-size: 28px;
  line-height: 28px;
  color: #0a6cff;
}

.footer-box .row .column .main-item {
  margin-bottom: 9px;
  color: #FFFFFF;
  font-size: 18px;
  line-height: 33px;
  font-family: "Poppins, medium";
}

.footer-box .row .column .secondary-item {
  color: #FFFFFF;
  opacity: 0.5;
  font-size: 16px;
}

.footer-box .row .column .link-item {
  color: #FFFFFF;
  opacity: 0.5;
  font-size: 18px;
  line-height: 18px;
  text-decoration: underline;
  cursor: pointer;
  margin: 6px 0;
}

.footer-box .copyright {
  width: 78%;
  border-top: 1px solid #909bb5;
  padding: 16px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #909bb5;
  max-width: 1274px;
}

.footer-box .copyright .links {
  display: flex;
}

.footer-box .copyright .links .item {
  font-size: 16px;
  margin: 0 4px;
  cursor: pointer;
}

.footer-box .copyright .links .item:hover {
  text-decoration: underline;
}

.footer-box .copyright .info {
  margin-top: 8px;
}

/* END FOOTER */

/* DETAILS */

.treatment-details-box {
  display: flex;
  flex-direction: column;
  max-width: 475px;
  width: 100%;
  margin: 0 auto;
  padding: 70px 0;
}

.treatment-details-box .path {
  display: flex;
  align-items: center;
  font-size: 12px;
}

.treatment-details-box .path div:first-of-type {
  color: #E4E4E4;
  cursor: pointer;
  transition: 0.3s color;
}

.treatment-details-box .path div:last-of-type {
  color: #FFFFFF;
}

.treatment-details-box .path img {
  margin: 0 12px;
}

.treatment-details-box .title {
  font-size: 32px;
  line-height: 56px;
  color: #FFFFFF;
  margin-bottom: 12px;
  transition: 0.3s color;
}

.treatment-details-box .description {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 44px;
  transition: 0.3s color;
  color: #E4E4E4
}

.treatment-details-box .subtitle {
  font-size: 14px;
  line-height: 24px;
  color: #FFFFFF;
  margin-bottom: 32px;
  transition: 0.3s color;
}

.treatment-details-box .request-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 0 0;
  border-top: 1px solid #d9dce3;
}

.treatment-details-box .request-box .price {
  font-size: 36px;
  line-height: 46px;
  color: #FFFFFF;
  transition: 0.3s color;
}

.treatment-details-box .request-box .request-btn {
  height: 50px;
  background-color: #0a6cff;
  color: #ffffff;
  border-radius: 5px;
  font-size: 16px;
  line-height: 24px;
  color: #f2f2f2;
  border: none;
  display: flex;
  align-items: center;
  padding: 0 16px;
  cursor: pointer;
  text-decoration: none;
}

.treatment-details-box .request-box .request-btn img {
  margin-right: 16px;
}

/* END DETAILS */

/* MOBILE STYLES */

@media (max-width: 1100px) {
  .header .menu,
  .header .user-controls,
  .header .theme-switcher {
    display: none;
  }
  .header .burger-menu-btn {
    display: unset;
  }
  .header .user-profile {
   margin: 0 16px 0 auto;
  }
  .about-us-box .about-card img {
    max-width: 350px;
  }
  .about-us-box .about-card .about-card-info .about-quote {
    font-size: 24px;
    line-height: 30px;
  }
  .connect-box img {
    margin-left: -150px;
  }
  .connect-box .connect-info .connect-title {
    font-size: 32px;
    line-height: 46px;
  }
}

@media (max-width: 900px) {
  .header .header-content {
    padding: 0;
    width: 100%;
    padding: 0 34px;
    justify-content: space-between;
    margin: 0 auto;
  }
  .welcome-box .welcome-content .welcome-title {
    font-size: 28px;
    line-height: 44px;
  }
  .welcome-box .bg-image,
  .welcome-box br {
    display: none;
  }
  .welcome-box .welcome-controls {
    flex-direction: column;
  }
  .welcome-box .welcome-controls a {
    margin: 0 0 16px;
    width: 100%;
  }
  .treatment-programs-box .title {
    font-size: 28px;
    text-align: center;
  }
  .treatment-programs-box .treatment-programs-list .item {
    width: 100%;
    margin: 16px 0;
  }
  .treatment-programs-box .treatment-programs-see-all {
    width: 90px;
    height: 40px;
    border: 1px solid #0a6cff;
    border-radius: 6px;
  }
  .medical-treatment-box .title {
    font-size: 28px;
    line-height: 42px;
    text-align: center;
  }
  .quote-box {
    padding: 16px;
  }
  .quote-box .text {
    font-size: 20px;
    line-height: 33px;
  }
  .about-us-box .about-title {
    font-size: 28px;
  }
  .about-us-box .about-content {
    flex-direction: column-reverse;
    width: calc(100% - 32px);
  }
  .about-us-box .about-content img {
    margin-top: 36px;
    width: 150px;
  }
  .about-us-box .about-card {
    width: 100%;
    border-radius: 0;
    padding: 40px 16px;
    flex-direction: column-reverse;
    align-items: center;
  }
  .about-us-box .about-card img {
    max-width: 250px;
    width: 100%;
  }
  .about-us-box .about-card .about-card-info {
    max-width: 450px;
    padding-top: 16px;
  }
  .about-us-box .about-card .about-card-info .about-quote {
    font-size: 20px;
    line-height: 30px;
  }
  .about-us-box .about-card .about-card-info .about-author {
    font-size: 16px;
    margin-top: 24px;
  }
  .about-us-box .about-counters {
    flex-direction: column;
    padding: 32px 0 0 0;
  }
  .about-us-box .about-counters .counter-item {
    margin: 0 0 32px;
  }
  .about-us-box .about-counters .counter-item .value {
    font-size: 32px;
    margin-bottom: 0;
  }
  .about-us-box .about-counters .counter-item .text {
    font-size: 18px;
  }
  .register-box {
    flex-direction: column;
  }
  .register-box .text {
    margin: 0 0 16px;
    align-items: center;
  }
  .register-box .text .register-title {
    font-size: 24px;
    line-height: 28px;
  }
  .register-box .text .subtitle {
    font-size: 14px;
    line-height: 16px;
  }
  .testimonials-box .testimonials-title {
    font-size: 28px;
  }
  .testimonials-box .slider-card {
    width: calc(100% - 32px);
    height: 500px;
    margin-bottom: unset;
  }
  .testimonials-box .slider-card.tour {
    width: calc(100% - 32px);
    height: 475px;
    padding: 0;
  }
  .testimonials-box .slider-card .control-item {
    display: none;
  }
  .testimonials-box .slider-card .center-container .slides-container {
    height: 300px;
    margin-bottom: unset;
  }

  .testimonials-box .slider-card .center-container .slides-container.tour {
    height: 220px;
    margin-bottom: unset;
  }
  .testimonials-box .slider-card .center-container .slides-container.tour .tour-item {
    height: 220px;
  }
  .testimonials-box .slider-card .center-container .slides-container.tour .tour-item img {
    max-height: 200px;
    max-widht: 300px;
  }

  .testimonials-box .slider-card .center-container .slides-container .slide-item .text {
    font-size: 19px;
    line-height: 28px;
  }
  .testimonials-box .slider-card .center-container .images-container {
    height: 104px;
  }
  .testimonials-box .slider-card .center-container .images-container .slide-img {
    height: 40px;
    width: 40px;
    margin: 0 16px;
  }

  .testimonials-box .slider-card .center-container .images-container.tour {
    flex-wrap: wrap;
    justify-content: center;
  }
  .testimonials-box .slider-card .center-container .images-container .tour-img {
    height: 40px;
    width: 40px;
    margin: 8px;
  }
  .faq-box {
    padding: 16px;
  }
  .faq-box .faq-card {
    padding: 16px 16px 0;
  }
  .faq-box .faq-card .faq-header {
    flex-direction: column;
  }
  .faq-box .faq-card .faq-header .faq-title {
    width: 100%;
    font-size: 28px;
    line-height: 42px;
    text-align: center;
    margin-bottom: 41px;
  }
  .faq-box .faq-card .faq-header .subtitle {
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }
  .faq-box .faq-card .faq-content {
    flex-direction: column;
  }
  .faq-box .faq-card .faq-content .column {
    width: 100%;
  }
  .faq-box .faq-card .faq-content .column .faq-item .text {
    transition: 0.4s all;
  }
  .connect-box img {
    display: none;
  }
  .connect-box {
    align-items: center;
    width: calc(100% - 32px);
    margin: 0 auto;
  }
  .connect-box .connect-info {
    width: 100%;
  }
  .connect-box .connect-info a {
    width: 100%;
  }
  .connect-box .connect-info .product {
    display: none;
  }
  .connect-box .connect-info .connect-title {
    font-size: 38px;
    line-height: 57px;
  }
  .footer-box .row {
    flex-direction: column;
    padding: 48px 0 0 0;
  }
  .footer-box .row .column {
    margin-bottom: 41px;
  }
  .footer-box .row .column img {
    width: 120px;
  }
}

/* END MOBILE STYLES  */
