@import url(https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap);
/** GRID */
/** BREAKPOINTS */
/** FONTS */
/** COLORS */
/** BREAKPOINTS MIXINS */
/** WIDTH: > xs and < xs-max */
/** WIDTH: > sm and < sm-max */
/** WIDTH: > sm */
/** WIDTH: > xs and < md-max */
/** WIDTH: > md and < md-max */
/** WIDTH: > md and < lg-max */
/** WIDTH: > md */
/** WIDTH: > lg and < lg-max */
/** WIDTH: > xl */
/** WIDTH: > lg */
/** COMMON */
.container {
  width: 100%;
  max-width: 991px;
  padding: 0 16px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1328px;
  }
}

.container-fluid {
  width: 100%;
  max-width: 1328px;
  padding: 0 16px;
  margin: 0 auto;
}

.col {
  position: relative;
  width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  flex-grow: 1;
  max-width: 100%;
}
@media (min-width: 576px) {
  .col {
    padding-right: 8px;
    padding-left: 8px;
  }
}

.hidden {
  display: none !important;
}

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

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

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

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

.flex {
  display: flex;
}

.align-items-flex-start {
  align-items: flex-start;
}

.align-items-flex-end {
  align-items: flex-end;
}

.align-items-stretch {
  align-items: stretch;
}

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

.justify-content-center {
  justify-content: center;
}

.justify-content-flex-start {
  justify-content: flex-start;
}

.justify-content-flex-end {
  justify-content: flex-end;
}

.justify-content-space-between {
  justify-content: space-between;
}

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

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

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

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

*[class*=bg-] {
  background-repeat: no-repeat;
}

.bg-contain {
  background-position: center center;
  background-size: contain;
}

.bg-cover {
  background-position: center center;
  background-size: cover;
}

.bg-100-percent {
  background-size: 100%;
}

.bg-x-left {
  background-position-x: left;
}

.bg-x-center {
  background-position-x: center;
}

.bg-x-right {
  background-position-x: right;
}

.bg-y-top {
  background-position-y: top;
}

.bg-y-center {
  background-position-y: center;
}

.bg-y-bottom {
  background-position-y: bottom;
}

.bg-center {
  background-position: center center;
}

.min-height-vh {
  min-height: 100vh;
}
@media (min-width: 0) and (max-width: 991px) {
  .min-height-vh {
    min-height: -webkit-fill-available;
  }
}

.height-auto {
  height: auto;
}

.height-100-percent {
  height: 100%;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

@media (min-width: 0) {
  .col-xs-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xs-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xs-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xs-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xs-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xs-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xs-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xs-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xs-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xs-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xs-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .hidden-xs {
    display: none !important;
  }
  .visible-xs {
    display: block !important;
  }
  .visible-flex-xs {
    display: flex !important;
  }
  .visible-inline-xs {
    display: inline-block !important;
  }
  .visible-inline-text-xs {
    display: inline !important;
  }
  .align-left-xs {
    text-align: left;
  }
  .align-right-xs {
    text-align: right;
  }
  .align-center-xs {
    text-align: center;
  }
  .align-justify-xs {
    text-align: justify;
  }
  .flex-xs {
    display: flex;
  }
  .align-items-flex-start-xs {
    align-items: flex-start;
  }
  .align-items-flex-end-xs {
    align-items: flex-end;
  }
  .align-items-stretch-xs {
    align-items: stretch;
  }
  .align-items-center-xs {
    align-items: center;
  }
  .justify-content-center-xs {
    justify-content: center;
  }
  .justify-content-flex-start-xs {
    justify-content: flex-start;
  }
  .justify-content-flex-end-xs {
    justify-content: flex-end;
  }
  .justify-content-space-between-xs {
    justify-content: space-between;
  }
  .flex-direction-row-xs {
    flex-direction: row;
  }
  .flex-direction-row-reverse-xs {
    flex-direction: row-reverse;
  }
  .flex-direction-column-xs {
    flex-direction: column;
  }
  .flex-direction-column-reverse-xs {
    flex-direction: column-reverse;
  }
  .bg-contain-xs {
    background-size: contain;
  }
  .bg-cover-xs {
    background-size: cover;
  }
  .bg-100-percent-xs {
    background-size: 100%;
  }
  .bg-x-left-xs {
    background-position-x: left;
  }
  .bg-x-center-xs {
    background-position-x: center;
  }
  .bg-x-right-xs {
    background-position-x: right;
  }
  .bg-y-top-xs {
    background-position-y: top;
  }
  .bg-y-center-xs {
    background-position-y: center;
  }
  .bg-y-bottom-xs {
    background-position-y: bottom;
  }
  .bg-center-xs {
    background-position: center center;
  }
}
@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .hidden-sm {
    display: none !important;
  }
  .visible-sm {
    display: block !important;
  }
  .visible-flex-sm {
    display: flex !important;
  }
  .visible-inline-sm {
    display: inline-block !important;
  }
  .visible-inline-text-sm {
    display: inline !important;
  }
  .align-left-sm {
    text-align: left;
  }
  .align-right-sm {
    text-align: right;
  }
  .align-center-sm {
    text-align: center;
  }
  .align-justify-sm {
    text-align: justify;
  }
  .flex-sm {
    display: flex;
  }
  .align-items-flex-start-sm {
    align-items: flex-start;
  }
  .align-items-flex-end-sm {
    align-items: flex-end;
  }
  .align-items-stretch-sm {
    align-items: stretch;
  }
  .align-items-center-sm {
    align-items: center;
  }
  .justify-content-center-sm {
    justify-content: center;
  }
  .justify-content-flex-start-sm {
    justify-content: flex-start;
  }
  .justify-content-flex-end-sm {
    justify-content: flex-end;
  }
  .justify-content-space-between-sm {
    justify-content: space-between;
  }
  .flex-direction-row-sm {
    flex-direction: row;
  }
  .flex-direction-row-reverse-sm {
    flex-direction: row-reverse;
  }
  .flex-direction-column-sm {
    flex-direction: column;
  }
  .flex-direction-column-reverse-sm {
    flex-direction: column-reverse;
  }
  .bg-contain-sm {
    background-size: contain;
  }
  .bg-cover-sm {
    background-size: cover;
  }
  .bg-100-percent-sm {
    background-size: 100%;
  }
  .bg-x-left-sm {
    background-position-x: left;
  }
  .bg-x-center-sm {
    background-position-x: center;
  }
  .bg-x-right-sm {
    background-position-x: right;
  }
  .bg-y-top-sm {
    background-position-y: top;
  }
  .bg-y-center-sm {
    background-position-y: center;
  }
  .bg-y-bottom-sm {
    background-position-y: bottom;
  }
  .bg-center-sm {
    background-position: center center;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .hidden-md {
    display: none !important;
  }
  .visible-md {
    display: block !important;
  }
  .visible-flex-md {
    display: flex !important;
  }
  .visible-inline-md {
    display: inline-block !important;
  }
  .visible-inline-text-md {
    display: inline !important;
  }
  .align-left-md {
    text-align: left;
  }
  .align-right-md {
    text-align: right;
  }
  .align-center-md {
    text-align: center;
  }
  .align-justify-md {
    text-align: justify;
  }
  .flex-md {
    display: flex;
  }
  .align-items-flex-start-md {
    align-items: flex-start;
  }
  .align-items-flex-end-md {
    align-items: flex-end;
  }
  .align-items-stretch-md {
    align-items: stretch;
  }
  .align-items-center-md {
    align-items: center;
  }
  .justify-content-center-md {
    justify-content: center;
  }
  .justify-content-flex-start-md {
    justify-content: flex-start;
  }
  .justify-content-flex-end-md {
    justify-content: flex-end;
  }
  .justify-content-space-between-md {
    justify-content: space-between;
  }
  .flex-direction-row-md {
    flex-direction: row;
  }
  .flex-direction-row-reverse-md {
    flex-direction: row-reverse;
  }
  .flex-direction-column-md {
    flex-direction: column;
  }
  .flex-direction-column-reverse-md {
    flex-direction: column-reverse;
  }
  .bg-contain-md {
    background-size: contain;
  }
  .bg-cover-md {
    background-size: cover;
  }
  .bg-100-percent-md {
    background-size: 100%;
  }
  .bg-x-left-md {
    background-position-x: left;
  }
  .bg-x-center-md {
    background-position-x: center;
  }
  .bg-x-right-md {
    background-position-x: right;
  }
  .bg-y-top-md {
    background-position-y: top;
  }
  .bg-y-center-md {
    background-position-y: center;
  }
  .bg-y-bottom-md {
    background-position-y: bottom;
  }
  .bg-center-md {
    background-position: center center;
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .hidden-lg {
    display: none !important;
  }
  .visible-lg {
    display: block !important;
  }
  .visible-flex-lg {
    display: flex !important;
  }
  .visible-inline-lg {
    display: inline-block !important;
  }
  .visible-inline-text-lg {
    display: inline !important;
  }
  .align-left-lg {
    text-align: left;
  }
  .align-right-lg {
    text-align: right;
  }
  .align-center-lg {
    text-align: center;
  }
  .align-justify-lg {
    text-align: justify;
  }
  .flex-lg {
    display: flex;
  }
  .align-items-flex-start-lg {
    align-items: flex-start;
  }
  .align-items-flex-end-lg {
    align-items: flex-end;
  }
  .align-items-stretch-lg {
    align-items: stretch;
  }
  .align-items-center-lg {
    align-items: center;
  }
  .justify-content-center-lg {
    justify-content: center;
  }
  .justify-content-flex-start-lg {
    justify-content: flex-start;
  }
  .justify-content-flex-end-lg {
    justify-content: flex-end;
  }
  .justify-content-space-between-lg {
    justify-content: space-between;
  }
  .flex-direction-row-lg {
    flex-direction: row;
  }
  .flex-direction-row-reverse-lg {
    flex-direction: row-reverse;
  }
  .flex-direction-column-lg {
    flex-direction: column;
  }
  .flex-direction-column-reverse-lg {
    flex-direction: column-reverse;
  }
  .bg-contain-lg {
    background-size: contain;
  }
  .bg-cover-lg {
    background-size: cover;
  }
  .bg-100-percent-lg {
    background-size: 100%;
  }
  .bg-x-left-lg {
    background-position-x: left;
  }
  .bg-x-center-lg {
    background-position-x: center;
  }
  .bg-x-right-lg {
    background-position-x: right;
  }
  .bg-y-top-lg {
    background-position-y: top;
  }
  .bg-y-center-lg {
    background-position-y: center;
  }
  .bg-y-bottom-lg {
    background-position-y: bottom;
  }
  .bg-center-lg {
    background-position: center center;
  }
}
@media (min-width: 1200px) {
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .hidden-xl {
    display: none !important;
  }
  .visible-xl {
    display: block !important;
  }
  .visible-flex-xl {
    display: flex !important;
  }
  .visible-inline-xl {
    display: inline-block !important;
  }
  .visible-inline-text-xl {
    display: inline !important;
  }
  .align-left-xl {
    text-align: left;
  }
  .align-right-xl {
    text-align: right;
  }
  .align-center-xl {
    text-align: center;
  }
  .align-justify-xl {
    text-align: justify;
  }
  .flex-xl {
    display: flex;
  }
  .align-items-flex-start-xl {
    align-items: flex-start;
  }
  .align-items-flex-end-xl {
    align-items: flex-end;
  }
  .align-items-stretch-xl {
    align-items: stretch;
  }
  .align-items-center-xl {
    align-items: center;
  }
  .justify-content-center-xl {
    justify-content: center;
  }
  .justify-content-flex-start-xl {
    justify-content: flex-start;
  }
  .justify-content-flex-end-xl {
    justify-content: flex-end;
  }
  .justify-content-space-between-xl {
    justify-content: space-between;
  }
  .flex-direction-row-xl {
    flex-direction: row;
  }
  .flex-direction-row-reverse-xl {
    flex-direction: row-reverse;
  }
  .flex-direction-column-xl {
    flex-direction: column;
  }
  .flex-direction-column-reverse-xl {
    flex-direction: column-reverse;
  }
  .bg-contain-xl {
    background-size: contain;
  }
  .bg-cover-xl {
    background-size: cover;
  }
  .bg-100-percent-xl {
    background-size: 100%;
  }
  .bg-x-left-xl {
    background-position-x: left;
  }
  .bg-x-center-xl {
    background-position-x: center;
  }
  .bg-x-right-xl {
    background-position-x: right;
  }
  .bg-y-top-xl {
    background-position-y: top;
  }
  .bg-y-center-xl {
    background-position-y: center;
  }
  .bg-y-bottom-xl {
    background-position-y: bottom;
  }
  .bg-center-xl {
    background-position: center center;
  }
}
@media (min-width: 992px) {
  .row-lg {
    display: flex;
    flex-wrap: wrap;
    margin-right: -16px;
    margin-left: -16px;
  }
}
@media (min-width: 992px) and (min-width: 576px) {
  .row-lg {
    margin-right: -8px;
    margin-left: -8px;
  }
}
html {
  -webkit-text-size-adjust: none;
  touch-action: manipulation;
}

body {
  margin: 0;
  padding: 0 0 0 0;
  font-family: "Inter", sans-serif;
}
body.menu-active {
  overflow: hidden;
}
body.fixed-header {
  padding: 82px 0 0 0;
}
@media (min-width: 1200px) {
  body.fixed-header {
    padding: 157px 0 0 0;
  }
}

* {
  box-sizing: border-box;
}

.btn {
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  line-height: 100%;
  color: rgb(22, 51, 131);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  transition: all 0.3s;
}
@media (min-width: 992px) {
  .btn {
    padding: 24px;
  }
}
.btn svg {
  width: 18px;
  min-width: 18px;
  height: 15px;
  transition: all 0.3s;
}
.btn:hover {
  background-color: #F28B2D;
}
.btn:hover svg {
  transform: translateX(5px);
}

.btn-alt {
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  line-height: 100%;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background-color: rgb(32, 30, 138);
  border-radius: 10px;
  transition: all 0.3s;
}
@media (min-width: 992px) {
  .btn-alt {
    padding: 24px;
  }
}
.btn-alt svg {
  width: 18px;
  min-width: 18px;
  height: 15px;
  transition: all 0.3s;
}
.btn-alt:hover {
  background-color: #F28B2D;
}
.btn-alt:hover svg {
  transform: translateX(5px);
}

.btn-alt-2,
.btn-alt-3,
.btn-alt-4 {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
  text-decoration: none;
}
.btn-alt-2 svg,
.btn-alt-3 svg,
.btn-alt-4 svg {
  width: 18px;
  min-width: 18px;
  height: 15px;
  transition: transform 0.3s;
}
.btn-alt-2:hover svg,
.btn-alt-3:hover svg,
.btn-alt-4:hover svg {
  transform: translateX(10px);
}

.btn-alt-5 {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
  text-decoration: none;
}
.btn-alt-5 svg {
  width: 18px;
  min-width: 18px;
  height: 15px;
  transition: transform 0.3s;
}
.btn-alt-5:hover svg {
  transform: translateX(-10px);
}

.btn-alt-2,
.btn-alt-5 {
  color: #F28B2D;
}

.btn-alt-3 {
  color: #fff;
}

.btn-alt-4 {
  color: #160A38;
}

.single-blog-post {
  border-radius: 20px;
  overflow: hidden;
  background-color: rgb(245, 245, 255);
}
.single-blog-post__thumbnail {
  height: 271px;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 992px) {
  .single-blog-post__thumbnail {
    height: 371px;
  }
}
.single-blog-post__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s;
}
.single-blog-post__meta {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .single-blog-post__meta {
    min-height: 251px;
  }
}
.single-blog-post__labels {
  margin: 0 0 12px 0;
}
.single-blog-post__labels span,
.single-blog-post__labels a {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: rgb(83, 91, 110);
}
.single-blog-post__labels a {
  text-decoration: none;
}
.single-blog-post__labels a:hover {
  text-decoration: underline;
}
.single-blog-post__labels a:last-of-type span {
  display: none;
}
.single-blog-post__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 160%;
  color: #160A38;
  margin: 0;
  text-decoration: none;
}
.single-blog-post:hover .single-blog-post__thumbnail img {
  transform: scale(1.2);
}

.single-doctor {
  border-radius: 20px;
  overflow: hidden;
  background-color: rgb(245, 245, 255);
  display: flex;
  flex-direction: column;
}
.single-doctor__thumbnail {
  width: 100%;
  height: 319px;
}
.single-doctor__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-doctor__meta {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.single-doctor__name {
  font-size: 22px;
  line-height: 130%;
  font-weight: 500;
  color: #160A38;
  text-decoration: none;
  margin: 0 0 24px 0;
}

.error-404 {
  padding: 50px 0;
}
@media (min-width: 992px) {
  .error-404 {
    padding: 100px 0;
  }
}
.error-404__container {
  width: 100%;
  max-width: 991px;
  padding: 0 16px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1200px) {
  .error-404__container {
    max-width: 1328px;
  }
}
.error-404__container h1 {
  margin: 0 0 20px 0;
  font-size: 50px;
  color: #F28B2D;
  text-align: center;
}
.error-404__container h3 {
  margin: 0 0 40px 0;
  font-size: 30px;
  color: #160A38;
  text-align: center;
}

.disable-mobile {
  display: none !important;
}
@media (min-width: 992px) {
  .disable-mobile {
    display: block !important;
  }
}

.disable-mobile-flex {
  display: none !important;
}
@media (min-width: 992px) {
  .disable-mobile-flex {
    display: flex !important;
  }
}

h1.heading {
  font-size: 48px;
  line-height: 130%;
  font-weight: 600;
  margin: 0 0 1rem 0;
}
@media (min-width: 992px) {
  h1.heading {
    font-size: 72px;
  }
}

h2.heading {
  font-size: 36px;
  line-height: 150%;
  font-weight: 600;
  margin: 0 0 1rem 0;
}
@media (min-width: 992px) {
  h2.heading {
    font-size: 48px;
  }
}

.site-header {
  position: relative;
  background: #FFF;
  background: linear-gradient(180deg, rgb(255, 255, 255) 50%, rgb(248, 248, 248) 100%);
}
.site-header.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s;
}
.site-header.fixed-header.scrolling-down {
  transform: translateY(-100%);
}
.site-header.fixed-header.scrolling-up {
  transform: translateY(0);
}
@media (min-width: 1200px) {
  .site-header.fixed-header.scrolling-up .site-header__logo a img, .site-header.fixed-header.scrolling-down .site-header__logo a img {
    max-height: 45px;
  }
}
.site-header.fixed-header.scrolling-up .site-header__menu nav > ul > li > .link-wrapper > a, .site-header.fixed-header.scrolling-down .site-header__menu nav > ul > li > .link-wrapper > a {
  padding: 7px 24px;
}
.site-header__banner {
  width: 100%;
  max-width: 991px;
  padding: 0 16px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .site-header__banner {
    max-width: 1328px;
  }
}
.site-header__banner > div {
  border-bottom: 1px solid #D3D3D3;
  padding: 8.5px 0;
  display: none;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 1200px) {
  .site-header__banner > div {
    display: flex;
  }
}
.site-header__banner > div .address {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5.5px 0;
}
.site-header__banner > div .address svg {
  width: 24px;
  min-width: 24px;
  height: 24px;
}
.site-header__banner > div .address span,
.site-header__banner > div .address a {
  font-size: 14px;
  line-height: 150%;
  color: #160A38;
}
.site-header__banner > div .address span {
  font-weight: 400;
}
.site-header__banner > div .address a {
  font-weight: 600;
  text-decoration: none;
}
.site-header__banner > div .address a:hover {
  text-decoration: underline;
}
.site-header__banner > div .phones {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 5.5px 4px;
}
.site-header__banner > div .phones .single-box {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-header__banner > div .phones .single-box span,
.site-header__banner > div .phones .single-box a {
  font-size: 14px;
  line-height: 150%;
  color: #160A38;
}
.site-header__banner > div .phones .single-box span {
  font-weight: 400;
}
.site-header__banner > div .phones .single-box a {
  font-weight: 600;
  text-decoration: none;
}
.site-header__banner > div .phones .single-box a:hover {
  text-decoration: underline;
}
.site-header__container {
  width: 100%;
  max-width: 991px;
  padding: 0 16px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: all 0.3s;
}
@media (min-width: 1200px) {
  .site-header__container {
    max-width: 1328px;
  }
}
.site-header__logo a img {
  display: block;
  max-width: 200px;
  height: auto;
  transition: all 0.3s;
}
@media (min-width: 1200px) {
  .site-header__logo a img {
    max-height: 68px;
    width: auto;
    max-width: initial;
  }
}
@media (min-width: 1200px) {
  .site-header__menu .back {
    display: none;
  }
}
@media (min-width: 1200px) {
  .site-header__menu {
    z-index: 997;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    opacity: 1;
    pointer-events: all;
    position: initial;
    width: initial;
    height: initial;
    background-color: transparent;
  }
}
@media (min-width: 1200px) {
  .site-header__menu nav {
    width: initial;
    margin-top: initial;
    margin-bottom: initial;
    padding: 0;
    overflow: visible;
  }
}
.site-header__menu nav > ul > li > span.link-wrapper > a {
  transition: padding 0.3s;
}
.site-header__menu nav > ul > li > span.link-wrapper > a span.drop-down-arrow svg {
  transition: transform 0.1s;
}
@media (min-width: 1200px) {
  .site-header__menu nav > ul > li:hover > span.link-wrapper > a {
    color: #F28B2D !important;
  }
}
@media (min-width: 1200px) {
  .site-header__menu nav > ul > li:hover > span.link-wrapper > a span.drop-down-arrow svg {
    transform: rotate(180deg);
  }
}
@media (min-width: 1200px) {
  .site-header__menu nav > ul > li:hover > span.link-wrapper > a span.drop-down-arrow svg path {
    fill: #F28B2D;
  }
}
.site-header__menu nav > ul > li.menu-item-has-children > ul.sub-menu {
  background: #FFF !important;
  background: linear-gradient(180deg, rgb(255, 255, 255) 50%, rgb(248, 248, 248) 100%) !important;
}
@media (min-width: 1200px) {
  .site-header__menu nav > ul > li.menu-item-has-children > ul.sub-menu {
    position: absolute;
    top: 100%;
    width: 600px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .site-header__menu nav > ul > li.menu-item-has-children > ul.sub-menu::before {
    content: "";
    display: block;
    background-color: transparent;
    width: 100%;
    height: 28px;
    top: -28px;
    position: absolute;
  }
}
@media (min-width: 1200px) {
  .site-header__menu nav > ul > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children:hover ul.sub-menu {
    opacity: 1;
    pointer-events: all;
  }
}
@media (min-width: 1200px) {
  .site-header__menu nav > ul > li.menu-item-has-children:hover > ul.sub-menu {
    opacity: 1;
    pointer-events: all;
  }
}
@media (min-width: 1200px) {
  .site-header__menu nav > ul > li.menu-item-has-children.menu-alt > ul.sub-menu {
    min-height: initial;
    max-height: initial;
    height: initial;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
  }
}
@media (min-width: 1200px) {
  .site-header__menu nav > ul > li.menu-item-has-children.menu-alt > ul.sub-menu > li {
    max-width: initial;
    width: 33.333%;
  }
}
@media (min-width: 1200px) {
  .site-header__menu nav ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    flex-direction: row;
    gap: 22px;
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .site-header__menu nav ul li {
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .site-header__menu nav ul li .link-wrapper {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .site-header__menu nav ul li .link-wrapper:hover a {
    color: initial !important;
  }
}
@media (min-width: 1200px) {
  .site-header__menu nav ul li .link-wrapper:hover span.drop-down-arrow svg path {
    fill: initial;
  }
}
@media (min-width: 1200px) {
  .site-header__menu nav ul li .link-wrapper a {
    color: #160A38;
    transition: color 0.1s;
    font-size: 18px;
    font-weight: 500;
    line-height: 160%;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 32px;
    padding: 21px 24px;
  }
}
@media (min-width: 992px) {
  .site-header__menu nav ul li .link-wrapper span.drop-down-arrow svg path {
    transition: fill 0.1s;
  }
}
@media (min-width: 1200px) {
  .site-header__menu nav ul li .link-wrapper span.drop-down-arrow.active {
    transform: rotate(180deg);
  }
}
@media (min-width: 1200px) {
  .site-header__menu nav ul li.menu-item-has-children {
    position: initial;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .site-header__menu nav ul li.menu-item-has-children > span.link-wrapper span.drop-down-arrow {
    height: 32px;
    display: inline-flex;
    width: 32px;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .site-header__menu nav ul li.menu-item-has-children > span.link-wrapper span.drop-down-arrow svg {
    pointer-events: none;
  }
}
@media (min-width: 1200px) {
  .site-header__menu nav ul li.menu-item-has-children ul.sub-menu {
    display: initial;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    background: #FFF !important;
    background: linear-gradient(180deg, rgb(255, 255, 255) 50%, rgb(248, 248, 248) 100%) !important;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
}
@media (min-width: 1200px) {
  .site-header__menu nav ul li.menu-item-has-children ul.sub-menu li {
    transition: background-color 0.1s;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media (min-width: 1200px) {
  .site-header__menu nav ul li.menu-item-has-children ul.sub-menu li a {
    font-weight: 500;
    text-align: start;
    font-size: 16px;
    color: #160A38;
    transition: color 0.1s;
    line-height: 160%;
  }
}
@media (min-width: 1200px) {
  .site-header__menu nav ul li.menu-item-has-children ul.sub-menu li:first-of-type {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .site-header__menu nav ul li.menu-item-has-children ul.sub-menu li.menu-item-has-children ul.sub-menu {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    overflow: auto;
    width: 527px;
  }
}
@media (min-width: 1200px) {
  .site-header__menu nav ul li.menu-item-has-children ul.sub-menu li.menu-item-has-children ul.sub-menu li a {
    line-height: 160%;
    font-size: 16px;
    font-weight: 500;
  }
}
@media (min-width: 1200px) {
  .site-header__menu nav ul li.menu-item-has-children ul.sub-menu li.menu-item-has-children span.link-wrapper span.drop-down-arrow svg {
    transform: rotate(270deg);
  }
}
@media (min-width: 1200px) {
  .site-header__menu nav ul li.menu-item-has-children ul.sub-menu li:hover {
    background-color: #F4F4FF;
  }
}
.site-header__menu-banner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 32px 16px 32px 16px;
  gap: 18px;
  border-top: 1px solid #D3D3D3;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
}
@media (min-width: 1200px) {
  .site-header__menu-banner {
    display: none;
  }
}
.site-header__menu-banner .single-box {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-header__menu-banner .single-box svg {
  width: 24px;
  min-width: 24px;
  height: 24px;
}
.site-header__menu-banner .single-box__desc, .site-header__menu-banner .single-box__number {
  font-size: 14px;
  line-height: 150%;
}
.site-header__menu-banner .single-box__desc {
  font-weight: 400;
}
.site-header__menu-banner .single-box__number {
  font-weight: 600;
  text-decoration: none;
  color: #160A38;
}
.site-header__menu-banner .single-box__number:hover {
  text-decoration: underline;
}
@media (min-width: 1200px) {
  .site-header__button {
    display: none;
  }
}
.site-header__button .menu-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 998;
  height: 30px;
  width: 30px;
}
.site-header__button .menu-btn.active .menu-btn__burger {
  transform: translateX(-5px);
  background: transparent;
}
.site-header__button .menu-btn.active .menu-btn__burger::before {
  transform: rotate(45deg) translate(3px, -3px);
  width: 30px;
}
.site-header__button .menu-btn.active .menu-btn__burger::after {
  transform: rotate(-45deg) translate(3px, 3px);
  width: 30px;
}
.site-header__button .menu-btn__burger {
  width: 30px;
  height: 2px;
  background: #160A38;
  transition: all 0.3s;
  position: relative;
}
.site-header__button .menu-btn__burger::before, .site-header__button .menu-btn__burger::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background: #160A38;
  transition: all 0.3s;
}
.site-header__button .menu-btn__burger::before {
  transform: translateY(-8px);
}
.site-header__button .menu-btn__burger::after {
  transform: translateY(8px);
}

@media (max-width: 1199px) {
  .site-header__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    transition: opacity 0.4s;
    z-index: 997;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    padding: 82px 0 0 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .site-header__menu.visible {
    display: flex;
  }
  .site-header__menu.active {
    opacity: 1;
    pointer-events: all;
  }
  .site-header__menu button.back {
    display: flex;
    align-items: center;
    position: absolute;
    top: 26px;
    left: 16px;
    padding: 0;
    margin: 0;
    background-color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .site-header__menu button.back.sub-menu-lvl-1, .site-header__menu button.back.sub-menu-lvl-2 {
    opacity: 1;
    pointer-events: all;
  }
  .site-header__menu button.back span {
    pointer-events: none;
  }
  .site-header__menu button.back span.arrow {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .site-header__menu button.back span.arrow svg {
    width: 12px;
    height: 20px;
    pointer-events: none;
  }
  .site-header__menu button.back span:not(.arrow) {
    font-size: 16px;
    line-height: 100%;
    font-weight: 600;
    color: #000;
  }
  .site-header__menu nav {
    overflow-y: auto;
    padding: 32px 16px 131px 16px;
    flex: 1;
  }
  .site-header__menu nav ul.nav {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: #fff;
  }
  .site-header__menu nav ul.nav li span.link-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .site-header__menu nav ul.nav li span.link-wrapper a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 46px;
    padding: 7px 0;
    font-size: 16px;
    line-height: 160%;
    font-weight: 500;
    color: #160A38;
    text-decoration: none;
  }
  .site-header__menu nav ul.nav li span.link-wrapper .drop-down-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .site-header__menu nav ul.nav li span.link-wrapper .drop-down-arrow svg {
    width: 12px;
    height: 20px;
    pointer-events: none;
  }
  .site-header__menu nav ul.nav li.menu-item-has-children ul.sub-menu {
    list-style-type: none;
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    height: calc(100vh - 82px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 32px 16px 32px 16px;
    background-color: #fff;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    z-index: 1;
  }
  .site-header__menu nav ul.nav li.menu-item-has-children ul.sub-menu.slide-in-1, .site-header__menu nav ul.nav li.menu-item-has-children ul.sub-menu.slide-in-2 {
    transform: translateX(0);
    opacity: 1;
  }
  .site-header__menu nav ul.nav li.menu-item-has-children ul.sub-menu.slide-in-1.hide-overflow, .site-header__menu nav ul.nav li.menu-item-has-children ul.sub-menu.slide-in-2.hide-overflow {
    overflow: hidden !important;
  }
  .site-header__menu nav ul.nav li.menu-item-has-children ul.sub-menu li.menu-item-has-children ul.sub-menu {
    background-color: #fff;
    height: 100%;
    top: 0;
  }
}
.site-footer {
  padding: 53px 0 32px 0;
}
@media (min-width: 992px) {
  .site-footer {
    padding: 106px 0 32px 0;
  }
}
.site-footer__container {
  width: 100%;
  max-width: 991px;
  padding: 0 16px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .site-footer__container {
    max-width: 1328px;
  }
}
.site-footer__row--row-1 {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.site-footer__row--row-2 {
  margin: 36px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.site-footer__row--row-2 > div span,
.site-footer__row--row-2 > div a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #160A38;
  letter-spacing: 0.5px;
  opacity: 0.5;
}
.site-footer__row--row-2 > div a {
  text-decoration: none;
}
.site-footer__row--row-2 > div a:hover {
  text-decoration: underline;
}
.site-footer__col {
  max-width: 416px;
  width: 100%;
}
.site-footer__col--column-1 {
  margin: 0 0 50px 0;
}
.site-footer__col--column-1 section.widget.widget_block.widget_media_image figure.wp-block-image {
  margin: 71px 0 26px 0;
}
.site-footer__col--column-1 section.widget.widget_block.widget_text {
  max-width: 329px;
}
.site-footer__col--column-1 section.widget.widget_block.widget_text p {
  font-size: 16px;
  line-height: 160%;
  font-weight: 400;
  color: #160A38;
  margin: 0;
}
.site-footer__col--column-1 section#block-5.widget.widget_block {
  margin: 72px 0 0 0;
}
.site-footer__col--column-1 section#block-5.widget.widget_block .wp-block-group .wp-block-group__inner-container {
  display: flex;
  gap: 16px;
  align-items: center;
}
.site-footer__col--column-1 section#block-5.widget.widget_block .wp-block-group .wp-block-group__inner-container figure.wp-block-image {
  margin: 0;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-footer__col--column-1 section#block-5.widget.widget_block .wp-block-group .wp-block-group__inner-container figure.wp-block-image a img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  transition: transform 0.3s;
}
.site-footer__col--column-1 section#block-5.widget.widget_block .wp-block-group .wp-block-group__inner-container figure.wp-block-image a:hover img {
  transform: scale(1.1);
}
.site-footer__col--column-2 {
  margin: 0 0 50px 0;
}
.site-footer__col--column-2 section#nav_menu-2.widget.widget_nav_menu h2.widget-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
  color: #160A38;
  padding: 12px 0 0 0;
  margin: 0 0 15px 0;
}
.site-footer__col--column-2 section#nav_menu-2.widget.widget_nav_menu h2.widget-title::after {
  content: "";
  display: block;
  width: 305px;
  border-bottom: 2px solid rgb(245, 245, 255);
  margin: 12px 0 0 0;
}
.site-footer__col--column-2 section.widget.widget_nav_menu {
  margin: 0 0 16px 0;
}
.site-footer__col--column-2 section.widget.widget_nav_menu h2.widget-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
  color: rgb(83, 91, 110);
  padding: 12px 0 0 0;
  margin: 0 0 15px 0;
}
.site-footer__col--column-2 section.widget.widget_nav_menu h2.widget-title::after {
  content: "";
  display: block;
  width: 305px;
  border-bottom: 2px solid rgb(245, 245, 255);
  margin: 12px 0 0 0;
}
.site-footer__col--column-2 section.widget.widget_nav_menu ul.menu {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style-type: none;
}
.site-footer__col--column-2 section.widget.widget_nav_menu ul.menu li a {
  font-size: 18px;
  line-height: 160%;
  font-weight: 500;
  color: rgb(3, 7, 50);
  text-decoration: none;
}

.blog-page {
  padding: 30px 0;
}
@media (min-width: 992px) {
  .blog-page {
    padding: 60px 0;
  }
}
.blog-page__container {
  width: 100%;
  max-width: 991px;
  padding: 0 16px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .blog-page__container {
    max-width: 1328px;
  }
}
.blog-page__heading h1.heading {
  color: #160A38;
  margin: 0 0 24px 0;
}
.blog-page__sticky {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  margin: 0 0 60px 0;
}
@media (min-width: 768px) {
  .blog-page__sticky {
    grid-template-columns: repeat(2, 1fr);
  }
}
.blog-page__posts {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
@media (min-width: 768px) {
  .blog-page__posts {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 24px;
    row-gap: 24px;
  }
}
@media (min-width: 1200px) {
  .blog-page__posts {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog-page__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 0 0;
}
.blog-page__pagination .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.blog-page__pagination .pagination .page-numbers {
  width: 38px;
  min-width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: 400;
  line-height: 130%;
  color: #000;
  text-decoration: none;
}
.blog-page__pagination .pagination .page-numbers.current {
  color: #F28B2D;
}
.blog-page__pagination .pagination .prev.page-numbers .prev-next,
.blog-page__pagination .pagination .next.page-numbers .prev-next {
  width: 38px;
  min-width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog-page__pagination .pagination .prev.page-numbers .prev-next svg,
.blog-page__pagination .pagination .next.page-numbers .prev-next svg {
  width: 8px;
  height: 16px;
}
.blog-page__pagination .pagination .prev.page-numbers .prev-next svg path,
.blog-page__pagination .pagination .next.page-numbers .prev-next svg path {
  fill: #F28B2D;
}

.blog-post__container {
  width: 100%;
  max-width: 991px;
  padding: 0 16px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .blog-post__container {
    max-width: 1328px;
  }
}
@media (min-width: 1200px) {
  .blog-post__container {
    display: flex;
    gap: 32px;
  }
}
.blog-post__content {
  color: #160A38;
  margin: 0 0 32px 0;
}
@media (min-width: 992px) {
  .blog-post__content {
    margin: 0 0 72px 0;
  }
}
.blog-post__content h6 {
  font-size: 14px;
  line-height: 130%;
  font-weight: 500;
  color: #160A38;
  margin: 0 0 16px 0;
}
.blog-post__content h5 {
  font-size: 16px;
  line-height: 130%;
  font-weight: 500;
  color: #160A38;
  margin: 0 0 16px 0;
}
.blog-post__content h4 {
  font-size: 18px;
  line-height: 130%;
  font-weight: 500;
  color: #160A38;
  margin: 0 0 16px 0;
}
.blog-post__content h3 {
  font-size: 22px;
  line-height: 130%;
  font-weight: 500;
  color: #160A38;
  margin: 0 0 16px 0;
}
.blog-post__content h2 {
  font-size: 28px;
  line-height: 130%;
  font-weight: 500;
  color: #160A38;
  margin: 0 0 16px 0;
}
.blog-post__content h1 {
  font-size: 32px;
  line-height: 130%;
  font-weight: 500;
  color: #160A38;
  margin: 0 0 16px 0;
}
.blog-post__content p {
  font-size: 16px;
  line-height: 160%;
  font-weight: 400;
  color: #160A38;
  margin: 0 0 16px 0;
}
.blog-post__content p a {
  color: #F28B2D;
  text-decoration: none;
}
.blog-post__content p a:hover {
  text-decoration: underline;
}
.blog-post__content blockquote {
  margin: 0 0 16px 0;
  padding: 24px;
  background-color: rgb(250, 250, 251);
}
.blog-post__content blockquote p:last-of-type {
  margin: 0;
}
.blog-post__content figure.wp-block-image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 0 16px 0;
}
.blog-post__content figure.wp-block-image img {
  width: 100%;
  height: auto;
}
.blog-post__content .wp-block-separator {
  color: #fff;
}
@media (min-width: 1200px) {
  .blog-post__col {
    flex: 1;
  }
}
.blog-post__col--column-2 {
  display: none;
}
@media (min-width: 1200px) {
  .blog-post__col--column-2 {
    display: block;
    max-width: 362px;
  }
}
.blog-post__intro {
  max-width: 902px;
  padding: 32px 0 0 0;
}
@media (min-width: 992px) {
  .blog-post__intro {
    padding: 72px 0 0 0;
  }
}
.blog-post__title {
  font-size: 32px;
  line-height: 120%;
  font-weight: 700;
  color: #160A38;
  margin: 0 0 12px 0;
}
@media (min-width: 992px) {
  .blog-post__title {
    font-size: 48px;
  }
}
.blog-post__thumbnail {
  width: 100%;
  height: 329px;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 0 32px 0;
}
@media (min-width: 576px) {
  .blog-post__thumbnail {
    height: 429px;
  }
}
@media (min-width: 768px) {
  .blog-post__thumbnail {
    height: 529px;
  }
}
@media (min-width: 992px) {
  .blog-post__thumbnail {
    margin: 0 0 32px 0;
  }
}
.blog-post__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-post__tile {
  padding: 24px;
  background-color: rgb(32, 30, 138);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 347px;
}
@media (min-width: 1200px) {
  .blog-post__tile {
    flex: 1;
    max-width: 358px;
  }
}
.blog-post__tile h3 {
  font-size: 31.5px;
  font-weight: 500;
  line-height: 150%;
  color: #fff;
  margin: 0 0 9px 0;
  text-align: center;
}
.blog-post__tile p {
  font-size: 13.5px;
  font-weight: 400;
  line-height: 150%;
  color: #fff;
  margin: 0;
  text-align: center;
}
.blog-post__tile > div {
  width: 100%;
  height: 1px;
  background-color: #fff;
  max-width: 240px;
  margin: 29.5px 0;
}
.blog-post__team {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.blog-post__team h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 160%;
  color: #160A38;
  margin: 0 0 12px 0;
  text-align: center;
}
.blog-post__team.hide {
  display: none;
}
.blog-post__avatars {
  display: flex;
  margin: 0 0 24px 0;
}
.blog-post__avatars .single-box {
  width: 110px;
  min-width: 110px;
  height: 110px;
  border-radius: 100%;
  overflow: hidden;
}
.blog-post__avatars .single-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-post__avatars .single-box:nth-of-type(2), .blog-post__avatars .single-box:nth-of-type(3) {
  margin-left: -15px;
}
.blog-post__labels {
  margin: 0 0 32px 0;
}
.blog-post__labels span,
.blog-post__labels a {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: rgb(83, 91, 110);
}
.blog-post__labels a {
  text-decoration: none;
}
.blog-post__labels a:hover {
  text-decoration: underline;
}
.blog-post__labels a:last-of-type span {
  display: none;
}
.blog-post__sidebar {
  display: flex;
  flex-direction: column;
  gap: 64px;
  position: sticky;
  top: 32px;
  margin: 0 0 72px 0;
}

.b-tab {
  opacity: 0;
  transition: opacity 500ms ease-in-out;
  display: none; /* Initially hidden */
}

.b-tab.active {
  opacity: 1;
  display: block; /* Active tab is visible */
}

.b-nav-tab {
  display: block;
  padding: 18px;
  cursor: pointer;
  border-radius: 10px;
  background-color: rgb(245, 245, 255);
  color: rgb(22, 51, 131);
  font-size: 16px;
  line-height: 100%;
  font-weight: 600;
  transition: all 0.1s;
}

.b-nav-tab.active {
  color: #fff;
  background-color: rgb(22, 51, 131);
}

/** BLOCKS */
.home-hero {
  overflow: hidden;
  min-height: 504px;
  position: relative;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 62px 0;
}
@media (min-width: 992px) {
  .home-hero {
    min-height: 704px;
    padding: 0 0 84px 0;
  }
}
.home-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.home-hero__background .overlay {
  width: 100%;
  height: 100%;
  background: #FFF;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(32, 30, 138, 0.2) 50%, rgba(1, 0, 27, 0.3) 100%);
  position: absolute;
}
.home-hero__background video,
.home-hero__background img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-hero__container {
  z-index: 2;
  position: relative;
  width: 100%;
  max-width: 991px;
  padding: 0 16px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .home-hero__container {
    max-width: 1328px;
  }
}
.home-hero__heading {
  max-width: 640px;
}
.home-hero__heading h1.heading {
  margin: 0 0 12px 0;
  color: #FFF;
}
.home-hero__desc {
  color: #FFF;
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  margin: 0 0 32px 0;
  max-width: 618px;
}
@media (min-width: 992px) {
  .home-hero__desc {
    font-size: 18px;
  }
}

.info-block {
  padding: 53.5px 0;
}
@media (min-width: 992px) {
  .info-block {
    padding: 107px 0;
  }
}
.info-block__container {
  width: 100%;
  max-width: 991px;
  padding: 0 16px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .info-block__container {
    max-width: 1328px;
  }
}
@media (min-width: 1200px) {
  .info-block__container {
    display: flex;
    gap: 80px;
    align-items: center;
  }
}
.info-block__col--column-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 0 0 30px 0;
}
@media (min-width: 576px) {
  .info-block__col--column-1 {
    flex-direction: row;
    gap: 12px;
  }
}
@media (min-width: 992px) {
  .info-block__col--column-1 {
    margin: 0 0 80px 0;
  }
}
@media (min-width: 1200px) {
  .info-block__col--column-1 {
    justify-content: flex-start;
    margin: 0;
    align-items: flex-start;
  }
}
.info-block__col--column-1 .column-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  min-width: 284px;
}
@media (min-width: 1200px) {
  .info-block__col--column-1 .column-1 {
    padding: 87px 0 0 0;
  }
}
.info-block__col--column-1 .column-1 .image {
  max-width: 284px;
  width: 100%;
  height: 347px;
  border-top-left-radius: 60px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow: hidden;
  display: none;
}
@media (min-width: 576px) {
  .info-block__col--column-1 .column-1 .image {
    display: initial;
  }
}
.info-block__col--column-1 .column-1 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.info-block__col--column-1 .column-1 .content {
  max-width: 284px;
  width: 100%;
  border-radius: 14px;
  background-color: rgb(242, 139, 45);
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 218px;
}
.info-block__col--column-1 .column-1 .content h3 {
  text-align: center;
  font-weight: 500;
  font-size: 34px;
  line-height: 150%;
  margin: 0 0 8px 0;
  color: #fff;
}
.info-block__col--column-1 .column-1 .content p {
  text-align: center;
  font-size: 15px;
  line-height: 150%;
  font-weight: 400;
  margin: 0;
  color: #fff;
}
.info-block__col--column-1 .column-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.info-block__col--column-1 .column-2 .content {
  max-width: 284px;
  width: 100%;
  border-radius: 14px;
  background-color: rgb(245, 245, 255);
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 218px;
}
.info-block__col--column-1 .column-2 .content h3 {
  text-align: center;
  font-weight: 500;
  font-size: 34px;
  line-height: 150%;
  margin: 0 0 8px 0;
  color: #160A38;
}
.info-block__col--column-1 .column-2 .content p {
  text-align: center;
  font-size: 15px;
  line-height: 150%;
  font-weight: 400;
  margin: 0;
  color: #160A38;
}
.info-block__col--column-1 .column-2 .image {
  max-width: 284px;
  width: 100%;
  height: 347px;
  position: relative;
}
.info-block__col--column-1 .column-2 .image--no-overflow {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 60px;
  border-bottom-left-radius: 20px;
  bottom: 0;
  left: 0;
}
.info-block__col--column-1 .column-2 .image--no-overflow img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  left: 0;
}
.info-block__col--column-1 .column-2 .image--overflow {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.info-block__col--column-1 .column-2 .image--overflow img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (min-width: 1200px) {
  .info-block__col--column-2 {
    flex: 1;
    max-width: 636px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
}
.info-block__heading h2.heading {
  margin: 0 0 12px 0;
  color: #160A38;
}
.info-block__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  color: #160A38;
  margin: 0 0 12px 0;
}
.info-block__desc-high {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: #160A38;
  margin: 0 0 32px 0;
}

.services {
  padding: 56px 0 25px 0;
}
@media (min-width: 992px) {
  .services {
    padding: 112px 0 50px 0;
  }
}
.services__container {
  width: 100%;
  max-width: 991px;
  padding: 0 16px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .services__container {
    max-width: 1328px;
  }
}
.services__heading h2.heading {
  margin: 0 0 24px 0;
  color: #160A38;
}
.services__heading h2.heading br {
  display: none;
}
@media (min-width: 768px) {
  .services__heading h2.heading br {
    display: initial;
  }
}
.services__tiles {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
@media (min-width: 768px) {
  .services__tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .services__tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}
.services__tiles .single-box {
  height: 390px;
  width: 100%;
  max-width: 416px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .services__tiles .single-box {
    margin: initial;
    max-width: initial;
  }
}
@media (min-width: 992px) {
  .services__tiles .single-box {
    height: 517px;
  }
}
.services__tiles .single-box__background {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 0.2s;
}
.services__tiles .single-box__background .overlay {
  background: RGBA(125, 102, 75, 0);
  background: linear-gradient(180deg, rgba(125, 102, 75, 0.2) 60%, rgb(11, 10, 46) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
.services__tiles .single-box__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services__tiles .single-box__meta {
  position: relative;
  z-index: 2;
  max-width: 302px;
}
.services__tiles .single-box__meta a {
  text-decoration: none;
}
.services__tiles .single-box__title {
  color: #fff;
  font-size: 22px;
  line-height: 130%;
  font-weight: 400;
  margin: 0 0 12px 0;
}
.services__tiles .single-box__btn {
  height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
}
.services__tiles .single-box__btn span {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  line-height: 100%;
}
.services__tiles .single-box__btn svg {
  width: 18px;
  min-width: 18px;
  height: 15px;
  transition: transform 0.3s;
}
.services__tiles .single-box__btn:hover svg {
  transform: translateX(5px);
}
.services__tiles .single-box:hover .single-box__background {
  transform: scale(1.2);
}
.services__contact {
  height: 390px;
  width: 100%;
  max-width: 416px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto;
  background-color: rgb(245, 245, 255);
}
@media (min-width: 768px) {
  .services__contact {
    margin: initial;
    max-width: initial;
  }
}
@media (min-width: 992px) {
  .services__contact {
    height: 517px;
  }
}
.services__contact > a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  text-decoration: none;
  padding: 40px 36px;
  width: 100%;
}
.services__contact h3.text {
  font-size: 24px;
  font-weight: 600;
  line-height: 160%;
  color: #160A38;
  margin: 0;
}
.services__contact .avatars {
  display: flex;
  align-items: center;
}
.services__contact .avatars .avatar {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 100%;
}
.services__contact .avatars .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services__contact .avatars .avatar:nth-of-type(2) {
  margin-left: -10px;
}
.services__contact .avatars .avatar:nth-of-type(3) {
  margin-left: -10px;
}
.services__contact .avatars p.label {
  margin-left: 12px;
  font-size: 13px;
  line-height: 150%;
  font-weight: 400;
  color: #160A38;
}
.services__contact .avatars p.label span {
  font-size: 18px;
  font-weight: 600;
}

.icons__container {
  width: 100%;
  max-width: 991px;
  padding: 0 16px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 16px;
  row-gap: 32px;
}
@media (min-width: 1200px) {
  .icons__container {
    max-width: 1328px;
  }
}
@media (min-width: 1200px) {
  .icons__container {
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
  }
}
.icons__container .single-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.icons__container .single-box__icon {
  width: 120px;
  min-width: 120px;
  height: 120px;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 0 24px 0;
}
.icons__container .single-box__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.icons__container .single-box__title {
  font-size: 22px;
  font-weight: 600;
  line-height: 130%;
  text-align: center;
  color: #160A38;
  margin: 0 0 16px 0;
}
.icons__container .single-box__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  text-align: center;
  color: #160A38;
  margin: 0;
}

.view-more {
  padding: 25px 0 56px 0;
}
@media (min-width: 992px) {
  .view-more {
    padding: 50px 0 112px 0;
  }
}
.view-more__container {
  width: 100%;
  max-width: 991px;
  padding: 0 16px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .view-more__container {
    max-width: 1328px;
  }
}
.view-more__heading h2.heading {
  margin: 0 0 24px 0;
  color: #160A38;
}
.view-more__heading h2.heading br {
  display: none;
}
@media (min-width: 768px) {
  .view-more__heading h2.heading br {
    display: initial;
  }
}
.view-more__tiles {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
@media (min-width: 768px) {
  .view-more__tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .view-more__tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}
.view-more__tiles .single-box {
  height: 390px;
  width: 100%;
  max-width: 416px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .view-more__tiles .single-box {
    margin: initial;
    max-width: initial;
  }
}
@media (min-width: 992px) {
  .view-more__tiles .single-box {
    height: 517px;
  }
}
.view-more__tiles .single-box__background {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 0.2s;
}
.view-more__tiles .single-box__background .overlay {
  background: RGBA(125, 102, 75, 0);
  background: linear-gradient(180deg, rgba(125, 102, 75, 0.2) 60%, rgb(11, 10, 46) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
.view-more__tiles .single-box__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.view-more__tiles .single-box__meta {
  position: relative;
  z-index: 2;
  max-width: 302px;
}
.view-more__tiles .single-box__meta a {
  text-decoration: none;
}
.view-more__tiles .single-box__title {
  color: #fff;
  font-size: 22px;
  line-height: 130%;
  font-weight: 400;
  margin: 0 0 12px 0;
}
.view-more__tiles .single-box__btn {
  height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
}
.view-more__tiles .single-box__btn span {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  line-height: 100%;
}
.view-more__tiles .single-box__btn svg {
  width: 18px;
  min-width: 18px;
  height: 15px;
  transition: transform 0.3s;
}
.view-more__tiles .single-box__btn:hover svg {
  transform: translateX(5px);
}
.view-more__tiles .single-box:hover .single-box__background {
  transform: scale(1.2);
}

.cta {
  padding: 60px 0;
}
@media (min-width: 992px) {
  .cta {
    padding: 120px 0;
  }
}
.cta__container {
  width: 100%;
  max-width: 991px;
  padding: 0 16px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .cta__container {
    max-width: 1328px;
  }
}
@media (min-width: 1200px) {
  .cta__container {
    display: flex;
    gap: 80px;
    align-items: center;
    justify-content: space-between;
  }
}
.cta__col--column-1 {
  margin: 0 0 30px 0;
}
@media (min-width: 1200px) {
  .cta__col--column-1 {
    margin: 0;
  }
}
.cta__col--column-2 {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 576px) {
  .cta__col--column-2 {
    flex-direction: row;
    gap: 13px;
    justify-content: center;
  }
}
@media (min-width: 1200px) {
  .cta__col--column-2 {
    align-items: flex-start;
  }
}
.cta__col--column-2 .column-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
}
@media (min-width: 1200px) {
  .cta__col--column-2 .column-1 {
    min-width: 284px;
    padding-top: 53px;
  }
}
.cta__col--column-2 .column-1 .image {
  max-width: 284px;
  width: 100%;
  height: 347px;
  border-top-left-radius: 60px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow: hidden;
  display: none;
}
@media (min-width: 576px) {
  .cta__col--column-2 .column-1 .image {
    display: initial;
  }
}
.cta__col--column-2 .column-1 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta__col--column-2 .column-1 .content {
  max-width: 284px;
  width: 100%;
  border-radius: 14px;
  background-color: rgb(242, 139, 45);
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 218px;
}
.cta__col--column-2 .column-1 .content h3 {
  text-align: center;
  font-weight: 500;
  font-size: 34px;
  line-height: 150%;
  margin: 0 0 8px 0;
  color: #fff;
}
.cta__col--column-2 .column-1 .content p {
  text-align: center;
  font-size: 15px;
  line-height: 150%;
  font-weight: 400;
  margin: 0;
  color: #fff;
}
.cta__col--column-2 .column-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 576px) {
  .cta__col--column-2 .column-2 {
    flex: 1;
    max-width: 282px;
  }
}
.cta__col--column-2 .column-2 .image {
  min-width: 282px;
  max-width: 282px;
  width: 100%;
  height: 570px;
  background-color: rgb(245, 245, 255);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  position: relative;
}
.cta__col--column-2 .column-2 .image img {
  width: 100%;
  height: calc(100% + 35px);
  position: absolute;
  bottom: 0;
  left: 0;
  object-fit: cover;
}
.cta__heading h2.heading {
  color: #160A38;
  margin: 0 0 24px 0;
}
.cta__points {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0 0 42px 0;
}
.cta__points .single-box {
  display: flex;
  align-items: center;
  gap: 24px;
}
.cta__points .single-box__icon {
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 20px;
  overflow: hidden;
}
.cta__points .single-box__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cta__points .single-box__meta h3 {
  font-size: 18px;
  line-height: 130%;
  font-weight: 600;
  color: #160A38;
  margin: 0 0 6px 0;
}
@media (min-width: 992px) {
  .cta__points .single-box__meta h3 {
    font-size: 22px;
  }
}
.cta__points .single-box__meta p {
  font-size: 16px;
  font-weight: 400px;
  line-height: 160%;
  color: #160A38;
  margin: 0;
}

.video {
  overflow: hidden;
  min-height: 504px;
  position: relative;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 62px 0;
}
@media (min-width: 992px) {
  .video {
    min-height: 750px;
    padding: 0 0 84px 0;
  }
}
.video__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.video__background .overlay {
  width: 100%;
  height: 100%;
  background: #ffffff;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(32, 30, 138) 50%, rgb(1, 0, 27) 100%);
  position: absolute;
  opacity: 0.3;
}
.video__background video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video__container {
  z-index: 2;
  position: relative;
  width: 100%;
  max-width: 991px;
  padding: 0 16px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .video__container {
    max-width: 1328px;
  }
}
.video__heading {
  max-width: 827px;
}
.video__heading h1.heading {
  margin: 0 0 12px 0;
  color: #FFF;
}
.video__desc {
  color: #FFF;
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  margin: 0 0 32px 0;
  max-width: 827px;
}
@media (min-width: 992px) {
  .video__desc {
    font-size: 18px;
  }
}

.faq {
  padding: 64px 0;
  background-color: #fff;
}
@media (min-width: 992px) {
  .faq {
    padding: 112px 0;
  }
}
.faq__container {
  width: 100%;
  max-width: 991px;
  padding: 0 16px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .faq__container {
    max-width: 1328px;
  }
}
@media (min-width: 1200px) {
  .faq__container {
    display: flex;
    gap: 72px;
  }
}
.faq__heading {
  color: #160A38;
  margin: 0 0 24px 0;
}
@media (min-width: 1200px) {
  .faq__col {
    width: 50%;
  }
}
.faq__col--column-1 {
  margin: 0 0 30px 0;
}
.faq__desc {
  font-size: 18px;
  line-height: 150%;
  font-weight: 400;
  color: #160A38;
  margin: 0;
}
.faq__content {
  padding: 24px 24px 0 24px;
  background-color: #fff;
}
.faq__content .single-box {
  border-bottom: 1px solid rgb(236, 225, 206);
  padding: 0 0 12px 0;
  margin: 0 0 24px 0;
}
.faq__content .single-box:last-of-type {
  margin: 0;
}
.faq__content .single-box__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.faq__content .single-box__question h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 130%;
  color: #160A38;
  margin: 0 0 12px 0;
  max-width: 618px;
}
.faq__content .single-box__question div {
  width: 32px;
  min-width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.faq__content .single-box__question div svg {
  width: 17px;
  height: 9.5px;
}
.faq__content .single-box__question div.active {
  transform: rotate(180deg);
}
.faq__content .single-box__answer {
  display: none;
  padding-right: 32px;
}
.faq__content .single-box__answer p {
  font-size: 16px;
  line-height: 160%;
  font-weight: 400;
  color: #160A38;
  margin: 0 0 12px 0;
  max-width: 618px;
}
.faq__content .single-box:first-of-type .single-box__answer {
  display: block;
}

@media (min-width: 1500px) {
  .faq__content {
    min-width: 710px;
  }
  .faq__col {
    width: initial;
  }
}
.testimonials {
  padding: 64px 0;
  background-color: rgb(245, 245, 255);
}
@media (min-width: 992px) {
  .testimonials {
    padding: 112px 0;
  }
}
.testimonials__container {
  width: 100%;
  max-width: 991px;
  padding: 0 16px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .testimonials__container {
    max-width: 1328px;
  }
}
.testimonials__heading {
  max-width: 583px;
}
.testimonials__heading h2.heading {
  color: #160A38;
  margin: 0 0 24px 0;
}
@media (min-width: 992px) {
  .testimonials__heading h2.heading {
    margin: 0;
  }
}
.testimonials__team {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.testimonials__team h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 160%;
  color: #160A38;
  margin: 0 0 12px 0;
  text-align: center;
}
.testimonials__team.hide {
  display: none;
}
.testimonials__avatars {
  display: flex;
  margin: 0 0 24px 0;
}
.testimonials__avatars .single-box {
  width: 110px;
  min-width: 110px;
  height: 110px;
  border-radius: 100%;
  overflow: hidden;
}
.testimonials__avatars .single-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonials__avatars .single-box:nth-of-type(2), .testimonials__avatars .single-box:nth-of-type(3) {
  margin-left: -15px;
}
.testimonials__row--row-1 {
  margin: 0 0 30px 0;
}
@media (min-width: 992px) {
  .testimonials__row--row-1 {
    display: flex;
    justify-content: space-between;
    margin: 0 0 64px 0;
  }
}
.testimonials__row--row-2 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 992px) {
  .testimonials__row--row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .testimonials__row--row-2 {
    display: flex;
    flex-direction: row;
  }
}
.testimonials__row--row-2 .single-box {
  padding: 24px 24px 52px 24px;
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
@media (min-width: 1200px) {
  .testimonials__row--row-2 .single-box {
    flex: 1;
  }
}
.testimonials__row--row-2 .single-box__content {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: #160A38;
  margin: 0;
}
.testimonials__row--row-2 .single-box__signature {
  display: flex;
  flex-direction: column;
}
.testimonials__row--row-2 .single-box__name {
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  color: #160A38;
}
.testimonials__row--row-2 .single-box__position {
  font-size: 16px;
  line-height: 160%;
  font-weight: 400;
  color: rgb(83, 91, 110);
}
.testimonials__tile {
  padding: 24px;
  background-color: rgb(32, 30, 138);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 347px;
}
@media (min-width: 1200px) {
  .testimonials__tile {
    flex: 1;
    max-width: 358px;
  }
}
.testimonials__tile h3 {
  font-size: 31.5px;
  font-weight: 500;
  line-height: 150%;
  color: #fff;
  margin: 0 0 9px 0;
  text-align: center;
}
.testimonials__tile p {
  font-size: 13.5px;
  font-weight: 400;
  line-height: 150%;
  color: #fff;
  margin: 0;
  text-align: center;
}
.testimonials__tile > div {
  width: 100%;
  height: 1px;
  background-color: #fff;
  max-width: 240px;
  margin: 29.5px 0;
}

.contact-footer__container h2.heading {
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
  color: #160A38;
  padding: 12px 0 0 0;
  margin: 0 0 15px 0;
}
.contact-footer__container h2.heading::after {
  content: "";
  display: block;
  width: 305px;
  border-bottom: 2px solid rgb(245, 245, 255);
  margin: 12px 0 0 0;
}
.contact-footer__phone-numbers {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 24px 0;
}
.contact-footer__phone-numbers .single-box {
  display: flex;
  align-items: center;
}
.contact-footer__phone-numbers .single-box__icon {
  width: 20px;
  height: 20px;
  margin-right: 14px;
}
.contact-footer__phone-numbers .single-box__icon svg {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}
.contact-footer__phone-numbers .single-box__number {
  font-size: 18px;
  line-height: 160%;
  font-weight: 500;
  color: #160A38;
  text-decoration: none;
  margin-right: 12px;
}
@media (min-width: 576px) {
  .contact-footer__phone-numbers .single-box__number {
    font-size: 22px;
  }
}
.contact-footer__phone-numbers .single-box__number:hover {
  text-decoration: underline;
}
.contact-footer__phone-numbers .single-box span {
  font-size: 14px;
  line-height: 160%;
  font-weight: 500;
  color: #160A38;
}
.contact-footer__phone-numbers .single-box > svg {
  width: 48px;
  min-width: 48px;
  height: 31px;
}
.contact-footer__address {
  display: flex;
}
.contact-footer__address .icon {
  width: 20px;
  height: 20px;
  margin-right: 14px;
}
.contact-footer__address .icon svg {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}
.contact-footer__address p.address {
  margin: 0;
  font-size: 18px;
  line-height: 160%;
  font-weight: 500;
  color: #160A38;
}

.news-footer__container h2.heading {
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
  color: #160A38;
  padding: 12px 0 0 0;
  margin: 0 0 15px 0;
}
.news-footer__container h2.heading::after {
  content: "";
  display: block;
  width: 305px;
  border-bottom: 2px solid rgb(245, 245, 255);
  margin: 12px 0 0 0;
}
.news-footer__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.news-footer__content .single-box > a {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.news-footer__content .single-box__thumbnail {
  width: 80px;
  min-width: 80px;
  height: 72px;
}
.news-footer__content .single-box__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-footer__content .single-box__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 160%;
  color: #160A38;
  margin: 0;
}

.hero {
  overflow: hidden;
  min-height: 486px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 29px 0;
}
.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero__background .overlay {
  width: 100%;
  height: 100%;
  background: #ffffff;
  background: linear-gradient(180deg, rgb(32, 30, 138) 50%, rgb(1, 0, 27) 100%);
  position: absolute;
  opacity: 0.3;
}
.hero__background img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__container {
  z-index: 2;
  position: relative;
  width: 100%;
  max-width: 991px;
  padding: 0 16px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .hero__container {
    max-width: 1328px;
  }
}
.hero__heading h1.heading {
  margin: 0;
  color: #fff;
}

.breadcrumbs {
  padding-top: 14px;
  padding-bottom: 14px;
}
.breadcrumbs.bg-alt {
  background: rgba(255, 255, 255, 0);
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(228, 228, 246) 100%);
}
.breadcrumbs__container {
  font-size: 13px;
  line-height: 150%;
  font-weight: 400;
  color: #160A38;
  width: 100%;
  max-width: 991px;
  padding: 0 16px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .breadcrumbs__container {
    max-width: 1328px;
  }
}
.breadcrumbs__container a {
  font-size: 13px;
  line-height: 150%;
  font-weight: 400;
  text-decoration: none;
  color: #160A38;
}
.breadcrumbs__container a:hover {
  text-decoration: underline;
}
.breadcrumbs__container a svg {
  margin: 0 8px -3px 0;
}
.breadcrumbs__container svg {
  margin: 0 8px;
}

.doctor-intro {
  padding: 80px 0 123px 0;
}
@media (min-width: 992px) {
  .doctor-intro {
    padding: 123px 0 123px 0;
  }
}
.doctor-intro__container {
  width: 100%;
  max-width: 991px;
  padding: 0 16px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .doctor-intro__container {
    max-width: 1328px;
  }
}
@media (min-width: 992px) {
  .doctor-intro__container {
    display: flex;
    gap: 40px;
  }
}
@media (min-width: 1200px) {
  .doctor-intro__container {
    gap: 80px;
  }
}
@media (min-width: 992px) {
  .doctor-intro__col {
    width: 50%;
    flex: 1;
  }
}
.doctor-intro__col--column-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 30px 0;
}
@media (min-width: 992px) {
  .doctor-intro__col--column-1 {
    margin: 0;
    max-width: 574px;
  }
}
.doctor-intro__image {
  max-width: 343px;
  width: 100%;
  height: 400px;
  background-color: #E2E2EF;
  border-radius: 20px;
  position: relative;
}
@media (min-width: 576px) {
  .doctor-intro__image {
    max-width: 420px;
    height: 500px;
  }
}
@media (min-width: 768px) {
  .doctor-intro__image {
    height: 685px;
    max-width: 574px;
  }
}
@media (min-width: 992px) {
  .doctor-intro__image {
    height: 560px;
  }
}
@media (min-width: 1200px) {
  .doctor-intro__image {
    height: 685px;
  }
}
.doctor-intro__image img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 108%;
  display: block;
}
.doctor-intro__heading h2.heading {
  margin: 0 0 24px 0;
  color: #160A38;
}
.doctor-intro__desc {
  margin: 0 0 32px 0;
}
@media (min-width: 992px) {
  .doctor-intro__desc {
    margin: 0 0 62px 0;
  }
}
.doctor-intro__desc p {
  margin: 0 0 24px 0;
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  color: #160A38;
}
@media (min-width: 992px) {
  .doctor-intro__desc p {
    font-size: 18px;
  }
}
.doctor-intro__desc p:last-of-type {
  margin: 0;
}

.links {
  padding: 36px 0;
}
@media (min-width: 992px) {
  .links {
    padding: 72px 0;
  }
}
.links__container {
  width: 100%;
  max-width: 991px;
  padding: 0 16px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .links__container {
    max-width: 1328px;
  }
}
.links__content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
@media (min-width: 768px) {
  .links__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
.links__content .single-box {
  position: relative;
  width: 100%;
  min-height: 317px;
  background-color: rgb(179, 100, 100);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px 38px 41px 38px;
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 576px) {
  .links__content .single-box {
    min-height: 417px;
  }
}
@media (min-width: 1200px) {
  .links__content .single-box {
    min-height: 517px;
  }
}
.links__content .single-box__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.links__content .single-box__background .overlay {
  background: RGBA(125, 102, 75, 0);
  background: linear-gradient(180deg, rgba(125, 102, 75, 0.2) 60%, rgb(11, 10, 46) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
.links__content .single-box__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.links__content .single-box__meta {
  z-index: 2;
  position: relative;
  max-width: 302px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.links__content .single-box__title {
  font-size: 22px;
  line-height: 130%;
  color: #fff;
  font-weight: 600;
  margin: 0;
  text-decoration: none;
}

.image-block {
  padding: 39px 0;
}
@media (min-width: 992px) {
  .image-block {
    padding: 77.5px 0;
  }
}
.image-block__container {
  width: 100%;
  max-width: 991px;
  padding: 0 16px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .image-block__container {
    max-width: 1328px;
  }
}
@media (min-width: 992px) {
  .image-block__container {
    display: flex;
    gap: 40px;
  }
}
@media (min-width: 1200px) {
  .image-block__container {
    gap: 80px;
  }
}
@media (min-width: 992px) {
  .image-block__container.img-left {
    flex-direction: row-reverse;
  }
}
@media (min-width: 992px) {
  .image-block__col {
    flex: 1;
  }
}
.image-block__col--column-1 {
  margin: 0 0 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .image-block__col--column-1 {
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .image-block__col--column-1 {
    max-width: 521px;
  }
}
.image-block__col--column-2 {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .image-block__col--column-2 {
    justify-content: flex-end;
  }
}
.image-block__heading h2.heading {
  margin: 0 0 24px 0;
  color: #160A38;
}
.image-block__desc {
  margin: 0 0 32px 0;
  color: #160A38;
}
@media (min-width: 992px) {
  .image-block__desc {
    margin: 0 0 62px 0;
  }
}
.image-block__desc p {
  margin: 0 0 24px 0;
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  color: #160A38;
}
@media (min-width: 992px) {
  .image-block__desc p {
    font-size: 18px;
  }
}
.image-block__desc p:last-of-type {
  margin: 0;
}
.image-block__desc a {
  color: #F28B2D;
  text-decoration: none;
}
.image-block__desc a:hover {
  text-decoration: underline;
}
.image-block__image {
  width: 100%;
  max-width: 695px;
  max-height: 649px;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 8/8;
}
.image-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news {
  padding: 60px 0;
  background-color: rgb(245, 245, 255);
}
.news__container {
  width: 100%;
  max-width: 991px;
  padding: 0 16px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .news__container {
    max-width: 1328px;
  }
}
.news__content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
@media (min-width: 768px) {
  .news__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .news__content {
    grid-template-columns: repeat(3, 1fr);
  }
}
.news__content .single-box {
  background-color: #fff;
}
.news__heading h2.heading {
  margin: 0 0 24px 0;
  color: #160A38;
}

.offer-links {
  padding: 48.5px 0;
}
@media (min-width: 992px) {
  .offer-links {
    padding: 97.5px 0;
  }
}
.offer-links__container {
  width: 100%;
  max-width: 991px;
  padding: 0 16px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .offer-links__container {
    max-width: 1328px;
  }
}
@media (min-width: 992px) {
  .offer-links__container {
    display: flex;
    gap: 80px;
    align-items: flex-start;
  }
}
@media (min-width: 992px) {
  .offer-links__col {
    flex: 1;
  }
}
.offer-links__col--column-1 {
  margin: 0 0 50px 0;
}
@media (min-width: 992px) {
  .offer-links__col--column-1 {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .offer-links__col--column-2 {
    max-width: 424px;
  }
}
.offer-links__heading h2.heading {
  color: #160A38;
  margin: 0 0 24px 0;
}
.offer-links__desc {
  margin: 0 0 45px 0;
}
.offer-links__desc p {
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  color: #160A38;
  margin: 0 0 24px 0;
}
@media (min-width: 992px) {
  .offer-links__desc p {
    font-size: 18px;
  }
}
.offer-links__desc p:last-of-type {
  margin: 0;
}
.offer-links__desc a {
  color: #F28B2D;
  text-decoration: none;
  font-weight: 500;
}
.offer-links__desc a:hover {
  text-decoration: underline;
}
.offer-links__desc h1,
.offer-links__desc h2,
.offer-links__desc h3,
.offer-links__desc h4,
.offer-links__desc h5,
.offer-links__desc h6,
.offer-links__desc ul,
.offer-links__desc ol {
  color: #160A38;
}
.offer-links__desc blockquote p {
  font-style: italic;
}
.offer-links__title {
  padding: 21px 10px;
  background-color: rgb(245, 245, 255);
  display: block;
  font-size: 22px;
  line-height: 130%;
  font-weight: 600;
  color: #160A38;
  margin: 0;
}
.offer-links__links {
  display: flex;
  flex-direction: column;
}
.offer-links__link {
  padding: 10px;
  min-height: 72px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
  color: #160A38;
  text-decoration: none;
  border-bottom: 1px solid rgb(214, 214, 214);
}

.contact {
  padding: 32px 0 32px 0;
}
@media (min-width: 992px) {
  .contact {
    padding: 32px 0 72px 0;
  }
}
.contact__container {
  width: 100%;
  max-width: 991px;
  padding: 0 16px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .contact__container {
    max-width: 1328px;
  }
}
.contact__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 160%;
  color: #160A38;
  margin: 0 0 10px 0;
}
@media (min-width: 992px) {
  .contact__title {
    font-size: 36px;
  }
}
.contact__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .contact__content {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .contact__col {
    flex: 1;
    width: 50%;
  }
}
.contact__col--column-1 {
  background-color: rgb(245, 245, 255);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  gap: 30px;
}
@media (min-width: 576px) {
  .contact__col--column-1 {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .contact__col--column-1 {
    flex-direction: column;
  }
}
@media (min-width: 1200px) {
  .contact__col--column-1 {
    flex-direction: row;
  }
}
.contact__col--column-1 .column-1 h4.heading {
  padding: 12px 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  color: rgb(83, 91, 110);
  margin: 0 0 15px 0;
}
.contact__col--column-1 .column-1 .phone {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 12px 0;
}
.contact__col--column-1 .column-1 .phone svg {
  width: 20px;
  min-width: 20px;
  height: 20px;
}
.contact__col--column-1 .column-1 .phone a {
  font-size: 22px;
  line-height: 160%;
  font-weight: 500;
  color: #160A38;
  text-decoration: none;
}
.contact__col--column-1 .column-1 .phone a:hover {
  text-decoration: underline;
}
.contact__col--column-1 .column-1 .email {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 12px 0;
}
.contact__col--column-1 .column-1 .email svg {
  width: 20px;
  min-width: 20px;
  height: 20px;
}
.contact__col--column-1 .column-1 .email a {
  font-size: 18px;
  line-height: 160%;
  font-weight: 500;
  color: #160A38;
  text-decoration: none;
}
.contact__col--column-1 .column-1 .email a:hover {
  text-decoration: underline;
}
.contact__col--column-1 .column-1 .address {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0 0 12px 0;
}
.contact__col--column-1 .column-1 .address svg {
  width: 20px;
  min-width: 20px;
  height: 20px;
}
.contact__col--column-1 .column-1 .address p {
  margin: 0;
  font-size: 18px;
  line-height: 160%;
  font-weight: 500;
  color: #160A38;
}
.contact__col--column-1 .column-1 .hours {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact__col--column-1 .column-1 .hours h5 {
  font-size: 18px;
  line-height: 160%;
  font-weight: 500;
  color: #160A38;
  margin: 0 0 14px 0;
}
.contact__col--column-1 .column-1 .hours p {
  margin: 0;
  font-size: 14px;
  line-height: 170%;
  font-weight: 400;
  color: #160A38;
}
.contact__col--column-1 .column-2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media (min-width: 576px) {
  .contact__col--column-1 .column-2 {
    align-items: flex-end;
  }
}
@media (min-width: 768px) {
  .contact__col--column-1 .column-2 {
    align-items: flex-start;
  }
}
@media (min-width: 1200px) {
  .contact__col--column-1 .column-2 {
    align-items: flex-end;
  }
}
.contact__col--column-2 p {
  margin: 0;
}
@media (min-width: 768px) {
  .contact__col--column-2 p {
    height: 100%;
  }
}
.contact__col--column-2 p iframe {
  width: 100%;
  height: 424px;
  display: block;
}
@media (min-width: 768px) {
  .contact__col--column-2 p iframe {
    height: 100%;
  }
}
.contact__avatars {
  display: flex;
}
.contact__avatars .avatar {
  width: 110px;
  height: 110px;
  border-radius: 100%;
  overflow: hidden;
}
.contact__avatars .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact__avatars .avatar:nth-of-type(2) {
  margin-left: -15px;
}
.contact__logo img {
  width: auto;
  max-width: 252px;
  height: auto;
  max-height: 77px;
}

.faq-brand {
  padding: 56px 0;
  background-color: #fff;
}
@media (min-width: 992px) {
  .faq-brand {
    padding: 112px 0;
  }
}
.faq-brand__container {
  width: 100%;
  max-width: 991px;
  padding: 0 16px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1200px) {
  .faq-brand__container {
    max-width: 1328px;
  }
}
@media (min-width: 992px) {
  .faq-brand__container {
    flex-direction: row;
    gap: 24px;
  }
}
@media (min-width: 992px) {
  .faq-brand__col {
    flex: 1;
  }
}
@media (min-width: 992px) {
  .faq-brand__col--column-2 {
    max-width: 613px;
  }
}
.faq-brand__heading h2.heading {
  margin: 0 0 40px 0;
  color: #160A38;
}
.faq-brand__content {
  padding: 24px 24px 0 24px;
  background-color: #fff;
  margin: 0 0 24px 0;
}
.faq-brand__content .single-box {
  border-bottom: 1px solid rgb(236, 225, 206);
  padding: 0 0 12px 0;
  margin: 0 0 24px 0;
}
.faq-brand__content .single-box:last-of-type {
  margin: 0;
}
.faq-brand__content .single-box__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.faq-brand__content .single-box__question h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 130%;
  color: #160A38;
  margin: 0 0 12px 0;
  max-width: 618px;
}
.faq-brand__content .single-box__question div {
  width: 32px;
  min-width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.faq-brand__content .single-box__question div svg {
  width: 17px;
  height: 9.5px;
}
.faq-brand__content .single-box__question div.active {
  transform: rotate(180deg);
}
.faq-brand__content .single-box__answer {
  display: none;
  padding-right: 32px;
}
.faq-brand__content .single-box__answer p {
  font-size: 16px;
  line-height: 160%;
  font-weight: 400;
  color: #160A38;
  margin: 0 0 12px 0;
  max-width: 618px;
}
.faq-brand__content .single-box:first-of-type .single-box__answer {
  display: block;
}
.faq-brand__img {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  max-width: 613px;
  margin: 0 auto;
}
.faq-brand__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.image-block2 {
  padding: 74px 0 32px 0;
}
@media (min-width: 992px) {
  .image-block2 {
    padding: 149.5px 0 64px 0;
  }
}
.image-block2__container {
  width: 100%;
  max-width: 991px;
  padding: 0 16px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1200px) {
  .image-block2__container {
    max-width: 1328px;
  }
}
@media (min-width: 768px) {
  .image-block2__container {
    flex-direction: row;
    gap: 25px;
  }
}
@media (min-width: 768px) {
  .image-block2__col {
    flex: 1;
  }
}
.image-block2__col--column-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 55px 0;
}
.image-block2__img {
  position: relative;
  padding: 0 0 55px 0;
  max-width: 375px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .image-block2__img {
    max-width: 505px;
  }
}
@media (min-width: 768px) {
  .image-block2__img {
    max-width: initial;
  }
}
.image-block2__img .image {
  width: 320px;
  height: 333px;
  border-radius: 20px;
  background-color: #E2E2EF;
  position: relative;
}
@media (min-width: 576px) {
  .image-block2__img .image {
    width: 450px;
    height: 468px;
  }
}
@media (min-width: 768px) {
  .image-block2__img .image {
    width: 90%;
    height: initial;
    aspect-ratio: 8/8;
  }
}
.image-block2__img .image img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  left: 0;
}
.image-block2__img .label {
  width: 200px;
  min-height: 247px;
  border-radius: 14px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  background-color: rgb(245, 245, 255);
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
}
@media (min-width: 992px) {
  .image-block2__img .label {
    width: 284px;
    min-height: 351px;
    padding: 60px 16px;
  }
}
.image-block2__img .label img {
  max-width: 100%;
  width: auto;
  max-height: 98px;
  height: auto;
}
.image-block2__img .label .separator {
  height: 1px;
  width: 100%;
  max-width: 153px;
  margin: 30px 0 8px 0;
}
.image-block2__img .label .meta {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.image-block2__img .label .meta h4 {
  font-size: 34px;
  font-weight: 500;
  line-height: 150%;
  color: #160A38;
  margin: 0 0 8px 0;
  text-align: center;
}
.image-block2__img .label .meta p {
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  color: #160A38;
  margin: 0;
  text-align: center;
}
.image-block2__heading h2.heading {
  color: #160A38;
  margin: 0 0 12px 0;
}
.image-block2__desc p {
  font-size: 16px;
  line-height: 160%;
  font-weight: 400;
  color: #160A38;
  margin: 0 0 12px 0;
}
.image-block2__desc p:last-of-type {
  margin: 0;
}

@media (min-width: 1400px) {
  .image-block2__img .image {
    width: 579px;
    aspect-ratio: initial;
    height: 602px;
  }
  .image-block2__img {
    padding: 0 0 85px 0;
  }
  .image-block2__col--column-2 {
    padding: 0 0 85px 0;
  }
}
.before-after {
  padding: 40px 0;
}
@media (min-width: 992px) {
  .before-after {
    padding: 80px 0;
  }
}
.before-after__container {
  width: 100%;
  max-width: 991px;
  padding: 0 16px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1200px) {
  .before-after__container {
    max-width: 1328px;
  }
}
.before-after__heading {
  max-width: 768px;
}
.before-after__heading h2.heading {
  color: #160A38;
  margin: 0 0 24px 0;
  text-align: center;
}
.before-after__desc {
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  color: #160A38;
  margin: 0 0 44px 0;
  max-width: 768px;
  text-align: center;
}
.before-after__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
@media (min-width: 992px) {
  .before-after__content {
    flex-direction: row;
  }
}
.before-after__content .single-box {
  display: grid;
  place-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  --position: 50%;
  max-width: 584px;
  max-height: 295px;
}
.before-after__content .single-box__container {
  width: 100%;
  height: 100%;
  position: relative;
}
.before-after__content .single-box__container .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}
.before-after__content .single-box__container .image img.before {
  position: absolute;
  inset: 0;
  width: var(--position);
}
.before-after__content .single-box__container .image span.label {
  font-size: 17px;
  line-height: 150%;
  font-weight: 400;
  color: rgb(83, 91, 110);
  display: block;
  padding: 5px 20px;
  border-radius: 486px;
  background-color: #fff;
  position: absolute;
  top: 14px;
  z-index: 9;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .before-after__content .single-box__container .image span.label {
    padding: 14px 29px;
  }
}
.before-after__content .single-box__container .image span.label--before {
  left: 13px;
}
.before-after__content .single-box__container .image span.label--after {
  right: 13px;
}
.before-after__content .single-box__slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.before-after__content .single-box__slider:focus-visible ~ .single-box__slider-button {
  outline: 5px solid #000;
  outline-offset: 3px;
}
.before-after__content .single-box__slider-line {
  position: absolute;
  inset: 0;
  width: 2px;
  height: 100%;
  background-color: #A1378C;
  z-index: 10;
  left: var(--position);
  transform: translateX(-50%);
  pointer-events: none;
}
.before-after__content .single-box__slider-button {
  position: absolute;
  background-color: #A1378C;
  color: #fff;
  padding: 0.5rem;
  border-radius: 100%;
  display: grid;
  place-items: center;
  top: 50%;
  left: var(--position);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 100;
  width: 63.5px;
  height: 63.5px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.before-after__content .single-box__slider-button svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery {
  padding: 36px 0;
}
@media (min-width: 992px) {
  .gallery {
    padding: 72px 0;
  }
}
.gallery__container {
  width: 100%;
  max-width: 991px;
  padding: 0 16px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .gallery__container {
    max-width: 1328px;
  }
}
.gallery__heading h2.heading {
  color: #160A38;
  margin: 0 0 24px 0;
}
.gallery__content {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  .gallery__content {
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
.gallery__content .single-box {
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .gallery__content .single-box:first-of-type {
    grid-area: 1/1/2/3;
  }
  .gallery__content .single-box:nth-of-type(2) {
    grid-area: 1/3/2/8;
  }
  .gallery__content .single-box:nth-of-type(3) {
    grid-area: 2/1/3/6;
  }
  .gallery__content .single-box:nth-of-type(4) {
    grid-area: 2/6/3/8;
  }
}
@media (min-width: 992px) {
  .gallery__content .single-box {
    height: 628px;
  }
}
.gallery__content .single-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-list {
  padding: 30px 0;
}
@media (min-width: 992px) {
  .price-list {
    padding: 60px 0;
  }
}
.price-list__container {
  width: 100%;
  max-width: 991px;
  padding: 0 16px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 1200px) {
  .price-list__container {
    max-width: 1328px;
  }
}
@media (min-width: 992px) {
  .price-list__container {
    flex-direction: row;
    gap: 32px;
  }
}
.price-list__team {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.price-list__team h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 160%;
  color: #160A38;
  margin: 0 0 12px 0;
  text-align: center;
}
.price-list__team.hide {
  display: none;
}
.price-list__avatars {
  display: flex;
  margin: 0 0 24px 0;
}
.price-list__avatars .single-box {
  width: 110px;
  min-width: 110px;
  height: 110px;
  border-radius: 100%;
  overflow: hidden;
}
.price-list__avatars .single-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.price-list__avatars .single-box:nth-of-type(2), .price-list__avatars .single-box:nth-of-type(3) {
  margin-left: -15px;
}
@media (min-width: 992px) {
  .price-list__table {
    padding: 0 24px;
    flex: 1;
  }
}
.price-list__table .table .row {
  border-bottom: 1px solid rgb(236, 225, 206);
  padding: 24px 0;
}
.price-list__table .table .row .title {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  cursor: pointer;
}
.price-list__table .table .row .title h3 {
  font-size: 22px;
  line-height: 130%;
  font-weight: 500;
  color: #160A38;
  margin: 0 0 0 0;
  max-width: 859px;
}
@media (min-width: 992px) {
  .price-list__table .table .row .title h3 {
    padding: 0 0 0 12px;
  }
}
.price-list__table .table .row .title .arrow {
  width: 32px;
  min-width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-list__table .table .row .title .arrow svg {
  object-fit: contain;
}
.price-list__table .table .row .title .arrow.active {
  transform: rotate(180deg);
}
.price-list__table .table .row .row-content {
  display: none;
  max-width: 859px;
}
@media (min-width: 768px) {
  .price-list__table .table .row .row-content {
    padding: 0 12px;
  }
}
.price-list__table .table .row .row-content .row-inner {
  display: flex;
  gap: 12px;
  padding: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 0 12px 0;
}
@media (min-width: 768px) {
  .price-list__table .table .row .row-content .row-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
.price-list__table .table .row .row-content .row-inner .name {
  display: flex;
  align-items: center;
}
.price-list__table .table .row .row-content .row-inner .name {
  flex: 1;
}
.price-list__table .table .row .row-content .row-inner .name p {
  font-weight: 800;
}
@media (min-width: 768px) {
  .price-list__table .table .row .row-content .row-inner .name p {
    font-weight: 400;
  }
}
.price-list__table .table .row .row-content .row-inner .description__inner {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 768px) {
  .price-list__table .table .row .row-content .row-inner .description__inner {
    gap: 12px;
    flex-direction: row;
  }
}
.price-list__table .table .row .row-content .row-inner .description__inner .details {
  padding: 12px 0;
}
@media (min-width: 768px) {
  .price-list__table .table .row .row-content .row-inner .description__inner .details {
    min-width: 300px;
    width: 300px;
    max-width: 300px;
  }
}
@media (min-width: 1200px) {
  .price-list__table .table .row .row-content .row-inner .description__inner .details {
    min-width: 354px;
    width: 354px;
    max-width: 354px;
  }
}
.price-list__table .table .row .row-content .row-inner .description__inner .price {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .price-list__table .table .row .row-content .row-inner .description__inner .price {
    min-width: 80px;
    max-width: 80px;
    width: 80px;
    justify-content: flex-end;
  }
}
.price-list__table .table .row .row-content .row-inner .description__inner .price p {
  font-size: 16px;
  line-height: 160%;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}
.price-list__table .table .row .row-content .row-inner p {
  margin: 0;
  color: #160A38;
  font-size: 16px;
  line-height: 160%;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 768px) {
  .price-list__table .table .row .row-content .row-inner p {
    text-align: start;
  }
}
.price-list__table .table .row .row-content .row-inner:nth-of-type(even) {
  background-color: #fff;
}
.price-list__table .table .row .row-content .row-inner:nth-of-type(odd) {
  background-color: rgb(245, 245, 255);
}
.price-list__table .table .row .row-content .row-inner:first-of-type {
  margin: 12px 0 12px 0;
}
.price-list__table .table .row .row-content .row-inner:last-of-type {
  margin: 0;
}
.price-list__table .table .row:first-of-type .row-content {
  display: block;
}
.price-list__desc {
  margin: 0;
  padding: 12px 0;
  font-size: 16px;
  line-height: 160%;
  font-weight: 400;
  color: #160A38;
}
.price-list__files {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 12px 0;
}
.price-list__files a {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #160A38;
  font-size: 16px;
  line-height: 160%;
}

.contact-tabs {
  padding: 32px 0;
}
.contact-tabs__container {
  width: 100%;
  max-width: 991px;
  padding: 0 16px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1200px) {
  .contact-tabs__container {
    max-width: 1328px;
  }
}
.contact-tabs__heading {
  width: 100%;
}
@media (min-width: 768px) {
  .contact-tabs__heading {
    max-width: 768px;
  }
}
.contact-tabs__heading h1.heading {
  color: #160A38;
  margin: 0 0 10px 0;
}
@media (min-width: 768px) {
  .contact-tabs__heading h1.heading {
    text-align: center;
  }
}
.contact-tabs__desc {
  font-size: 18px;
  line-height: 150%;
  font-weight: 400;
  color: #160A38;
  margin: 0 0 12px 0;
  width: 100%;
}
@media (min-width: 768px) {
  .contact-tabs__desc {
    max-width: 768px;
    text-align: center;
  }
}
.contact-tabs__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px 0;
  width: 100%;
  justify-content: center;
}
@media (min-width: 992px) {
  .contact-tabs__labels {
    gap: 4px;
    margin: 0 0 32px 0;
  }
}
.contact-tabs__content {
  width: 100%;
}
.contact-tabs__content .contact {
  padding: 32px 0;
}
@media (min-width: 992px) {
  .contact-tabs__content .contact {
    padding: 32px 0;
  }
}
.contact-tabs__content .contact .contact__container {
  padding: 0;
}

.team-tabs {
  padding: 60px 0 32px 0;
}
@media (min-width: 992px) {
  .team-tabs {
    padding: 120px 0 32px 0;
  }
}
.team-tabs__container {
  width: 100%;
  max-width: 991px;
  padding: 0 16px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1200px) {
  .team-tabs__container {
    max-width: 1328px;
  }
}
.team-tabs__heading {
  width: 100%;
}
@media (min-width: 768px) {
  .team-tabs__heading {
    max-width: 768px;
  }
}
.team-tabs__heading h1.heading {
  color: #160A38;
  margin: 0 0 10px 0;
  text-align: center;
}
.team-tabs__desc {
  font-size: 18px;
  line-height: 150%;
  font-weight: 400;
  color: #160A38;
  margin: 0 0 12px 0;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .team-tabs__desc {
    max-width: 768px;
  }
}
.team-tabs__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px 0;
  width: 100%;
  justify-content: center;
}
@media (min-width: 992px) {
  .team-tabs__labels {
    gap: 4px;
    margin: 0 0 32px 0;
  }
}
.team-tabs__content {
  width: 100%;
}
.team-tabs__wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
@media (min-width: 576px) {
  .team-tabs__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .team-tabs__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .team-tabs__wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

/** SWIPER */
