
section.one{
    min-height: fit-content;
    padding: var(--SectionPadding) 10px;
}
section.one form * {
    margin-bottom: 10px;
    transition: .4s ease;
}
section.one input{
    border: none;
    border-bottom: 1px solid var(--GrayText);
    padding: 10px 5px;
    width: 100%;
}
section.one form input:focus{
    border: none;
    outline: none;
    border-bottom: 1px solid var(--OrangeText);
}
section.one form textarea{
    padding: 10px 5px  ;
    width: min(100% , 100%);
    max-height: 300px;
    min-height: 300px;
}
section.one form textarea:focus {
    outline: none;
    border-color: var(--OrangeText);
}
section.one form select{
    padding: 5px ;

}
section.one form select:focus{
    outline: none;
}
section.one form select option{
    padding: 10px;
}

section.one form button {
    padding: 10px;
    width: 150px;
    color: var(--OrangeText);
}

section.one form button::before {
    content: '';
    position: absolute;
    left: 15px;
    transform: translateY(-50%);
    top: 50%;
    width: 30px;
    height: 30px;
    background-color: var(--OrangeTransparenBackgournd);
    z-index: -1;
    border-radius: 50%;
    transition: .5s ease;
}

section.one form button:hover::before {
    border-radius: 0px;
    width: 120px;
}
section.one .row .d-flex{
    gap: 50px;
}
section.one  img{
    width: min(100% , 500px);
}
















@media (max-width:400px) {
    html {
        font-size: 10px;
    }
    nav .menu-left-word {
        top: -20px;
    }
    footer .row .col-md-6:nth-child(2){
        width: fit-content;
        margin: 0 auto;
    }
    footer .row .col-md-6 a{
        color: white;
    }
    footer img.stars{       
        display: none;
    }
    

}


@media (min-width:401px) and (max-width:787px) {
    html {
        font-size: 13px;
    }
    footer .row .col-md-6:nth-child(2){
        width: fit-content;
    }
    footer .row .col-md-6 a{
        color: white;
    }
    footer img.stars{       
        display: block;
    }
    footer img.stars{       
        display: none;
    }
}

@media (min-width:768px) {
    html {
        font-size: 16px;
    }

}



@media (max-width:930px){
    footer::before {
        width: 100%;
    }
    footer .row:last-child{
        color: white;
    }
    footer .row .col-md-6 a{
        color: white;
    }

}
