@font-face {
    font-family: 'Helvetica Neue LT GEO';
    src: url('../fonts/helvetica-neue/HelveticaNeue.eot');
    src: url('../fonts/helvetica-neue/HelveticaNeue.eot?#iefix') format('embedded-opentype'),
    url('../fonts/helvetica-neue/HelveticaNeue.woff2') format('woff2'),
    url('../fonts/helvetica-neue/HelveticaNeue.woff') format('woff'),
    url('../fonts/helvetica-neue/HelveticaNeue.svg#Helvetica Neue LT GEO') format('svg');
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica-Neue-Bold';
    src: url('../fonts/helvetica-neue/HelveticaNeue-Bold.eot');
    src: url('../fonts/helvetica-neue/HelveticaNeue-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/helvetica-neue/HelveticaNeue-Bold.woff2') format('woff2'),
    url('../fonts/helvetica-neue/HelveticaNeue-Bold.woff') format('woff'),
    url('../fonts/helvetica-neue/HelveticaNeue-Bold.svg#Helvetica Neue LT GEO') format('svg');
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue Caps';
    src: url('../fonts/helvetica-neue/HelveticaNeueLTGEOCaps-75Bold.eot');
    src: url('../fonts/helvetica-neue/HelveticaNeueLTGEOCaps-75Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/helvetica-neue/HelveticaNeueLTGEOCaps-75Bold.woff2') format('woff2'),
    url('../fonts/helvetica-neue/HelveticaNeueLTGEOCaps-75Bold.woff') format('woff'),
    url('../fonts/helvetica-neue/HelveticaNeueLTGEOCaps-75Bold.ttf') format('truetype'),
    url('../fonts/helvetica-neue/HelveticaNeueLTGEOCaps-75Bold.svg#HelveticaNeueLTGEOCaps-75Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --dark-blue: #141F61;
}

a {
    color: unset;
    text-decoration: none;
}

p {
    margin: 0;
}


html, body {
    margin: 0;
    padding: 0;
}

.pos-relative {
    position: relative !important;
}

hr {
    background-color: rgba(0, 0, 0, 0.08);
    height: 1px;
    border: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

.h-100 {
    height: 100%;
}

.main-container {
    flex-direction: column;
    min-height: 100vh;
}

.main {
    flex: 1;
}

.top-header {
    background-color: var(--dark-blue);
    height: 48px;
    width: 100%;
    display: flex;
    align-items: center;
}

.top-header .items {
    display: flex;
    align-items: center;
}

.top-header .item {
    color: white;
    border-left: 1px solid rgba(255, 255, 255, 0.24);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    font-family: 'Helvetica Neue LT GEO', sans-serif;
    font-size: 0.875rem;
    height: 48px;
    box-sizing: border-box;
    transition: background-color .2s ease;
}

.top-header .item:hover {
    background-color: #233498;
}

.top-header .item:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.navbar {
    height: 90px;
    padding: 15px 0;
    box-sizing: border-box;
    -webkit-box-shadow: 0px 5px 15px 0px rgb(0 33 85 / 10%);
    -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    box-shadow: 0px 5px 15px 0px rgb(0 33 85 / 10%);
    position: sticky;
    top: 0;
    z-index: 1001;
    background-color: white;
    max-height: 90px;
    transition: max-height .4s ease;
}

.navbar .logo {
    width: auto;
    height: 60px;
}

.navbar .menu {
    margin: 0;
    list-style: none;
    height: 100%;
    padding: 0;
}

.navbar .menu.mobile li {
    display: block;
    line-height: 350%;
}


.navbar .menu.mobile li:not(:last-child) {
    margin: 0;
}

.navbar .menu.mobile {
    height: auto;
    text-align: center;
    border-top: 1px solid #141F61;
    margin-top: 13px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease;
}

.navbar .menu.mobile li {
    height: unset;
}

.navbar .menu li {
    display: inline-flex;
    align-items: center;
    height: 100%;
    color: var(--dark-blue);
    font-family: 'Helvetica Neue Caps', sans-serif;
}

.navbar .menu li a {
    position: relative;
}

.navbar .menu li a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: #141F61;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
}

.navbar .menu li a:hover:before {
    visibility: visible;
    width: 100%;
}

.navbar .menu li:not(:last-child) {
    margin-right: 2rem;
}

.main-slider {
    height: calc(100vh - 138px);
    width: 100%;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.main-slider .slogan {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    bottom: 0;
    padding: 15px;
    background-color: white;
    margin: 0 auto;
    z-index: 3;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.main-slider .overlay {
    background-color: #141F61;
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: .7;
    z-index: 1;
}

.main-slider .slider-content .headline {
    font-family: 'Helvetica Neue Caps', sans-serif;
    color: white;
    position: absolute;
    font-size: 3rem;
    line-height: 150%;
    z-index: 2;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.main-slider {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.main-slider .container {
    position: relative;
}

.main-slider .photo {
    height: calc(100vh - 138px);
    width: 100%;
    object-fit: cover;
    display: block;
}

.main-slider .swiper-button-next:after, .main-slider .swiper-button-prev:after {
    color: white;
}

.main-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-slider .swiper-slide .container {
    position: absolute;
    height: 100%;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.text p {
    margin-bottom: 1.25rem;
    font-family: 'Helvetica Neue LT GEO', sans-serif;
}

.partners.organizations img {
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.partners a:not(:last-child) {
    display: block;
    margin-right: 100px;
}

.w-auto {
    width: auto !important;
}

.section-title {
    text-align: center;
    font-family: 'Helvetica Neue Caps', sans-serif;
    color: var(--dark-blue);
    font-size: 1.875rem;
    position: relative;
    display: inline-block;
}

.center {
    text-align: center;
}

.doctor img {
    width: 100%;
    height: auto;
}

.doctor .info {
    border-radius: 3px;
    background: white;
    padding: 20px 15px;
    margin: 0px 8%;
    text-align: center;
    position: relative;
    transform: translateY(-30px);
    -moz-transform: translate(-30px);
    -webkit-transform: translate(-30px);
    -o-transform: translate(-30px);
    -ms-transform: translate(-30px);
    transform: translateY(-30px);
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 30px 0 rgb(0 20 9 / 10%);
    -moz-box-shadow: 0px 0px 30px 0 rgba(0, 20, 9, 0.1);
    box-shadow: 0px 0px 30px 0 rgb(0 20 9 / 10%);
    z-index: 2;
}

.doctor:hover .info {
    transform: translateY(-60px);
    -moz-transform: translate(-60px);
    -webkit-transform: translate(-60px);
    -o-transform: translate(-60px);
    -ms-transform: translate(-60px);
    transform: translateY(-60px);
}


.doctor:hover .overlay, .organization:hover .overlay {
    opacity: 1;
}

.doctor .info .name {
    font-family: 'Helvetica-Neue-Bold', sans-serif;
    font-size: 1.2rem;
}

.doctor-page .regalia {
    background-color: #3A4BAF;
    padding: 10px;
    border-radius: 3px;
    color: white;
    display: inline-block;
    font-family: 'Helvetica Neue LT GEO', sans-serif;
}

.doctor-page .contact-info {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
}

.doctor-page {
    width: 100%;
}

.doctor-page .socials {
    display: flex;
}

.doctor-page .socials a {
    background-color: #F6F6F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    transition: background-color .2s, color .2s;
}

.doctor-page .socials a:hover {
    background-color: #233498;
    color: white;
}

.doctor-page .socials a:not(:last-child) {
    margin-right: 1rem;
}

.doctor-page .contact-info a {
    margin-left: 10px;
    color: #616161;
    font-family: 'Helvetica Neue LT GEO', sans-serif;
}

.doctor-page .name {
    color: #18100f;
    font-family: 'Helvetica Neue Caps', sans-serif;
}

.doctor .info .regalia {
    font-family: 'Helvetica Neue LT GEO', sans-serif;
    color: #233498;
}

.doctor .overlay {
    position: absolute;
    left: 0;
    display: block;
    top: 0;
    z-index: 1;
    background: rgba(20, 31, 97, .2);
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .5s ease-in-out;
    border-radius: 3px;
}

.organization .overlay {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background: rgba(20, 31, 97, .5);
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .5s ease-in-out;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-page .title {
    font-family: 'Helvetica-Neue-Bold', sans-serif;
    line-height: 150%;
}

.news-page .text {
    display: block;
    overflow: hidden;
    line-height: 150%;
    font-family: 'Helvetica Neue LT GEO', sans-serif;
}

.news-page .text .photos {
    display: block;
    padding-top: 2rem;
}

.news-page .text .photos img {
    width: 40vw;
    height: auto;
    display: block;
    margin-top: 1rem;
}

.news-page .main-img {
    margin: 0 10px 0 10px;
    width: 400px;
    float: right;
    border-radius: 6px;
}

.organization .overlay i {
    color: white;
}

.organization {
    position: relative;
    text-align: center;
    display: block;
    padding: 20px;
    background-color: white;
    -webkit-box-shadow: 0px 0px 30px 0 rgb(0 20 9 / 10%);
    -moz-box-shadow: 0px 0px 30px 0 rgba(0, 20, 9, 0.1);
    box-shadow: 0px 0px 30px 0 rgb(0 20 9 / 10%);
    border-radius: 3px;
}

.organization .title {
    font-family: 'Helvetica-Neue-Bold', sans-serif;
}

.doctor {
    display: block;
    margin-top: 1rem;
}

.doctor-photo {
    width: 100%;
    height: auto;
    border-radius: 3px;
}

.doctor .wrapper {
    position: relative;
}

.doctor .photo {
    display: block;
    border-radius: 3px;
}

.about-us .main-img {
    width: 200px;
    float: right;
    border-radius: 6px;
    margin: 0 0 20px 20px;
}

.section-title:before {
    content: "";
    position: absolute;
    width: 70px;
    height: 2px;
    bottom: -3px;
    background-color: #141F61;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.news-item {
    margin-bottom: 3rem;
    background: white;
    border-radius: 3px;
    -webkit-box-shadow: 0px 0px 30px 0 rgb(0 20 9 / 10%);
    -moz-box-shadow: 0px 0px 30px 0 rgba(0, 20, 9, 0.1);
    box-shadow: 0px 0px 30px 0 rgb(0 20 9 / 10%);
    overflow: hidden;
}

.news-item a {
    overflow: hidden;
    position: relative;
    display: block;
}

.news-item img {
    border-radius: 3px;
    width: 100%;
    height: auto;
    transition: transform .4s ease;
    display: block;
}

.news-item .title {
    font-family: 'Helvetica-Neue-Bold', sans-serif;
    color: #18100F;
    transition: color .2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-item .title:hover {
    color: var(--dark-blue);
}

.news-item .content {
    padding: 20px;
}

.news-item a:hover img {
    transform: scale(1.05);
}

.news-item .date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background-color: var(--dark-blue);
    color: white;
    font-family: 'Helvetica Neue LT GEO', sans-serif;
    padding: 10px;
    font-size: 0.875rem;
}

.newsletter {
    background: #233498;
    color: white;
    padding: 45px;
    border-radius: 3px;
    position: relative;
    top: -95px;
    margin: 0 auto;
    max-width: 60vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.newsletter .title {
    font-family: 'Helvetica Neue Caps', sans-serif;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.newsletter input {
    color: white;
    background-color: #3a4baf;
    border: 0;
    height: 60px;
    font-family: 'Helvetica Neue LT GEO', sans-serif;
    padding: 10px;
    width: 24vw;
    box-sizing: border-box;
    border-radius: 3px;
}

.newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.59);
}

.newsletter input:focus {
    outline: none;
}

.newsletter button {
    background-color: white;
    border: 0;
    height: 60px;
    padding: 0 20px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-family: 'Helvetica-Neue-Bold', sans-serif;
    box-sizing: border-box;
    cursor: pointer;
    transition: background-color .2s ease;
}

.newsletter button:hover {
    background-color: lightgray;
}

.footer {
    margin-top: 100px;
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    background-color: var(--dark-blue);
    color: white;
    font-family: 'Helvetica Neue LT GEO', sans-serif;
}

.contact-box i {
    font-size: 2rem;
    color: white;
}

.contact-box {
    width: 100%;
    padding: 20px;
}

.contact .contact-box-wrapper {
    background-color: white;
    border-color: #F4F6F9;
    box-shadow: 0px 0px 30px 0px rgb(21 21 21 / 11%);
    align-items: center;
    display: flex;
}

.contact-box .item {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: var(--dark-blue);
    border-radius: 3px;
    transition: background-color .2s ease-in-out;
}

.contact-box .item:hover {
    background-color: #233498;
}

.contact-box .item:hover .icon {
    background-color: var(--dark-blue);
}

.contact-box .item .icon {
    transition: background-color .2s ease-in-out;
    width: 52px;
    height: 52px;
    background-color: #233498;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-box .item a {
    color: white;
    font-size: 1.2rem;
    font-family: 'Helvetica-Neue-Bold', sans-serif;
}

.contact-form {
    padding: 0 20px 20px;
    background-color: white;
    border-color: #F4F6F9;
    box-shadow: 0px 0px 30px 0px rgb(21 21 21 / 11%);
    height: 100%;
    box-sizing: border-box;
}

.contact-form .title {
    text-align: center;
    font-family: 'Helvetica Neue Caps', sans-serif;
    color: #18100f;
    font-size: 1.5rem;
}

.contact-form input {
    font-size: .9rem;
    background-color: #F4F6F9;
    border: 1px solid #f4f6f9;
    display: block;
    margin-top: 10px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    font-family: 'Helvetica Neue LT GEO', sans-serif;
    transition: border 0.5s ease-in-out;
    -moz-transition: border 0.5s ease-in-out;
    -ms-transition: border 0.5s ease-in-out;
    -o-transition: border 0.5s ease-in-out;
    -webkit-transition: border 0.5s ease-in-out;
    border-radius: 3px;
}

.contact-form textarea {
    background-color: #F4F6F9;
    border: 1px solid #f4f6f9;
    display: block;
    margin-top: 10px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    font-family: 'Helvetica Neue LT GEO', sans-serif;
    resize: vertical;
    min-height: 100px;
    transition: border 0.5s ease-in-out;
    -moz-transition: border 0.5s ease-in-out;
    -ms-transition: border 0.5s ease-in-out;
    -o-transition: border 0.5s ease-in-out;
    -webkit-transition: border 0.5s ease-in-out;
    border-radius: 3px;
    outline: none;

}

.contact-form textarea:focus, .contact-form input:focus {
    border: 1px solid var(--dark-blue);
}

.contact-form input:focus {
    outline: none;
}

.footer .socials {
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn {
    color: white;
    background-color: var(--dark-blue);
    font-family: 'Helvetica Neue Caps', sans-serif;
    letter-spacing: 1px;
    padding: 20px 30px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 3px;
    border: 0;
    outline: 0;
    transition: background-color .2s ease-in-out;
}

.btn:hover {
    background-color: #233498;
}

.btn.send {
    display: block;
    margin-left: auto;
}


.footer .socials a {
    width: 30px;
    height: 30px;
    display: flex;
    border-radius: 3px;
    background-color: #233498;
    align-items: center;
    justify-content: center;
    transition: background-color .2s ease;
}

.footer .socials a:hover {
    background-color: #3A4BAF;
}

.footer .socials a:not(:last-child) {
    margin-right: 15px;
}

.hamburger {
    display: none;
}


.hamburger .line {
    width: 35px;
    height: 5px;
    background-color: #141F61;
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

/* ONE */

.hamburger.is-active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .line:nth-child(1) {
    -webkit-transform: translateY(13px) rotate(45deg);
    -ms-transform: translateY(13px) rotate(45deg);
    -o-transform: translateY(13px) rotate(45deg);
    transform: translateY(13px) rotate(45deg);
}

.hamburger.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-13px) rotate(-45deg);
    -ms-transform: translateY(-13px) rotate(-45deg);
    -o-transform: translateY(-13px) rotate(-45deg);
    transform: translateY(-13px) rotate(-45deg);
}

body.menu-opened .navbar {
    max-height: 60vh;
    height: fit-content;
}

body.menu-opened .menu.mobile {
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 1700px) {
    .newsletter .title {
        font-size: 1rem;
    }
}

@media screen and (max-width: 1399px) {
    .organization .title {
        font-size: .9rem;
    }

    .newsletter {
        padding: 40px;
    }

    .newsletter input {
        width: 20vw;
    }
}


@media screen and (max-width: 1300px) {
    .main-slider .slider-content .headline {
        font-size: 1.9rem;
        padding: 0 55px;
    }
}

@media screen and (max-width: 1199px) {

    .news-page .main-img {
        width: 300px;
        margin: 0 10px 10px 10px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .organization .title {
        font-size: .74rem;
    }

    .main-slider .slider-content .headline {
        font-size: 2rem;
    }

    .doctor .info .name {
        font-size: 1rem;
    }

    .doctor .info .regalia {
        font-size: 0.9375rem;
    }

    .newsletter {
        max-width: 70vw;
    }


}

@media screen and (max-width: 1050px) {

    .top-header .item {
        font-size: .6rem;
    }
}

@media screen and (max-width: 991px) {

    .btn.send {
        display: block;
        margin: 0 auto;
    }

    .news-page .text img {
        width: 100%;
        height: auto;
    }

    .news-page .swiper {
        height: 300px;
    }

    .contact-box .item a {
        font-size: 1rem;
    }

    .news-page .title {
        font-size: 1.3rem;
    }

    .news-page .main-img {
        width: 100%;
        float: unset;
        display: block;
        margin: 0 0 20px 0;
    }

    .newsletter {
        max-width: 85vw;
    }

    .newsletter .title {
        font-size: .875rem;
    }

    .organization .title {
        font-size: 1rem;
    }

    .newsletter input {
        width: 20vw;
    }

    .navbar .menu li {
        font-size: .8rem;
    }

    .navbar .menu li:not(:last-child) {
        margin-right: 1rem;
    }
}

@media screen and (max-width: 768px) {


    .about-us .main-img {
        width: 150px;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .main-slider .slider-content .headline {
        font-size: 1.5rem;
    }

    .hamburger {
        display: block;
    }

    .newsletter {
        max-width: 95vw !important;
        display: block;
        padding: 40px 20px;
    }

    .newsletter .title {
        font-size: 1.5rem;
    }

    .newsletter input {
        width: 100%;
        height: 50px;
    }

    .newsletter button {
        width: 100%;
        height: 50px;
    }

    .newsletter .fa-envelope-open-text {
        font-size: 3em;
    }

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

    .footer-info .wrapper {
        display: inline-block;
        text-align: left;
    }

    .footer-info .wrapper a {
        display: block;
    }

    .navbar .logo {
        width: 200px;
    }

}
