/* ---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: 62px;
    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;
    }
}

/* ---ABOUT SECTION--- */

.about_section {
    background: black;
}

.about_section p {
    color: white;
}

.about_section .about_box {
    display: grid;
    grid-template-columns: 45% 55%;
}

.about_section .about_media {
    position: relative;
    height: 350px;
    margin: 0 10% 10% 0;
    border: 5px solid var(--orange);
    border-radius: 5px 100px 5px 100px;
    overflow: hidden;
}

.about_section .about_media .bg_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    z-index: 0;
}

.about_section .about_info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about_section .about_info h2 {
    font-size: 24px;
}

.about_section .goals_box {
    margin-top: 50px;
}

.about_section .goals_items {
    display: grid;
    grid-template-columns: repeat(2, 50%);
}

.about_section .mission_box {
    margin-right: 25px;
}

.about_section .vision_box {
    margin-left: 25px;
}

.about_section hr {
    width: 100%;
    height: 5px;
    margin: 25px 0;
    border: 0;
    border-radius: 5px;
    background: var(--orange);
}

.about_section .values_box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about_section .values_box h2,
.about_section .values_box ul {
    text-align: center;
}

.about_section .values_box ul {
    color: white;
    list-style-position: inside;
}

.about_section .values_box ul ::marker {
    color: var(--orange);
}

.about_section .values_box li {
    margin: 5px 0;
}

@media (max-width: 996px) {
    .about_section {
        padding: 20% 10%;
    }
    .about_section p {
        text-align: justify;
    }
    .about_section .about_box {
        grid-template-columns: 100%;
    }
    .about_section .about_media {
        margin: 0 0 20% 0;
        height: 250px;
    }
    .about_section .goals_box {
        margin-top: 30px;
    }
    .about_section .goals_items {
        grid-template-columns: 100%;
    }
    .about_section .mission_box {
        margin-right: 0;
    }
    .about_section .vision_box {
        margin-left: 0;
    }
    .about_section .values_box h2,
    .about_section .values_box ul {
        text-align: left;
    }
    .about_section .values_box ul {
        list-style-position: outside;
    }
    .about_section .values_box li {
        font-size: 14px;
    }
}