@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-SemiBold.ttf');
    font-weight: 600;
    font-style: normal;
}

:root {
    --green-color: #BAD531;
    --grey-color: #333333;
}

* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    background-color: var(--grey-color);
    color: white;
    font-family: 'Inter', sans-serif;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    transition: opacity 1.5s;
}

body.opacity-hidden {
    opacity: 0;
}

a {
    text-decoration: none;
    color: inherit;
    outline: none;
}

.container-adaptive {
    width: 100%;
    max-width: 2560px;
    margin: 0 auto;
    padding: 0 36px;
}

header {
    padding: 36px 0;
}

header.header-absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

header .container-adaptive {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.green-button {
    background-color: var(--green-color);
    display: inline-block;
    padding: 14px 16px;
    border-radius: 10px;
    color: var(--grey-color);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.green-button:hover {
    background-color: white;
}

.header-logo {
    display: block;
    max-width: 196px;
}

.header-glasses-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 10px 5px;
    border-radius: 10px;
    transition: all 0.2s;
}

.header-glasses-button:hover {
    background-color: var(--green-color);
}

.header-logo-buttons-block {
    display: flex;
}

.header-logo-buttons-block > * + * {
    margin-left: 24px;
}

.header-menu-icon {
    width: 42px;
    cursor: pointer;
    align-self: center;
    position: relative;
}

.header-menu-icon > * {
    width: 100%;
    background-color: white;
    height: 4px;
    border-radius: 5px;
    transition: background-color 0.2s;
}

.header-menu-icon > * + * {
    margin-top: 12px;
}

.header-menu-icon:hover > * {
    background-color: var(--green-color);
}

#main-banner-block {
    padding-top: 300px;
    padding-bottom: 33px;
    background: url("../images/main-banner.png") no-repeat bottom center;
    background-size: cover;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.main-banner-block-title {
    font-weight: 600;
    font-size: 100px;
    line-height: 0.9;
}

.main-banner-block-title span {
    color: var(--green-color)
}

#phone-block {
    display: block;
    padding: 36px 0;
}

#phone-block img {
    width: 100%;
}

.block-title {
    font-size: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 36px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}

#services-block .block-title {
    border-top: 2px solid rgba(255, 255, 255, 0.5);
}

.block-title-name {
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.block-title-name:before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 31px;
    background: url("../images/arrow-down.svg") no-repeat bottom center;
    background-size: 100% 100%;
    margin-right: 12px;
}

.block-title-text {
    width: 50%;
}

.block-title-text span, .block-title-text a {
    color: var(--green-color);
}

.block-title-text a, .mobile-block-title-link {
    text-decoration: underline;
    font-weight: 600;
}

.service-items-wrapper {
    padding-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service-item {
    width: 32%;
    min-height: 288px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    margin-bottom: 2%;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.2s;
}

.service-item:hover {
    transform: translateY(-4px);
}

.service-item.big {
    width: 49%;
}

.service-item-name {
    background-color: rgba(51, 51, 51, 0.5);
    padding: 24px;
    font-size: 32px;
    font-weight: 600;
    height: 100%;
}

#licenses-block {
    background-color: var(--green-color);
    padding: 0 36px;
    border-radius: 20px;
}

.license-items-wrapper {
    padding-bottom: 36px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.license-item {
    display: flex;
    align-items: flex-start;
    width: 45%;
    margin-top: 36px;
}

.license-item:hover .license-item-image {
    transform: scale(1.02);
}

.license-item-image {
    transition: transform 0.2s;
    max-width: 198px;
    flex-shrink: 0;
    margin-right: 36px;
}

.license-item-name {
    font-size: 24px;
    color: var(--grey-color);
    line-height: 1.3;
}

#licenses-block .block-title-text a, #licenses-block .mobile-block-title-link {
    color: var(--grey-color);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    padding: 34px 0;
    font-size: 48px;
}

.price-item-name {
    font-weight: 600;
}

.price-item-sum {
    flex-shrink: 0;
    margin-left: 40px;
}

#prices-block .block-title-text, #licenses-block .block-title-text {
    text-align: right;
}

#stock-block {
    overflow: hidden;
}

#stock-block .block-title {
    border-bottom: none;
}

.stock-slider-slide {
    background-color: white;
    color: var(--grey-color);
    display: flex;
    border-radius: 20px;
    overflow: hidden;
}

.stock-slider-slide > * {
    width: 50%;
}

#stock-slider-container {
    position: relative;
}

.stock-slider-slide-text-content {
    padding: 36px 36px 130px 36px;
    font-size: 32px;
    font-weight: 600;
}

.stock-slider-slide-prices {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.stock-slider-slide-old-price {
    opacity: 0.2;
    text-decoration: line-through;
    margin-right: 10px;
}

.stock-slider-slide-new-price {
    color: var(--green-color);
}

.stock-slider-slide-image-content {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
    min-height: 456px;
}

#stock-slider-container .stock-slider-pagination {
    bottom: 36px;
    padding-left: 36px;
    text-align: left;
    z-index: 2;
}

#stock-slider-container .swiper-pagination-bullet {
    margin: 0;
    width: 20px;
    height: 20px;
    opacity: 0.2;
    background-color: var(--grey-color);
}

#stock-slider-container .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--green-color);
}

#stock-slider-container .swiper-pagination-bullet + .swiper-pagination-bullet {
    margin-left: 20px;
}

.footer-contact-items-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 36px;
}

.footer-contact-item {
    width: 30%;
    margin-bottom: 36px;
}

.footer-contact-item-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--green-color);
}

.footer-contact-item-text {
    font-size: 18px;
}

.footer-contact-item-text a {
    text-decoration: underline;
}

#side-menu-wrapper {
    visibility: hidden;
    display: flex;
    justify-content: flex-end;
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 3;
    top: 0;
    left: 0;
    background-color: transparent;
    overflow: hidden;
    transition: background-color 0.3s;
}

#side-menu-wrapper.active {
    visibility: visible;
    background-color: rgba(51, 51, 51, 0.75);
}

#side-menu {
    background-color: white;
    color: var(--grey-color);
    padding: 36px;
    width: 100%;
    max-width: 387px;
    transition: ease-in-out 0.3s;
    transform: translateX(100%);
    overflow-y: auto;
}

#side-menu-wrapper.active #side-menu {
    transform: translateX(0);
}

#side-menu .green-button:hover {
    background-color: var(--grey-color);
    color: white;
}

#side-menu ul {
    padding-inline-start: 0;
    list-style: none;
    margin-top: 36px;
    margin-bottom: 0;
}

#side-menu ul li + li {
    margin-top: 24px;
}

#side-menu ul li a {
    text-decoration: underline;
    font-size: 16px;
}

#side-menu ul li a:hover {
    color: var(--green-color);
}

.side-menu-glasses-button {
    margin-top: 40px;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--grey-color);
    border-radius: 10px;
    padding: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
}

.side-menu-glasses-button:hover {
    background-color: var(--green-color);
    border-color: transparent;
}

.side-menu-glasses-button img {
    margin-right: 10px;
}

#side-menu-close {
    cursor: pointer;
    width: 33px;
}

.side-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-title {
    font-size: 60px;
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 36px;
}

.doctor-items-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.doctor-item {
    width: 48%;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    margin-top: 36px;
}

.doctor-item-main {
    display: flex;
    align-items: flex-end;
}

.doctor-item-image {
    width: 198px;
    height: 198px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 10px;
    flex-shrink: 0;
    margin-right: 36px;
}

.doctor-item-main-text-info {
    flex-grow: 1;
}

.doctor-item-name {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 18px;
}

.doctor-item-post {
    font-size: 18px;
}

.doctor-item-education-title {
    font-size: 21px;
    font-weight: 600;
    transition: color 0.2s;
}

.doctor-item-education {
    padding: 24px 0;
    position: relative;
    cursor: pointer;
}

.doctor-item-education:hover .doctor-item-education-title {
    color: var(--green-color);
}

.doctor-item-education:after {
    content: '';
    width: 24px;
    height: 13px;
    position: absolute;
    top: 28px;
    right: 0;
    background: url("../images/chevron-down.svg") no-repeat center center;
    background-size: 100% 100%;
    transition: transform 0.4s;
}

.doctor-item-education.active:after {
    transform: rotate(180deg);
}

.doctor-item-education-item {
    margin-top: 24px;
    font-size: 16px;
    padding-left: 24px;
    position: relative;
}

.doctor-item-education-item:before {
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--green-color);
    border-radius: 50%;
}

.doctor-item-education-drop-down .doctor-item-education-title {
    margin-top: 24px;
}

#licenses-page-block .license-item-name {
    color: white;
}

#licenses-page-block .license-items-wrapper {
    padding-bottom: 0;
}

#about-block {
    display: flex;
    align-items: flex-start;
    padding-top: 36px;
}

.about-block-text-column {
    flex-grow: 1;
}

.about-block-nav {
    flex-shrink: 0;
    max-width: 315px;
    margin-left: 150px;
    text-decoration: underline;
    font-size: 16px;
}

.about-block-nav ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
}

.about-block-nav li + li {
    margin-top: 24px;
}

.about-block-nav li {
    transition: all 0.2s;
}

.about-block-nav li:hover {
    color: var(--green-color);
}

.about-block-section-title {
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 36px;
}

.about-block-section + .about-block-section {
    margin-top: 36px;
}

.about-p {
    font-size: 16px;
    line-height: 1.5;
}

.about-p + .about-p {
    margin-top: 24px;
}

.about-block-subsection-title {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 36px;
}

.about-block-subsection + .about-block-subsection {
    margin-top: 36px;
}

.about-p a {
    text-decoration: underline;
    color: var(--green-color);
}

.about-p.green {
    color: var(--green-color);
}

.about-p b {
    font-weight: 600;
}

.mobile-block-title-link {
    display: none;
    font-size: 24px;
    padding-bottom: 36px;
}