.about-company__shell {
    padding-top: 40px;
    margin-bottom: 120px;
    display: flex;
    gap: 110px;
}

.sidebar__list {
    width: 242px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style-type: none;
    overflow: hidden;
}

.active a{
    font-weight: 600;
    color: #2B59FF;
}
.active:after{
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    height: 2px;
    background-color: #2B59FF;
    position: relative;
    margin-right: -100%;
    right: -14px;
}
.sidebar__list-link {
    font-size: 14px;
    text-decoration: none;
    color: #000;
}
.company {
}
.company__image {
    margin-bottom: 48px;
}
.company__image img{
    max-width: 100%;
}
.company__title {
    font-size: 36px;
    line-height: 44px;
    font-weight: 400;
    margin-bottom: 24px;
}
.company__text p:not(:last-child){
    margin-bottom: 25px;
}

@media (max-width: 767.99px) {
    .sidebar__list {
        max-width: 100%;
    }
    .about-company__shell {
        flex-direction: column;
    }
}

/* company-direction */
.company-direction {
}
.company-direction__title {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 32px;
}
.company-direction__blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}
.company-direction__block {
    border-radius: 12px;
    border: 1px solid #F4F4F4;
    padding: 20px;
    transition: transform 0.3s ease-in;
}
.company-direction__block a {
    color: #000;
    text-decoration: none;
}
.company-direction__block:hover {
    transform: scale(1.05);
}
.company-direction__block img{
    margin-bottom: 20px;
}
.company-direction__block h3{
    margin-bottom: 12px;
}

@media (max-width: 1110.99px) {
    .company-direction__blocks {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575.99px) {
    
    .company-direction__blocks {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media (max-width: 991.99px) {
    .about-company__shell {
        gap: 60px;
    }

}

/* Payment */
.payment {
    padding: 60px 0 120px;
}
.payment__body {
}
.payment__title {
    margin-bottom: 40px;
}
.payment__input-shell {
    padding-top: 24px;
}
.payment__input-shell input{
    padding: 12px;
    border: 1px solid #F4F4F4;
    border-radius: 12px;
    width: 310px;
    height: 40px;
    margin-bottom: 20px;
}
.payment__input-shell button{
    cursor: pointer;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    background-color: #2B59FF;
    padding: 12px 24px;
    border-radius: 12px;
}
.payment__form label{
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
}
#toTop {
    display:none;
    text-decoration:none;
    position:fixed;
    bottom:10px;
    right:10px;
    overflow:hidden;
    width:51px;
    height:51px;
    border:none;
    text-indent:100%;
    background:url(../img/ui.totop.png) no-repeat left top;
}

#toTopHover {
    background: url(../img/ui.totop.png) no-repeat left -51px;
    width: 51px;
    height: 51px;
    display: block;
    overflow: hidden;
    float: left;
    opacity: 0;
    -moz-opacity: 0;
}