.submenu li,
.themeBtn {
    padding: 10px
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: CustomFont, sans-serif
}

:root {
    --primaryColor: #3368C6;
    --secondaryColor: #000000;
    --tertiaryColor: #F5F5F5
}

body {
    background: #f9f9f9
}

.tertiaryColor {
    color: #f5f5f5
}

.nav-links li a:hover,
.sectionTitle {
    color: var(--primaryColor)
}

@font-face {
    font-family: helveticaNeue;
    src: url('fonts/helveticaNeue/HelveticaNeueMedium.woff2') format('woff2'), url('fonts/CustomFont.woff') format('woff'), url('fonts/CustomFont.ttf') format('truetype');
    font-weight: 400;
    font-style: normal
}

.border-none {
    border: none !important
}

.bg-none {
    background: 0 0 !important
}

a {
    text-decoration: none !important
}

.subHeading {
    font-size: 18px
}

.LHeading {
    font-size: 40px
}

.iconImg {
    width: 20px
}

.themeBtn {
    background: var(--primaryColor);
    width: 250px;
    margin: 20px auto;
    display: flex;
    align-content: center;
    gap: 20px;
    justify-content: center
}

.grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.grid5 {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr);
   gap: 20px;
}
.sectionTitle, .textUpper{
    text-transform: uppercase;
}
.sectionTitle {
    display: flex;
    gap: 20px;
    font-size: 25px;
    padding: 10px 0
}

.sectionTitle img {
    width: 35px;
    position: relative;
    top: -4px
}

.header {
    box-shadow: 0 3px 20px rgba(0, 0, 0, .2)
}

.submenu {
    display: none;
    position: absolute;
    background-color: #fff;
    list-style-type: none;
    padding: 0;
    width: 200px;
    margin: 0;
    border: 1px solid #ccc;
    z-index: 1000
}

.nav-links li:hover .submenu {
    display: block
}

.submenu li a {
    color: #444;
    text-transform: capitalize;
    text-decoration: none
}

.submenu li:hover {
    background-color: #f0f0f0
}

.submenu li a::before {
    left: 0;
    top: 40px !important
}

nav {
    width: 100vw;
    display: flex;
    z-index: 10;
    justify-content: space-between
}

nav form button {
    position: absolute;
    left: 10px;
    background: 0 0;
    display: flex;
    align-content: center;
    justify-content: center;
    top: 7px;
    border: none
}

nav form input {
    padding: 5px 0 5px 40px
}

.logo img {
    width: 8rem
}

.nav-links {
    display: flex;
    list-style: none;
    padding: 0 .7vw;
    justify-content: space-evenly;
    align-items: center;
    text-transform: uppercase;
    width: 60%;
    margin: 0
}

.nav-links li a {
    text-decoration: none;
    margin: 0 .7vw;
    color: var(--secondaryColor)
}

.nav-links li {
    text-transform: capitalize;
    position: relative
}

.nav-links li a::before {
    content: "";
    display: block;
    height: 3px;
    width: 0%;
    background-color: var(--primaryColor);
    position: absolute;
    transition: 250ms ease-in-out;
    margin: 0 0 0 10%;
    top: 30px
}

.nav-links li a:hover::before {
    width: 80%
}

.login-button {
    background-color: transparent;
    border: 1.5px solid #f2f5f7;
    border-radius: 2em;
    padding: .6rem .8rem;
    margin-left: 2vw;
    font-size: 1rem;
    cursor: pointer
}

.login-button:hover {
    color: #131418;
    background-color: #f2f5f7;
    border: 1.5px solid #f2f5f7;
    transition: 350ms ease-in-out
}

.hamburger div {
    width: 30px;
    height: 3px;
    background: #3368c6;
    margin: 5px;
    transition: .3s
}

.hamburger {
    display: none
}
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  clip-path: polygon(0 0,100% 0,93% 100%,4% 100%);
  border-radius: 0 0 40px 40px;
  z-index: 9999;
  box-shadow: 0 4px 6px rgba(0,0,0,.1);
  border-bottom: 2px solid #2b2a33;
}
@media screen and (max-width:800px) {
    nav {
        position: fixed;
        z-index: 3
    }

    .hamburger {
        display: block;
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 50%;
        transform: translate(-5%, -50%);
        z-index: 2;
        transition: .7s
    }

    .logo img {
        width: 6rem
    }

    .nav-links {
        position: fixed;
        background: #131418;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        clip-path: circle(50px at 90% -20%);
        -webkit-clip-path: circle(50px at 90% -10%);
        transition: 1s ease-out;
        pointer-events: none
    }

    .nav-links.open {
        clip-path: circle(1000px at 90% -10%);
        -webkit-clip-path: circle(1000px at 90% -10%);
        pointer-events: all
    }

    .nav-links li {
        opacity: 0
    }

    .nav-links li:first-child {
        transition: .5s .2s
    }

    .nav-links li:nth-child(2) {
        transition: .5s .4s
    }

    .nav-links li:nth-child(3) {
        transition: .5s .6s
    }

    .nav-links li:nth-child(4) {
        transition: .5s .7s
    }

    .nav-links li:nth-child(5) {
        transition: .5s .8s
    }

    .nav-links li:nth-child(6) {
        transition: .5s .9s;
        margin: 0
    }

    .nav-links li:nth-child(7) {
        transition: .5s 1s;
        margin: 0
    }

    li.fade {
        opacity: 1
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px)
}

.toggle .line2 {
    transition: .7s;
    width: 0
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px)
}