.contactUs__contentContainer{
    width: 90%;
    max-width: var(--max-sm-width);
    margin: 0rem auto 5rem auto;
    display: grid;
    background: var(--white);
    border-radius: 2rem;
    box-shadow: 0px 17px 40px 0px rgba(50, 140, 215, 0.20);
    padding: 2.5rem 1.5rem;
}
.contactUsInfo__title{
    color: var(--light-blue);
    font-size: var(--fs-large);
    font-weight: 700;
    margin-bottom: 2rem;
}
.contactUsInfo__address{
    display: grid;
    grid-template-columns: 40px 1fr;
    row-gap: 1.5rem;
    column-gap: 1rem;
    align-items: center;
    margin-top: 2.5rem;
}
.contactUsInfo__address svg{
    width: 40px;
    height: 40px;
    padding: 8px;
    box-sizing: border-box;
    background: var(--sky-blue);
    border-radius: 50%;
}
.contactUsInfo__workingHours{
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 42, 121, 0.1);
}
.contactUsForm{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top:2rem;
    margin-bottom: 2rem;
}
.contactUsForm > *{
    width: 100%;
}
.contactUsForm > div:nth-child(1),
.contactUsForm > div:nth-child(2){
    width: 50%;
}
.contactUsForm__input{
    height: 3.5rem;
    border-radius: 1rem;
    font-size: inherit;
}
.contactUsForm__input,
.contactUsForm__textarea{
    background-color: var(--sky-blue);
    border: 1px solid transparent;
    transition: border-color 0.2s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.2s cubic-bezier(0.33, 1, 0.68, 1), background-color 0.2s ease;
}
.contactUsForm__input:focus,
.contactUsForm__textarea:focus{
    background-color: var(--white);
    border-color: var(--orange);
    box-shadow: 0 0 0 0.2rem rgba(238, 142, 39, 0.2);
    outline: none;
}
.contactUsForm__input:invalid,
.contactUsForm__textarea:invalid{
    border-left: 3px solid var(--orange);
}
.contactUsForm > div:nth-child(2){
    padding-left: 1rem;
}
.contactUsForm__textarea{
    border-radius: 1rem;
    font-size: inherit;
}
.contactUsForm .form-label{
    font-weight: 600;
    font-size: var(--fs-smaller);
    color: var(--gray-60);
    margin-bottom: 0.5rem;
}
#captchaImage{
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 42, 121, 0.1);
    background: var(--white);
}
.contactUsForm__checkbox:checked{
    background-color: var(--orange);
    border-color: var(--orange);
}
.contactUsForm__checkbox:focus{
    box-shadow: 0 0 0 0.25rem rgba(238, 142, 39, 0.25);
    border-color: var(--orange);
}
.contactUsForm__submit{
    height: 40px;
    font-size: var(--fs-small);
    font-weight: 600;
    border-radius: 1rem;
    background: var(--orange);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    padding: 2rem 3rem;
    margin-top: 1rem;
    transition: transform 0.2s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.2s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.2s ease;
}
.contactUsForm__submit:hover:not(:disabled){
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.contactUsForm__submit:active:not(:disabled){
    transform: translateY(0) scale(0.97);
    box-shadow: none;
}
.contactUsForm__submit:disabled{
    opacity: 0.7;
    cursor: not-allowed;
}
/* OVERLAY */
#loading-overlay {
    background: #ffffff;
    color: #666666;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 5000;
    top: 0;
    left: 0;
    float: left;
    text-align: center;
    padding-top: 25%;
    opacity: .80;
    visibility:hidden;
}
#loading-overlay .spinner {
    margin: 0 auto;
    height: 64px;
    width: 64px;
    animation: rotate 0.8s infinite linear;
    border: 5px solid var(--text-primary);
    border-right-color: transparent;
    border-radius: 50%;
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* MODAL form submitted */
/* The Modal (background) */
#formSubmittedDialog{
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 5000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
  
  /* Modal Content/Box */
  #formSubmittedDialog .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #formSubmittedDialog .modal-content p{
    text-align: center;
    margin-bottom: 20px;
  }
  #error-container{
    display:none;
  }
  #error-container h4,
  #success-container h4{
    text-align: center;
    margin-bottom: 1rem;
  }
  #success-container{
    display:none;
  }
  #error-container img,
  #success-container img{
    width: 60px;
    margin: 0 auto;
    display: flex;
  }
  /* The Close Button */
  #formSubmittedDialog .close {
    height: 40px;
    font-size: var(--fs-small);
    border-radius: 1rem;
    background: var(--orange);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    padding: 2rem 3rem;
    margin-left: 1rem;
  }
  
  #formSubmittedDialog .close:hover,
  #formSubmittedDialog .close:focus {
    opacity: 1;
    text-decoration: none;
    cursor: pointer;
  }

.honeypotField,.hidden{
    display: none;
}
@media (min-width: 768px){
    .contactUs__contentContainer{
        grid-template-columns: repeat(2,1fr);
        grid-template-areas: "info form";
        align-items: start;
        column-gap: 4rem;
        padding: 3.5rem;
    }
    .contactUsForm > div:nth-child(1),
    .contactUsForm > div:nth-child(2),
    .contactUsForm > div:nth-child(3),
    .contactUsForm > div:nth-child(4),
    .contactUsForm > div:nth-child(5),
    .contactUsForm > div:nth-child(6){
        width: 50%;
    }
    .contactUsForm > div:nth-child(2),
    .contactUsForm > div:nth-child(4),
    .contactUsForm > div:nth-child(6){
        padding-left: 1rem;
    }
    .contactUsInfo__wrapper{
        grid-area: info;
    }
    .contactUsForm{
        grid-area: form;
    }
}