/* Main Contact Styles */
.contact-page {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    padding: calc(var(--nav-height) + 30px) 0 30px 0;
    position: relative;
    width: var(--container-width);
    max-width: calc(100% - 60px);
    margin: 0 auto;
    gap: 30px;
}
.contact-map {
    width: 500px;
    max-width: 100%;
    min-height: 400px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}
.contact-form h1 {
    font-family: var(--secondary-font);
    color: #141414;
    font-size: calc(2.5rem + 1vw);
    line-height: 0.9;
    font-weight: 900;
    margin-bottom: 0;
    text-transform: uppercase;
}
.contact-form {
    width: 600px;
    max-width: 100%;
    padding: 25px 30px;
    background-color: rgb(255, 255, 255);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}
@media (max-width: 1250px) {
    .contact-page {
        flex-direction: column-reverse;
    }
    .contact-form {
        width: 100%;
    }
    .contact-map {
        width: 100%;
        min-height: unset;
    }
    .contact-map iframe {
        height: 300px;
    }
}
.contact-form p {
    font-family: var(--tertiary-font);
    color: #424242;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.contact-form-form {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.contact-form .form-title {
    font-family: var(--tertiary-font);
    color: var(--ang-green);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.contact-input {
    width: 200px;
    max-width: 100%;
    flex-grow: 1;
}
.contact-input.full {
    width: 100%;
}
.contact-input label {
    display: block;
    font-family: var(--tertiary-font);
    color: #141414;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 5px;
}
.contact-input input, .contact-input textarea {
    width: 100%;
    padding: 10px 15px;
    font-size: 1rem;
    font-weight: 400;
    color: #141414;
    background-color: #f5f5f5;
    border: 2px solid #e2e2e2;
    outline: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: border-color 0.2s, background-color 0.2s;
    -moz-transition: border-color 0.2s, background-color 0.2s;
    -ms-transition: border-color 0.2s, background-color 0.2s;
    -o-transition: border-color 0.2s, background-color 0.2s;
    transition: border-color 0.2s, background-color 0.2s;
}
.contact-input input:focus, .contact-input textarea:focus {
    border: 2px solid var(--ang-green);
    background-color: rgb(205, 241, 200);
}
.contact-form-form button {
    width: max-content;
    border: 0;
    outline: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    background-color: #272727;
    font-family: var(--tertiary-font);
    padding: 10px 30px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    -webkit-transition: background-color 0.2s, color 0.2s;
    -moz-transition: background-color 0.2s, color 0.2s;
    -ms-transition: background-color 0.2s, color 0.2s;
    -o-transition: background-color 0.2s, color 0.2s;
    transition: background-color 0.2s, color 0.2s;
}
.contact-form-form button:hover {
    background-color: var(--ang-green);
}
.other-contact-info {
    text-align: center;
    background-color: #ececec;
    margin-top: 50px;
    -webkit-border-radius: 25px 25px 0 0;
    -moz-border-radius: 25px 25px 0 0;
    -ms-border-radius: 25px 25px 0 0;
    -o-border-radius: 25px 25px 0 0;
    border-radius: 25px 25px 0 0;
}
.other-contact-info .c-container.wide {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    padding: 0 100px;
}
@media (max-width: 900px) {
    .other-contact-info .c-container.wide {
        padding: 0 50px;
    }
}
.other-contact-info .contact-info {
    width: 200px;
    max-width: 100%;
    margin: 50px 0;
}
.other-contact-info .contact-info p {
    font-family: var(--tertiary-font);
    color: #272727;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.other-contact-info .contact-info h3 {
    font-family: var(--secondary-font);
    color: var(--ang-green);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.other-contact-info .contact-info a {
    color: #272727;
    position: relative;
}
.other-contact-info .contact-info a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #272727;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.other-contact-info .contact-info a:hover::after {
    width: 100%;
}
.other-contact-info .gap {
    width: 2px;
    margin: 40px 0;
    background-color: var(--ang-green);
}
@media (max-width: 1550px) {
    .other-contact-info .gap {
        display: none;
    }
}
@media (max-width: 1000px) {
    .other-contact-info .contact-info {
        width: 50%;
        text-align: left;
    }
    .other-contact-info .contact-info:nth-child(3), .other-contact-info .contact-info:nth-child(7) {
        text-align: right;
    }
}
@media (max-width: 550px) {
    .other-contact-info {
        padding-bottom: 50px;
    }
    .other-contact-info .contact-info {
        width: 100%;
        margin: 50px 0 0 0;
        text-align: center !important;
    }
}

/* Captcha */
.captcha-border {
	width: 295px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: var(--br-def);
	-webkit-border-radius: var(--br-def);
	-moz-border-radius: var(--br-def);
	-ms-border-radius: var(--br-def);
	-o-border-radius: var(--br-def);
}