@import url('https://fonts.googleapis.com/css2?family=Poppins:wgth@200;300;400;500;600;700;800;900&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.CONTACT
{
    position: relative;
    min-height: 100vh;
    padding: 50px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    background-image: url(image/bg.jpg);
    background-size: cover;
}
.CONTACT .content
{
    max-width: 800px;
    text-align: center;
}
.CONTACT .content h2
{
    font-size: 36px;
    font-weight: 500;
    color: #fff;

}
.CONTACT .content p
{
    font-weight: 500;
    color:#fff; 
}
.container
{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
.container .CONTACTINFO
{
    width: 50%;
    display: flex;
    flex-direction: column;
}
.container .CONTACTINFO .box
{
    position: relative;
    padding: 20px 0;
    display: flex;
}
.container .CONTACTINFO .box .Icon
{
    min-width: 60px;
    height: 60px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 22px;
}
.container .CONTACTINFO .box .text
{
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color: #fff;
    flex-direction: column;
    font-weight: 300;
}
.container .CONTACTINFO .box .text h3
{
    font-weight: 500;
    color: #00bcd4;
}
.CONTACTFORM
{
    width: 40%;
    padding: 40px;
    background: #fff;
}
.CONTACTFORM h2
{
    font-size: 30px;
    color: #333;
    font-weight: 500;
}
.CONTACTFORM .inputBox
{
    position: relative;
    width: 100%;
    margin-top: 10px;
}
.CONTACTFORM .inputBox input,
.CONTACTFORM .inputBox textarea
{
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
    resize: none;
}
.CONTACTFORM .inputBox span
{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5%;
    color: #666;
}
.CONTACTFORM .inputBox  input:focus ~ span,
.CONTACTFORM .inputBox  input:valid ~ span,
.CONTACTFORM .inputBox  textarea:focus ~ span,
.CONTACTFORM .inputBox  textarea:valid ~ span
{
    color: #e91e63;
    font-size: 12px;
    transform: translatey(-20px);
}
.CONTACTFORM .inputBox  input[type="submit"]
{
    width: 100px;
    background: #00bcd4;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
}

@media (max-width: 991px)
{
    .CONTACT
    {
        padding: 50px;
    }
    .container
    {
        flex-direction: column;
    }
    .container .CONTACTINFO,
    .CONTACTFORM
    {
        width: 100%;
    }
}