@font-face {
    font-family: "quicksand";
    src: url(../fonts/Quicksand-Light.ttf);
}

@font-face {
    font-family: "mon cheri";
    src: url(../fonts/TAN-MON-CHERI.otf);
}

@font-face {
    font-family: "vida...";
    src: url(../fonts/lovelace.otf);
}

.contact-1 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.contact-1>* {
    height: 100vh;
    /* height: 100svh; */
}

.contact-1-1 {
    background-color: rgb(1, 34, 1);
    padding: 3vh 3vw 3vh 8vw;
    overflow: hidden;
    position: relative;
}

.contact-1-1-1 {
    text-transform: capitalize;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    /* justify-content: space-between; */
    gap: 1em;
    font-family: quicksand;
    font-size: 1em;
    color: rgb(199, 255, 199);
}

.contact-1-1-2 {
    font-size: 1.618em;
    font-family: "mon cheri";
    color: rgb(223, 255, 223);
}

.logo-4 {
    max-width: 3vw;
}

.contact-1-1-3 {
    width: 50vh;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 1px dashed green;
    margin: auto;
    position: relative;
}

.contact-1-1-3::after,
.contact-1-1-3::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid green;
    border-radius: 50%;
}

.contact-1-1-3::after {
    right: -80%;
    left: 80%;
}

.contact-1-1-3::before {
    right: 80%;
    left: -80%;
}

.contact-1-1-4 {
    text-transform: capitalize;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    /* justify-content: space-between; */
    gap: 1em;
    font-family: quicksand;
    color: green;
    font-size: 0.7em;
    /* transform: translatey(2em);
     */
    position: absolute;
    bottom: 10px;
}


/*form*/

.contact-1-2 {
    /* background-color: rgb(1, 34, 1); */
    padding: 3vh 3vw 3vh 8vw;
    overflow: hidden;
}

label,
input {
    font-family: quicksand;
}

input {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid darkgrey;
    width: 100%;
    font-size: 15px;
    text-transform: capitalize;
    height: 50px;
    background-color: transparent;
    padding: 12px;
}

textarea {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid darkgrey;
    width: 100%;
    font-size: 15px;
    text-transform: capitalize;
    height: auto;
    min-height: 50px;
    background-color: transparent;
    padding: 12px;
}

label {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

form h2 {
    font-family: "vida...";
    font-size: 30px;
    font-weight: light;
}

.flexer {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
    margin: 30px auto;
}

.submit {
    width: 66px;
    border: none;
    font-weight: bold;
    background-image: url(../Tcons/right-arrow.svg);
    background-size: 11px;
    background-repeat: no-repeat;
    background-position: right center;
    text-align: left;
    margin: 20px 0;
    color: rgb(1, 37, 1);
    padding: 0;
}


/*form*/

.label {
    font-size: 12px;
    /* font-weight: bold; */
    text-transform: uppercase;
    color: rgba(1, 47, 1, 0.5);
}

.mailto {
    color: black;
    text-decoration: none;
}

@media all and (max-width: 800px) {
    .contact-1 {
        grid-template-columns: 100%;
    }
    /* .submit {
        width: max-content;
    } */
}

@media all and (max-width: 815px) {
    .contact-1>* {
        height: auto;
        /* height: 100svh; */
    }
    .logo-4 {
        max-width: 10vw;
    }
}

@media all and (max-width: 450px) {
    .flexer {
        grid-template-columns: 100%;
    }
}