.first-screen{ 
    height: 90vh; 
 }

 .first-screen .wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 80vh;
 }

 .first-screen .left-col{
    border-radius: 15px;
    background-color: var(--orange);
    height: 100%;
    text-align: center;
    /*padding: 28px 66px;*/
    padding: 28px 0;
    background-image: url('hero-elem.png');
    background-size: cover;
    background-repeat: no-repeat;
 }

 .first-screen .right-col img{
    border-radius: 15px;
    height: 100%;
 }

 .first-screen h1{
    color: var(--white);
    font-weight: 400;
    font-size: 60px;
    line-height: 100%;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    margin-top: 20vh;
    margin-bottom: 30px;
    padding: 0 12px;
 }
 .first-screen em{
    font-weight: 200;
 }
 .first-screen  .sub-title{
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.03em;
    text-align: center;
 }

 .first-screen p.info-text{
    font-weight: 400;
    margin: 0 auto 37px;
    max-width: 409px;
    padding: 0 12px;
 }

 .first-screen p span{
    font-weight: 500;
 }
 .first-screen .container{
    position: relative;
 }

 .first-screen .contact-btn{
    background-color: var(--black);
 }
 
/* Ліва колонка */
.first-screen .left-col > * {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity .7s ease, transform .7s ease;
}

/* Права колонка */
.first-screen .right-col > * {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity .7s ease, transform .7s ease;
}

/* Коли секція завантажилась */
.first-screen.loaded .left-col > *,
.first-screen.loaded .right-col > * {
    opacity: 1;
    transform: translateX(0);
}

/* Каскадна поява */
.first-screen .left-col > *:nth-child(1) {
    transition-delay: .1s;
}

.first-screen .left-col > *:nth-child(2) {
    transition-delay: .25s;
}

.first-screen .left-col > *:nth-child(3) {
    transition-delay: .4s;
}

.first-screen .left-col > *:nth-child(4) {
    transition-delay: .55s;
}

.first-screen .right-col > * {
    transition-delay: .35s;
}


@media screen and (min-width:1600px){
    

}

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

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

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

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

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

@media screen and (max-width: 1199px){
    .first-screen h1{
        font-size: 50px;
    }
}

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

@media screen and (max-width: 767px){
    .first-screen .wrapper{
        grid-template-columns: 1fr;
        height: auto;
    }

    .first-screen{
        height: auto;
    }

    .first-screen h1{
        font-size: 40px;
        margin-top: 40px;
    }

    .first-screen .left-col{
        padding: 42px 20px 28px;
    }

    .first-screen p.info-text{
        font-size: 13px;
    }
   
}