.contact-us-section-container
{
    visibility: visible;
}
.contact-us-container{
    padding: 6rem 2rem;
}
.contact-us-stylesheet{
    height: 70vh;
    width: 100%;
}
button{
    position: relative;
    display:inline-block;
}
button::after{
    content: '';
    position: absolute;
    top:0;
    left:0;
    height: 100%;
    width: 100%;
    transition: 0.5s ease-in-out;
    transform: scaleY(1);
}
button:hover::before{
    transform: scaleY(0);
}
button:hover{

}
.contact-us-cantact{
    display: flex;
    flex-basis: 100%;
    height: 60vh;
}
.contact-us-right{
    flex: 0 0 50%;
    padding-right: 25px;
    position: relative;
    /* align-self: flex-end; */
}
.contact-us-left{
    flex: 0 0 50%;
    padding-right: 25px;
    position: relative;
}
.cont-us-background-img{
    position: absolute;
    width: 91%;
    animation: cont-us-background-img-animation 1s 0s linear forwards;
}
@-webkit-keyframes cont-us-background-img-animation {
    0%{
        opacity: 1;
        width: 1%;
    }
    100%{
        opacity: 1;
        width: 85%;
    }
}
.cont-us-mobile-img{
    position: absolute;
    width: 31%;
    left: 34%;
    top: 25%;
    z-index: 2;
    animation: cont-us-mobile-img-animation 1s 0s linear forwards;
}
@-webkit-keyframes cont-us-mobile-img-animation {
    0%{
        opacity: 1;
        width: 0%;
    }
    100%{
        opacity: 1;
        width: 31%;
        left: 34%;
    }
}
.cont-us-gmail-img{
    position: absolute;
    width: 41%;
    top: 78%;
    left: 2%;
    z-index: 1;
    animation: cont-us-gmail-img-animation 1s 0s linear forwards;
}
@-webkit-keyframes cont-us-gmail-img-animation {
    0%{
        opacity: 1;
        width: 1%;
        left: 0%;
    }
    100%{
        opacity: 1;
        width: 41%;
        left: 2%;
    }
}
.cont-us-gamla-img{
    position: absolute;
    width: 11%;
    top: 67%;
    left: 66%;
    animation: cont-us-gamla-img-animation 1s 0s linear forwards;
}
@-webkit-keyframes cont-us-gamla-img-animation {
    0%{
        opacity: 1;
        width: 1%;
    }
    100%{
        opacity: 1;
        width: 11%;

    }
}
.cont-us-man-img{
    position: absolute;
    width: 28%;
    top: 28%;
    left: 64.9%;
    animation: cont-us-man-img-animation 1s 0s linear forwards;
}
@-webkit-keyframes cont-us-man-img-animation {
    0%{
        opacity: 1;
        bottom: 0%;
        left: 0%;
        width: 1%;
    }
    100%{
        opacity: 1;
        bottom: 17%;
        left: 64.9%;
        width: 28%;
    }
}
.cont-us-girl-img{
    position: absolute;
    width: 23%;
    top: 25%;
    left: 0;
    z-index: 2;
    animation: cont-us-girl-img-animation 1s 0s linear forwards;
}
@-webkit-keyframes cont-us-girl-img-animation {
    0%{
        opacity: 1;
        width: 1%;
    }
    100%{
        opacity: 1;
        width: 23%;
    }
}
.cont-us-flower-img{
    position: absolute;
    width: 11%;
    left: 20%;
    top: 28%;
    animation: cont-us-flower-img-animation 1s 0s linear forwards;
}
@-webkit-keyframes cont-us-flower-img-animation {
    0%{
        opacity: 1;
        width: 1%;
        left: 0%;
    }
    100%{
        opacity: 1;
        width: 11%;
        left: 20%;
    }
}
.contact-us-button{
    padding: 6px 60px;
    font-size: 1.4em;
    font-weight: bold;
    background-color: #fff;
    border: 1px solid #263238;
    border-radius: 25px;
    bottom: 59px;
    position: absolute;
    right: calc(3rem + 25px);
}
.contact-us-left{
    position: relative;
    width:100%;
}
.form-box .input-box{
    position: relative;
}
.form-box .input-box input{
    width: 100%;
    padding: 10px;
    font-size: 1.1em;
    color:black;
    letter-spacing: 1px;
    margin-bottom: 10px;
    border:none;
    border-bottom: 1px solid #F7C2C5;
    background: transparent;
    outline: none;
}
.form-box .input-box label{
    position: absolute;
    left: 0;
    top:0;
    letter-spacing: 1px;
    padding: 10px 0;
    font-size: 1.2em;
    color: #263238;
    transition: 0.5s;
    font-weight: bold;
}
.form-box .input-box input:focus ~ label,
.form-box .input-box input:valid ~ label{
    top:-20px;
    color: #EC6C75;
    font-size: 1em;
    left: 0;
}
form{
    display: flex;
    justify-content: space-between;
}
.form-left{
    margin: 0 36px 0 0;
}
.form-box > p{
    font-size: 1em;
    color: #263238;
}
.form-container
{
    font-size: 1em;
}
/* media quary */
@media only screen and (max-width: 1200px) {
    .form-box > p {
        font-size: 19px;
    }
    .contact-us-right{
        align-self: end;
        height: 272px;
    }
}
@media only screen and (max-width: 1050px){
    .form-box > p {
        font-size: 16px; 
    }
    .form-left {

    }
    .contact-us-cantact { 

    }
}
@media only screen and (max-width: 900px) {
    .form-box > p {
        font-size: 14px;
    }
    .form-box .input-box label{
        font-size: 14px;
    }
    .contact-us-right{

    }
}