.main-banner{
}
.main-banner-container{
    opacity: 0;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: 460px;
    margin-bottom: 36px;
    background: #2B272F;
    border-radius: 10px;
    overflow: hidden;
    user-select: none;
    z-index: 3;
}

.main-banner__text-container{
    width: 740px;
    height: 100%;
    background: #2B272F;
    transform: skewX(-15deg);
    z-index: 2;
}
.main-banner-text{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    padding: 56px 0 56px 48px;
    color: #ffffff;
    transform: skewX(15deg);
}
.main-banner-text__company{
    font-size: 20px;
    margin-bottom: 8px;
}
.main-banner-text__title{
    font-size: 48px;
    line-height: 48px;
}
.main-banner-text__about{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex-grow: 1;
    font-size: 16px;
    margin-bottom: 20px;
}
.main-banner-sections{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 540px;
}
.main-banner-sections{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.main-banner-sections__btn{
    display: flex;
    flex-direction: column;
    padding: 24px;
    width: 260px;
    height: 120px;
    background: #FFFFFF;
    color: #000000;
    font-weight: 500;
    font-size: 18px;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.4s ease;
}
.main-banner-sections__btn:hover{
    background: #D62A32;
    color: #ffffff;
}
.main-banner-sections__btn:hover svg path{
    transition: 0.4s ease;
    stroke: #ffffff;
}
.main-banner-sections__arrow{
    display: none;
}

.main-banner-sections__btn div:first-child{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}
.main-banner-sections__btn div:last-child{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    flex-grow: 1;
    align-items: flex-end;
}

.main-banner-sections__btn{
    align-items: center;
    padding: 12px 0;
}
.section-img-container{
    position: relative;
}
.section-btn__img{
    width: auto;
    height: 55px;
    object-fit: contain;
    transition: 300ms;
}
.img-logo-2{
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}
#section-btn-1:hover .section-btn__img{
    transform: translate(0%, 24%) scaleY(1.4) scaleX(1.4);
}
#section-btn-2:hover .section-btn__img{
    transform: translate(0%, 24%) scaleY(1.4) scaleX(1.4);
}
.section-title-1,
.section-title-2{
    text-transform: uppercase;
    opacity: 1;
    transition: 300ms;
    color: #0a0a0a;
}
#section-btn-1:hover .section-title-1,
#section-btn-2:hover .section-title-2{
    transition: 300ms;
    opacity: 0;
}
#section-btn-1:hover .section-btn__img,
#section-btn-2:hover .section-btn__img{
    transform: translate(0%, 24%) scaleY(1.4) scaleX(1.4);
}
#section-btn-1:hover .main-banner-sections__btn,
#section-btn-2:hover .main-banner-sections__btn{
    border: 1px solid #ffffff;
    background: none;
}
#section-btn-1:hover .img-logo-1,
#section-btn-2:hover .img-logo-1{
    opacity: 0;
}
#section-btn-1:hover .img-logo-2,
#section-btn-2:hover .img-logo-2{
    opacity: 1;
}


.main-banner__img-container{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: end;
    position: absolute;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}
.main-banner__img-container div:first-child{
    opacity: 0;
    width: 680px;
    height: 100%;
    filter: brightness(75%);
    position: absolute;
    background: #db000aad;
    z-index: 1;
    transition: 1s ease;
}
.main-banner__img-container img{
    opacity: 0;
    max-width: 680px;
    height: 100%;
    object-fit: cover;

    transition: 1s ease;
    transform: scale(1);
    animation: pulse 20s ease-in-out infinite;
}
@keyframes pulse {
    from {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    to {
        transform: scale(1);
    }
}

.main-banner-line{
    opacity: 0;
    position: absolute;
    left: 53.5%;
    width: 1.6%;
    height: 100%;
    background-color: #ffffff;
    transform: skewX(15deg) translateX(-3800%);
    transition: 1s ease;
    z-index: 4;
}



@media screen and (max-width: 1409px){
    .main-banner-line{
        left: 66.5%;
    }
}
@media screen and (max-width: 1199px){
    .main-banner-line{
        left: 78.5%;
    }
    .main-banner__img-container img{
        height: 100% !important;
        animation: none;
    }
}
@media screen and (max-width: 991px){
    .main-banner__img-container{
       display: none;
    }
    .main-banner-line{
        display: none;
    }
    .main-banner-text{
        padding: 56px 0 56px 72px;
    }
    #section-btn-1:hover .section-btn__img,
    #section-btn-2:hover .section-btn__img{
        transform: unset;
    }

}
@media screen and (max-width: 767px){
    .main-banner-container{
        height: 382px;
        margin-top: -40px;
        margin-bottom: 48px;
    }
    .main-banner-text{
        padding: 24px 16px;
    }
    .main-banner-text__company{
        font-size: 16px;
    }
    .main-banner-text__title{
        font-size: 32px;
    }
    .main-banner-text__about{
        font-size: 13px;
    }
    .main-banner-sections__btn{
        font-size: 16px;
    }
    .main-banner-sections{
        flex-direction: column;
        width: 100%;
    }
    .main-banner-sections__btn{
        width: 100%;
        height: 64px;
        margin-top: 16px;
        justify-content: center;
    }
    .main-banner-sections__arrow{
        display: inline-block;
    }
    .main-banner-sections__btn div:first-child{
        justify-content: space-between;
    }
    .main-banner-sections__btn div:last-child{
        display: none;
    }
}
@media screen and (max-width: 540px){

}

