body.fixed {
    position: fixed;
}

/* Fold */

.fold {
    width: 100%;
    height: calc(100vh - 120px);

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;

    margin-top: 120px;

    position: relative;
}

.fold-bg-slider {
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: flex-start;
}

.fold-bg-container {
    height: 100%;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.fold-bg-container::before {
    content: "";

    height: 100%;
    width: 100%;

    background-color: var(--overlay-color);

    opacity: 0.6;

    position: absolute;

    top: 0;
    left: 0;
}

.fold-bg-container > img {
    height: 100%;
    width: 100%;

    display: block;

    object-fit: cover;
    -o-object-fit: cover;

    object-position: center center;
    -o-object-position: center center;
}

.fold-slider-container {
    width: calc(67% - 20px);
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    position: absolute;

    left: 0;
}

.fold-slider {
    max-width: 100%;
}

.fold-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;

    padding: var(--section-padding);
}

.fold-heading-tip {
    color: #FFFFFF;
}

.fold-heading {
    color: #FFFFFF;
}

.fold-slogan {
    color: #FFFFFF;
}

.fold-info > a {
    color: #FFFFFF;
}

/* About */

.about {
    padding: var(--section-padding);
}

.steps {
    display: flex;
    gap: 40px;
}

.step {
    width: 100%;

    border: 1px solid var(--border-color);

    display: flex;
    flex-direction: column;
    gap: 20px;

    padding: var(--block-padding);

    transition: 0.2s;
    -o-transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
}

.step:hover {
    border-color: var(--primary-light-color);

    box-shadow: 0px 0px 40px 0px rgba(66, 66, 103, 0.4);
    -o-box-shadow: 0px 0px 40px 0px rgba(66, 66, 103, 0.4);
    -moz-box-shadow: 0px 0px 40px 0px rgba(66, 66, 103, 0.4);
    -webkit-box-shadow: 0px 0px 40px 0px rgba(66, 66, 103, 0.4);

    background-color: var(--primary-light-color);
}

.step-icon {
    font-size: 36px;

    transition: 0.2s;
    -o-transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
}

.step:hover > .step-icon {
    color: #FFFFFF;
}

.step-name {
    font-size: 20px;
    font-weight: 500;

    transition: 0.2s;
    -o-transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
}

.step:hover > .step-name {
    color: #FFFFFF;
}

.step-preview {
    transition: 0.2s;
    -o-transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
}

.step:hover > .step-preview {
    color: #FFFFFF;
}

.step > a {
    width: max-content;

    display: flex;
    align-items: center;
    gap: 5px;

    transition: 0.2s;
    -o-transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
}

.step:hover > a {
    color: #FFFFFF;
}

.step-modal-container {
    width: 100%;
    height: 100vh;

    background-color: rgba(0, 0, 0, 0.8);

    display: none;
    align-items: center;
    justify-content: center;

    padding: var(--block-padding);

    position: fixed;

    top: 0;
    left: 0;

    z-index: 3;
}

.step-modal-container.active {
    display: flex;
}

.step-modal {
    width: 100%;
    height: 100%;

    background-color: #FFFFFF;

    display: flex;
    flex-direction: column;
    gap: 20px;

    padding: calc(22px + (2 * var(--block-padding))) var(--block-padding) var(--block-padding) var(--block-padding);

    position: relative;
    
    overflow: auto;
}

.step-modal-close-btn {
    border: none;

    color: var(--primary-dark-color);
    background: none;

    font-size: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    position: absolute;

    top: var(--block-padding);
    right: var(--block-padding);

    cursor: pointer;
}

.step-modal-block {
    width: 100%;

    display: none;
    flex-direction: column;
    gap: 20px;
}

.step-modal-block.active {
    display: flex;
}

.step-modal-block > img {
    width: 100%;
    height: 400px;
    
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}

/* About */

.about-book-appointment {
    display: flex;
    gap: 40px;
}

.about-book-appointment-blank-space {
    width: 100%;

    padding: 10px 20px;
}

.about-book-appointment-btn {
    width: 100%;
}

/* Why choose us */

.why-choose-us {
    background-color: var(--bg-color);

    padding: var(--section-padding);
}

.wcu-media > img {
    width: 100%;

    object-fit: cover;
    -o-object-fit: cover;

    object-fit: cover;
    -o-object-fit: cover;

    object-position: center center;
    -o-object-position: center center;
}

.wcu-info {
    flex-direction: column;
    gap: 20px;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit {
    width: 100%;

    border: 1px solid var(--border-color);

    display: flex;
    align-items: center;
    gap: 20px;

    padding: var(--block-padding);

    transition: 0.2s;
    -o-transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
}

.benefit:hover {
    border-color: var(--primary-light-color);
    
    box-shadow: 0px 0px 40px 0px rgba(66, 66, 103, 0.4);
    -o-box-shadow: 0px 0px 40px 0px rgba(66, 66, 103, 0.4);
    -moz-box-shadow: 0px 0px 40px 0px rgba(66, 66, 103, 0.4);
    -webkit-box-shadow: 0px 0px 40px 0px rgba(66, 66, 103, 0.4);

    background-color: var(--primary-light-color);
}

.benefit-icon {
    width: 60px;
    height: 60px;

    border-radius: 50%;

    color: #FFFFFF;
    background-color: var(--primary-light-color);

    font-size: 24px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-info {
    width: calc(100% - 80px);

    display: flex;
    flex-direction: column;
    gap: 5px;
}

.benefit-name {
    color: var(--primary-light-color);

    font-size: 16px;
    font-weight: 600;

    transition: 0.2s;
    -o-transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
}

.benefit:hover .benefit-name {
    color: #FFFFFF;
}

.benefit-description {
    transition: 0.2s;
    -o-transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
}

.benefit:hover .benefit-description {
    color: #FFFFFF;
}

/* Brief contact */

.brief-contact {
    padding: var(--section-padding);
}

.brief-contact-cta {
    background-color: var(--primary-light-color);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: var(--block-extended-padding);
}

.brief-contact-heading {
    color: #FFFFFF;

    font-size: 36px;
    font-weight: 800;
}

/* Doctors */

.doctors {
    padding: var(--section-padding);
}

.doctors-slider {
    width: 100%;
}

.doctor {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.doctor-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.doctor-name {
    font-size: 20px;
    font-weight: 500;
}

.doctor-media {
    width: 100%;
    height: 300px;

    display: flex;
}

.doctor-media > img {
    width: 100%;
    height: 100%;
}

.doctors-slider-nav {
    display: flex;
    gap: 40px;
}

.doctors-slider-nav-blank-space {
    width: 100%;
}

.doctors-slider-nav-btns {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.doctors-slider-nav-btn {
    width: calc(50% - 20px);
}

/* Our mission */

.our-mission {
    padding: var(--section-padding);
}

.our-mission-info {
    flex-direction: column;
    gap: 20px;
}

.our-mission-diseases {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.our-mission-disease {
    width: 100%;

    border: 1px solid var(--border-color);

    transition: 0.2s;
    -o-transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
}

.our-mission-disease:hover {
    border-color: var(--primary-light-color);

    box-shadow: 0px 0px 40px 0px rgba(66, 66, 103, 0.4);
    -o-box-shadow: 0px 0px 40px 0px rgba(66, 66, 103, 0.4);
    -moz-box-shadow: 0px 0px 40px 0px rgba(66, 66, 103, 0.4);
    -webkit-box-shadow: 0px 0px 40px 0px rgba(66, 66, 103, 0.4);

    background-color: var(--primary-light-color);
}

.disease-link {
    width: 100%;
    height: 100%;

    color: var(--primary-light-color);

    font-size: 16px;
    font-weight: 600;

    display: flex;
    align-items: center;
    gap: 20px;

    padding: var(--block-padding);

    transition: 0.2s;
    -o-transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
}

.disease-icon {
    transition: 0.2s;
    -o-transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
}

.our-mission-disease:hover .disease-icon {
    color: #FFFFFF;
}

.disease-name {
    transition: 0.2s;
    -o-transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
}

.our-mission-disease:hover .disease-name {
    color: #FFFFFF;
}

.our-mission-media > img {
    width: 100%;
}

/* Stats */

.stats {
    background-color: var(--primary-dark-color);

    display: flex;
    justify-content: space-between;
    gap: 40px;

    padding: var(--section-padding);
}

.stat {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-number {
    color: #FFFFFF;

    font-size: 36px;
    font-weight: 800;
}

.stat-name {
    color: #FFFFFF;

    text-align: center;
}

/* Testimonials */

.testimonials {
    padding: var(--section-padding);
}

.testimonials-container {
    display: flex;
    gap: 40px;
}

.testimonial {
    width: 100%;

    border: 1px solid var(--border-color);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    gap: 20px;

    padding: var(--block-padding);

    transition: 0.2s;
    -o-transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
}

.testimonial:hover {
    border-color: var(--primary-light-color);
    
    box-shadow: 0px 0px 40px 0px rgba(66, 66, 103, 0.4);
    -o-box-shadow: 0px 0px 40px 0px rgba(66, 66, 103, 0.4);
    -moz-box-shadow: 0px 0px 40px 0px rgba(66, 66, 103, 0.4);
    -webkit-box-shadow: 0px 0px 40px 0px rgba(66, 66, 103, 0.4);

    background-color: var(--primary-light-color);
}

.testimonial-text {
    transition: 0.2s;
    -o-transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
}

.testimonial:hover > .testimonial-text {
    color: #FFFFFF;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author {
    font-size: 20px;
    font-weight: 500;
        
    transition: 0.2s;
    -o-transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
}

.testimonial:hover .testimonial-author {
    color: #FFFFFF;
}

.testimonial-date {
    transition: 0.2s;
    -o-transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
}

.testimonial:hover .testimonial-date {
    color: #FFFFFF;
}

.testimonials-slider-nav {
    display: flex;
    gap: 40px;
}

.testimonials-slider-nav-blank-space {
    width: 100%;
}

.testimonials-slider-nav-btns {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonials-slider-nav-btn {
    width: calc(50% - 20px);
}

/* Gallery */

.gallery {
    background-color: var(--bg-color);

    padding: var(--section-padding);
}

.gallery-slider {
    width: 100%;
}

.gallery-media {
    width: 100%;
    height: 300px;

    display: flex;
}

.gallery-media > img {
    width: 100%;
    height: 100%;
}

.gallery-slider-nav {
    display: flex;
    gap: 40px;
}

.gallery-slider-nav-blank-space {
    width: 100%;
}

.gallery-slider-nav-btns {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gallery-slider-nav-btn {
    width: calc(50% - 20px);
}

/* Book appointment */

.book-appointment {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: var(--section-padding);
}

.book-appointment-media > img {
    width: 100%;

    object-fit: cover;
    -o-object-fit: cover;

    object-fit: cover;
    -o-object-fit: cover;

    object-position: center center;
    -o-object-position: center center;
}

.book-appointment-info {
    flex-direction: column;
    gap: 20px;
}

/* Blog */

.posts {
    padding: var(--section-padding);
}

.posts-slider {
    width: 100%;
}

.post {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.post-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.post-name {
    font-size: 20px;
    font-weight: 500;
}

.post-media {
    width: 100%;
    height: 300px;

    display: flex;
}

.post-media > img {
    width: 100%;
    height: 100%;
}

.posts-slider-nav {
    display: flex;
    gap: 40px;
}

.posts-slider-nav-blank-space {
    width: 100%;
}

.posts-slider-nav-btns {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.posts-slider-nav-btn {
    width: calc(50% - 20px);
}

/* FAQ */

.faq {
    background-color: var(--bg-color);

    padding: var(--section-padding);
}

.faq-block {
    border: 1px solid var(--border-color);

    display: flex;
    flex-direction: column;

    padding: var(--block-padding);

    transition: 0.2s;
    -o-transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
}

.faq-block:hover {
    border-color: var(--primary-light-color);

    box-shadow: 0px 0px 40px 0px rgba(66, 66, 103, 0.4);
    -o-box-shadow: 0px 0px 40px 0px rgba(66, 66, 103, 0.4);
    -moz-box-shadow: 0px 0px 40px 0px rgba(66, 66, 103, 0.4);
    -webkit-box-shadow: 0px 0px 40px 0px rgba(66, 66, 103, 0.4);

    background-color: var(--primary-light-color);
}

.faq-block-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-block-title > h5 {
    font-size: 20px;
    font-weight: 500;

    transition: 0.2s;
    -o-transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
}

.faq-block:hover > .faq-block-title > h5 {
    color: #FFFFFF;
}

.faq-block-toggle-btn {
    width: 30px;
    height: 30px;

    border: none;
    border-radius: 50%;

    color: #FFFFFF;
    background-color: var(--primary-light-color);

    font-size: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: 0.2s;
    -o-transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
}

.faq-block-toggle-btn:hover {
    background-color: var(--primary-light-color-hover);
}

.faq-answer {
    display: none;

    margin-top: 20px;
}

.faq-answer > p {
    transition: 0.2s;
    -o-transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
}

.faq-block:hover > .faq-answer > p {
    color: #FFFFFF;
}

@media only screen and (max-width: 1000px) {
    .fold-slider-container {
        width: 100%;
    }

    .steps {
        flex-direction: column;
    }

    .about-book-appointment-blank-space {
        display: none;
    }

    .benefit-icon {
        display: none;
    }

    .brief-contact-heading {
        font-size: 32px;
    }

    .doctors-slider-nav-blank-space {
        display: none;
    }

    .our-mission-diseases {
        grid-template-columns: 1fr;
    }

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

    .gallery-slider-nav-blank-space {
        display: none;
    }

    .posts-slider-nav-blank-space {
        display: none;
    }
}

@media only screen and (max-width: 800px) {
    .benefit-icon {
        display: flex;
    }

    .brief-contact-heading {
        font-size: 28px;
    }

    .our-mission-diseases {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (max-width: 600px) {
    .brief-contact-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .brief-contact-heading {
        font-size: 24px;
    }

    .brief-contact-cta > .c-primary-btn {
        width: 100%;
    }

    .stats {
        flex-direction: column;
    }

    .stat {
        width: 100%;

        align-items: flex-start;
    }
    
    .stat-name {
        text-align: initial;
    }

    .our-mission-diseases {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 400px) {
    
}