:root {
    --color-1: #1E272F;
    --color-2: #FFF9EE;
}

html {
    scroll-behavior: unset;
}

body {
    font-family: "Prompt", sans-serif;
    color: var(--color-2);
    background: var(--color-1);
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Cormorant Garamond", serif;
}

strong {
    font-weight: 500;
}

.link,
.site-footer .headline--description a {
    text-decoration: none;
    transition: 0.3s all;
}

.link_white,
.site-footer .headline--description a {
    color: var(--color-2);
}

.link_white:hover,
.site-footer .headline--description a:hover {
    opacity: 0.5;
}

.anim_text:not(.load) {
    opacity: 0;
}

.btn {
    position: relative;
    min-width: 220px;
    display: inline-block;
    padding: 23px 20px 22px;
    font-size: 16px;
    letter-spacing: 5.5px;
    text-align: center;
    border-radius: 40px;
    border: 1px solid;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.8s ease-in-out;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: "";
    position: absolute;
    bottom: -50%;
    left: 50%;
    width: 63px;
    height: 63px;
    border-radius: 50%;
    background: var(--color-1);
    transform: translate(-50%, 100%);
    transition: transform 0.8s ease-in-out;
    z-index: -1;
}

.btn_dark::before {
    background: var(--color-1);
}


.btn_light::before {
    background: var(--color-2);
}

.btn:hover::before {
    transform: translate(-50%, 0) scale(10);
}

.btn_dark {
    color: var(--color-1);
    border-color: var(--color-1);
}

.btn_dark:hover {
    color: var(--color-2);
}

.btn_light {
    color: var(--color-2);
    border-color: var(--color-2);
}

.btn_light:hover {
    color: var(--color-1);
}

.animation-fade:not(.load) {
    opacity: 0;
}

.image-fade-left:not(.load) {
    opacity: 0;
    transform: translateX(-100%);
}

.image-fade-right:not(.load) {
    opacity: 0;
    transform: translateX(100%);
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.call_us_now {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    background: var(--color-1);
    z-index: 4;
}

.call_us_now a {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 3.7px;
}

.call_us_now span {
   display: none;
}


.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 60px;
    background-color: var(--color-1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.site-header {

    background-color: var(--color-1);
    z-index: 2;
}

.site-header .container {
    max-width: 1358px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#site-title {
    text-transform: uppercase;
}

.header_menu ul.menu {
    display: flex;
    grid-column-gap: 39px;
}

.header_menu li a {
    position: relative;
    font-weight: 500;
    font-size: 12px;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s all;
    color: var(--color-2);
}

.header_menu li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--color-2);
    transition: 0.3s all;
}

.header_menu li a:hover::before {
    width: 100%;
}

.menu-item.hide {
    display: none;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero .container {
    max-width: 1190px;
}

.hero_row {
    display: flex;
}

.hero_txt__headline--sub-title {
    margin-bottom: 4px;
    font-size: 14px;
    letter-spacing: 6.8px;
    font-weight: 500;
    font-family: "Prompt", sans-serif;
    line-height: normal;
    text-transform: uppercase;
}

.hero_txt__headline--title {
    margin-bottom: 25px;
    font-size: 64px;
    font-weight: 300;
    line-height: 64px;
    text-transform: uppercase;
}

.hero_txt__headline--description {
    max-width: 360px;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
}

.hero_image {
    position: relative;
    padding-top: 93%;
    width: calc(100% + 30px);
    margin-left: -15px;
}

.hero_image img,
.page-404 .container .col:nth-child(2) img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero--text {
    position: relative;
    max-width: 741px;
    margin: 0 auto;
    padding: 188px 0 53px;
    font-weight: 300;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.5px;
    word-spacing: 2px;
}

.hero--text p {
    position: relative;
    padding: 32px 0 42px;
    background: var(--color-1);
    z-index: 1;
}

.hero--text .line-anim {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 0;
    background: var(--color-2);
}

.hero--text .line-anim.load {
    animation: hero-line-animate 2s forwards ease-in-out;
}

@keyframes hero-line-animate {
    0% {
        height: 0;
        top: 0;
    }
    100% {
        height: 100%;
        top: 0;
    }
}


/*.hero--text::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 50%;*/
/*    width: 1px;*/
/*    height: 271px;*/
/*    background: var(--color-2);*/
/*    transform: translateY(-47%);*/
/*}*/

/*.hero--text::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: 50%;*/
/*    bottom: 0;*/
/*    width: 1px;*/
/*    height: 54px;*/
/*    background: var(--color-2);*/
/*}*/

.s-about {
    position: relative;
    background: var(--color-2);
    overflow: hidden;
}

.s-about .container {
    max-width: 1360px;
}

.s-about .col-img {
    position: relative;
    padding-top: 85.6%;
}

.s-about .col-img img {
    position: absolute;
    top: 0;
    right: 0;
    max-width: calc(100% + 30px);
    width: calc(100% + 30px);
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.s-about .hidden_txt {
    margin-top: 20px;
}

.headline.dark {
    color: var(--color-1);
}

.headline--sub-title {
    margin-bottom: 16px;
    font: 500 14px "Prompt", sans-serif;
    line-height: 16px;
    letter-spacing: 4.06px;
    text-transform: uppercase;
}

.headline--title {
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.headline--description p,
.headline--description li {
    font-weight: 300;
    font-size: 13px;
    line-height: 20px;
}

.headline--description li {
    position: relative;
    padding-left: 22px;
}

.headline--description li::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 14px;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: var(--color-1);
}

.s-sports-medicine .headline--description li::before {
    background: var(--color-2);
}

.hidden_txt {
    display: none;
}

.toggle_hidden_txt.active .toggle_hidden_txt--label-hide,
.toggle_hidden_txt:not(.active) .toggle_hidden_txt--label-open {
    display: none;
}

.s-services {
    background: var(--color-2);
}

.s-services .container {
    max-width: 1234px;
}

.services_type__filter {
    display: flex;
    flex-wrap: wrap;
    /*justify-content: space-between;*/
    grid-row-gap: 16px;
    grid-column-gap: 19px;
}

.s-services .services_type__filter--btn {
    min-height: 43px;
    padding: 2px 19px 1px;
    font-size: 11px;
    font-weight: 500;
    line-height: 19px;
    letter-spacing: 3.3px;
    text-align: left;
    text-transform: uppercase;
}

.services_type__filter--btn.active {
    color: var(--color-2);
}

.services_type__filter--btn.active::before {
    transform: translate(-50%, 0) scale(10);
}

.services_type__posts--row:not(.active) {
    display: none;
}

.card_services__img {
    position: relative;
    margin-bottom: 41px;
    padding-top: 54.7%;
}

.card_services__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.s-work-method {
    position: relative;
    padding: 57px 0 25px;
    overflow: hidden;
}

.s-work-method .container {
    max-width: 1160px;
}

.s-logotypes {
    position: relative;
    padding-bottom: 40px;
    overflow: hidden;
}

.s-logotypes .container {
    max-width: 1160px;
}

.logotypes_slider {
    overflow: visible;
}

.logotypes_slider__slide div {
    position: relative;
    padding-top: 14%;
}

.logotypes_slider__slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.s-press-release {
    padding: 57px 0 93px;
    background: var(--color-2);
}

.s-press-release .container {
    max-width: 1160px;
}

.row_posts {
    display: flex;
    flex-wrap: wrap;
    padding-top: 28px;
}

.card_services--title,
.card_post--title {
    margin-bottom: 8px;
    font: 500 14px "Prompt", sans-serif;
    line-height: 16px;
    letter-spacing: 4.06px;
    text-transform: uppercase;
    color: var(--color-1);
}

.card_services--description,
.card_post--description {
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 275;
    line-height: 16px;
    letter-spacing: 0.7px;
    color: var(--color-1);
}

.card_services--description {
    margin-bottom: 7px;
    font-size: 15px;
    line-height: 20px;
}

.card_services--link,
.card_post--link {
    position: relative;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 4.42px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-1);
    transition: 0.3s all;
}

.card_services--link::before,
.card_post--link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--color-1);
    transition: 0.3s all;
}

.card_services--link:hover::before,
.card_post--link:hover::before {
    width: 100%;
}

.animated {
    -webkit-animation-duration: 0.7s;
    animation-duration: 0.7s;
    -webkit-animation-duration: 0.7s;
    animation-duration: 0.7s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animate__backInUp {
    -webkit-animation-name: backInUp;
    animation-name: backInUp
}
@-webkit-keyframes backInUp {
    0% {
        opacity: .0;
        transform: translateY(50%) scale(0.8);
    }

    80% {
        /*opacity: .7;*/
        transform: translateY(0);
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.animate__fadeIn {
    animation: fadeInSlide 1.4s ease-out;
    animation-delay: 0.6s;
    animation-fill-mode: both
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.s-press-release .btn_box {
    text-align: center;
}

.s-sports-medicine {
    position: relative;
    padding: 142px 0 86px;
}

.s-sports-medicine .line-anim {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 0;
    background: var(--color-2);

}
.s-sports-medicine .line-anim.load {
    animation: sports-medicine-line-animate 2s forwards ease-in-out;
}

@keyframes sports-medicine-line-animate {
    0% {
        height: 0;
        top: 0;
    }
    100% {
        top: 0;
        height: 100%;
    }
}


.s-sports-medicine .container {
    position: relative;
    max-width: 1078px;
    padding-top: 24px;
    padding-bottom: 36px;
    text-align: center;
    background: var(--color-1);
    z-index: 1;
}

.s-sports-medicine .headline--description {
    text-align: left;
}

.s-sports-medicine .headline--description.hidden_txt {
    padding-bottom: 2px;
}

.s-sports-medicine .headline--description h3 {
    margin: 27px 0 25px;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.s-sports-medicine .headline--description ul {
    margin-top: 1px;
}

.s-sports-medicine .btn {
    margin-top: 50px;
}

.s-provider {
    padding: 69px 0 0;
    background: var(--color-2);
}

.s-provider .container {
    max-width: 1326px;
}

.s-provider .row {
    display: flex;
}

.cards_provider {
    max-width: 474px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    grid-row-gap: 40px;
    margin-top: 58px;
}

.cards_provider__card {
    max-width: 193px;
    width: 100%;
}

.cards_provider__card--img {
    position: relative;
    padding-top: 100%;
}

.cards_provider__card--img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.s-provider .headline--description p {
    font-weight: 600;
}

.cards_provider__card--name {
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-1);
}

.cards_provider__card--position {
    font-size: 14px;
    line-height: 16px;
    color: var(--color-1);
}

.provider_slider_wrap {
    position: relative;
    padding: 0 42px;
}

.provider_slider__slide--description {
    font-weight: 300;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.7px;
}

.provider_slider_arrow {
    position: absolute;
    top: 20px;
    padding: 0;
    border: 0;
    background: transparent;
    transition: 0.3s all;
    cursor: pointer;
}

.provider_slider_arrow:hover {
    opacity: 0.5;
}

.provider_slider_arrow.swiper_nav_prev {
    left: 0;
}

.provider_slider_arrow.swiper_nav_next {
    right: 0;
}

.cards_provider__card--caption {
    margin-top: 27px;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 3.5px;
    text-align: center;
}

.provider_slider__dots {
    display: flex;
    justify-content: center;
    grid-column-gap: 15px;
    margin-top: 40px;
}

.provider_slider_wrap .provider_slider__dots .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0;
    border-radius: 50%;
    border: 1px solid var(--color-2);
    background: transparent;
    opacity: 1;
}

.provider_slider__dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color-2);
}

.s-patient-resources {
    position: relative;
    background: var(--color-2);
    overflow: hidden;
}

.s-patient-resources .container {
    max-width: 1176px;
}

.s-patient-resources .row {
    display: flex;
}

.s-patient-resources .headline--description {
    max-width: 534px;
}

.s-patient-resources .col-img {
    position: relative;
    padding-top: 64.3%;
}

.s-patient-resources .col-img img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: calc(100% + 30px);
    width: calc(100% + 30px);
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.s-patient-resources .btn {
    margin-top: 54px;
}

.s-contact {
    position: relative;
    padding: 64px 0 0;
    overflow: hidden;
}

.s-contact .row {
    display: flex;
}


.s-contact .col-img img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: calc(100% + 30px);
    width: calc(100% + 30px);
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.from_wrap {
    margin-top: 32px;
    width: 100%;
}

.from_wrap .gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 40px;
    grid-column-gap: 9%;
}

.from_wrap .gform_wrapper.gravity-theme .gform_validation_errors,
.from_wrap .gform_wrapper.gravity-theme .gfield_validation_message,
.from_wrap .gform_wrapper.gravity-theme .validation_message,
.from_wrap .gform_wrapper.gravity-theme .gfield_required,
.from_wrap .gform_wrapper.gravity-theme .gfield select option[value=""],
.from_wrap .gform_wrapper.gravity-theme .gform_ajax_spinner {
    display: none !important;
}

.from_wrap .gform_wrapper.gravity-theme .gfield input,
.from_wrap .gform_wrapper.gravity-theme .gfield select,
.from_wrap .gform_wrapper.gravity-theme .gfield textarea {
    padding: 0 0 9px;
    font: 500 14px "Prompt", sans-serif;
    line-height: 16px;
    letter-spacing: 4.06px;
    color: var(--color-2);
    border: 0;
    border-bottom: 1px solid var(--color-2);
    background: transparent;
}

.from_wrap .gform_wrapper.gravity-theme .gfield.gfield_error input,
.from_wrap .gform_wrapper.gravity-theme .gfield.gfield_error select {
    border-color: #c02b0a;
}

.from_wrap .gform_wrapper.gravity-theme .gfield select {
    position: relative;
    top: -5px;
    padding: 0 0 8px;
}

.from_wrap .gform_wrapper.gravity-theme .gfield textarea {
    height: 66px !important;
}

.from_wrap .gform_wrapper.gravity-theme .gfield input::placeholder,
.from_wrap .gform_wrapper.gravity-theme .gfield select::placeholder,
.from_wrap .gform_wrapper.gravity-theme .gfield textarea::placeholder {
    color: var(--color-2);
    text-transform: uppercase;
}

.from_wrap .gform_wrapper.gravity-theme .gfield input:focus,
.from_wrap .gform_wrapper.gravity-theme .gfield select:focus,
.from_wrap .gform_wrapper.gravity-theme .gfield textarea:focus {
    outline: none;
}

.from_wrap .gform_wrapper.gravity-theme .gfield select option {
    color: var(--color-1);
}

.from_wrap .gform_wrapper.gravity-theme .gform_footer {
    position: relative;
    min-width: 155px;
    display: inline-block;
    margin: 33px 0 0;
    padding: 0;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 40px;
    border: 1px solid  var(--color-2);
    transition: 0.8s ease-in-out;
    overflow: hidden;
    z-index: 1;
}

.from_wrap .gform_wrapper.gravity-theme .gform_footer::before {
    content: "";
    position: absolute;
    bottom: -50%;
    left: 50%;
    width: 63px;
    height: 63px;
    border-radius: 50%;
    background: var(--color-2);
    transform: translate(-50%, 100%);
    transition: transform 0.8s ease-in-out;
    z-index: -1;

}

.from_wrap .gform_wrapper.gravity-theme .gform_footer:hover::before {
    transform: translate(-50%, 0) scale(4);
}

.from_wrap .gform_wrapper.gravity-theme .gform_footer .gform_button {
    width: 100%;
    margin: 0;
    padding: 14px 20px 14px;
    font: 500 16px "Prompt", sans-serif;
    letter-spacing: 5.5px;
    text-transform: uppercase;
    color: var(--color-2);
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: 0.3s all;
}

.from_wrap .gform_wrapper.gravity-theme .gform_footer:hover .gform_button {
    color: var(--color-1);
}

.site-footer {
    padding: 50px 0 66px;
}

.site-footer .container {
    max-width: 1162px;
}

.copyright_row {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column-gap: 15px;
}

#copyright {
    font-size: 13px;
    line-height: normal;
    letter-spacing: 2px;
    color: var(--color-2);
}

.footer_menu ul.menu {
    display: flex;
    grid-column-gap: 15px;
}

.footer_menu ul.menu li a {
    font-weight: 400;
    font-size: 13px;
    line-height: normal;
    text-decoration: none;
    letter-spacing: 2px;
    color: var(--color-2);
    transition: 0.3s all;
}

.footer_menu ul.menu li a:hover {
    opacity: 0.5;
}

.s-page {
    padding: 53px 0 87px;
    color: var(--color-1);
    background: #fff9ee;
}

.s-page .container {
    max-width: 1130px;
}

.s-page .entry-title {
    margin-bottom: 47px;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.entry-content p {
    margin-bottom: 17px;
    font-size: 12px;
    font-weight: 300;
    line-height: 17px;
}

.entry-content ul {
    margin: 0 0 17px;
}

.entry-content p + ul {
    margin-top: -17px;
}

.entry-content li {
    position: relative;
    padding-left: 21px;
    font-size: 12px;
    font-weight: 300;
    line-height: 17px;
}

.entry-content li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: var(--color-1);
}

.entry-content h4 {
    margin-bottom: 17px;
    font: 500 12px "Prompt", sans-serif;
    line-height: 17px;
    letter-spacing: 3.4px;
    text-transform: uppercase;
}

.entry-content p a,
.entry-content li a {
    font-weight: 700;
    color: var(--color-1);
    text-decoration: none;
    transition: 0.3s all;
}

.entry-content p a:hover,
.entry-content li a:hover {
    color: #000;
    text-decoration: underline;
}

.contact_links {
    max-width: 400px;
    text-align: left;
}

.contact_links li {
    display: flex;
    align-items: flex-start;
    grid-column-gap: 6px;
    letter-spacing: -0.4px;
}

.contact_links li:not(:nth-last-child(1)) {
    margin-bottom: 15px;
}

.contact_links p {
    font-size: 16px;
    line-height: 20px;
}

.contact_links span {
    font-weight: 500;
}

.contact_links p a {
    font-weight: 200;
}

.page-404 {
    position: relative;
    color: var(--color-1);
    background: var(--color-2);
    overflow: hidden;
}

.page-404 .container {
    display: flex;
}

.page-404__sub_title {
    margin-bottom: 49px;
    font-size: 96px;
    font-weight: 500;
    line-height: 80px;
    letter-spacing: 4.8px;
}

.page-404__title {
    margin-bottom: 29px;
    font-size: 32px;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.page-404 .entry-content {
    padding: 0 0 21px;
}

.page-404 .entry-content p {
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
}

@media (min-width: 1281px) and (max-width: 1380px) {
    body .s-provider,
    body .s-services,
    body .site-footer {
        padding-left: 55px;
    }
}

@media (min-width: 992px) and (max-width: 1280px) {
    #wrapper {
        padding-left: 55px;
    }
}

@media (min-width: 1171px) {
    .site-header {
        padding: 55px 0;
    }

    .mobile_info_toggle {
        display: none;
    }
}

@media (min-width: 992px) {
    .s-page .entry-title {
        margin-bottom: 85px;
        font-size: 70px;
        line-height: 56px;
        letter-spacing: 3.5px;
    }

    .s-page {
        padding: 113px 0 106px;
    }

    .entry-content {
        padding: 0 19px;
    }

    .entry-content h4 {
        margin: 0 0 17px;
        font-size: 14px;
    }

    .page-template-default .entry-content h4 {
        margin-top: 34px;
    }

    .entry-content p {
        margin-bottom: 17px;
        font-size: 14px;
        line-height: 17px;
    }

    .entry-content li {
        font-size: 14px;
        line-height: 17px;
    }

    #site-title {
        margin-left: 53px;
        word-spacing: 4px;
        letter-spacing: 3.5px;
    }

    .header_menu li a {
        letter-spacing: 2.3px;
    }

    .call_us_now {
        top: 0;
        width: 51px;
        height: 100%;
        justify-content: center;
        grid-column-gap: 33px;
        writing-mode: vertical-rl;
        text-orientation: mixed;
        transform: rotate(180deg);
    }

    .call_us_now span {
        width: 1px;
        height: 244px;
        display: inline-block;
        background-color: white;
    }

    .hero {
        padding: 16px 0 101px;
    }

    .hero_row {
        align-items: center;
        justify-content: space-between;
    }

    .hero_txt {
        width: 56%;
        padding: 20px 0 70px;
    }

    .hero_image {
        width: 41%;
        margin: 0;
        padding-top: 54.67%;
    }

    .hero_image img {
        max-width: 46vw;
        width: 46vw;
    }

    .hero_txt__headline--sub-title {
        margin-bottom: 36px;
        padding-left: 10px;
        font-size: 20px;
        letter-spacing: 9.8px;
    }

    .hero_txt__headline--title {
        margin-bottom: 39px;
        font-size: 128px;
        letter-spacing: 6.5px;
        line-height: 100px;
    }

    .hero_txt__headline--description {
        padding-left: 10px;
        font-size: 16px;
        line-height: 20px;
    }

    .hero--text .line-anim {
        top: -27%;
        height: 0;
    }

    @keyframes hero-line-animate {
        0% {
            height: 0;
            top: -27%;
        }
        100% {
            height: 127%;
            top: -27%;
        }
    }

    .hero--text {
        padding: 145px 0 55px;
        font-size: 15px;
    }

    .hero--text p {
        padding: 50px 0 61px;
    }

    .s-about .row {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .s-about .col-img {
        width: 50%;
        margin-bottom: auto;
    }

    .s-about .col-img {
        padding-top: 55.8%;
    }

    .s-about .col-img img {
        max-width: 50vw;
        width: 50vw;
    }

    .s-about .col-txt {
        width: 45%;
        padding: 65px 0 46px;
        text-align: right;
    }

    .headline--sub-title {
        margin-bottom: 11px;
        font-size: 14px;
        line-height: 16px;
        letter-spacing: 3.6px;
    }

    .s-sports-medicine .headline--sub-title {
        margin-bottom: 15px;
    }

    .s-work-method .headline--sub-title {
        letter-spacing: 6.6px;
        line-height: 20px;
    }

    .s-patient-resources .headline--sub-title {
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 5.4px;
    }

    .headline--title,
    .page-404__title {
        margin-bottom: 27px;
        font-size: 64px;
        line-height: 63px;
        letter-spacing: 2.7px;
    }

    .headline--description li::before {
        top: 6px;
        left: 14px;
        width: 2px;
        height: 2px;
    }

    .s-work-method .headline--title {
        letter-spacing: -0.3px;
    }

    .s-patient-resources .headline--title {
        margin-bottom: 22px;
        letter-spacing: -0.4px;
    }

    .s-press-release .headline--title,
    .s-sports-medicine .headline--title,
    .s-provider .col-slider .headline--title {
        font-size: 70px;
        line-height: 63px;
        letter-spacing: 3.5px;
    }

    .site-footer .headline--title {
        margin-bottom: 72px;
        letter-spacing: 2.5px;
    }

    .headline--description p,
    .headline--description li {
        font-size: 15px;
        line-height: 20px;
        letter-spacing: 0.7px;
    }

    .s-about .headline--description p,
    .s-about .headline--description li {
        font-size: 13px;
        line-height: 20px;
        letter-spacing: 0;
    }

    .s-provider .headline--description p {
        font-size: 15px;
        line-height: 22px;
        letter-spacing: 1.25px;
    }

    .headline--description ul {
        margin-top: 20px;
    }

    .s-patient-resources .headline--description li {
        font-weight: 600;
    }

    .s-about .headline--sub-title {
        padding-right: 7px;
    }

    .s-about .btn {
        margin-top: 38px;
    }

    .s-services {
        padding: 127px 0 120px;
    }

    .services_type__filter {
        max-width: 86%;
        margin-bottom: 61px;
    }

    .s-services .services_type__filter--btn {
        min-width: 292px;
        padding: 12px 12px 10px;
        text-align: center;
    }

    .services_type__posts--row {
        display: flex;
        flex-wrap: wrap;
        grid-column-gap: 1.25%;
        grid-row-gap: 63px;
    }

    .services_type__posts .services_type__filter--btn {
        display: none;
    }

    .card_services {
        width: 32.5%;
    }

    .card_services__img {
        margin-bottom: 33px;
        padding-top: 92.5%;
    }

    .card_services--title {
        font-size: 16px;
        line-height: 17px;
    }

    .card_services--description {
        margin-bottom: 12px;
        font-size: 15px;
        line-height: 20px;
    }

    .s-work-method {
        padding: 103px 0 51px;
    }

    .s-work-method .line-anim {
        position: absolute;
        top: 0;
        left: 50%;
        width: 1px;
        height: 0;
        background: var(--color-2);
    }

    .s-work-method .line-anim.load {
        animation: work-method-line-animate 2s forwards ease-in-out;
    }

    @keyframes work-method-line-animate {
        0% {
            height: 0;
            top: 0;
        }
        100% {
            height: 149px;
            top: 0;
        }
    }


    .s-work-method .row {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .s-work-method .col-txt {
        width: 49%;
        padding: 46px 0 20px;
    }

    .s-work-method .col-img {
        position: relative;
        width: 36.7%;
        padding-top: 40.7%;
    }

    .s-work-method .col-img img {
        position: absolute;
        top: 0;
        left: 0;
        max-width: calc(50vw - 38.4%);
        width: 50vw;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .s-logotypes {
        padding: 50px 0 78px;
    }

    .logotypes_slider__slide div {
        padding-top: 21%;
    }

    .logotypes_slider:not(.swiper-initialized) .swiper-wrapper {
        display: flex;
        grid-column-gap: 40px;
    }

    .logotypes_slider:not(.swiper-initialized) .logotypes_slider__slide:nth-child(5) ~.logotypes_slider__slide {
        display: none;
    }

    .logotypes_slider:not(.swiper-initialized) .logotypes_slider__slide {
        flex-shrink: unset;
    }

    .s-press-release {
        padding: 126px 0 125px;
    }

    .row_posts {
        grid-column-gap: 10%;
        grid-row-gap: 95px;
        padding: 53px 0 0;
    }

    .card_post {
        width: 28%;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }

    .card_post:nth-child(3n - 1) {
        width: 23%;
    }

    .card_post:nth-child(3n) {
        width: 23.5%;
        margin-left: auto;
    }

    .card_post--link {
        margin-top: auto;
        padding-bottom: 5px;
    }

    .card_post--description {
        margin-bottom: 19px;
    }

    .s-press-release .btn_box {
        margin-top: 78px;
    }

    .s-sports-medicine {
        padding: 199px 0 168px;
    }

   .s-sports-medicine .container {
        padding-top: 64px;
        padding-bottom: 57px;
   }

    .s-sports-medicine .headline--description.hidden_txt {
        padding-bottom: 26px;
    }

    .s-sports-medicine .headline--description h3 {
        margin: 58px 0 62px;
        font-size: 36px;
        line-height: 36px;
        letter-spacing: 1.8px;
    }

    .s-sports-medicine .btn {
        margin-top: 47px;
    }

    .s-sports-medicine::before {
        height: 196px;
    }

    .s-sports-medicine::after {
        height: 167px;
    }

    .s-provider {
        padding: 123px 0 71px;
    }

    .s-provider .row {
        align-items: center;
        justify-content: space-between;
    }

    .s-provider .col-slider {
        position: relative;
        width: 51.3%;
        padding: 104px 60px 56px 20px;
        z-index: 1;
    }

    .s-provider .col-slider::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: calc(50vw + 2%);
        height: 100%;
        background: var(--color-1);
        z-index: -1;
    }

    .s-provider .col-txt {
        width: 44%;
        text-align: right;
    }

    .cards_provider {
        margin: 43px 0 0 auto;
    }

    .cards_provider__card--img {
        margin-bottom: 30px;
    }

    .cards_provider__card--name {
        width: 120%;
        margin: 0 0 16px -20%;
    }

    .provider_slider_wrap {
        margin-top: 49px;
        padding: 0 71px 0 67px;
    }

    .cards_provider__card--caption {
        margin-top: 46px;
    }

    .provider_slider__dots {
        margin-top: 38px;
    }

    .s-patient-resources {
        padding: 128px 0 132px;
    }

    .s-patient-resources .row {
        align-items: flex-start;
        justify-content: space-between;
    }

    .s-patient-resources .col-txt {
        width: 56%;
        padding: 17px 0;
    }

    .s-patient-resources .col-img {
        width: 36.8%;
        padding-top: 40.3%;
    }

    .s-patient-resources .col-img img {
        max-width: calc(50vw - 37.4%);
        width: 50vw;
    }

    .s-patient-resources .btn {
        min-width: 273px;
        margin-top: 36px;
        padding: 17px;
    }

    .s-contact {
        padding: 0;
    }

    .s-contact .row {
        justify-content: space-between;
    }

    .s-contact .col-img {
        position: relative;
        width: 40.5%;
    }

    .s-contact .col-img img {
        max-width: 40.35vw;
        width: 40.35vw;
        left: auto;
        right: 0;
    }

    .s-contact .col-form {
        width: 54%;
        padding: 115px 0 97px;
    }

    .from_wrap {
        margin-top: 61px;
        max-width: 710px;
    }

    .site-footer {
        padding: 80px 0 26px;
    }

    .site-footer .row {
        position: relative;
        display: flex;
        justify-content: space-between;
    }

    .site-footer .row .line-anim-bottom {
        position: absolute;
        top: 0;
        left: 50%;
        width: 1px;
        height: 0;
        background: var(--color-2);

    }
    .site-footer .row .line-anim-bottom.load {
        animation: line-anim-bottom 2s forwards ease-in-out;
    }

    @keyframes line-anim-bottom {
        0% {
            height: 0;
            top: 0;
        }
        100% {
            top: 0;
            height: 100%;
        }
    }

    .site-footer .col {
        width: 48%;
    }

    .site-footer .col:nth-of-type(2) .headline--description,
    .site-footer .col:nth-of-type(2) .contact_links {
        max-width: 345px;
        margin-left: auto;
    }

    .headline--description {
        margin-bottom: 25px;
    }

    .headline--description p {
        letter-spacing: 1.2px;
    }

    .contact_links {
        margin-left: -7px;
    }

    .site-footer .headline--description p:not(:nth-last-child(1)) {
        margin-bottom: 20px;
    }

    .copyright_row {
        margin-top: 81px;
    }

    .page-404 .container .col {
        width: 50%;
    }

    .page-404 .container .col:nth-child(1) {
        min-height: 690px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 100px 0 78px;
    }

    .page-404 .container .col:nth-child(2) {
        position: relative;
    }

    .page-404 .container .col:nth-child(2) img {
        max-width: 50vw;
        width: 50vw;
    }

    .page-404__sub_title {
        margin-bottom: 17px;
        font-size: 200px;
        line-height: 40px;
        letter-spacing: 10px;
        transform: translateY(-80px);
    }

    .page-404__title {
        margin-bottom: 16px;
    }

    .page-404 .entry-content {
        padding: 0 0 7px;
    }
}

@media (max-width: 1320px) {
    .header_menu ul.menu {
        grid-column-gap: 16px;
    }
}

@media (max-width: 1170px) {
    #wrapper {
        padding-top: 52px;
    }

    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }

    .site-header_wrap {
        position: relative;
        padding: 17px 7px;
        background-color: var(--color-1);
        z-index: 2;
    }

    #site-title {
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 4.03px;
        text-transform: uppercase;
    }

    .mobile_info_toggle {
        position: relative;
        width: 24px;
        height: 18px;
        padding: 0;
        border: 0;
        background: transparent;
        cursor: pointer;
        z-index: 4;
    }

    .mobile_info_toggle span {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 2px;
        background: var(--color-2);
        transition: 0.5s all;
    }

    .mobile_info_toggle span:nth-child(1) {
        top: 0;
    }

    .mobile_info_toggle span:nth-child(2) {
        top: 8px;
    }

    .mobile_info_toggle span:nth-child(3) {
        top: calc(100% - 2px)
    }

    .mobile_info_toggle.active span:nth-child(1) {
        transform: translate(-12px, 10px) rotate(49deg);
    }

    .mobile_info_toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile_info_toggle.active span:nth-child(3) {
        transform: translate(-12px, -6px) rotate(-49deg);
    }

    body.active-menu {
        overflow: hidden;
    }

    .site-header::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 249, 238, 0.64);
        opacity: 0;
        visibility: hidden;
        z-index: -1;
    }

    body.active-menu .site-header::before {
        opacity: 1;
        visibility: visible;
        z-index: 2;
    }

    .header_menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 212px;
        height: 100%;
        flex-direction: column;
        align-items: flex-start;
        grid-row-gap: 37px;
        padding: 102px 14px 38px;
        background: var(--color-1);
        transform: translateX(100%);
        transition: 0.3s all;
        z-index: 4;
    }

    body.active-menu .header_menu {
        transform: none;
    }

    .btn_close_mobile_menu {
        position: absolute;
        top: 24px;
        right: 24px;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .header_menu ul.menu {
        flex-direction: column;
        grid-row-gap: 28px;
    }


    .header_menu li a {
        font-size: 15px;
        line-height: normal;
        letter-spacing: 3px;
    }
}

@media (max-width: 991px) {

    .btn {
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
        display: block;
        padding: 17px
    }

    .call_us_now {
        text-align: center;
    }

    .call_us_now a {
        width: 100%;
    }

    .call_us_now a:not(:nth-child(1)) {
        display: none;
    }

    .hero_row {
        flex-direction: column-reverse;
    }

    .hero_image {
        margin-bottom: 37px;
    }

    .hero--text {
        margin-top: 36px;
    }

    .s-about {
        padding-bottom: 78px;
    }

    .s-about .col-img {
        margin-bottom: 44px;
    }

    .s-about .col-img img {
        left: -15px;
    }

    .s-about .btn {
        margin-top: 50px;
    }

    .services_type__filter,
    .s-work-method .col-img,
    .s-provider .headline--description br {
        display: none;
    }

    .s-services {
        padding-bottom: 30px;
    }

    .services_type__posts {
        margin-top: 39px;
    }

    .services_type__posts .services_type__filter--btn {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 29px;
    }

    .card_post {
        margin-bottom: 54px;
        text-align: center;
    }

    .card_services {
        margin-bottom: 37px;
    }

    .card_services--title,
    .card_post--title {
        height: auto !important;
        margin-bottom: 24px;
    }

    .card_services--title {
        margin-bottom: 18px;
        font-size: 16px;
        line-height: 17px;
        letter-spacing: 4.06px;
    }

    .s-press-release .btn_box {
        padding-top: 26px;
    }

    .s-provider .row {
        flex-direction: column-reverse;
    }

    .cards_provider {
        max-width: 100%;
        grid-row-gap: 55px;
    }

    .cards_provider__card {
        max-width: 100%;
    }

    .cards_provider__card--img {
        margin-bottom: 28px;
        padding-top: 70.5%;
    }

    .s-provider .col-slider {
        margin: 55px -15px 0;
        padding: 53px 15px 59px;
        text-align: center;
        background: var(--color-1);
    }

    .provider_slider_arrow {
        top: 30px;
    }

    .provider_slider_arrow svg {
        width: 10px;
        height: auto;
    }

    .s-sports-medicine .headline--description p,
    .s-sports-medicine .headline--description li {
        font-size: 12px;
        line-height: 15px;
    }

    .s-patient-resources .row {
        flex-direction: column-reverse;
    }

    .s-patient-resources .col-img img {
        left: -15px;
    }

    .s-patient-resources .col-txt {
        padding: 59px 0 56px;
    }

    .s-contact .row {
        flex-direction: column-reverse;
    }

    .s-contact .col-img {
        position: relative;
        margin-top: 56px;
        padding-top: 73%;
    }

    .s-contact .col-img {
        left: -15px;
        max-width: calc(100% + 30px);
        width: calc(100% + 30px)
    }

    .from_wrap .gform_wrapper.gravity-theme .gform_fields {
        grid-row-gap: 26px;
    }

    .from_wrap .gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
        line-height: normal;
        min-height: auto;
    }

    .from_wrap .gform_wrapper.gravity-theme .gfield input,
    .from_wrap .gform_wrapper.gravity-theme .gfield select,
    .from_wrap .gform_wrapper.gravity-theme .gfield textarea {
        padding: 0 0 7px;
    }

    .from_wrap .gform_wrapper.gravity-theme .gfield select {
        top: -1px;
    }

    .from_wrap .gform_wrapper.gravity-theme .gfield textarea {
        height: 81px !important;
    }

    .from_wrap .gform_wrapper.gravity-theme .gform_footer {
        max-width: 372px;
        width: 100%;
        margin: 39px auto 0;
    }

    .from_wrap .gform_wrapper.gravity-theme .gform_footer:hover::before {
        transform: translate(-50%, 0) scale(6);
    }

    .site-footer .col:nth-of-type(1){
        margin-bottom: 55px;
    }

    .site-footer .headline--title {
        margin-bottom: 48px;
    }

    .site-footer .headline--description p {
        margin-bottom: 20px;
        font-size: 15px;
        line-height: 20px;
        letter-spacing: 0.75px;
    }

    .copyright_row {
        flex-direction: column-reverse;
        padding-top: 67px;
    }

    .line-anim-bottom {
        display: none;
    }

    .contact_links {
        padding-top: 8px;
    }

    .footer_menu {
        width: 100%;
    }

    .footer_menu ul.menu {
        max-width: 400px;
        margin: 0 auto;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .footer_menu ul.menu li {
        width: auto;
    }

    .footer_menu ul.menu li:nth-child(1){
        width: 100%;
        text-align: center;
    }

    .page-404 {
        padding-bottom: 113px;
    }

    .page-404 .container {
        flex-direction: column-reverse;
    }

    .page-404 .container .col:nth-child(2) {
        width: calc(100% + 30px);
        margin-left: -15px;
        padding-top: 56%;
    }
}

@media (max-width: 420px) {
    .footer_menu ul.menu li {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 370px) {
    .site-footer .headline--description p {
        font-size: 12px;
    }
}