@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500&family=Rubik&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Serif&display=swap');

* {
    font-family: 'Josefin Sans', sans-serif;
    font-family: 'Rubik', sans-serif;
    font-family: 'Rajdhani', sans-serif;
    margin: 0;
    padding: 0;
    letter-spacing: 2px;
    user-select: none;
    scroll-behavior: smooth;
    box-sizing: border-box;

}

::-webkit-scrollbar {
    width: 0;
}

#oval {
    width: 250px;
    height: 140px;
    position: fixed;
    top: -45px;
    left: -45px;
    background: #fff;
    border-radius: 140px/80px;
    box-shadow: 0px 10px 30px rgb(0 33 71 / 20%);
    cursor: pointer;
    z-index: 100;
}

#oval img {
    width: 66%;
    position: absolute;
    z-index: 9;
    top: 55px;
    left: 55px;
    height: auto;
}

.banner {
    width: 100%;
    height: 40vh;
    background-color: #018dd3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner h1 {
    font-size: 4em;
    color: #fff;
    font-weight: 500;
    border-bottom: 1px solid #fff;
}

nav {
    position: sticky;
    top: -1px;
    left: 0;
    width: 100%;
    height: 53px;
    transition: all 0.5s ease-in-out;
    background: #1b1b1b;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    z-index: 99;
}

nav .navbar {
    height: 100%;
    max-width: 1250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: auto;
    padding: 0 50px;
}

.navbar .logo a {
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

nav .navbar .nav-links {
    line-height: 70px;
    height: 100%;
}

nav .navbar .links {
    display: flex;
    height: 100%;
}

nav .navbar .links li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0 14px;
}

nav .navbar .links li a {
    text-decoration: none;
    white-space: nowrap;
    color: #fff;
    font-size: 1.6em;
    font-weight: 500;
}

.links li:hover .js-arrow {
    transform: rotate(180deg);
}

nav .navbar .links li .arrow {
    height: 100%;
    width: 22px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: all 0.3s ease;
}

nav .navbar .links li .sub-menu {
    position: absolute;
    width: 225px;
    top: 70px;
    left: 0;
    padding-left: 0 !important;
    line-height: 40px;
    background: #1b1b1b;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 4px 4px;
    display: none;
    z-index: 2;
}

nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
    transform: translateY(-5%);
    display: block;
    z-index: 20;
}

.navbar .links li .sub-menu li {
    height: 50px;
    padding: 0 10px;
    transition: 0.5s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .links li .sub-menu a {
    color: #fff;
    font-size: 1.1em;
    font-weight: 500;
}

.sub-menu li:hover {
    border-left: 9px solid #fff;
}

.accuLtd {
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    ;
    color: #fff;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    /* height: 6vh; */
    padding: 5px 10px;
    font-size: 1.7em;
    text-transform: uppercase;
    transition: all 0.5s ease-in-out;
    font-weight: 600;
    font-family: 'PT Serif', serif;
    letter-spacing: 5px;
    word-spacing: 5px;
}


.navbar .nav-links .sidebar-logo {
    display: none;
}

.navbar .bx-menu {
    display: none;
}

.navActive {
    top: 0;
    height: 9vh;
}

.activeAcc {
    display: none;
}

@media (max-width: 920px) {
    nav .navbar {
        max-width: 100%;
        padding: 0 25px;
    }

    nav .navbar .logo a {
        font-size: 27px;
    }

    nav .navbar .links li {
        text-align: center;
        padding: 8px;
        white-space: nowrap;
    }

    nav .navbar .links li a {
        font-size: 1.5em;
    }
}

@media (max-width: 919px) and (min-width: 801px) {
    nav {
        /* top: 4vh; */
        height: 6vh;
    }

    nav .navbar .links li a {
        font-size: 1.3em;
    }

    nav .navbar .links li .arrow {
        line-height: 36px;
    }
}

@media (max-width: 800px) {
    #oval {
        width: 215px;
        height: 115px;
        top: -40px;
        left: -42px;
    }

    #oval img {
        top: 45px;
        left: 50px;
    }

    .accuLtd {
        display: none;
    }

    nav {
        top: 0;
    }

    .navbar .bx-menu {
        display: block;
    }

    nav .navbar .nav-links {
        position: fixed;
        top: 5vh;
        left: -100%;
        display: block;
        width: 70%;
        background: #1b1b1b;
        line-height: 40px;
        padding: 10px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.5s ease;
        z-index: 1000;
        max-width: 260px;
    }

    .navbar .nav-links .sidebar-logo {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .sidebar-logo .logo-name {
        font-size: 25px;
        color: #fff;
    }

    .sidebar-logo i,
    .navbar .bx-menu {
        font-size: 25px;
        color: #fff;
    }

    nav .navbar .links {
        display: block;
        margin-top: 20px;
        padding-left: 0px !important;
    }

    nav .navbar .links li .arrow {
        display: inline-block;
        line-height: 40px;
    }

    nav .navbar .links li {
        display: block;
    }

    nav .navbar .links li .sub-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        display: none;
    }

    nav .navbar .links li .sub-menu li {
        border-bottom: none;
    }

    .links li:hover .js-arrow {
        transform: rotate(0deg);
    }

    .navbar .links li .sub-menu .more-sub-menu {
        display: none;
    }

    nav .navbar .links li:hover .js-sub-menu {
        display: none;
    }

    .navbar .nav-links.show3 .links .js-sub-menu {
        display: block;
        transition: all 0.5s ease-in-out;
        transform: none;
    }

    .navbar .nav-links.show3 .links .js-arrow {
        transform: rotate(180deg);
    }

    nav .navbar .links li .sub-menu li,
    nav .navbar .links li .sub-menu li a {
        background: #333;
    }

    #arrow {
        color: #1b1b1b;
    }
}

@media (max-width: 370px) {
    nav .navbar .nav-links {
        max-width: 100%;
    }
}




/* footer-start */
footer {
    color: #dee0f3;
    width: 100%;
    height: max-content;
    display: flex;
    padding: 35px 70px;
    flex-wrap: wrap;
    justify-content: space-between;
    background: linear-gradient(270deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);

}

.brand {
    Width: 20%;
    height: 50vh;
    background: #fff;
    border: none;
}

.logo {
    width: 90%;
    height: auto;
    margin: 70px auto;
}

#logo {
    width: 100%;
    height: auto;
    cursor: pointer;
}

.social {
    display: flex;
    justify-content: space-around;
    margin: 20px auto;

}

.social i {
    color: #38307c;
    cursor: pointer;
    font-size: 1.8em;
}

.social i:hover {
    color: #018dd3;
}

.folinks {
    margin: auto 10px;
}

.folinks h2,
.contacts h2 {
    font-size: 1.5em;
    border-bottom: 2px solid #dee0f3;
    font-weight: 600;
    letter-spacing: 2px;
}

.folinks ul {
    list-style: none;
}

.folinks li {
    margin: 15px auto;
}

.folinks ul li a {
    text-decoration: none;
    letter-spacing: 2px;
    cursor: pointer;
}

.addre {
    display: flex;
    width: 100%;
    white-space: pre-line;
    height: max-content;
    align-items: center;

}

.addre i {
    font-size: 1.2em;
    height: max-content;
    margin: auto 15px;
}

.contacts h2 {
    text-align: center;
}

.end {
    color: #dee0f3;
    background: linear-gradient(270deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    width: 100%;
    text-align: center;
    height: max-content;
}

.end h2 {
    width: 80%;
    font-weight: bolder;
    margin: auto auto;
    border-top: 2px solid #dee0f3;
    font-size: 1em;
    padding: 10px;
}

#foul,
#foul1 {
    display: block;
    padding-left: 0px !important;

}

#foul li a,
#foul1 li a,
.addre h4,
.addre p {
    font-family: 'Rubik', sans-serif;
    font-size: 1.1em;
    color: #dee0f3;
    /* display: flex; */
}

.cards {
    width: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 1px 1px 5px #000;
}

.contacts {
    margin-top: 20px;
    align-self: center;
    width: 43%;
}


@media screen and (max-width: 767px) {
    footer {
        height: max-content;
        padding: 35px;
    }

    .contacts {
        width: 100%;
    }

    .brand {
        width: 80%;
        margin: auto auto;
        height: max-content;
    }

    .logo {
        width: 70%;
    }

    #h {
        margin-top: 30px;
    }

    .folinks {
        margin: 35px;
        width: 100%;
        height: auto;
        text-align: center;
    }

    #foul {
        display: block;
    }

    #foul li a {
        color: #dee0f3;
    }

    .social i {
        font-size: 1.9em;
    }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
    .contacts {
        width: 100%;
    }

    .brand {
        width: 35%;
        height: 30vh;
    }

    .folinks {
        width: 22%;
        margin: 5px;
    }

}

@media screen and (min-width: 900px) and (max-width: 999px) {
    .contacts {
        width: 100%;
    }

    .brand {
        width: 35%;
        height: 20vh;
    }

}

/* footer-close */