 
.home_first_screen p{
    margin: 0 0 30px; 
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.37; 
    color: #696A73;
}
.home_banner{
    border-radius: 12px;
    height: 486px;
    overflow: hidden;
    flex-basis: 50%;
    width: 100%;
}
.home_banner img{
    max-width: 1200px;
    max-height: 1400px;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.home_banner iframe{
    border-radius: 12px;
    width: 100%;
    height: 100%;
}
.home_first_screen{
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0 100px;
}

.home_first_screen .text-col{
    min-height: 486px;
    display: flex;
    align-items: center;
    flex-basis: 44%;
}

@media screen and (min-width: 1520px) {
    .home_first_screen p{
        font-size: 1.3rem;
    }
    .home_first_screen h1{
        font-size: 4.6rem;
    }
}
@media screen and (max-width: 767px) {
    .home_first_screen{
        padding: 76px 0 80px;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .home_banner{
        height: 344px;
        width: 100%;
    }
   
}

@media screen and (max-width: 500px){
    .home_first_screen{
        padding: 38px 0 80px;
    }
}