@font-face {
    font-family: CairoPlay;
    src: url(../assets/CairoPlay.woff2);
}

@font-face {
    font-family: MavenPro;
    src: url(../assets/MavenPro.woff2);
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: MavenPro, Arial, Helvetica, sans-serif;
    
}





.contact-content {
    position: relative;
    height: 100%;
    display: grid;
    /* padding-top: 100px; */
    color: white;
}

.contact-header{
    padding-top: 120px;
    color: white;
    justify-items: center;
    align-items: center;
    text-align: center;
    font-size: 40px;
    background-color: rgba(51, 0, 0, 0.589);
    /* background-color: rgb(131, 131, 131); */
    padding: 130px 0px 90px 0px;

    box-shadow: inset 0px 0px 30px rgb(0, 0, 0);
}

.contact-header > h1 {
    display: grid;
    border-bottom: 1px solid rgba(128, 128, 128, 0.651);
    padding-bottom: 40px;
}

@media (max-width: 640px){

    .contact-header h1{
        font-size: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }

}

.details-container {
    border-top: 1px solid rgba( 255, 255, 255, 0.18 );
    background-color: rgb(91, 0, 0);
    /* background-color: rgb(14, 0, 51); */
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    grid-template-rows: repeat(auto-fit, minmax(250px,1fr));
    align-items: start;
    justify-items: center;
    padding-top: 80px;
    padding-bottom: 20px;


}

.contact-icon{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #555;
    display: grid;
    align-items: center;
    justify-items: center;

    background: rgba(122, 122, 122, 0.37);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    /* border-radius: 10px; */
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    
}

.contact-icon-address,
.contact-icon-tel,
.contact-icon-email {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 30px;
    height: 30px;
}

.contact-icon-address{
    background-image: url(../assets/images/contact/map.png);
}

.contact-icon-tel{
    background-image: url(../assets/images/contact/phone.png);
}

.contact-icon-email{
    background-image: url(../assets/images/contact/email.png);
}

.details {

    display: grid;
    align-items: start;
    justify-items: center;
    width: 150px;
    height: 190px;
    grid-template-rows: 80px 30px 1fr;
}

.contact-subject {
    height: 40px;
    font-family: MavenPro, Arial, Helvetica, sans-serif;
    font-weight: 600;
    
}

.contact-detail {
    
    padding: 15px;
    background: rgba(148, 148, 148, 0.25);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    font-family: MavenPro, Arial, Helvetica, sans-serif;
    font-size: 12px;
}

.contact-detail > a {

    color: white;
    text-decoration: none;

}

#contact-form {

    display: grid;
    /* background: rgba(97, 97, 97, 0.25); */
    /* box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 ); */
    /* backdrop-filter: blur( 4px ); */
    /* -webkit-backdrop-filter: blur( 4px ); */
    /* border-radius: 10px; */
    /* border-top: 1px solid rgba( 255, 255, 255, 0.18 ); */
    background-color: rgb(91, 0, 0);
    padding: 20px;
    position: relative;

    bottom: 0px;
    align-self: end;

}

fieldset {
    font-size: 30px;
    padding: 20px;
    border: none;
    /* border-top: 1px solid rgba( 255, 255, 255, 0.18 ); */
    color: white;
    font-family: MavenPro, Arial, Helvetica, sans-serif;
    display: grid;
    justify-items: center;
    align-items: start;
    gap: 20px;
}

legend{
    text-align: center;
    width: 100%;
    font-family: CairoPlay, Arial, Helvetica, sans-serif;
}

.form-container {
    display: grid;
    align-items: center;
    justify-items: center;
    row-gap: 10px;
}

.input-container {
    height: 30px;
    width: 300px;
    display: grid;
    align-items: center;
    justify-items: center;
    

}

.input-container > input {
    appearance: none;
    border: 1px solid gray;
    width: 300px;
    height: 30px;
    padding-left: 10px;
    color: white;

    background: rgba(0, 0, 0, 0.363);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    font-family: MavenPro, Arial, Helvetica, sans-serif;

}

::placeholder {
    color: #f1f1f1;
    font-family: MavenPro, Arial, Helvetica, sans-serif;

}

.text-container > textarea {
    appearance: none;
    border: 1px solid gray;
    width: 300px;
    height: 200px;
    padding-left: 10px;
    padding-top: 10px;
    resize: none;
    color: white;
    
    background: rgba(0, 0, 0, 0.363);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    font-family: MavenPro, Arial, Helvetica, sans-serif;
}

.text-container {
    height: 200px;
}

.submit-btn {
    width: 300px;
    height: 30px;
    color: white;

    background: rgb(0, 59, 187);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    font-family: MavenPro, Arial, Helvetica, sans-serif;
    font-weight: 600;
}
.submit-btn:hover {
    background: rgb(0, 124, 196);
}