.sidebar {
    background: linear-gradient(0.45turn, #3f87a6, #a5e475, #f69d3c);
}

.outter {
    width: 100%;
    height: 88vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(heroImage/contact.jpg);
    background-position: center;
    background-size: cover;
}

.contact-name {
    width: 100%;
    height: 110px;
    background: linear-gradient(217deg, rgba(163, 128, 128, 0.8), rgba(255, 0, 0, 0) 70.71%),
        linear-gradient(127deg, rgba(214, 168, 216, 0.8), rgba(0, 255, 0, 0) 70.71%),
        linear-gradient(336deg, rgba(0, 0, 255, .8), rgba(0, 0, 255, 0) 70.71%);
    text-align: center;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.contact-name p {
    color: #fff;
}

.contact-name>p>a {
    text-decoration: none;
    color: #fff;
}

.contact-name>p>a:hover {
    color: greenyellow;
}

.contact-name>h1 {
    font-size: 3rem;
    color: #eee;
    padding-top: 20px;
    text-decoration: underline #a7e710;
    letter-spacing: 0.2rem;
}

/* !--\contaner section---- */
.contener {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.contener .contact-info {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.contener .contact-info .box {
    padding: 20px 0;
    display: flex;
}

.contener .contact-info .box .icon {
    min-width: 60px;
    height: 60px;
    background-color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 22px;
}

.contener .contact-info .box .text {
    display: flex;
    margin-left: 20px;
    font-size: 1rem;
    color: #eee;
    flex-direction: column;
    font-weight: 300;
    letter-spacing: 0.7px;
}

.contener .contact-info .box .text h3 {
    font-weight: 500;
    color: #00bcd4;
}

/* ?--- */
.contactform {
    width: 30%;
    padding: 40px;
    background-color: #fff;
    border-radius: 50% 20% / 10% 40%;
}

.contactform h2 {
    font-size: 30px;
    color: #333;
    font-weight: 800;
}

.contactform .inputbox {
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.contactform .inputbox input,
textarea {
    width: 100%;
    padding: 5px 0;
    font-size: 1rem;
    margin: 10px auto;
    border: none;
    border-bottom: 2px solid #000;
    outline: none;
    resize: none;
}

.contactform .inputbox span {
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 1rem;
    margin: 10px auto;
    pointer-events: none;
    transition: 0.5s;
    color: #666;
}

.contactform .inputbox input:focus~span,
.contactform .inputbox input:valid~span {
    color: #e91e63;
    font-size: 13px;
    transform: translateY(-20px);
}

.contactform .inputbox textarea:focus~span,
.contactform .inputbox textarea:valid~span {
    color: #e91e63;
    font-size: 13px;
    transform: translateY(-20px);
}

.contactform .inputbox input[type="submit"] {
    width: 100px;
    background: #00bcd4;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
    border-radius: 10px 100px / 120px;
}

/* ?!------------media -------- */
@media (max-width: 800px) {
    .outter {
        height: auto;

    }

    .contener {
        display: felx;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .contener .contact-info {
        width: 100%;
        padding-left: 6vw;
        padding-bottom: 50px;
    }

    .contener .contact-info .box {
        padding: 10px 0;
    }

    .contactform {
        width: 90%;
        margin-bottom: 20px;
    }
}