/* Section One */

.first_section {
    height: var(--first-section-height);
    width: 100%;
    position: relative;
}
.bg_img_container {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
}

.first_section_title {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    > h1 {
        font-family: var(--medium-font);
        font-size: var(--title-font-size-big);
        font-weight: var(--font-weight-medium);
        letter-spacing: 0.08em;
        text-align: center;
    }
}

/* Section Two */

.second_section {
    display: flex;
    justify-content: center;
    position: relative;
}

.contact_us_line {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: -14px;
    max-width: 1900px;
}

.second_section_content {
    max-width: 1900px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: var(--page-padding);
    padding-top: 116px;
    gap: 84px;
}

.get_in_touch {
    flex: 1;
}

.get_in_touch > h2 {
    font-family: var(--light-font);
    font-size: var(--title-font-size-small);
    font-weight: var(--font-weight-thin);
    line-height: 77px;
    letter-spacing: 1px;
    text-align: left;
    color: var(--color-blue);
    margin-top: 52px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.get_in_touch > h2 > span {
    font-family: var(--bold-font);
    font-size: var(--title-font-size-medium);
    font-weight: var(--font-weight-large);
    line-height: 77px;
    letter-spacing: 1px;
    text-align: left;
}
.contact_us_form {
    position: relative;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact_us_form > input {
    width: 508px;
    height: 75px;
    border: 1px solid var(--color-blue);
    padding-left: 30px;
    border-radius: 6px;

    font-family: var(--medium-font);
    font-size: var(--text-font-size-medium);
    font-weight: var(--font-weight-medium);
    line-height: 21px;
    letter-spacing: 0.20000000298023224px;
    text-align: justify;
}
.contact_us_form > textarea {
    width: 508px;
    height: 172px;
    border: 1px solid var(--color-blue);
    padding: 30px 10px 70px 30px;
    border-radius: 6px;
    resize: none;
    font-family: var(--medium-font);
    font-size: var(--text-font-size-medium);
    font-weight: var(--font-weight-medium);
    line-height: 21px;
    letter-spacing: 0.20000000298023224px;
    text-align: justify;
}
.contact_us_form > textarea::-webkit-scrollbar {
    height: 5px;
    width: 5px;
}
.contact_us_form > textarea::-webkit-scrollbar-thumb {
    background-color: var(--color-gold);
    border-radius: 10px;
    background-clip: padding-box;
    transition: all 300ms ease-out;
}
.contact_us_form > textarea::-webkit-scrollbar-track {
    background-color: rgba(200, 200, 200, 0.50);
}
.form_button {
    max-width: 488px;
    width: calc(100% - 50px);
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translate(-50%, 0);
    border-radius: 6px;
    background: var(--color-gold);
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.form_button > span {
    text-align: start;
    color: var(--color-blue);
    font-family: var(--medium-font);
    font-size: var(--text-font-size-medium);
    font-weight: var(--font-weight-medium);
    line-height: 104.5%; /* 18.81px */
    letter-spacing: 0.178px;
    text-transform: uppercase;
}
.button_arrow_container {
    position: relative;
    width: 138px;
    border-bottom: 1px solid var(--color-blue);
}
.form_button > svg {
    transition: all 0.3s ease;
}
.form_button:hover {
    background: #f8e4b0;
}
.form_button:hover > svg {
    transform: translateX(20px);
}

.get_in_touch_img_container {
    display: block;
    position: relative;
    height: max-content;
    max-width: 986px;
}
.get_in_touch_img_container > img {
    object-fit: cover;
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
}

.get_in_touch_img_lines {
    position: absolute;
    width: calc(100% - 66px);
    height: calc(100% - 66px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--color-gold);
}

/* Section Three */

.third_section {
    margin-bottom: 114px;
    padding: 0 120px;
}
.our_information {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin: 100px 0;
}
.info_item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.info_item_img {
    display: flex;
    width: 100px;
    height: 100px;
    align-items: center;
    justify-content: center;
    object-fit: contain;
}

.info_item_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.info_item_text > h4 {
    font-family: var(--medium-font);
    font-size: 32px;
    font-weight: var(--font-weight-medium);
    letter-spacing: 1px;
    text-align: center;
}
.info_item_text > a , .info_item_text > p{
    font-family: var(--light-font);
    font-size: 28px;
    font-weight: var(--font-weight-thin);
    letter-spacing: 1px;
    text-align: start;
    max-width: 260px;
}
.info_item_text > a:hover{
    color: var(--color-gold);
}
.map {
    display: flex;
    justify-content: center;
    align-items: center;
}
.location_map_section {
    max-width: 1678px;
    width: 100%;
    display: flex;
    justify-content: center;
}
