/* font family */

/* @font-face {
    font-family: 'mohave';
    src: url('../fonts/mohave-webfont.woff2') format('woff2'), url('../fonts/mohave-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'mohave';
    src: url('../fonts/mohave-semibold-webfont.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'mohave';
    src: url('../fonts/mohave-bold-webfont.woff2') format('woff2'), url('../fonts/mohave-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
} */

@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Mohave:ital,wght@0,300..700;1,300..700&display=swap');

@font-face {
    font-family: 'TTSquaresCondensed-Thin';
    src: url('../fonts/TTSquaresCondensed-Thin.eot') format('embedded-opentype'), url('../fonts/TTSquaresCondensed-Thin.ttf') format('truetype'), url('../fonts/TTSquaresCondensed-Thin.woff') format('woff');
}

@font-face {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    src: url('../../fonts/mohave-webfont.woff2') format('woff2'), url('../../fonts/mohave-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    src: url('../../fonts/mohave-semibold-webfont.woff2') format('woff2'), url('../../fonts/mohave-semibold-webfont.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    src: url('../../fonts/mohave-bold-webfont.woff2') format('woff2'), url('../../fonts/mohave-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}



/* @import url('https://fonts.googleapis.com/css?family=Slabo+27px'); */

/* font icon */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");


:root {
    --fontmohave: 'mohave';
    --fonts: 'TTSquaresCondensed-Thin';
    --fontslucida: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    --theme-color: #2fe0d8;
    --primary-color: #000;
    --primary-font: #FFFFFF;
    --secondary-font: #a4b1cd;
    --transition-speed: 0.3s;
}

body {
    font-family: var(--fontslucida);
    background-color: var(--primary-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
    margin: 0px;
    padding: 0px;
}

a {
    text-decoration: none;
    margin: 0px;
    padding: 0px;
}

/* spacer */
.spacer {
    margin-top: 100px;
}

.img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.secondary-font {
    color: var(--secondary-font);
}

.theme-font {
    color: var(--theme-color);
}

.text-red {
    color: red !important;
}

/*  btn */

.fill-btn {
    position: relative;
    overflow: hidden;
    z-index: 2;
    color: var(--theme-color);
    background-color: var(--primary-color);
    padding: 14px 0px;
    text-align: center;
    width: 180px;
    display: inline-block;
    box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.3);
    position: relative;

    &::after,
    &::before {
        content: '';
        height: 16px;
        width: 16px;
        border-top: 3px solid var(--theme-color);
        border-left: 3px solid var(--theme-color);
        position: absolute;
        top: 0px;
        left: 0px;
    }

    &::after {
        top: auto;
        bottom: 0px !important;
        border-top: transparent;
        border-bottom: 3px solid #2fe0d8;
    }
}

.fill-btn .right-top {
    position: absolute;
    height: 16px;
    width: 16px;
    border-top: 3px solid var(--theme-color);
    border-right: 3px solid var(--theme-color);
    position: absolute;
    top: 0px;
    right: 0px;
}

.fill-bottom {
    position: absolute;
    height: 16px;
    width: 16px;
    border-bottom: 3px solid var(--theme-color);
    border-right: 3px solid var(--theme-color);
    position: absolute;
    bottom: 0px;
    right: 0px;
}

.fill-btn .left-btn-bg {
    position: absolute;
    width: 50%;
    height: 54px;
    background-color: var(--theme-color);
    top: 0px;
    left: -91px;
    transition: .3s;
    z-index: -1;
}

.fill-btn .right-btn-bg {
    position: absolute;
    width: 50%;
    height: 54px;
    background-color: var(--theme-color);
    top: 0px;
    right: -91px;
    transition: .3s;
    z-index: -1;
}

.fill-btn:hover .left-btn-bg {
    left: 0;
}

.fill-btn:hover .right-btn-bg {
    right: 0;
}

.fill-btn:hover {
    color: var(--primary-font);
}

.border-btn {
    position: relative;
    overflow: hidden;
    z-index: 2;
    color: var(--primary-font);
    background-color: var(--primary-color);
    padding: 14px 0px;
    text-align: center;
    width: 180px;
    display: inline-block;
    box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.3);
    position: relative;

    &::after,
    &::before {
        content: '';
        height: 16px;
        width: 16px;
        border-top: 3px solid var(--theme-color);
        border-left: 3px solid var(--theme-color);
        position: absolute;
        top: 0px;
        left: 0px;
    }

    &::after {
        top: auto;
        bottom: 0px !important;
        border-top: transparent;
        border-bottom: 3px solid #2fe0d8;
    }
}

.border-btn .right-top {
    position: absolute;
    height: 16px;
    width: 16px;
    border-top: 3px solid var(--theme-color);
    border-right: 3px solid var(--theme-color);
    position: absolute;
    top: 0px;
    right: 0px;
}

.fill-btn .right-bottom,
.border-btn .right-bottom {
    position: absolute;
    height: 16px !important;
    width: 16px !important;
    border-bottom: 3px solid var(--theme-color);
    border-right: 3px solid var(--theme-color);
    position: absolute;
    bottom: 0px;
    right: 0px;
}

.border-btn .left-btn-bg {
    position: absolute;
    width: 50%;
    height: 54px;
    background-color: var(--theme-color);
    top: 0px;
    left: -0px;
    transition: .3s;
    z-index: -1;
}

.border-btn .right-btn-bg {
    position: absolute;
    width: 50%;
    height: 54px;
    background-color: var(--theme-color);
    top: 0px;
    right: -0px;
    transition: .3s;
    z-index: -1;
}

.border-btn:hover .left-btn-bg {
    left: -91px;
}

.border-btn:hover .right-btn-bg {
    right: -91px;
}

.border-btn:hover {
    color: var(--theme-color);
}


/* header start */

.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    z-index: 999;
    box-shadow: 0px 3px 5px rgba(70, 254, 246, 0.3);
}

header {
    font-family: var(--fonts);
}

header .navbar-brand .glitch {
    font-size: 42px;
    text-shadow: 0px 0px 20px rgba(70, 254, 246, 0.9);
    margin: 0;
    padding: 0;
    color: #46fef6;
    font-family: 'mohave';
    font-weight: 600;
}


header .glitch {
    color: white;
    font-family: 'mohave';
    font-size: 52px;
    position: relative;
    width: auto;
    display: inline-block;
    margin: 0 auto 0;
}

header .navbar-brand .glitch:before,
header .navbar-brand .glitch:after {
    color: #46fef6;
    text-shadow: -1px 0 rgb(255, 255, 255);
}

@keyframes noise-anim {
    0% {
        clip: rect(76px, 9999px, 62px, 0);
    }

    5% {
        clip: rect(4px, 9999px, 50px, 0);
    }

    10% {
        clip: rect(18px, 9999px, 84px, 0);
    }

    15% {
        clip: rect(71px, 9999px, 15px, 0);
    }

    20% {
        clip: rect(98px, 9999px, 56px, 0);
    }

    25% {
        clip: rect(82px, 9999px, 10px, 0);
    }

    30% {
        clip: rect(70px, 9999px, 45px, 0);
    }

    35% {
        clip: rect(13px, 9999px, 38px, 0);
    }

    40% {
        clip: rect(63px, 9999px, 7px, 0);
    }

    45% {
        clip: rect(71px, 9999px, 15px, 0);
    }

    50% {
        clip: rect(68px, 9999px, 31px, 0);
    }

    55% {
        clip: rect(20px, 9999px, 92px, 0);
    }

    60% {
        clip: rect(4px, 9999px, 46px, 0);
    }

    65% {
        clip: rect(54px, 9999px, 83px, 0);
    }

    70% {
        clip: rect(86px, 9999px, 6px, 0);
    }

    75% {
        clip: rect(56px, 9999px, 75px, 0);
    }

    80% {
        clip: rect(99px, 9999px, 98px, 0);
    }

    85% {
        clip: rect(43px, 9999px, 38px, 0);
    }

    90% {
        clip: rect(4px, 9999px, 96px, 0);
    }

    95% {
        clip: rect(2px, 9999px, 82px, 0);
    }

    100% {
        clip: rect(35px, 9999px, 25px, 0);
    }
}

.glitch:after {
    content: attr(data-text);
    position: absolute;
    left: 2px;
    text-shadow: -1px 0 rgba(0, 102, 39, 1);
    top: 0;
    color: white;
    background: none;
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
    animation: noise-anim 4s infinite linear alternate-reverse;
    right: -2px;
}

@keyframes noise-anim-2 {
    0% {
        clip: rect(90px, 9999px, 8px, 0);
    }

    5% {
        clip: rect(80px, 9999px, 22px, 0);
    }

    10% {
        clip: rect(97px, 9999px, 52px, 0);
    }

    15% {
        clip: rect(18px, 9999px, 11px, 0);
    }

    20% {
        clip: rect(55px, 9999px, 92px, 0);
    }

    25% {
        clip: rect(40px, 9999px, 36px, 0);
    }

    30% {
        clip: rect(18px, 9999px, 56px, 0);
    }

    35% {
        clip: rect(24px, 9999px, 46px, 0);
    }

    40% {
        clip: rect(63px, 9999px, 93px, 0);
    }

    45% {
        clip: rect(41px, 9999px, 94px, 0);
    }

    50% {
        clip: rect(50px, 9999px, 29px, 0);
    }

    55% {
        clip: rect(70px, 9999px, 64px, 0);
    }

    60% {
        clip: rect(7px, 9999px, 35px, 0);
    }

    65% {
        clip: rect(100px, 9999px, 6px, 0);
    }

    70% {
        clip: rect(58px, 9999px, 10px, 0);
    }

    75% {
        clip: rect(52px, 9999px, 54px, 0);
    }

    80% {
        clip: rect(6px, 9999px, 7px, 0);
    }

    85% {
        clip: rect(36px, 9999px, 78px, 0);
    }

    90% {
        clip: rect(49px, 9999px, 10px, 0);
    }

    95% {
        clip: rect(78px, 9999px, 92px, 0);
    }

    100% {
        clip: rect(21px, 9999px, 40px, 0);
    }
}

.glitch:before {
    content: attr(data-text);
    position: absolute;
    left: -2px;
    text-shadow: 1px 0 rgba(0, 232, 255, 1);
    top: 0;
    color: white;
    background: none;
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
    animation: noise-anim-2 3s infinite linear alternate-reverse;
}

@media screen and (max-width:425px) {
    header .navbar-brand .glitch {
        font-size: 38px !important;
    }
}

header .nav-item .nav-link.active {
    color: var(--theme-color) !important;
    font-weight: 700 !important;
    transition: .3s !important;
}

header .nav-item .nav-link {
    color: var(--secondary-font) !important;
    transition: .3s !important;
    position: relative;
    font-weight: 700 !important;
}

header .nav-item .nav-link::after {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-bottom: 1px solid var(--theme-color);
    transition: .5s;
    transform: scaleX(0);
    transform-origin: left;
}

header .nav-item .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: right;
}

header .nav-item .nav-link:hover {
    color: var(--theme-color) !important;
}

header .nav-item {
    padding: 15px 20px !important;
}

header .navbar-toggler {
    border-color: var(--theme-color);
    box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.3);
}

header .login-icn svg {
    height: 20px;
    width: 20px;
    color: var(--secondary-font);
    transition: .3s;

    &:hover {
        color: var(--theme-color) !important;
    }
}

header .login-btn {
    padding: 10px 16px;
    background-color: var(--theme-color);
    color: var(--primary-font);
    font-weight: 600;
}

header .store-btn {
    padding: 10px 16px;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.3);
}

header .header-btn {
    display: none;
}

header .header-btn a svg {
    height: 18px !important;
    width: 24px !important;
    margin-right: 3px;
}

header .header-btn a {
    font-size: 18px;
}

@media screen and (max-width:991px) {
    .login-icn {
        display: none !important;
    }

    header .header-btn {
        display: block;
    }
}

/* header end */

/* slider start */

.slider {
    background: url(./../image/world_map.png);
    background-size: cover;
    position: relative;
    z-index: 4;
    background-position-x: center;
    background-repeat: no-repeat;

    &::after {
        content: '';
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.95));
        position: absolute;
        top: 0px;
        left: 0px;
        height: 100%;
        width: 100%;
        z-index: -1;
    }
}

.hero-section {
    padding: 150px 0px;
    color: var(--primary-font);
}

.hero-section h1 {
    font-size: 58px;
    line-height: 70px;
    font-weight: 700;
    width: 60%;
    /* font-family: var(--fontslucida); */
    font-family: "Play", sans-serif;
}

.hero-section p {
    font-size: 20px;
    color: var(--secondary-font);
    width: 60%;
    margin-top: 10px;
    margin-bottom: 30px;
}

@media screen and (max-width:768px) {
    .hero-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .hero-section h1 {
        font-size: 50px;
        width: 100%;
        text-align: center;
    }

    .hero-section p {
        width: 100%;
        text-align: center;
    }
}

/* slider end */

/* hacker start */

.hacker-label {
    border: 1px solid var(--theme-color);
    box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.3);
    background-color: #131C29;
    padding: 20px 50px;

    &:hover {
        box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.5);
    }
}

.hacker-label p {
    font-size: 18px;
    color: var(--theme-color);
}

.hacker-label a svg {
    color: var(--theme-color);
    height: 18px;
    width: 18px;
}

/* hacker end */

/* odd start */

.left-odd {
    border: 1px solid var(--theme-color);
    box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.3);
    padding: 50px;

    &:hover {
        box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.5);
    }
}

.left-odd h2 {
    font-size: 62px;
    color: var(--theme-color);
    font-weight: 600;
}

.left-odd p {
    font-size: 18px;
    color: var(--secondary-font);
}

/* odd end */

/* gamifield start */

.sec-title {
    font-size: 46px;
    font-family: var(--fonts);
    font-weight: 700;
    color: var(--primary-font);
}

@media screen and (max-width:768px) {
    .sec-title {
        font-size: 32px;
    }
}

.gamified-box {
    border: 1px solid var(--theme-color);
    box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.3);
    background-color: #131C29;
    transition: .3s;

    &:hover {
        box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.5);
    }
}

.gamified-content {
    padding: 50px;
    padding-bottom: 30px;
}

.gamified-content h2 {
    font-size: 28px;
    color: var(--primary-font);
    margin-bottom: 10px;
    font-family: var(--fonts);
    font-weight: 700;
}

.gamified-content p {
    color: var(--secondary-font);
    font-size: 14px;
}

.gamified-img {
    height: 192px;
}

.gamified-img {
    position: relative;

    &::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: linear-gradient(180deg, #131C29, rgba(19, 28, 41, 0.6));
    }
}

/* gamifield end*/


/* cyber work start */

.cyber-main {
    border: 1px solid var(--theme-color);
    box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.3);
    padding: 50px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: .3s;

    &:hover {
        box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.5);
    }
}

.cyber-img {
    height: 230px;
}

.cyber-icn {
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cyber-icn svg {
    height: 30px;
    width: 30px;
    color: var(--primary-font);
}

.cyber-main h4 {
    font-size: 26px;
    text-transform: uppercase;
    color: var(--primary-font);
    font-weight: 700;
}

.cyber-title span {
    font-size: 16px;
    color: var(--secondary-font);
    transition: .5s;
}

.cyber-title svg {
    color: var(--secondary-font);
    transition: .5s;
}

.cyber-main p {
    font-size: 18px;
    color: var(--primary-font);
}

.cyber-bg {
    position: absolute;
    top: 50px;
    left: 50px;
    height: 60px;
    width: 60px;
    border-radius: 50px;
    background-color: var(--theme-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
    transition: .6s;
    background-position: center center;
}

.cyber-main:hover .cyber-title span,
.cyber-main:hover .cyber-title svg {
    color: var(--theme-color);
}

/* cyber work end */


/* Clear career start */
.clear-main {
    border: 1px solid var(--theme-color);
    box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.3);
    background-color: #131C29;
    padding: 40px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: .3s;

    &:hover {
        box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.5);
    }
}

.clear-title {
    font-size: 16px;
    color: var(--secondary-font);
    transition: .5s;
}

.clear-title svg {
    color: var(--secondary-font);
    transition: .5s;

    &:hover {
        color: var(--theme-color);
    }
}

.clear-main p {
    color: var(--primary-font);
    font-size: 18px;
}

.clear-main:hover .clear-title,
.clear-main:hover svg {
    color: var(--theme-color);
}

@media screen and (max-width:768px) {
    .clear-logos {
        justify-content: center;
    }
}

/* Clear career end */

/* solution start */

.solution-tabs .nav-tabs {
    border-bottom: none !important;
}

.solution-tabs .nav-item {
    width: 100% !important;
    padding: 10px 30px;
}

.solution-tabs .nav-link {
    width: 100% !important;
    padding: 18px;
    font-size: 22px;
    border: 1px solid rgba(164, 177, 205, 0.3);
    color: var(--secondary-font);
    border-radius: 0px !important;
    font-weight: bold;

}

.solution-tabs .nav-link.active {
    background-color: transparent !important;
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
    box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.3);
}

.tab-view {
    border: 1px solid rgba(164, 177, 205, 0.3);
}

.tab-view .tab-img {
    position: relative;
    height: 320px;

    &::after {
        content: '';
        position: absolute;
        top: 0px;
        left: 0px;
        height: 100%;
        width: 100%;
        background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.95));
    }
}

.tab-view .tab-content h3 {
    color: var(--primary-font);
    line-height: 38px;
}

.tab-view .tab-content .tab-check p {
    color: var(--secondary-font);
}

.tab-view .tab-content .tab-check svg {
    color: var(--theme-color);
}

.fade:not(.show) {
    display: none !important;
}

@media screen and (max-width:767px) {
    .solution-tabs .nav-link {
        padding: 12px;
        font-size: 16px;
    }
}

/* solution end */

/* member start */

.member-content {
    padding: 80px 0px;
    border: 1px solid var(--theme-color);
    box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.3);
    background: url(../image/memberbg.jpg);
    background-position: center center;
    background-size: cover;
    transition: .3s;
    position: relative;
    z-index: 2;

    &::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(19, 28, 41, 0.6);
        z-index: -1;
    }

    &:hover {
        box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.5);
    }
}

.member-content h3 {
    font-size: 58px;
    color: var(--theme-color);
    font-weight: bolder;
    font-family: var(--fonts);
}

.member-content p {
    font-size: 18px;
    color: var(--primary-font);
}

/* member end */

/* hackerslider start */

.slider-main {
    border: 1px solid var(--theme-color);
    box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.3);
    padding: 50px;

    &:hover {
        box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.5);
    }
}

.slider-content {
    font-size: 18px;
    color: var(--secondary-font);
    height: 190px;
    text-overflow: ellipsis;
}

.slider-logo {
    width: 120px;
    height: 80px;
}

.slider-footer p {
    font-size: 16px;
    color: var(--primary-font);
}

.slider-footer span {
    color: var(--secondary-font);
}

.hacker-slider .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
}

.hacker-slider .owl-prev,
.hacker-slider .owl-next {
    height: 50px !important;
    width: 50px !important;
    border: 1px solid var(--theme-color) !important;
    box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.3);
    transition: .3s;
    border-radius: 50px;

    &:hover {
        background-color: var(--theme-color);
    }
}

.hacker-slider .owl-prev {
    margin-right: 20px;
}

.left-arrow,
.right-arrow {
    position: absolute;
    top: -88px;
    right: 23px;
}

.left-arrow {
    right: 96px;
}

.left-arrow svg,
.right-arrow svg {
    color: var(--theme-color);
    height: 24px;
    width: 24px;
}

@media screen and (max-width:767px) {
    .slider-main {
        padding: 30px;
    }

    .slider-content {
        height: auto;
    }
}

/* hackerslider end */

/* blog start */

.readmore {
    color: var(--theme-color);
    font-size: 18px;
    font-family: var(--fonts);
    font-weight: 500;
}

.readmore svg {
    transition: .3s;
    height: 18px;
    width: 18px;
    color: var(--theme-color);
}

.readmore:hover svg {
    margin-left: 10px;
}

/* blog end */

/* cyber attack start */

.cyberattack-main {
    border: 1px solid rgba(164, 177, 205, 0.3);
    transition: .3s;

    &:hover {
        box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.5);
        border-color: var(--theme-color);
    }
}

.cyberattack-content {
    height: 190px;
}

.cyberattack-content span {
    font-size: 16px;
    color: var(--secondary-font);
}

.cyberattack-content p {
    margin-top: 10px;
    font-size: 18px;
    color: var(--primary-font);
}

@media screen and (max-width:768px) {

    .cyberattack-content {
        height: auto;
    }

}

/* cyber attack end */

/* form start */

.sec-subtitle {
    font-size: 18px;
    color: var(--secondary-font);
}

@media screen and (max-width:768px) {
    .sec-subtitle {
        font-size: 14px;
    }
}

.cyberform input,
.cyberform textarea,
.cyberform select {
    width: 100%;
    background-color: #131C29;
    border: 1px solid var(--theme-color);
    color: var(--secondary-font);
    padding: 10px 10px 10px 20px;
    outline: none;
}

.cyberform input:focus,
.cyberform textarea:focus {
    border: 1px solid var(--theme-color);
    box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.5);
}

/* form end */


/* footer start */

footer .glitch {
    font-size: 30px;
    text-shadow: 0px 0px 20px rgba(70, 254, 246, 0.9);
    margin: 0;
    padding: 0;
    color: #46fef6;
    font-family: 'mohave';
    font-weight: 600;
}

footer .glitch {
    color: white;
    font-family: 'mohave';
    font-size: 40px;
    position: relative;
    width: auto;
    display: inline-block;
    margin: 0 auto 0;
}

footer .glitch:before,
footer .glitch:after {
    color: #46fef6;
    text-shadow: -1px 0 rgb(255, 255, 255);
}


footer .footer-title {
    font-size: 20px;
    color: var(--primary-font);
}

footer .footer-content p,
footer .footer-content a {
    color: var(--secondary-font);
    font-size: 14px;
    transition: .3s;

    &:hover {
        color: var(--theme-color);
    }
}

footer .social-icn svg {
    height: 24px;
    width: 24px;
    color: var(--secondary-font);
    transition: .3s;

    &:hover {
        color: var(--theme-color);
    }
}

footer .social-icn {

    margin-right: 15px;
}

footer .footer-right-info a,
footer .footer-right-info span {
    font-size: 14px;
    color: var(--secondary-font);
    transition: .3s;

    &:hover {
        color: var(--theme-color);
    }
}

@media screen and (max-width:768px) {
    footer .footer-content {
        text-align: center;
    }

    footer .social-icn {
        margin-right: 0px;
    }

    footer .social-icns {
        justify-content: space-between;
        display: flex;
    }
}

/* footer end */

/* cookie settings */

.cookie-setting {
    font-family: var(--fontslucida);
}

.cookie-setting .glitch {
    font-size: 30px;
    text-shadow: 0px 0px 20px rgba(70, 254, 246, 0.9);
    margin: 0;
    padding: 0;
    color: #46fef6;
    font-family: 'mohave';
    font-weight: 600;
}

.cookie-setting .glitch {
    color: white;
    font-family: 'mohave';
    font-size: 40px;
    position: relative;
    width: auto;
    display: inline-block;
    margin: 0 auto 0;
}

.cookie-setting .glitch:before,
.cookie-setting .glitch:after {
    color: #46fef6;
    text-shadow: -1px 0 rgb(255, 255, 255);
}

.cookie-btn a {
    padding: 8px 10px;
    background-color: transparent;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    transition: .3s;

    &:hover {
        background-color: var(--theme-color);
        color: var(--primary-font);
    }
}

.cookie-setting p {
    color: var(--secondary-font);
}

/* ------------------------------- */
/* login page */

.login-main {
    height: 100vh;
    width: 100%;
    /* background-color: #131C29; */
    background-image: url(../image/login-bg.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.login-form {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(47, 224, 216, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(47, 224, 215, 0.18);
    padding: 45px 35px;
    position: relative;
}

.login-form:after {
    content: '';
    position: absolute;
    height: 35px;
    width: 35px;
    top: 0;
    left: 0;
    border-top: 3px solid var(--theme-color);
    border-left: 3px solid var(--theme-color);
}

.login-form:before {
    content: '';
    position: absolute;
    height: 35px;
    width: 35px;
    top: 0;
    right: 0;
    border-top: 3px solid var(--theme-color);
    border-right: 3px solid var(--theme-color);
}

.login-form .left-bottom {
    position: absolute;
    height: 35px;
    width: 35px;
    bottom: 0;
    left: 0;
    border-bottom: 3px solid var(--theme-color);
    border-left: 3px solid var(--theme-color);
}

.login-form .right-bottom {
    position: absolute;
    height: 35px;
    width: 35px;
    bottom: 0;
    right: 0;
    border-bottom: 3px solid var(--theme-color);
    border-right: 3px solid var(--theme-color);
}

.login-form .border-btn .right-bottom {
    height: 16px;
    width: 16px;
}

.login-header {
    background-size: cover;
    padding-bottom: 30px;
    position: relative;
    z-index: 2;

}

.login-header h4 {
    color: var(--primary-font);
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    font-family: var(--fonts);
}

.login-input {
    position: relative;
}

.login-input .login-icn {
    position: absolute;
    top: 0;
    left: 0;
}

.login-icn i {

    font-size: 20px;
}

.login-input input {
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--theme-color);
    color: var(--secondary-font);
    padding: 10px 10px 10px 20px;
    outline: none;
}

.login-input input:focus,
.login-input textarea:focus {
    border: 1px solid var(--theme-color);
    box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.3);
}

.login-content .submit-btn button,
.contact-form .submit-btn button {
    width: 100%;
    padding: 10px;
    border: none;
}

.login-content .submit-btn button:hover .left-btn-bg,
.contact-form .submit-btn button:hover .left-btn-bg {
    left: -50%;
}

.login-content .submit-btn button:hover .right-btn-bg,
.contact-form .submit-btn button:hover .right-btn-bg {
    right: -50%;
}

.login-content a {
    color: var(--secondary-font);
    font-size: 14px;
    transition: .3s;

    &:hover {
        color: var(--theme-color);
    }
}

.register-link {
    font-size: 14px;
    color: var(--secondary-font);
}

.register-link a {
    font-size: 14px;
    color: var(--theme-color);
}

/* login end */
/* ------------------------------- */

/* ------------------------------- */
/* contact us page start */

/* breadcrumbs start */

.breadcrumbs {
    padding: 100px 0px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url(../image/bg-breadcrumbs.svg);
    background-size: cover;
    background-position: center;
}

.breadcrumbs h2 {
    color: var(--primary-font);
    font-family: var(--fontslucida);
    font-weight: 600;
    font-size: 36px;
}

.breadcrumbs p {
    color: var(--secondary-font);
    font-size: 18px;
}

/* breadcrumbs end */

/* contact-card start */

.contact-card {
    border: 1px solid var(--theme-color);
    box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.3);
    transition: .3s;
    padding: 45px 65px;

    &:hover {
        box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.5);
    }
}

.contact-icn svg {
    height: 30px;
    width: 30px;
    color: var(--theme-color);
}

.contact-card h6 {
    color: var(--primary-font);
    font-size: 18px;
    font-family: var(--fonts);
    font-weight: 700;
}

.contact-card p {
    color: var(--secondary-font);
    font-size: 14px;
}

.contact-card a {
    color: var(--theme-color);
    font-size: 14px;
    text-transform: uppercase;
}

/* contact-card end */

/* contact form start */

.cyberform p {
    text-align: center;
    color: var(--secondary-font);
}

.cyberform p a {
    color: var(--theme-color);
}

/* contact form end */

/* contact us page end */
/* ------------------------------- */


/* ------------------------------- */
/* pricing page start */

/* plans start */

.plans span {
    font-size: 18px;
    color: var(--secondary-font);
}

.plans .toggle {
    position: relative;
}

.plans .toggle input {
    height: 36px;
    width: 60px;
    opacity: 0;
}

.plans .toggle .toggle-bg {
    height: 36px;
    width: 60px;
    border: 1px solid var(--theme-color);
    border-radius: 50px;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(20px);
}

.plans .toggle .toggle-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 28px;
    width: 28px;
    background-color: var(--theme-color);
    border-radius: 50px;
    transform: translate(5px, 10%);
}

.plans .toggle input:checked~.toggle-bg::after {
    left: auto;
    right: 0;
    transform: translate(-5px, 10%);
}

.plans .toggle input:checked~.toggle-bg {
    box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.5);
}

.plans-card {
    padding: 35px 24px;
    padding-bottom: 30px;
    height: 748px;
    border: 1px solid var(--theme-color);
    box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.3);
    transition: .3s;

    &:hover {
        box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.5);
    }
}

.plans-card .plans-card-title {
    letter-spacing: 4px;
    font-family: var(--fonts);
    font-size: 18px;
    font-weight: 900;
}

.plans-card .plans-info {
    font-size: 14px;
}

.plans-details .plans-offer svg {
    height: 20px;
    width: 20px;
    color: var(--theme-color);
}

.plans-details .plans-offer p {
    font-size: 14px;
}

.plans-card .comapre-plan {
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 500;
}

.plans-card .comapre-plan svg {
    height: 16px;
    width: 16px;
}

.plans-card .comapre-plan:hover {
    color: var(--theme-color) !important;
}

/* plans end */

/* our clients start */

table td {
    padding: 15px 10px !important;
}

.collapse-subtitle {
    font-size: 14px;
}

.collapse-info {
    font-size: 13px;
    border: none !important;
    color: var(--secondary-font) !important;
}

.checked svg {
    height: 20px;
    width: 20px;
    color: var(--theme-color);
}

.table-arrow {
    height: 18px !important;
    width: 18px !important;
}

.cancel svg {
    height: 22px;
    width: 22px;
    color: red;
}

/* our clients end */

/* faq start */

.accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.accordion__item {
    border: 1px solid var(--theme-color);
    overflow: hidden;
    box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.3);
}

.accordion__header {
    padding: 20px 25px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    color: var(--secondary-font);
}

.accordion__header::after {
    content: '';
    background: url(https://www.svgrepo.com/show/357035/angle-down.svg) no-repeat center;
    width: 20px;
    height: 20px;
    transition: .4s;
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1;
}

.accordion__header.active {
    background: var(--theme-color);
}

.accordion__header.active {
    color: var(--primary-font);
}

.accordion__header.active::after {
    transform: rotateX(180deg);
}

.accordion__item .accordion__content {
    padding: 0px 25px;
    max-height: 0;
    transition: .5s;
    overflow: hidden;
    color: var(--secondary-font);
    font-size: 14px;
}

.accordion__item .accordion__content p {
    padding: 20px 0px;
}


/* faq end */


/* pricing page end */
/* ------------------------------- */

/* event start */

.event-info {
    border: 1px solid var(--theme-color);
    box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.3);
    transition: .3s;

    &:hover {
        box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.5);
    }
}

.event-title {
    transition: .3s;
    color: var(--primary-font);

    &:hover {
        color: var(--theme-color);
    }
}

.tabs-btn {
    background-color: #131C29;
}

.event-tabs {
    border-bottom: none !important;
}

.event-img {
    width: 250px;
    height: 160px;
}

.event-tabs button {
    border-radius: 0px !important;
    width: 200px;
    color: var(--theme-color);
    border: 1px solid var(--theme-color) !important;
    transition: .3s;

    &:hover {
        background-color: transparent;
        border-color: var(--theme-color) !important;
        box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.3);
        color: var(--theme-color);
    }
}

.event-tabs button.active {
    border: 1px solid var(--theme-color) !important;
    box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.3);
    background-color: var(--theme-color) !important;
    color: var(--primary-font) !important;
}

@media screen and (max-width:768px) {
    .event-img {
        width: 100%;
    }
}


/* event end */

/* enterprise start */

.realstatic-title {
    color: var(--primary-font);
}

.realstatic-info {
    font-size: 14px;
    color: var(--secondary-font);
}

.realworld-card {
    padding: 30px;
}

.realstatic-img {
    height: 360px;
}

.realworld-icn svg {
    height: 35px;
    width: 35px;
    color: var(--theme-color);
}

.realworld-title {
    font-size: 22px;
    color: var(--primary-font);
    font-weight: 500;
}

/* enterprise end */

/* lab  start*/

.lab-tabs .nav-link {
    width: 230px !important;
    padding: 12px 16px !important;
}

.red-team-title {
    font-size: 12px;
    font-weight: 600;
}

.red-team-subtitle {
    font-size: 20px;
    font-weight: 600;
}

.redcard-title {
    font-size: 15px;
    color: var(--theme-color);
    font-weight: 500;
}

.redcard-subtitle {
    font-size: 14px;
    color: var(--secondary-font);
}

.redteam-info {
    font-size: 14px;
    height: 147px;
}

.red-team-card {
    padding: 30px;
    padding-top: 20px;
    background-color: #131C29;
    border: 1px solid rgba(164, 177, 205, 0.3);
    transition: .3s;

    &:hover {
        border-color: var(--theme-color);
        box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.3);
    }
}

.red-team-card .border-top {
    border-top: 1px solid rgba(164, 177, 205, 0.3) !important;
}

.redteamimg img {
    height: 40px;
    width: 40px;
}

.redteamprofile {
    height: 80px;
    width: 80px;
    transform: translate(25%, -50%);
    border: 6px solid #131C29;
    border-radius: 50px;
}

.redteamprofile img {
    border-radius: 50px;
}

details {
    transition: all 0.3s;
    transition-timing-function: linear;
    overflow: hidden;
    color: var(--secondary-font);

    &[open] {

        & summary {

            &::after {
                transform: rotate(-135deg);
            }
        }
    }

    & summary {
        position: relative;
        margin-bottom: 0;
        font-size: 14px;
        list-style: none;

        &::after {
            content: '';
            position: absolute;
            border: 2px solid var(--secondary-font);
            border-left: none;
            border-top: none;
            left: auto;
            right: 16px;
            height: 8px;
            width: 8px;
            transform: rotate(45deg);
            transition: all var(--transition-speed);
        }
    }

    .content {
        padding-top: 10px;
        font-size: 14px;
        color: var(--secondary-font);
    }

    p {
        margin: 0;
    }

    &:hover {
        cursor: pointer;
    }
}

.getteam-img {
    position: relative;

    &::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.80));
    }
}

.lab-icn {
    height: 55px;
    width: 55px;
    background-color: #131C29;
    border-radius: 50px;
}

.lab-icn svg {
    color: var(--theme-color);
    height: 30px;
    width: 30px;
}

.text-labs {
    font-size: 14px;
    color: var(--theme-color);
}

/* lab  end*/

/* company start */

.gamer-imgs {
    height: 300px;
    overflow: hidden;
}

.gamer-imgs img {
    transition: .3s;
}

.gamer-imgs:hover img {
    scale: 1.2;
}

.card-design p {
    color: var(--secondary-font) !important;
}

.flag-img {
    height: 60px;
    width: 60px;
    border-radius: 50px;
    overflow: hidden;
}

.flag-sub-title {
    margin-top: 10px !important;
    font-size: 18px !important;
}

.flag-title {
    font-size: 14px !important;
}

/* company end */

/* store start */

.product-img {
    height: 410px;
    width: 100%;
    display: inline-block;
}

.product_name a {
    font-size: 32px;
    color: var(--primary-font);
    font-weight: 600;
    font-family: var(--fontmohave);
    transition: .3s;
}

.product-detail:hover .product_name a {
    color: var(--theme-color);
}

.email-input input {
    width: 780px !important;
    padding: 16px 60px 16px 38px !important;
    outline: none !important;
    color: var(--secondary-font);
    background-color: transparent;
    border: 1px solid var(--theme-color);
    box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.3);

    &:focus {
        box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.5);
    }
}

.email-input .arrow-input {
    position: absolute;
    top: 50%;
    right: 22%;
    transform: translateY(-50%);
    color: var(--theme-color) !important;
}

.email-input .arrow-input svg {
    height: 20px;
    width: 20px;
    color: var(--secondary-font);
}


@media screen and (max-width:991px) {
    .email-input input {
        width: 100% !important;
    }

    .youtube-video {
        width: 100%;
    }
}

.swag-section {
    padding: 100px 0px;
}

.products-name {
    font-size: 28px;
    font-weight: 600;
}

.product-des {
    font-size: 14px;
}

.products-price {
    color: var(--theme-color);
    font-weight: 800;
}

.products-img {
    height: 420px;
    width: 100%;
    overflow: hidden;
}

.mainproduct-img {
    height: 680px;
    width: 100%;
    overflow: hidden;
}

.products-img a img,
.mainproduct-img a img {
    transition: .3s;
}

.products-img a:hover img,
.mainproduct-img a:hover img {
    scale: 1.1;
}

.label-currency {
    font-size: 12px;
}

.label-types label,
.value-types label {
    border: 1px solid var(--theme-color) !important;
    border-radius: 0px !important;
    color: var(--theme-color) !important;
    padding: 14px 18px;
    width: 100%;
}

.label-types input:checked+label,
.value-types input:checked+label {
    background-color: var(--theme-color) !important;
    color: var(--primary-font) !important;
}



#products-slider .owl-dots {
    text-align: center;
}

#products-slider .owl-dots .owl-dot {
    height: 15px;
    width: 15px;
    background-color: rgba(47, 224, 215, 0.2);
    border-radius: 50px;
    margin: 0px 8px;
}

#products-slider .owl-dots .owl-dot.active {
    background-color: var(--theme-color);
    box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.3);
}

/* store end */

/* features start */

.cover-card {
    border: 1px solid var(--theme-color);
    box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.3);
    transition: .3s;
    height: 580px;

    &:hover {
        box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.5);
    }
}

.cover-card .cover-img {
    width: 420px;
    max-height: 290px;
}

@media screen and (max-width:768px) {
    .cover-card .cover-img {
        width: 100%;
        max-height: auto;
    }

}

.trainig-card {
    border: 1px solid var(--theme-color);
    box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.3);
    transition: .3s;

    &:hover {
        box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.5);
    }
}

.training-icon {
    height: 60px;
    width: 60px;
    background-color: var(--theme-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.training-icon svg {
    height: 30px;
    width: 30px;
    color: var(--primary-font);
}

.training-img {
    width: 290px;
}

.training-subtitle {
    height: 144px;
}

.skill-title {
    padding: 14px 15px 14px 18px;
    color: var(--primary-font);
    background-color: var(--theme-color);
    transition: .3s;
    position: relative;

    &::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-top: 15px solid var(--theme-color);
    }
}

.skill-card {
    margin-top: 5px;
    padding: 15px 20px;
    color: var(--secondary-font);
    transition: .3s;
    background-color: #131C29;
    border: 1px solid rgba(164, 177, 205, 0.3);
    height: 450px;
}

.skill-card p {
    padding: 2px 0px;
    font-size: 18px;
}

.skill-cards:hover .skill-title,
.skill-cards:hover .skill-card {
    box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.3);
    border-color: var(--theme-color);
}

.access-title {
    font-size: 55px !important;
}

@media screen and (max-width:768px) {
    .access-title {
        font-size: 50px !important;
    }
}

.access-title span {
    color: var(--theme-color);
}

.access-increment {
    font-size: 28px;
    color: var(--theme-color);
    font-weight: 600;
}

.access-subtitle {
    font-size: 14px;
    color: var(--secondary-font);
}

.access-bg {
    background: url(../image/gamer1.jpg);
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 4;

    &::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: -2;
    }
}

.client-sliders {
    padding: 60px 80px;
    background-color: #131C29;
    border: 1px solid var(--theme-color);
    box-shadow: 0px 0px 40px rgba(70, 254, 246, 0.4);
}

.client-quote {
    color: var(--secondary-font);
    font-size: 18px;
}

.client-img {
    height: 50px;
    width: 50px;
    border-radius: 50px;
}

.client-img img {
    border-radius: 50px;
}

.client-designation {
    font-size: 14px;
}


/* features end */