@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px "Montserrat", sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 500;
    line-height: 1.2;
}

/***** Font Files *****/

@font-face {
    font-family: 'DRAGON HUNTER';
    src: url('../fonts/DRAGONHUNTER.otf');
    font-display: swap;
}

/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'DRAGON HUNTER';
    font-size: 55px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: 'DRAGON HUNTER';
    font-size: 55px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: 'DRAGON HUNTER';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'DRAGON HUNTER';
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'DRAGON HUNTER';
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'DRAGON HUNTER';
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}

/* project css start */

.banner {
    background: #EEEEEE;
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.banner>img.bg_img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    left: 0;
    top: 0;
    z-index: -3;
    filter: contrast(.4) opacity(.3);
}

header {
    position: fixed;
    width: 100%;
    z-index: 10;
    padding: 5px 0px;
    opacity: 0;
    top: -20px;
}

header>.container-fluid {
    padding: 0 40px;
}

header .search_br {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 23px;
}

header .search_br>i {
    color: #000;
    font-size: 16px;
}

header .search_br>span {
    font-family: 'DRAGON HUNTER';
    font-size: 14px;
    line-height: 1;
    display: block;
}

.banner>img.globe_imgg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 32%;
    z-index: -1;
}

header a.logo_here {
    display: block;
}

header a.logo_here>img {
    margin: 0 auto;
    display: block;
    width: 90px;
}

header:after {
    position: absolute;
    content: "";
    background: #0000002b;
    width: 45%;
    left: 0;
    bottom: 30px;
    z-index: -1;
    height: 1px;
}

header:before {
    position: absolute;
    content: "";
    background: #0000002b;
    width: 45%;
    right: 0;
    bottom: 30px;
    z-index: -1;
    height: 1px;
}

.banner>.container-fluid {
    padding: 0 40px;
}

.banner .banner_wrpr h1 {
    font-size: 105px;
    color: #262626;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}

.banner .banner_wrpr h2 {
    font-size: 16px;
    color: #262626;
    line-height: 1.2;
    margin-bottom: 10px;
}

.banner .banner_wrpr p {
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    color: #000000;
    position: relative;
    padding-left: 40px;
    font-weight: 400;
}

.banner .banner_wrpr p:after {
    position: absolute;
    content: "";
    background: #000;
    width: 35px;
    height: 1px;
    left: 0;
    top: 10px;
}

.banner .banner_wrpr span.dotsb {
    border: 5px solid #000;
    width: 25px;
    height: 25px;
    display: flex;
    border-radius: 50%;
    margin-left: 40px;
    margin-top: 10px;
}

.banner .banner_wrpr ul {
    margin: 0;
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin-left: auto;
}

.banner .banner_wrpr ul>li {
    color: #262626;
    font-size: 40px;
    font-family: 'DRAGON HUNTER';
    letter-spacing: 6px;
    border-bottom: 1px solid;
    padding-bottom: 20px;
}

.banner .banner_wrpr .row.justify-content-between {
    margin-top: 200px;
}

.banner .banner_wrpr {
    margin-top: 280px;
    position: relative;
}

.grid-overlay div {
    background: rgb(78 78 78 / 80%);
    opacity: 1;
    border-radius: 5px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    pointer-events: none;
    position: absolute;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.banner .banner_wrpr>.ban_wid {
    position: absolute;
    left: -10px;
    top: 55px;
    gap: 15px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.banner .banner_wrpr>.ban_wid>.bans_counter {
    display: flex;
    align-items: center;
    gap: 2px;
}

.banner .banner_wrpr>.ban_wid>.bans_counter>* {
    color: #262626;
    font-family: 'DRAGON HUNTER';
    font-size: 20px;
}

.banner .banner_wrpr>.ban_wid>.bans_counter>.curr_slids {
    font-size: 30px;
}

.slick-prev:before {
    display: none;
}

.slick-next:before {
    display: none;
}

.banner .banner_wrpr>.ban_wid>.bans_btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

.banner .banner_wrpr>.ban_wid>.bans_btns>* {
    clip-path: polygon(0 0, 100% 50%, 0 100%, 15% 50%);
    background: #000;
    width: 10px;
    height: 10px;
    cursor: pointer;
}

.banner .banner_wrpr>.ban_wid>.bans_btns .nextbtn {
    transform: rotate(180deg);
}

.everything_stays {
    position: relative;
    padding: 100px 0px;
    z-index: 1;
    height: 100vh;
    display: flex;
    align-items: center;
}

.everything_stays>img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -1;
    filter: brightness(.4);
}

.everything_stays .everything_stays_textt>h2 {
    font-size: 100px;
    color: #c3c3bb;
    line-height: 1.2;
    margin-bottom: 0;
}

.everything_stays .row {
    align-items: center;
}

.everything_stays .everything_stays_imgg>img {
    width: 100%;
}

.gravity_sec {
    position: relative;
    height: 100vh;
    z-index: 1;
    display: flex;
    align-items: center;
    text-align: center;
}

.gravity_sec>img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transform: rotateY(180deg);
    object-position: center 40%;
    z-index: -1;
}

.gravity_sec h2 {
    color: #fff;
    margin: 0;
    line-height: 1;
    font-size: 110px;
}

.grav_text {
    transform-origin: center center;
    will-change: transform, opacity;
}

.logo_sec {
    padding: 100px 0px;
    background: #000;
    width: 100%;
    height: 100vh;
    margin-top: -100vh;
}

.logo_sec .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.shifting_sec {
    position: relative;
    height: 100vh;
    width: 100%;
}

.logo_sec img.big_logo {
    width: 100%;
    margin: 0 auto;
    display: block;
    transform: scale(0);
}

.shifting_sec {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #232323;
    z-index: 1;
    overflow: hidden;
}

.shifting_sec>img {
    position: absolute;
    mix-blend-mode: color-dodge;
    filter: grayscale(1);
}

.shifting_sec>img.globeleft {
    left: -100px;
    width: 350px;
    top: -100px;
}

.shifting_sec>img.globeright {
    right: -100px;
    width: 350px;
    top: -100px;
}

.shifting_sec>img.globebottom {
    width: 1000px;
    bottom: -500px;
}

.shifting_sec h2 {
    text-align: center;
    color: #c4c4bc;
    font-size: 110px;
    line-height: 1;
    margin: 0;
}

.never_for_sec {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.never_for_sec>img {
    width: 100%;
    position: absolute;
    z-index: -1;
    height: 100%;
    object-fit: cover;
}

.never_for_sec h2 {
    margin: 0;
    text-align: center;
    font-size: 75px;
    color: #c1c1b9;
}

.inner_circle_sec {
    position: relative;
    padding: 80px 0px;
    background: #eeeeee;
    z-index: 1;
    height: 100vh;
    display: flex;
    align-items: center;
}

.inner_circle_sec>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    filter: brightness(0.5);
    object-position: top;
}

.inner_circle_sec h2 {
    text-align: center;
    color: #1A1A1A;
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.inner_circle_sec .inner_circle_wrpr {
    position: relative;
}

.inner_circle_sec .inner_circle_wrpr>a.inner_circle_box {
    position: relative;
    width: 100%;
    max-width: 380px;
    border: 1px solid #D3D3D3;
    padding: 20px;
    border-radius: 20px;
    z-index: 1;
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.inner_circle_sec .inner_circle_wrpr>a.inner_circle_box>img.card_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    padding: 20px;
    border-radius: 40px;
}

.inner_circle_sec .inner_circle_wrpr>a.inner_circle_box>img.main_card {
    width: 280px;
    height: 290px;
    object-fit: cover;
    border-radius: 20px;
    margin-top: 30px;
}

.inner_circle_sec .inner_circle_wrpr>a.inner_circle_box h2 {
    margin: 0;
    font-size: 38px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 30px;
}

.inner_circle_sec .inner_circle_wrpr {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -100px;
    perspective: 1000px;
}

.inner_circle_sec .inner_circle_wrpr>a.inner_circle_box {
    transition: transform 0.6s ease, z-index 0.6s ease;
    transform-origin: center center;
    cursor: pointer;
}

.inner_circle_sec .inner_circle_wrpr>a.box1 {
    transform: translateX(380px);
    z-index: 1;
}

.inner_circle_sec .inner_circle_wrpr>a.box2 {
    transform: rotate(0deg) rotateY(0deg);
    z-index: 2;
}

.inner_circle_sec .inner_circle_wrpr>a.box3 {
    transform: translateX(-380px);
    z-index: 1;
}

.inner_circle_sec .inner_circle_wrpr:hover>a.box1 {
    transform: rotate(-45deg) rotateX(20deg) rotateY(30deg) translateX(120px);
}

.inner_circle_sec .inner_circle_wrpr:hover>a.box2 {
    transform: rotate(-45deg) rotateX(20deg) rotateY(30deg) translate(0px, -50px);
}

.inner_circle_sec .inner_circle_wrpr:hover>a.box3 {
    transform: rotate(-45deg) rotateX(20deg) rotateY(30deg) translate(-140px, -150px);
}

footer {
    position: relative;
    height: 100vh;
    background: #eeeeee;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

footer>img {
    width: 100%;
    position: absolute;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    object-position: top;
    z-index: -1;
    filter: brightness(0.5);
}

footer h2 {
    text-align: center;
    color: #1A1A1A;
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 80px;
}

.inner_circle_sec form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    position: absolute;
    width: 100%;
    bottom: 25%;
}

.inner_circle_sec form>input {
    width: 80%;
    background: #E6E6E6;
    border: 0;
    height: 80px;
    padding: 0 30px;
    border-radius: 50px;
    font-size: 18px;
    font-family: 'Montserrat';
    color: #1D1D1D;
}

.inner_circle_sec form>input::placeholder {
    color: #1D1D1D;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}

.inner_circle_sec form>button {
    width: 20%;
    background: #232323;
    color: #fff;
    font-size: 20px;
    border: 0;
    text-transform: uppercase;
    height: 80px;
    border-radius: 60px;
}

body::-webkit-scrollbar-track {
    background-color: #fff;
}

body::-webkit-scrollbar {
    width: 7px;
    background-color: #fff;
}

body::-webkit-scrollbar-thumb {
    background-color: #000000;
}

.word {
    overflow: hidden;
    padding-bottom: 0.1em;
    margin-bottom: -0.1em;
    transform-origin: bottom;
}

.banner h1 {
    overflow: hidden;
}

.banner h1 .char {
    display: inline-block;
}

.never_for_sec h2 {
    overflow: hidden;
}

footer {
    overflow: hidden;
}

footer h2 {
    opacity: 0;
}

.banner_wrpr {
    opacity: 0;
    transform: translateY(160px);
}

/*  */

.preloader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 300px;
}

.preloader-logo {
    width: 150px;
    opacity: 1;
}

.preloader-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.progress-bar-wrap {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.15);
    overflow: hidden;
    border-radius: 10px;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: #fff;
    transform-origin: left;
}

.percent-text {
    font-size: 25px;
    color: #fff;
    font-family: 'DRAGON HUNTER';
    letter-spacing: 3px;
    align-self: center;
    line-height: 1;
    font-weight: 600;
    margin-top: 10px;
}

/*  */

header.header_fixed .search_br>i {
    color: #fff;
}

header.header_fixed .search_br span {
    color: #fff;
}

.header_fixed:before {
    background: #ffffff57;
}

.header_fixed:after {
    background: #ffffff57;
}

.inner_circle_sec .col-lg-12 {
    position: relative;
}