@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #20232a;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #156ef4;
}

.container {
    position: relative;
    min-width: 1100px;
    min-height: 550px;
    display: flex;
     z-index: 1000;
}

.contact__info {
    position: absolute;
    top: 40px;
    width: 350px;
    height: calc(100% - 80px);
    background-color: #20232a;
    z-index: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);
}

.contact__info h2 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
}

.info {
    position: relative;
    margin: 20px 0;
}

.info li {
    position: relative;
    list-style: none;
    margin: 20px 0;
    cursor: pointer;
    align-items: flex-start;
}

.info li span:nth-child(1) {
    width: 30px;
    min-width: 30px;
}

.info li span:nth-child(1) i {
    max-width: 100%;
    filter: invert(1);
    opacity: 0.5;
}

.info li span:nth-child(2) {
    color: #fff;
    margin-left: 10px;
    font-weight: 300;
    opacity: 0.5;
}

.info li:hover span:nth-child(1) i,
.info li:hover span:nth-child(2) {
    opacity: 1;
}

section .container .contact__info .sci {
    position: relative;
    display: flex;
}

section .container .contact__info .sci li {
    list-style: none;
    margin-right: 15px;
}

section .container .contact__info .sci li a {
    text-decoration: none;
}

section .container .contact__info .sci li a i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.5rem;
    height: 3.5rem;
    border: 0.1rem solid #777990;
    border-radius: 50%;
    font-size: 1.5rem;
    transition:  0.3s ease-out;
}

section .container .contact__info .sci li a i:hover {
    background-color: #156ef4;
    color: #fff;
    border-color: transparent;
}

.contact__form {
    position: absolute;
    padding: 70px 50px;
    background-color: #fff;
    margin-left: 150px;
    padding-left: 250px;
    width: calc(100% - 150px);
    height: 100%;
    box-shadow: 0 50px 50px rgba(0, 0, 0, 0.5);
}

.contact__form h2 {
    color: #777990;
    font-size: 24px;
    font-weight: 500;
}

.form__box {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 30px;
}

.input__box {
    position: relative;
    margin: 0 0 35px 0;
}

.w50 {
    width: 47%;
}

.w100 {
    width: 100%;
}

.input__box input, 
.input__box textarea {
    width: 100% !important;
    padding: 5px 0;
    resize: none;
    font-size: 18px;
    font-weight: 300;
    color: #333;
    border: none;
    border-bottom: 1px solid #777;
    outline: none;

}

.input__box textarea {
    min-height: 120px;
}

.input__box span {
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 18px;
    font-weight: 300;
    color: #333;
    transition: 0.5s;
    pointer-events: none;
}

.input__box input:focus span, 
.input__box textarea:focus span,
.input__box input:valid span, 
.input__box textarea:valid span {
    transform: translateY(-20px);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #f6f7ff;
}

.input__box input[type="submit"] {
    position: relative;
    cursor: pointer;
    background: #156ef4;
    color: #fff;
    border: none;
    max-width: 150px;
    padding: 12px;
    border-radius: 10px;
    transition: 0.3s ease-out;
}

.input__box input[type="submit"]:hover {
    background-color: #20232a;
}




