* {
    padding: 0;
    margin: 0;
    font-family: "Inter Tight", sans-serif;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-weight: 600;
}
:root {
    --white: #ffffff;
    --black: #000000;
    --gray: #333333;
    --orange: #CD6643;
    --blue: #293561;
}
html {
    scroll-behavior: smooth;
    max-width: 100vw;
}
body {
    max-width: 100vw;
}
main {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}
h1 {
    color: var(--white);
    font-size: 100px;
    font-weight: 700;
    z-index: 10;
}
h2 {
    font-size: 50px;
}
.container {
    max-width: 1250px;
    margin: 0 auto;
    width: 90%;
}
header {
    width: 100%;
    height: 60vh;
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    position: relative;
}
header::after {
    content: '';
    background: rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
}
.header_container {
    height: 100%;
    z-index: 1;
    display: flex;align-items: center;justify-content: center;
    flex-direction: column;
}
.header_container p {
    max-width: 700px;
    z-index: 10;
    color: var(--white);
    opacity: .8;
    text-align: center;
}
.section_header {
    padding: 0px 0px 0px 15px;
    border-left: 4px solid var(--orange);
}
.section_header p {
    margin: 10px 0px 0px 5px;
    opacity: .8;
}
section {
    margin: 140px 0px;
}
p,li,h3,h4,h5 {
    font-weight: 500;
}
.contact_boxes {
    display: flex;flex-wrap: wrap;
    margin: 30px 0px 0px 0px;
}
.contact_box {
    width: 50%;
    padding: 20px;
}
.input,textarea{
    border: none;
    outline: none;
}
form {
    width: 100%;
}
/* form h3 {
    font-size: 18px;
    margin: 10px 0px;
    opacity: .8;
} */
.input {
    display: block;
    border: 1px solid rgba(0, 0, 0, .4);
    padding: 10px;
    margin: 20px 0px;
    transition: 200ms;
    font-size: 18px;
    width: 100%;
}
form textarea {
    display: block;
    border: 1px solid rgba(0, 0, 0, .4);
    padding: 10px;
    margin: 20px 0px;
    transition: 200ms;
    font-size: 18px;
    width: 100%;
}
.input:focus::placeholder,form textarea:focus::placeholder {
    color: var(--orange);
}
.input:focus,form textarea:focus {
    border: 1px solid var(--orange);
    border-top-right-radius: 20px;
}
.contact_btn {
    margin: 20px 0px 0px 0px;
    padding: 15px 20px;
    font-size: 17px;
    cursor: pointer;
    color: var(--white);
    border-radius: 10px;
    background: var(--orange);
    outline: none;
    border: none;
}
.radio_boxes {
    margin: 20px 0px;
}
.radio_boxes h3 {
    margin: 0px 0px 10px 0px;
}
.radio_boxes label {
    font-size: 18px;
    margin: 0px 15px 0px 0px;
}
.radio_boxes input {
    margin: 10px 0px;
}
.input_boxes {
    margin: 15px 0px;
}
.map {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    background: rgb(214, 214, 214);
}
.map iframe {
    width: 100%;
    height: 100%;
}
.contact_info_box {
    width: calc(100%/2);
    padding: 10px;
}
.contact_info_box_content {
    width: 100%;
}
.contact_info_box_text h4,.contact_info_box_text a{
    margin: 10px 0px;
    display: block;
    color: var(--black);
    font-size: 18px;
    opacity: .8;
}
.contact_info_box_content h3 {
    font-size: 23px;
    margin: 0px 0px 15px 0px;
}
.contact_info_box_content h3 i{
    color: var(--orange);
}
.contact_info_boxes {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 60px 0px 0px 0px;
}
.contact_right_box_content h2 {
    font-size: 30px;
}
@media(max-width:900px) {
    .contact_box {
        width: 100%;
    }
}
@media(max-width:500px) {
    header {
        height: 40vh;
        padding: 50px 0px 0px 0px;
    }
    .input_boxes {
        margin: 0px 0px;
    }
    .contact_info_box {
        width: 100% !important;
    }
    .contact_box {
        padding: 0 !important;
    }
}