* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.lang-drop {
    display: none;
}

.lang-wrapper:hover .lang-drop {
    display: block;
}

body {
    font-family: "Future";
}

.container {
    width: 75%;
    margin: auto;
}

nav {
    background: linear-gradient(-90deg, #8ec7ef, #1e419b);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10000;
    padding: 20px 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo {
    width: 130px;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    color: white;
    text-decoration: none;
}

.menu a:hover {
    color: #f58220;
    text-decoration: underline;
}

.orange {
    color: #f58220;
}

.right {
    display: flex;
    gap: 20px;
    align-items: center;
    color: white;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10001;
}

.burger span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 5px;
}

.niye-biz li {
    list-style: none;
    position: relative;
    padding-left: 30px;
}

.niye-biz li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    background: url('/img/li.png') no-repeat center center;
    background-size: contain;
}

.fa-location-dot,
.fa-envelope,
.fa-phone-volume {
    padding: 15px;
    background-color: #f58220;
    font-size: 20px;
    color: white;
    border-radius: 50%;
}

.fa-facebook,
.fa-instagram {
    color: white;
    padding: 7px;
    background-color: #969393;
    font-size: 13px;
    border-radius: 50%;
}

.main li {
    list-style: none;
    position: relative;
    padding-left: 30px;
}

.main li::before {
    content: "•";
    color: #8ec7ef;
    position: absolute;
    left: 0;
    font-size: 28px;
    line-height: 1;
}

.row-col{
    width:70%;
    margin: auto;
}

@media(max-width: 768px) {
    .container {
        width: 95%;
    }

    .row-col {width:100%!important;
    margin: auto;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }
}

@media(max-width: 1000px) {
    .footer-blue {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }

    .niye-biz {
        margin-left: 0 !important;
    }
}

@media(max-width: 1500px) {
    .menu.active {
        left: 0;
    }

    .right {
        display: none;
    }

    .burger {
        display: flex;
    }

    .menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 260px;
        height: 100vh;
        background: #1e419b;
        flex-direction: column;
        padding: 100px 30px;
        transition: 0.4s;
        z-index: 9999;
    }
}
@media (max-width: 683px) {
    header {
        height: auto;
        min-height:0!important;
    }
}