.banner {
    padding: 200px 0;
}

.banner__descriptionWrapper {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    text-align: center;
}

.banner__title {
    color: #ffffff;
    font-size: 36px;
    line-height: normal;
}

.banner__description {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1.8em;
    max-width: 405px;
}

.banner__btns {
    display: flex;
    gap: 30px;
    margin-top: 8px;
}

.banner__btns .btn {
    white-space: nowrap;
    font-size: 14px;
}

.banner__btns span {
    pointer-events: none;
}

.service {
    padding: 65px 0 90px;
}

.service__wrapper {
    display: flex;
    gap: 30px;
}

.service__navigation {
    width: 25%;
}

.service__navigationWrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    border-right: 1px solid #F0F0F0;
}

.service__navigation .dropdown__title {
    padding: 10px 10px 10px 15px;
    font-size: 16px;
    line-height: 1.8em;
    min-height: 70px;
    gap: 6px;
    justify-content: flex-start;
}

.service__navigation .dropdown__item.active .dropdown__title {
    background-color: transparent;
}

.service__navigation .dropdown__item .dropdown__title {
    border-top: 1px solid #F0F0F0;
}

.service__navigation .dropdown__item:first-child .dropdown__title {
    border-top: 0;
}

.service__navigation .dropdown__item:last-child .dropdown__title {
    border-bottom: 0;
}

.dropdown__icon {
    display: flex;
}

.dropdown__icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.dropdown__content li {
    display: flex;
    list-style: none;
}

.dropdown__content li a {
    padding: 10px 10px 10px 15px;
    font-size: 16px;
    line-height: 1.8em;
    min-height: 70px;
    color: var(--black);
    text-decoration: none;
}

.dropdown__content li.active a {
    pointer-events: none;
}

.dropdown__content li.active a,
.dropdown__content li a:hover {
    background-color: var(--light);
}

/* Post */

.service__post {
    width: 50%;
}

.service__title {
    font-size: 24px;
    line-height: 1.5em;
    margin-bottom: 48px;
}

.service__description p {
    font-size: 16px;
    line-height: 1.8em;
}

.service__description ul {
    padding-left: 20px;
    margin-top: 40px;
}

.service__description ul li {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8em;
}

.service__description h4 {
    line-height: 1.8em;
    margin-top: 48px;
}

.service__packagesList {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
}

.dropdown__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #F0F0F0;
    padding: 16px 12px;
    color: var(--black, #141414);
    font-size: 20px;
    line-height: 1.8em;
    cursor: pointer;
}

.dropdown__title:after {
    content: '';
    background-image: url("../images/icons/dropdown_icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    width: 32px;
    height: 32px;
    display: block;
    transition: .3s;
}

.dropdown__item:first-child .dropdown__title {
    border-top: 1px solid #F0F0F0;
}

.dropdown__item:hover .dropdown__title {
    background: var(--light);
}

.dropdown__content {
    display: none;
}

.dropdown__item.active .dropdown__title {
    background: var(--light);
}

.dropdown__item.active .dropdown__title:after {
    transform: rotate(90deg);
}

.dropdown__item.active .dropdown__content {
    display: block;
}

.dropdown__descriptionWrapper {
    padding: 16px;
}

/* Author */

.service__author {
    width: 25%;
}

.author__wrapper {
    padding: 24px;
    border-radius: 4px;
    background: var(--light);
    position: sticky;
    top: 100px;
}

.author__img {
    display: flex;
    margin-bottom: 24px;
}

.author__img img {
    width: 100%;
}

.author__name {
    color: var(--dark-green);
    text-align: center;
    font-size: 24px;
    line-height: 1.5em;
}

.author__position {
    color: var(--dark-green);
    font-size: 14px;
    line-height: 1.8em;
    text-align: center;
    margin-bottom: 16px;
}

.author__btn {
    display: flex;
    justify-content: center;
}

@media (max-width: 1024px) {

    .service__wrapper {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .service__navigation {
        width: 40%;
        order: 1;
        max-width: 350px;
    }

    .service__author {
        width: calc(60% - 30px);
        max-width: 300px;
        order: 2;
    }

    .service__post {
        width: 100%;
        order: 3;
    }

}

@media (max-width: 768px) {
    .banner {
        padding: 114px 24px 24px;
        background: #F0F0F0 !important;
    }

    .banner__title {
        color: #141414;
        font-size: 24px;
    }

    .banner__description,
    .banner__btns {
        display: none;
    }

    .service {
        padding: 32px 0 64px;
    }

    .service__navigation {
        width: 100%;
    }

    .service__wrapper {
        justify-content: center;
    }

    .service__author {
        order: 4;
        width: 100%;
    }
}

@media (max-width: 480px) {

}
