.contact {
    position: relative;
    min-height: 50vh;
    padding:15px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: url(./images/bg3.webp);
    background-size: cover;
}


.contact .content{
max-width: 800px;
text-align: center;
}

.contact .content h2{
    font-size: 50px;
    font-weight: 500;
    color: #fff;

}

.contact .content p{
    font-size: 30px;
    color: #fff;
}



.contact-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.contact-container .contactinfo{
    width: 50%;
    display: flex;
    flex-direction: column;
}

.contact-container .contactinfo .box {
    position: relative;
    padding: 20px 0;
    display: flex;
}

.contact-container .contactinfo .box .icon {
    min-width: 60px;
    height: 60px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 22px;
}

.contact-container .contactinfo .box .text {
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color: #fff;
    flex-direction: column;
    font-weight: 300;
}


.contact-container .contactinfo .box .text h3 {
    font-weight: 500;
    /* color: #00bcd4; */
    color:#e74c3c;
}

.contact-form{
    background: #fff;
width: 40%;
padding: 40px;
}
.contact-form h2 {
    font-size: 30px;
    color: #333;
    font-weight: 500;
}

.contact-form .inputBox {
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.contact-form .inputBox input,
.contact-form .inputBox textarea {
    width:100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
    resize: none;
}

.contact-form .inputBox span {
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #666;
}

.contact-form .inputBox input:focus ~ span,
.contact-form .inputBox input:valid ~ span,
.contact-form .inputBox textarea:focus ~ span,
.contact-form .inputBox textarea:valid ~ span{

    /* color: #e91e63; */
    color:#e74c3c;
    font-size: 12px;
    transform: translateY(-20px);
}

.contact-form .inputBox input[type="submit"]
{
    width: 100px;
    /* background-color: #00bcd4; */
    background-color:#e74c3c;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
}



@media (max-width :991px) {
    .contact {
        padding: 50px;
    }
    .container {
        flex-direction: column;
    }
    .contact-container .contactinfo {
        margin-bottom: 40px;
    }
    .contact-container .contactinfo ,
    .contact-form
    
    {
        width: 100%;
    }
}

