/* Golbal Styles */

* {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    word-break: break-word;
    scroll-behavior: smooth;
}

:root {
    --orange: #ff9f29;
}

body {
    background: #ffffff;
}

img,
svg {
    max-width: 100%;
    -drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

a {
    display: inline-block;
    text-decoration: none;
}

a,
button,
i {
    transition: .25s;
    cursor: pointer;
}

section {
    width: 100%;
    padding: 10%;
}

h1,
h2 {
    color: var(--orange);
    font-weight: 800;
    line-height: 1;
    text-shadow: 3px 3px 2px #00000025;
}

p {
    color: black;
    font-size: 16px;
    font-weight: 400;
    margin: 5px 0;
}

@media (max-width: 996px) {
    p {
        font-size: 14px;
    }
}


/* ---HEADER--- */
header .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 101;
}

header .modal-content {
    background-color: white;
    width: 80%;
    max-width: 400px;
    display: flex;
    margin: 100px auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 95% 5%;
}

header .modal-content div {
    display: flex;
    flex-direction: column;
    gap: .5vw;
}

header .modal-content .btn_box {
    display: flex;
    flex-direction: column;
}

header .modal-content .btn_box button {
    border: none;
    background: none;
    font-weight: 600;
    color: var(--orange);
}

header .modal-content .info_box {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

header .modal-content .info_box a {
    color: black;
}

header .modal-content .info_box a:hover {
    color: var(--orange);
    transition: .25s;
}

header .modal-content .info_box a::before {
    position:initial !important;
}

header h3 {
    color: var(--orange);
}

header {
    position: relative;
    z-index: 100;
}

header .desktop_header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 15px 5%;
}

header .mobile_header {
    display: none;
}

header .desktop_header .header_media {
    width: 10%;
}

header .desktop_header .header_media a {
    width: 60%;
}

header .desktop_header .main_nav {
    width: 90%;
}

header .desktop_header .main_nav {
    display: flex;
    align-items: center;
    justify-content: flex-end   ;
}

header .desktop_header .nav_items ul {
    display: flex;
    list-style: none;
}

header .desktop_header .nav_items a {
    position: relative;
    color: black;
    font-weight: 600;
    margin: 0 15px;
}

header .desktop_header .nav_items a:hover {
    color: #ff7e22;
}

header .desktop_header .active_nav_item {
    color: #ff7e22 !important;
}

header .desktop_header .nav_items a::before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    border-radius: 5px;
    background: #ff7e22;
    transition: .25s
}

header .desktop_header .nav_items a:hover::before,
header .desktop_header .active_nav_item::before {
    width: 100% !important;
}

header .desktop_header .button_contain {
    display: flex;
    margin-left: 30px;
}

header .desktop_header .button_contain a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    width: 200px;
    height: 40px;
    margin-left: 5%;
    transform: skewX(-15deg);
}

header .desktop_header .button_contain .contact_button {
    color: black;
    border: 2px solid black;
    background: linear-gradient(to right, black 50%, transparent 50%);
    background-size: 200%;
    background-position: 100%;
}

header .desktop_header .button_contain .address_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 a:hover {
    color: white;
    background-position: 0;
}




@media (max-width: 996px) {
    header .desktop_header {
        display: none;
    }
    header .modal-content div {
        gap: 2vw;
    }

    header .modal-content .btn_box button {
        font-size: 5vw;
    }

    header .modal-content .info_box {
        gap: 5vw;
    }
    header .mobile_header {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        padding: 5%;
    }
    header .mobile_header .mobile_blur {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #00000060;
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        opacity: 0;
        visibility: hidden;
        z-index: 95;
        transition: .25s;
    }
    header .toggle_active .mobile_blur {
        opacity: 1;
        visibility: visible;
    }
    header .mobile_header .media_box {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    header .media_box a {
        width: 25%;
    }
    header .mobile_header img {
        width: 100%;
    }
    header .mobile_box {
        position: fixed;
        top: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        z-index: 100;
    }
    header .mobile_header .mobile_toggle {
        width: fit-content;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        padding: 10px;
        background: white;
        box-shadow: -1px 1px 3px #00000030;
        z-index: 99;
    }
    header .mobile_header hr {
        margin: 2px 0;
        width: 40px;
        height: 3px;
        border: 0;
        background: #ff7e22;
        transition: .25s;
    }
    header .mobile_toggle:hover hr {
        background: black;
    }
    header .mobile_header hr:last-child {
        width: 30px;
    }
    header .mobile_header .close_toggle hr:first-child {
        transform: rotate(40deg) translateY(9px);
        width: 30px;
    }
    header .mobile_header .close_toggle hr:nth-child(2) {
        opacity: 0;
    }
    header .mobile_header .close_toggle hr:last-child {
        transform: rotate(-40deg) translateY(-9px);
    }
    header .sidebar_box {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 70%;
        height: 100vh;
        padding: 20px 20px;
        background: var(--orange);
        transition: .25s;
    }
    header .toggle_active .sidebar_box {
        transform: translateX(0);
    }
    header .sidebar_box ul {
        list-style: none;
        font-size: 3.5vw;
    }
    header .sidebar_box li {
        text-align: center;
    }
    header .sidebar_items a {
        width: fit-content;
        position: relative;
        color: black;
        font-weight: 700;
        letter-spacing: 2px;
        margin: 10px 0;
    }
    header .sidebar_items a:hover {
        color: white;
    }
    header .sidebar_items a::before {
        content: "";
        position: absolute;
        bottom: -5px;
        width: 0;
        height: 4px;
        border-radius: 4px;
        background: white;
        transition: .25s;
    }
    header .sidebar_items .active_nav_item {
        color: white;
    }
    header .sidebar_items a:hover::before,
    header .sidebar_items .active_nav_item::before {
        width: 100%;
    }
    header .mobile_header .contact_box {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    header .mobile_header .contact_box .mobile_logo {
        width: 30%;
    }
    header .mobile_header .networks_box {
        margin: 20px 0;
    }
    header .mobile_header .networks_box a {
        color: black;
        margin: 0 7px;
        font-size: 20px;
    }
    header .mobile_header .networks_box a:hover {
        color: white;
    }
    header .mobile_header .button_box {
        width: 100%;
    }
    header .mobile_header .button_box a {
        display: flex;
        justify-content: center;
        align-items: center;
        color: black;
        font-weight: 700;
        text-align: center;
        width: 100%;
        height: 40px;
        margin: 15px 0;
        border: 2px solid black;
        transform: skewX(-15deg);
        background: linear-gradient(to right, black 50%, transparent 50%);
        background-size: 200%;
        background-position: 100%;
    }
    header .mobile_header .button_box a:hover {
        color: white;
        background-position: 0;
    }
}


/* ---FOOTER--- */

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: linear-gradient(to bottom, black 0, transparent 30%);
}

footer .bg_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    z-index: -1;
}

footer .footer_box {
    padding: 10% 0%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    align-items: center;
    gap: 5%;
}

footer .footer_box .first_box img {
    width: 10vw;
}

footer .footer_box .first_box {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

footer .footer_box .second_box {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

footer .footer_box .third_box {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

footer h2 {
    font-size: 3vw;
}

footer h2 span {
    color: white;
}

footer .hours_box p {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

footer .hours_box p span {
    color: var(--orange);
}

footer .address_box,
footer .phone_box {
    margin: 5px 0;
}

footer .address_box a,
footer .phone_box a {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

footer .address_box a:hover,
footer .phone_box a:hover {
    color: var(--orange);
}

footer .networks_box {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

footer .networks_box a {
    margin: 0 10px;
}

footer .networks_box i {
    color: white;
    font-size: 20px;
}

footer .networks_box i:hover {
    color: var(--orange);
}

footer .credits_box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 5px;
    background: var(--orange);
}

footer .credits_box a {
    color: white;
    font-size: 14px;
}

footer .credits_box a:hover {
    color: black;
}

footer .credits_box span {
    color: white;
    margin: 0 15px;
}

@media (max-width: 996px) {
    footer .footer_box {
        padding: 30% 10%;
    }
    footer h2 {
        font-size: 40px;
    }
    footer .networks_box i {
        font-size: 25px;
    }
    footer .footer_box {
        grid-template-columns: 1fr;
    }
    footer .footer_box .first_box img {
        width: 30vw;
    }
    footer .footer_box .second_box{
        text-align: center;
    }
    footer .footer_box .third_box{
        text-align: center;
    }
}


/* dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 50%;
    transform: translateX(70%);
    background-color: #f9f9f9;
    min-width: 175px;
    min-height: 115px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 9px 4px;
    text-decoration: none;
    display: block;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* sub-dropdown */
.sub-dropdown {
    display: none;
    position: absolute;
    top: 0%;
    left: 92%; 
    background-color: #eeeeee;
    min-width: 175px;
    min-height: 360px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.two-sdropwon{
    min-height: 500px;
    min-width: 175px;
}

.dropdown-content .title-drop:hover + .sub-dropdown,
.dropdown-content .title-drop:focus + .sub-dropdown,
.dropdown-content .sub-dropdown:hover {
    display: block;
}

.sub-dropdown a {
    padding: 10px;
}

@media screen and (max-width: 600px) {
    
}
