/* ---HEADER--- */

header .desktop_header .header_media img {
    content: url("../svg/white_logo.svg");
}

header .desktop_header .nav_items a {
    color: white;
}

header .desktop_header .dropdown-content a{
    color: black;
}

header .desktop_header .button_contain .contact_button {
    color: #ff7e22;
    border: 2px solid #ff7e22;
    background: linear-gradient(to right, #ff7e22 50%, transparent 50%);
    background-size: 200%;
    background-position: 100%;
}

header .desktop_header .button_contain .address_button {
    color: white;
    border: 2px solid white;
    background: linear-gradient(to right, white 50%, transparent 50%);
    background-size: 200%;
    background-position: 100%;
}

header .desktop_header .button_contain a:hover {
    color: black;
    background-position: 0;
}

@media (max-width: 996px) {
    header .mobile_header img {
        content: url("../svg/white_logo.svg") !important;
        width: 100%;
    }
}


/* ---VIDEO SECTION--- */

.video_section {
    padding: 0;
    height: 100vh;
}

.video_section .video_box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
    background: black;
}

.video_section .video_box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, black 0%, transparent 50%, transparent 90%, black 100%);
    z-index: 1;
}

.video_section .bg_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .6;
}

.video_section .video_title {
    position: relative;
    z-index: 1;
}

.video_section .video_title h1 {
    font-size: 48px;
    text-align: center;
    line-height: .8;
}

.video_section .video_title h1 span {
    color: transparent;
    font-size: 180px;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: white;
}

@media (max-width: 996px) {
    .video_section {
        padding: 0;
        height: 50vh;
    }
    .video_section .video_title {
        padding-top: 20%;
    }
    .video_section .video_title h1 {
        font-size: 40px;
    }
    .video_section .video_title h1 span {
        font-size: 115px;
        -webkit-text-stroke-width: 2px;
    }
}


/* ---CONTACT SECTION--- */

.contact_section {
    padding: 15% 10% 10% 10%;
    background: linear-gradient(90deg, var(--orange) 45%, white 45%);
    background-size: 200%;
    animation: background_animation 2s forwards;
}

@keyframes background_animation {
    from {
        background-position: 50%;
    }
    to {
        background-position: 250%;
    }
}

.contact_section .contact_box {
    display: grid;
    grid-template-columns: 50% 50%;
}

.contact_section .contact_media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact_section .contact_title h1 {
    color: black;
    font-size: 40px;
    text-align: center;
}

.contact_section .contact_title h1 span {
    color: var(--orange);
}

.contact_section .form_items {
    padding: 20px;
}

.contact_section .form_row {
    display: grid;
    grid-template-columns: 50% 50%;
}

.contact_section .input_box {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.contact_section .input_box p{
    font-size: .8vw;
    font-weight: 600;
}

.contact_section .input_box:nth-child(1) {
    display: flex;
    justify-content: flex-start;
}

.contact_section .input_box:nth-child(2) {
    display: flex;
    justify-content: flex-end;
}

.contact_section .form_row input {
    width: 98%;
    padding: 10px;
    font-weight: 500;
    border: 0;
    border-radius: 5px;
    background: #ebebeb;
}

.contact_section .input_box textarea {
    min-width: 100%;
    max-width: 100%;
    min-height: 50px;
    max-height: 100px;
    padding: 10px;
    font-weight: 500;
    border: 0;
    border-radius: 5px;
    background: #ebebeb;
}

.contact_section .input_box input::file-selector-button{
    padding: .5vw;
    font-size: .7vw;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    border: none;
    border-radius: 4px;
    background-color: #818181d4;
    color: white;
    cursor: pointer;
}

.contact_section .input_box input::file-selector-button:hover{
    background-color: #747474;
}

.contact_section .input_box #image_attachment{
    font-size: .8vw;
}

.contact_section .input_box :focus-visible {
    outline: 0;
    background: #ff7e224a;
}

.contact_section .button_box button {
    width: 100%;
    padding: 10px;
    font-weight: 600;
    border: 0;
    border-radius: 5px;
    color: black;
    background: var(--orange);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.223);
}

.contact_section .button_box button:hover {
    color: white;
    background: black;
}

.contact_section .notify_box {
    margin-top: 20px;
}

.contact_section .load_box {
    display: none;
}

.contact_section .loader {
    width: 100%;
    height: 10px;
    border-radius: 10px;
    position: relative;
    background-color: #ebebeb;
    overflow: hidden;
}

.contact_section .loader::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ff7e22;
    animation: loader_animate 1s alternate infinite;
}

@keyframes loader_animate {
    from {
        transform: scaleX(.1);
    }
    to {
        transform: scaleX(1);
    }
}

.contact_section .message_box {
    display: none;
}

.contact_section .message_box p {
    text-align: center;
    font-weight: 600;
}

.contact_section .message_box .sucess {
    color: #0bb300;
}

.contact_section .message_box .error {
    color: #f31212;
}

@media (max-width: 996px) {
    .contact_section {
        padding: 20% 10%;
        background: linear-gradient(90deg, var(--orange) 50%, white 50%);
    }
    .contact_section .contact_box {
        grid-template-columns: 100%;
    }
    .contact_section .contact_title h1 {
        font-size: 30px;
        color: var(--orange);
    }
    .contact_section .contact_title h1 span {
        color: black;
    }
    .contact_section .form_items {
        padding: 20px 0;
    }
    .contact_section .form_row {
        grid-template-columns: 100%;
    }
    .contact_section .input_box {
        margin-bottom: 10px;
    }
    .contact_section .input_box p{
        font-size: 3.5vw;
        font-weight: 600;
    }
    .contact_section .form_row input {
        width: 100%;
        padding: 10px;
        font-weight: 500;
        border: 0;
        border-radius: 5px;
        background: #ebebeb;
    }
    .contact_section .input_box textarea {
        min-height: 80px;
        max-height: 120px;
    }
    .contact_section .input_box input::file-selector-button{
        padding: .5vw;
        font-size: 3.5vw;
    }
    .contact_section .input_box #image_attachment{
        font-size: 2.9vw;
    }
    .contact_section .button_box button {
        color: white;
        background: black;
    }
    .contact_section .button_box button:hover {
        color: black;
        background: var(--orange);
    }
}