:root {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

html:focus-within {
    scroll-behavior: smooth;
}

.cursor-pointer {
    cursor: pointer;
}

.iti__hide {
    display: none;
}

a {
    color: #7b7b7b;
    text-decoration: none;
}

a:hover {
    color: #007bff;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Helvetica, Sans-Serif;
}

p {
    font-size: 14px;
}

.fa-regular,
.fa-solid {
    color: #007bff;
    font-size: 0.8rem;
}


/*--------------------------------------------------------------
  # Main
  --------------------------------------------------------------*/

main {
    margin-top: 83px;
    padding: 15px 12px 15px 12px;
    transition: all 0.3s;
}

@media (max-width: 1199px) {
    main {
        padding: 10px;
    }
}


/* header starts */

#stickyHeader {
    position: fixed;
    z-index: 110;
    width: 100%;
    top: 0;
    left: 0;
}

#stickyHeader1 {
    position: fixed;
    z-index: 99;
    width: 100%;
    top: 50px;
    left: 0;
}

header {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}


/* primary header starts */

.primary-header {
    height: 50px;
    background-color: #cecfff;
}

a#AIBrand-Logo.navbar-brand {
    margin-top: -8px;
    margin-left: 1rem;
    display: block;
}

#primaryNav .navbar {
    position: fixed;
    top: 0;
    width: 100%;
}

#pre-navList .nav-item {
    background-color: transparent;
    cursor: pointer;
}

#pre-navList .nav-item a {
    text-decoration: none;
}


/* primary header ends */


/* secondary header starts */

.secondary-header {
    height: 33px;
    background-color: #007bff;
}

.navbar-collapse.justify-content-end {
    margin-right: 160px;
}

ul#sec-navList li {
    margin: -10px;
    padding-left: 4px;
    list-style-type: none;
    cursor: pointer;
}

ul#sec-navList li a {
    color: #fff;
    font-weight: 400;
    font-size: inherit;
    text-decoration: none;
}

.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 30px !important;
}


/* secondary header ends */


/* header ends */

@media only screen and (max-width: 992px) {
    .secondary-header {
        display: none;
    }
    #pre-navList .nav-item {
        background-color: #cecfff;
    }
}