@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@100;300;500;600;700;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;600;800;900&display=swap');


html,
body {
    padding: 0;
    margin: 0;
    background-color: #000000;
    font-family: 'Inter', sans-serif !important;
    transition: background 1s ease-in-out;
}


.opacity-50 {
    opacity: 0.5
}



/*
html,
body {
    padding: 0;
    margin: 0;    
    background-color: #000;
    font-family: 'Hanken Grotesk', sans-serif !important;
}
*/

/*========== VARIABLES CSS ==========*/
:root {
    /*========== Colors ==========*/
    --theme-yellow1: linear-gradient(to right, #ffa000, #ff6000);
    --theme-yellow2: #ff6000;
    --theme-dark1: #343233;
    --theme-dark2: #1e1d1d;
    --gray-text: #858585;
    --text-white1: #fff;
    --black-color:#000;
    --body-font: "Hanken Grotesk", sans-serif;
    --heading-font: "Hanken Grotesk", sans-serif;
}

p {
    opacity: 0.7;
    font-weight: 300;
    font-size: 16px;
}


@media (min-width: 1450px) {
    .container {
        max-width: 1500px !important;
    }
}

/* font-family: 'Oswald', sans-serif;
font-family: 'Roboto', sans-serif;
font-family: 'Quicksand', sans-serif; */

.bg-white {
    background-color: #fff !important;
}

.theme-yellow1 {
    background-color: var(--theme-yellow1) !important;
}

.theme-yellow2 {
    background-color: var(--theme-yellow2) !important;
}

.text-yellow2 {
    color: var(--theme-yellow2) !important;
}

.text-yellow1 {
    color: var(--theme-yellow1);
}

.w-60 {
    width: 60%;
}

.w-40 {
    width: 40%;
}

.min-h-220 {
    min-height: 220px !important;
}


.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #242525;
    transition: background-color 2s ease-in-out;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 999999
}

.loader-text {
    font-size: 3rem;
    color: #ffffff;
    transition: ease-in all 0.3s;
}

#loader.fade-out {
    opacity: 0;
}

.page-loader {
    width: 100%;
    height: 100vh;
    position: absolute;
    background: #272727;
    z-index: 99999999;
    display: flex;
    align-items: center;
    justify-content: center
}

.page-loader .txt {
    color: #666;
    text-align: center;
    top: 0%;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    font-weight: bold;
    line-height: 1.5;
}

/* SPINNER ANIMATION */
.spinner {
    position: relative;

    width: 80px;
    height: 80px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1s infinite ease-in-out;
    animation: sk-scaleout 1s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

.case_studies_btn {
    position: relative;
    display: flex;
    align-items: center;
    height: 50px;
    color: #fff;
    transition: ease-in all 0.3s;
    width: fit-content
}

.case_studies_btn::before {
    background: linear-gradient(to left, #ffa000, #ff6000);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 50px;
    width: 62px;
    padding: 10px;
    transition: ease-in all 0.3s
}

.case_studies_btn span {
    padding-left: 25px;
    transition: ease-in all 0.3s;
    position: relative;
    z-index: 999
}

.case_studies_btn:hover {
    color: #fff;
    transition: ease-in all 0.3s;
  
}

.case_studies_btn:hover::before {
    width: 110%;
    transition: ease-in all 0.3s
}



.light-btn {
    background-color: var(--theme-yellow2);
    padding: 12px 40px;
    color: var(--theme-dark2);
    font-family: var(--heading-font);
    font-size: 18px;
    border-radius: 0px;
    margin-top: 5px;
    display: inline-block;
    transition: ease-in all 0.3s;
}

.light-btn:hover {
    border-radius: 0px 25px 0 0;
    transition: ease-in all 0.3s;
    color: var(--theme-dark2);
    background-color: var(--theme-yellow1);
}

.light-btn2 {
    background-color: var(--theme-yellow1);
    padding: 15px 50px;
    color: var(--theme-dark2);
    font-family: var(--heading-font);
    font-size: 18px;
    border-radius: 0px;
    margin-top: 5px;
    display: inline-block;
    transition: ease-in all 0.3s;
}

.light-btn2:hover {
    border-radius: 0px 25px 0 0;
    transition: ease-in all 0.3s;
    color: var(--theme-dark2);
    background-color: var(--theme-yellow2);
}

.dark-btn {
    background-color: var(--theme-dark1);
    padding: 15px 50px;
    color: var(--theme-yellow2);
    font-family: var(--heading-font);
    font-size: 18px;
    border-radius: 0px;
    margin-top: 5px;
    display: inline-block;
    transition: ease-in all 0.3s;
}

.dark-btn:hover {
    border-radius: 0px 25px 0 0;
    transition: ease-in all 0.3s;
    color: var(--theme-yellow2);
    background-color: var(--theme-dark2);
}

.dark-btn2 {
    background-color: var(--theme-dark2);
    padding: 15px 50px;
    color: var(--theme-yellow1);
    font-family: var(--heading-font);
    font-size: 18px;
    border-radius: 0px;
    margin-top: 5px;
    display: inline-block;
    transition: ease-in all 0.3s;
}

.dark-btn2:hover {
    border-radius: 0px 25px 0 0;
    transition: ease-in all 0.3s;
    color: var(--theme-yellow1);
    background-color: var(--theme-dark1);
}

body {
    overflow-x: hidden;
}

li {
    list-style: none;
}

.grid {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9;
    pointer-events: none;
}

.grid .grid_item {
    border-right: 1px solid rgba(239, 218, 185, 0.2);
    height: 100%;
    height: 100vh;
}

.grid_item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    height: 200px;
    width: 1px;
    background-color: #fff;
    animation-delay: 5s;
    opacity: 0.5;
}

.grid .grid_item.grid1::before {
    -webkit-animation: grid_move 5s infinite linear;
    animation: grid_move 5s infinite linear;
}

.grid .grid_item.grid2::before {
    -webkit-animation: grid_move 5s infinite linear;
    animation: grid_move 5s infinite linear;
}

.grid .grid_item.grid3::before {
    -webkit-animation: grid_move 6s infinite linear;
    animation: grid_move 6s infinite linear;
}

.grid .grid_item.grid4::before {
    -webkit-animation: grid_move 7s infinite linear;
    animation: grid_move 7s infinite linear;
}

.grid .grid_item.grid5::before {
    -webkit-animation: grid_move 5s infinite linear;
    animation: grid_move 5s infinite linear;
}

.grid .grid_item.grid6::before {
    animation-delay: 1s;
    -webkit-animation: grid_move 6s infinite linear;
    animation: grid_move 6s infinite linear;
}

@keyframes grid_move {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(100vh);
    }
}

.pl-170 {
    padding-left: 170px !important;
}

.pr-170 {
    padding-right: 170px !important;
}

ul {
    padding-left: 0;
}

.main_nav_sec .navbar {
    padding-left: 0;
    padding-right: 0;
}

/****header******/
.review_link {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    z-index: 99;
}

.review_icon {
    position: relative;
}

.big_logo {
    width: 50%;
}

.header_icon {
    display: none;
}

.fixed .header_icon {
    display: block;
    width: 100px;
}

.fixed .header_logo {
    display: none;
}

.fixed .navbar-nav {
    opacity: 1;
    transition: ease-in all 1s;
}

.navbar-nav {
    transition: ease-in all 1s;
}

.fixed {
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    left: 0 !important;
    z-index: 9999 !important;
    background-color: rgb(0 0 0 / 25%);
    backdrop-filter: blur(7px);
    padding: 12px 0px;
}

.fixed .logo img {
    width: 110px;
}

.app_version {
    font-size: 12px;
    color: var(--text-white1);
}

.top_header_section {
    background-color: var(--theme-dark2);
    padding: 7px;
    position: relative;
    z-index: 9;
}

.top_header_section ul {
    list-style: none;
}

.top_social_medi ul li a {
    color: var(--text-white1);
    font-size: 18px;
}

.top_social_medi ul li {
    margin: 7px 0;
}

.top_social_medi ul {
    flex-direction: column;
}

.top_social_medi {
    position: fixed;
    bottom: 70px;
    left: 0;
    z-index: 9999;
    background-color: #1e1d1d;
    padding: 10px;
    border-left: 3px solid var(--theme-yellow2);
}

.iso_sec {
    font-size: 15px;
    color: var(--text-white1);
}

.iso_sec a {
    color: var(--text-white1);
    display: flex;
    align-items: center;
}

.iso_sec a svg {
    margin-right: 7px;
    font-size: 20px;
}

.iso_sec a:hover {
    color: var(--text-white1);
    opacity: 0.5;
}

.top_right_content ul li a {
    color: var(--text-white1);
    font-size: 15px;
    margin-left: 15px;
    display: flex;
    align-items: center;
}

.top_right_content ul li a i {
    font-size: 18px;
    padding-right: 5px;
}

.logo img {
    width: 150px;
}

.top_right_content ul li:first-child {
    display: flex;
    align-items: center;
}

.top_right_content ul li:first-child svg {
    margin-right: 7px;
    font-size: 20px;
}

/******************Big Menu ***************/

.menu_open {
    position: absolute;
    right: 0;
    height: 45px;
    width: 45px;
    border: none;
    line-height: 15px;
    color: #fff;
    background: linear-gradient(to right, #ffa000, #ff6000);
    border-radius: 2px;
    box-shadow: 4px 7px 14px rgb(0 0 0 / 64%);
    font-size: 15px;
    letter-spacing: 1px;
}

.main_nav_sec {
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 9;
    transition: ease-in all 0.3s;
    background-color: var(--black-color);
    backdrop-filter: blur(21px);
    position: absolute;
    z-index: 99999
}
.main_nav_sec::before{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height:0%;
    transition: 0.5s;
    background-color: #fff;
    box-shadow: 0 0 10px #ccc;
}
.main_nav_sec.fixed::before{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    background-color: #fff;
    box-shadow: 0 0 10px #ccc;
}
.main_nav_sec.fixed .navbar-expand-lg .navbar-nav .nav-link{
    color: #000;
}
.main_nav_sec .main_nav_sec ul li a {
    color: var(--text-white1);
    font-family: var(--body-font);
    font-size: 15px;
    letter-spacing: 1px;
    padding: 0px 15px !important;
    position: relative;
}

.main_nav_sec ul li a:hover {
    color: #fff;
}
.navbar-expand-lg .navbar-nav .nav-link{
    color: #fff;
}

.main_nav_sec ul li.active a {
    color: #fff;
}

.contact_page_form_design .footer_contact_form_sec {
    background-color: var(--theme-dark1);
}

.contact_page_form_design .left_foo_con_sec,
.contact_page_form_design .single_persion_con {
    background-color: #fff;
}

.contact_page_form_design .colorLine {
    display: none;
}

#nprogress .bar {
    background: var(--theme-yellow2) !important;
    color: var(--theme-yellow2) !important;
    height: 6px !important;
    z-index: 9999 !important;
}

.career_details_show a.article_read_more {
    background-color: var(--theme-dark1) !important;
    border: 2px solid var(--theme-yellow1);
    color: #fff;
}

.single_job_card .card {
    background-color: var(--theme-dark2);
    color: var(--text-white1);
}

.description_card_body h4 {
    font-size: 18px;
    color: var(--theme-yellow2);
}

.description_card_body ul li {
    list-style: circle;
    line-height: 35px;
}

.description_card_body ul {
    padding-left: 20px;
}