
#content-header {
    margin-inline: 7.5vw;
}

.contact-page-title {
    font-size: 55px;
    font-weight: 400;
    margin-left: -3px;
}

.contact-page-intro-text {
    font-size: 17px;
    color: #000000;
    line-height: 165%;
    margin-top: 15px;
}

.contact-info-and-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}




/* Contact section */ 

#contact {
    margin-inline: 7.5vw;
}

.contact-sections-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    padding-bottom: 30px;
}

.contact-section-wrapper--1 {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact__image-wrapper {
    aspect-ratio: 6/10;
}

.contact__image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 5vw;
}

#map {
    width: 100%;
    aspect-ratio: 3/2;
}

.mapboxgl-canvas {
    border-radius: 10px;
}

.contact-info--link {
    display: flex;
    gap: 10px;
    text-decoration: none;
    color: #000000;
    font-style: normal;
    font-size: 18px;
}

.contact-info--icon {
    width: 30px;
    aspect-ratio: 1;
    display: block;
}

.contact-info--text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #000000;
    font-weight: 400;
    font-size: 18px;
    gap: 5px;
}

.contact-section-wrapper--2 {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact__contact-form--title {
    color: #000000;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
}

.contact__contact-form--text-wrapper {
    margin-bottom: 50px;
}

.contact__contact-form--text {
    color: #000000;
    font-weight: 400;
    font-size: 17px;
    line-height: 150%;
    width: 40vw;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-elements-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 40px;
}

.form-element-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    border-bottom: 1px solid #000000;
    padding-bottom: 10px;
    gap: 20px;
}

.message-wrapper {
    padding-bottom: 0;
    border: none;
}

.form-elements-gap {
    gap: 20px;
    display: flex;
    flex-direction: column;
}

textarea {
    outline: none;
    border: 1px solid #000000;
    height: 150px !important;
    width: 100% !important;
    background: transparent;
    padding: 15px;
    font-size: 17px;
    resize: none;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif !important;
    font-weight: 300;
    border-radius: 5px;
}

.form-label {
    font-size: 20px;
    color: #000000;
}

.form-input {
    border: none;
    outline: none;
    background: transparent;
    min-height: 20px;
    padding-left: 2px;
    font-size: 18px;
    font-family: inherit;
    font-weight: 400;
    color: #000000;
}

input::placeholder {
    color: #acacac !important;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif !important;
    font-size: 18px !important;
    font-weight: 300;
}

.dropdown {
    position: relative;
    user-select: none;
}

.dropdown-trigger {
    padding-left: 2px;
    display: block;
    cursor: pointer;
    outline: none;
}
  
.dropdown-menu {
    overflow: hidden; /* Hide the overflow content */
    transition: transform 0.4s ease-in-out, border-width 0.4s ease-in-out;
    transform-origin: top;
    position: absolute;
    top: calc(100% + 11px);
    left: 0;
    right: 0;
    background: #FBFBFB;
    padding-block: 10px;
    border-bottom: 0px solid #000000;
    transform: scaleY(0);
    z-index: 1000;
}

.is-active .dropdown-menu {
    transform: scaleY(1); /* Adjust as needed for your content */
    border-width: 1px; /* Restore the border when the dropdown is active */
}
  
.dropdown-option {
    padding: 10px;
    cursor: pointer;
    outline: none;
}
  
.contact-form__dropdown-indicator-arrow {
    width: 13px;
    height: 13px;
    display: inline-block;
    position: relative;
    bottom: -5px;
    left: 0;
    transition: 0.4s ease;
    text-align: left;
    transform: rotate(0);
    float: right;
}

.contact-form__dropdown-indicator-arrow::before {
    content: "";
    background-color: transparent;
    width: 2px;
    height: 10px;
    display: inline-block;
    position: absolute;
    border-bottom: 12px solid #000000;
    top: 0;
    left: 0;
    transform: rotate(-135deg);
    transition: 0.4s ease;
}

.contact-form__dropdown-indicator-arrow::after {
    content: "";
    background-color: transparent;
    width: 2px;
    height: 10px;
    display: inline-block;
    position: absolute;
    border-bottom: 12px solid #000000;
    top: 0;
    left: 0;
    transform: rotate(135deg);
    transition: 0.4s ease;
}
    
.is-active .contact-form__dropdown-indicator-arrow {
    transform: translate(0, -6px);
}
  
.is-active .contact-form__dropdown-indicator-arrow::before {
    transform: rotate(-45deg);
}
  
.is-active .contact-form__dropdown-indicator-arrow::after {
    transform: rotate(45deg);
}

.selected-message-subject__text {
    color: #acacac;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 300;
}

.chose-a-subject .selected-message-subject__text {
    color: var(--main-black);
}

.submit-button-and-turnstile-verification-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-submit-button {
    display: flex;
    justify-content: center;
    padding: 20px 50px;
    width: 100%;
    font-size: 18px;
    outline: none;
    border: none;
    background-color: var(--primary-color);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    font-weight: 500;
    border-radius: 50px;
    color: #000;
}

.form-disclaimer-text {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 135%;
    margin-top: -10px;
}

.form-disclaimer-text a {
    color: #000;
}

.submit-succes {
    color: #fff;
    background-color: #0AA937;
}

.submit-error {
    color: #fff;
    background-color: #DD1E31;
}

.loading-indicator-dots {
    display: none;
    margin-left: 10px;
    transform: translateY(14px);
}

.show-loading-indicator {
    display: flex !important;
}

@-webkit-keyframes load {
    0% {
        -webkit-transform: scale(0, 0);
        transform: scale(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    100% {
        -webkit-transform: scale(0, 0);
        transform: scale(0, 0);
        opacity: 0;
    }
}

@-moz-keyframes load {
    0% {
        -moz-transform: scale(0, 0);
        transform: scale(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
        -moz-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    100% {
        -moz-transform: scale(0, 0);
        transform: scale(0, 0);
        opacity: 0;
    }
}

@-o-keyframes load {
    0% {
        -o-transform: scale(0, 0);
        transform: scale(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    100% {
        -o-transform: scale(0, 0);
        transform: scale(0, 0);
        opacity: 0;
    }
}

@keyframes load {
    0% {
        -webkit-transform: scale(0, 0);
        -moz-transform: scale(0, 0);
        -o-transform: scale(0, 0);
        transform: scale(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    100% {
        -webkit-transform: scale(0, 0);
        -moz-transform: scale(0, 0);
        -o-transform: scale(0, 0);
        transform: scale(0, 0);
        opacity: 0;
    }
}

.loading-indicator-dots li {
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-right: 6px;
    border-radius: 50%;
    margin-top: auto;
    margin-bottom: 9px;
    background: #000000;
    opacity: 0;
    -webkit-animation-name: load;
    -moz-animation-name: load;
    -o-animation-name: load;
    animation-name: load;
    -webkit-animation-duration: 3s;
    -moz-animation-duration: 3s;
    -o-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.loading-indicator-dots li:nth-child(2) {
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    -o-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.loading-indicator-dots li:nth-child(3) {
    -webkit-animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    -o-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

@media only screen and (min-width: 600px) {    
    .contact-page-title {
        font-size: 70px;
    }

    .contact-page-intro-text {
        font-size: 18px;
    }
}

@media only screen and (min-width: 750px) {
    .submit-button-and-turnstile-verification-wrapper {
        flex-direction: row;
        gap: 40px;
    }
}

@media only screen and (min-width: 950px) {    
    .contact-page-title {
        font-size: 90px;
        margin-left: -5px;
    }

    .contact-page-intro-text {
        margin-top: 20px;
    }

    .contact-sections-wrapper {
        flex-direction: row;
        padding-bottom: 100px;
    }  

    #map {
        aspect-ratio: auto;
        height: 325px;
    }

    .mapboxgl-canvas {
        border-radius: 15px;
    }

    .contact-form-wrapper {
        padding: 0 0 0 5vw;
    }

    .contact-form {
        gap: 60px;
        flex-grow: 1;
    }

    .contact-info-wrapper {
        gap: 40px;
        padding-left: 0;
    }

    .contact-info-and-form-wrapper {
        gap: 75px;
    }

    .contact-section-wrapper--1 {
        flex-basis: 30%;
        flex-direction: column;
        gap: 0;
        justify-content: space-between;
    }

    .contact-section-wrapper--2 {
        flex-basis: 70%;
        margin-top: 0;
    }

    .form-elements-wrapper {
        flex-direction: row;
        width: 100%;
        gap: 5vw;
    } 

    .form-submit-button {
        width: auto;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
        transition: transform .3s;
        border-radius: 50px;
    }
    
    .form-submit-button:hover {
        transform: scale(1.03);
    }

    .contact-page-intro-text {
        margin-top: 20px;
        width: 75vw;
    } 

    .submit-button-and-turnstile-verification-wrapper {
        flex-direction: column;
        gap: 30px;
    }
}

@media only screen and (min-width: 1100px) {    
    .submit-button-and-turnstile-verification-wrapper {
        flex-direction: row;
        gap: 40px;
    }
}

@media only screen and (min-width: 1200px) {    
    .contact-page-intro-text {
        width: 65vw;
    }   
}

@media only screen and (min-width: 1400px) {    
    .contact-form-wrapper {
        padding: 0 0 0 10vw;
    }

    .contact-info-wrapper {
        margin-top: 20px;
        padding-left: 2.5vw;
    }
}

@media only screen and (min-width: 1600px) {    
    .contact-page-intro-text {
        font-size: 19px;
    }   

    .form-label {
        font-size: 21px;
    }

    .contact-info--text {
        font-size: 19px;
    }
}

