a:hover {
    text-decoration: none;
}

/* #Primary style =============================== */
.section {
    position: relative;
    width: 100%;
    display: block;
}

.over-hide {
    overflow: hidden;
}

.full-height {
    height: 100vh;
}

/* #Navigation =================================================================*/
.header-wrapper img {
    width: 140px;
    transition: 0.5s;
    margin-top: 2%;
}

.header-wrapper img:hover {
    transition: 0.5s;
    transform: scale(1.08);
}

@media(max-width: 767px) {
    .header-wrapper img {
        width: 120px;
        transition: 0.5s;
        margin-top: 6%;
    }

    .nav__list-item {
        text-align: left;
    }
}

@media only screen and (orientation: landscape) and (min-width: 375px) and (max-width: 918px) {
    body .nav__list-item.smaller-link a {
        font-size: 8px;
        /* Adjust the font size as needed */
    }
}

.cd-header {
    position: fixed;
    width: 98%;
    top: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    /* Center horizontally */
    z-index: 100;
    transition: transform 0.3s ease;
}


.cd-header.hide {
    transform: translateY(-200%);
    opacity: 0;
    transition: transform 0.3s ease;
}

.cd-header.scroll-up {
    background-color: rgba(34, 34, 34, 0.8);
    /* Add your desired background color */
    transition: background-color 0.3s ease;
    /* Add transition effect if desired */
    transition: transform 0.3s ease;
    height: 100px;
}



.header-wrapper {
    position: relative;
    width: calc(100% - 100px);
    margin-left: 50px;
}

.logo-wrap {
    position: absolute;
    display: block;
    left: -50px;
    top: 0;
    cursor: pointer;
}

.logo-wrap a {
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    transition: all 0.3s ease-out;
}

.logo-wrap a span {
    color: #8167a9;
}

.logo-wrap a:hover {
    opacity: 0.9;
}

.nav-but-wrap {
    position: relative;
    display: inline-block;
    float: right;
    padding-left: 15px;
    padding-top: 15px;
    margin-top: 26px;
    transition: all 0.3s ease-out;
}

.menu-icon {
    height: 30px;
    width: 30px;
    position: relative;
    z-index: 2;
    cursor: pointer;
    display: block;
}

.menu-icon__line {
    height: 2px;
    width: 30px;
    display: block;
    background-color: #fff;
    margin-bottom: 7px;
    cursor: pointer;
    transition: background-color .5s ease, transform .2s ease;
}

.menu-icon__line-left {
    width: 16.5px;
    transition: all 200ms linear;
}

.menu-icon__line-right {
    width: 16.5px;
    float: right;
    transition: all 200ms linear;
}

.menu-icon:hover .menu-icon__line-left,
.menu-icon:hover .menu-icon__line-right {
    width: 30px;
}

.nav {
    position: fixed;
    z-index: 98;
}

.nav:before,
.nav:after {
    content: "";
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(20, 21, 26, 0.6);
    border-bottom-left-radius: 200%;
    z-index: -1;
    transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
    transform: translateX(100%) translateY(-100%);
}

.nav:after {
    background: rgba(34, 34, 34, 1);
    transition-delay: 0s;
}

.nav:before {
    transition-delay: .2s;
}

.nav__content {
    position: fixed;
    visibility: hidden;
    top: 50%;
    margin-top: 20px;
    transform: translate(0%, -50%);
    width: 100%;
    text-align: center;
}

.nav__list {
    position: relative;
    padding: 0;
    margin: 0;
    z-index: 2;
}

.nav__list-item {
    position: relative;
    display: block;
    transition: opacity .3s ease, color .3s ease, transform .3s ease;
    opacity: 0;
    text-align: center;
    color: #fff;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    font-size: 4vh;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 3px;
    transform: translate(100px, 0%);
    margin-top: 0;
    margin-bottom: 0;
}

.nav__list-item a {
    position: relative;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    overflow: hidden;
    cursor: pointer;
    padding-left: 5px;
    padding-right: 5px;
    font-weight: 900;
    z-index: 2;
    display: inline-block;
    text-transform: uppercase;
    transition: all 200ms linear;
}

.nav__list-item a:after {
    position: absolute;
    content: '';
    top: 50%;
    margin-top: -2px;
    left: 50%;
    width: 0;
    height: 0;
    opacity: 0;
    background-color: #f74843;
    z-index: 1;
    transition: all 200ms linear;
}

.nav__list-item a:hover:after {
    height: 4px;
    opacity: 1;
    left: 0;
    width: 100%;
}

.nav__list-item a:hover {
    color: rgba(255, 255, 255, 1);
}

.nav__list-item.active-nav a {
    color: rgba(255, 255, 255, 1);
}

.nav__list-item.active-nav a:after {
    height: 4px;
    opacity: 1;
    left: 0;
    width: 100%;
}

.nav__list-item.smaller-link a {
    font-size: 12px;
    /* Adjust the font size as needed */
}

body.nav-active .nav__content {
    visibility: visible;
}

body.nav-active .menu-icon__line {
    background-color: #fff;
    transform: translate(0px, 0px) rotate(-45deg);
}

body.nav-active .menu-icon__line-left {
    width: 15px;
    transform: translate(2px, 4px) rotate(45deg);
}

body.nav-active .menu-icon__line-right {
    width: 15px;
    float: right;
    transform: translate(-3px, -3.5px) rotate(45deg);
}

body.nav-active .menu-icon:hover .menu-icon__line-left,
body.nav-active .menu-icon:hover .menu-icon__line-right {
    width: 15px;
}

body.nav-active .nav {
    visibility: visible;
}

body.nav-active .nav:before,
body.nav-active .nav:after {
    transform: translateX(0%) translateY(0%);
    border-radius: 0;
}

body.nav-active .nav:after {
    transition-delay: .1s;
}

body.nav-active .nav:before {
    transition-delay: 0s;
}

body.nav-active .nav__list-item {
    opacity: 1;
    transform: translateX(0%);
}

body.nav-active .nav__list-item:nth-child(0) {
    transition-delay: 0.7s;
}

body.nav-active .nav__list-item:nth-child(1) {
    transition-delay: 0.8s;
}

body.nav-active .nav__list-item:nth-child(2) {
    transition-delay: 0.9s;
}

body.nav-active .nav__list-item:nth-child(3) {
    transition-delay: 1s;
}

body.nav-active .nav__list-item:nth-child(4) {
    transition-delay: 1.1s;
}

body.nav-active .nav__list-item:nth-child(5) {
    transition-delay: 1.2s;
}

body.nav-active .nav__list-item:nth-child(6) {
    transition-delay: 1.3s;
}

body.nav-active .nav__list-item:nth-child(7) {
    transition-delay: 1.4s;
}

body.nav-active .nav__list-item:nth-child(8) {
    transition-delay: 1.5s;
}

body.nav-active .nav__list-item:nth-child(9) {
    transition-delay: 1.6s;
}

body.nav-active .nav__list-item:nth-child(10) {
    transition-delay: 1.7s;
}

/*=====================================SLUT============================*/

/*========FOOTER=====*/
.footer-basic {
    position: relative;
    margin-top: auto;
    padding: 40px 0;
    background: rgba(34, 34, 34, 255);
    color: #fff;
    z-index: 90;
}

.footer-basic ul {
    padding: 0;
    list-style: none;
    text-align: center;
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 0;
    z-index: 5;
}

.footer-basic li {
    padding: 0 10px;
    display: inline-table;
    z-index: 5;
}

.footer-basic ul a {
    color: #fff;
    text-decoration: none;
    opacity: 1;
    transition: 0.2s;
}

.footer-basic ul a:hover {
    opacity: 1;
    text-shadow: 0 0 5px #fff;
    transition: 0.2s;
}

.footer-basic .social {
    color: rgba(255, 30, 0, 0.8);
    text-align: center;
    padding-bottom: 5px;
}

.footer-basic .social>a {
    font-size: 28px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #fff;
    margin: 0 8px;
    color: inherit;
    opacity: 0.75;
    transition: 0.2s;
}

.footer-basic .social>a:hover {
    opacity: 0.9;
    color: #fff;
    box-shadow: 0 0 5px #fff;
    text-shadow: 0 0 5px #fff;
    transition: 0.2s;
    transform: translateY(-5px);
}

.footer-basic .copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #fff;
    margin-bottom: 0;
}