@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

@font-face {
    font-family: "stolzlBold";
    src: url(../assets/fonts/stolzl_bold.otf) format('opentype');
}

@font-face {
    font-family: "stolzlBook";
    src: url(../assets/fonts/stolzl_book.otf) format('opentype');
}

@font-face {
    font-family: "stolzlLight";
    src: url(../assets/fonts/stolzl_light.otf) format('opentype');
}

@font-face {
    font-family: "stolzlMedium";
    src: url(../assets/fonts/stolzl_medium.otf) format('opentype');
}

@font-face {
    font-family: "stolzlRegular";
    src: url(../assets/fonts/stolzl_regular.otf) format('opentype');
}

@font-face {
    font-family: "stolzlThin";
    src: url(../assets/fonts/stolzl_thin.otf) format('opentype');
}

body {
    font-family: "stolzlRegular", sans-serif;
}

/* footer */

footer {
    background-color: #141414;
    padding: 120px 70px 10px 70px;
}

.footer-data {
    max-width: 1290px;
    margin: 0 auto;
    color: white;
}

.footer-cols {
    display: flex;
    gap: 15px;
}

.footer-cols .col {
    width: 25%;
    margin-bottom: 25px;
}

.footer-cols .col h4 {
    font-size: 19px;
}

.footer-col-1>p,
.footer-col-2>p {
    color: gray;
    margin: 20px 0;
    font-size: 17px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
}

.footer-col-2>a,
.footer-col-3>a {
    text-decoration: none;
    color: gray;
    display: block;
    width: max-content;
    margin: 17px 0;
    position: relative;
}

.footer-col-2>a:after,
.footer-col-3>a:after {
    position: absolute;
    bottom: -8px;
    content: "";
    display: block;
    background-color: white;
    height: 0.4px;
    width: 0%;
    transition: width 0.3s ease-in-out;
}

.footer-col-2>a:hover:after,
.footer-col-3>a:hover:after {
    width: 100%;
}

.footer-col-4 .links {
    margin-top: 10px;
}

.footer-col-4 .links a {
    font-family: "DM Sans", sans-serif;
    text-decoration: none;
    color: white;
    margin-right: 2px;
}

.footer-col-4 .links a>i {
    font-size: 17px;
    border: 1px solid rgb(189, 188, 188);
    padding: 5px;
    border-radius: 50%;
    margin: 20px 0;
    cursor: pointer;
    text-align: center;
}

.footer-col-4 .links a>i:hover {
    background-color: #43893c;
}

.seprator {
    height: 0.5px;
    background-color: rgb(198, 197, 197);
    width: 100%;
}

.copyright>p {
    color: gray;
    font-family: "DM Sans", sans-serif;
    margin: 25px 0;
}

@media screen and (max-width: 800px) {
    .footer-cols {
        flex-direction: column;
    }
    
    .footer-cols .col {
        width: 100%;
    }
}

@media screen and (max-width: 650px) {
    footer {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 450px) {
    footer {
        padding: 20px;
    }
}

.menu-toggle {
    font-size: 24px;
    cursor: pointer;
    display: none;
}

.nav-links {
    list-style: none;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    
}

@media (min-width: 1025px) {
    header div.navbar {
        display: none;
    }
}

@media (max-width: 1024px) {
    header .header-btn {
        display: none;
    }
    
    header>.header-navbar {
        width: 100%;
    }

    header{
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    header .header-btn {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .desktop-navigation {
        display: none;
    }

    .mobile-navigation ul.nav-links {
        right: -250px;
    }

    .mobile-navigation .menu-toggle {
        display: block;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100vh;
        background: #222;
        flex-direction: column;
        text-align: left;
        padding-top: 35px;
        transition: right 0.3s ease-in-out;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    }

    .nav-links li {
        padding: 15px;
        border-bottom: 1px solid #444;
    }

    .nav-links li a {
        font-family: 'stolzlRegular', sans-serif;
    }

    .navbar.mobile-navigation ul.nav-links.active {
        right: 0;
        z-index: 99;
    }

    .nav-links.active .company-logo {
        padding-left: 20px;
        margin-bottom: 20px;
    }

    /* Overlay */
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out;
        z-index: 9;
    }

    .overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links.active .tooltip a {
        margin: 15px 0;
        font-size: 16px;
    }
}