


.contacts-container *{
    color: white;
}

.contacts-container{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;

    margin-bottom: 100px;
}
.contacts-container h1{
    margin-top: 40px;
    text-align: center;
}


.contacts{
    width: 800px;
    /* outline: 2px red dashed; */
    box-shadow: 0px 5px 20px 10px #000;
    background-color: var(--black2);

    /* height: 300px; */
    padding: 40px;
    margin-top: 40px;
}
.contacts .custom-panel-top{
    background-color: inherit;
}

.contacts form{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contacts form .inputs{
    display: flex;
    flex-direction: column;


    gap: 6px;
}
.contacts form .inputs p{
    font-size: 18px;
    font-weight: 700;
    color: white;
}
.contacts form .inputs span{
    display: inline;
    color: red;
}
.contacts form .inputs > input{
    height: 50px;
    font-size: 24px;
    color: var(--black);
}
.contacts h2{
    font-size: 20px;
    font-weight: 700;
    text-decoration: underline;
}

.contacts .inputs2 p{
    margin: 0;
    display: block;
    padding-left: 20px;
}
.contacts .inputs2 > div{
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
}
.contacts .inputs2 > div > label{
    /* background-color: red !important; */
    /* display: flex; */
    text-wrap-style: balance;
    gap: 6px;
}
.contacts .inputs2 > div > input{
    margin: 0 !important;
}
.contacts .inputs2{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
    text-wrap: wrap;
    display: flex;
    flex-direction: column;
}
.contacts .inputs2 span{
    color: var(--light-blue2);
    /* font-weight: bold; */
}
.contacts .inputs2{
    padding-left: 10px;

}
.contacts .add-on{
    padding-left: 30px;
}
.contacts h3{
    text-wrap-style: balance;
}
.contacts h3 a{
    color: var(--blue2);
    text-decoration: underline;
    cursor: pointer;
}
.contacts textarea{
    resize: none;
    display: block;
    width: 100%;
    height: 100px;
    color: black;
    font-family: "Montserrat" sans-serif;
}
.contacts textarea::placeholder{
    color: var(--muted2);
}





.contacts form button{
    display: inline-block;
    width: max-content;
    border: none;
    border-radius: 4px;
    padding: 20px 40px;
    font-size: 16px;
    background-color: var(--blue2);
    margin-top: 20px;
    font-weight: 600;
    font-family: "Montserrat" sans-serif;
}



form .collapser{
    width: max-content;
    padding-left: 10px;
    gap: 6px;
}
form a h2{
    margin: 0px;
    padding: 6px 12px;
}
form .collapse.in{
    display: flex !important;
    flex-direction: column;
    gap: 10px;
}
















@media screen and (max-width: 900px){
    .contacts-container{
        width: calc(100% - (40px*2));
        margin-inline: 40px;
    }
    .contacts{
        width: 100%;
    }
    .contacts-container > h1{
        text-wrap: wrap;
    }
}


@media screen and (max-width: 500px){
    .contacts-container{
        width: 100%;
        margin-inline: 0px;
    }
    .contacts-container h1{
        width: calc(100% - (40px*2));
        margin-inline: 40px;
    }
}