/* ::selection {
    background: #82a3ff;
    color: #000;
} */


/* Loader Animation */

.loader {
    position: fixed;
    height: 100vh;
    width: 100%;
    background: black;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s ease, visibility .6s ease;
}

.loader_container svg {
    overflow: visible;
}

.loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.book1 {
    animation: book1-anim 2.25s infinite ease-in-out;

}

.book2 {
    animation: book2-anim 2.25s infinite ease-in-out;
}

.book3 {
    animation: book3-anim 2.25s infinite ease-in-out;
}

.book4 {
    animation: book4-anim 2.25s infinite ease-in-out;
}

.book5 {
    animation: book5-anim 2.25s infinite ease-in-out;
}

.book6 {
    animation: book6-anim 2.25s infinite ease-in-out;
}

@keyframes book1-anim {
    0% {
        transform: translateY(0px);
    }

    14.28% {
        transform: translateY(-30px);
    }

    28.57% {
        transform: translateY(0px);
    }

    42.85% {
        transform: translateY(0px);
    }

    57.14% {
        transform: translateY(0px);
    }

    71.42% {
        transform: translateY(0px);
    }

    85.71% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes book2-anim {
    0% {
        transform: translateY(0px);
    }

    14.28% {
        transform: translateY(0px);
    }

    28.57% {
        transform: translateY(-30px);
    }

    42.85% {
        transform: translateY(0px);
    }

    57.14% {
        transform: translateY(0px);
    }

    71.42% {
        transform: translateY(0px);
    }

    85.71% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes book3-anim {
    0% {
        transform: translateY(0px);
    }

    14.28% {
        transform: translateY(0px);
    }

    28.57% {
        transform: translateY(0px);
    }

    42.85% {
        transform: translateY(-30px);
    }

    57.14% {
        transform: translateY(0px);
    }

    71.42% {
        transform: translateY(0px);
    }

    85.71% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes book4-anim {
    0% {
        transform: translateY(0px);
    }

    14.28% {
        transform: translateY(0px);
    }

    28.57% {
        transform: translateY(0px);
    }

    42.85% {
        transform: translateY(0px);
    }

    57.14% {
        transform: translateY(-30px);
    }

    71.42% {
        transform: translateY(0px);
    }

    85.71% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes book5-anim {
    0% {
        transform: translateY(0px);
    }

    14.28% {
        transform: translateY(0px);
    }

    28.57% {
        transform: translateY(0px);
    }

    42.85% {
        transform: translateY(0px);
    }

    57.14% {
        transform: translateY(0px);
    }

    71.42% {
        transform: translateY(-30px);
    }

    85.71% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes book6-anim {
    0% {
        transform: translateY(0px);
    }

    14.28% {
        transform: translateY(0px);
    }

    28.57% {
        transform: translateY(0px);
    }

    42.85% {
        transform: translateY(0px);
    }

    57.14% {
        transform: translateY(0px);
    }

    71.42% {
        transform: translateY(0px);
    }

    85.71% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* End Loader Animation */

/* Fonts */


/* ///////////
Poppins
////////// */

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Regular.woff2') format('woff2');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Medium.woff2') format('woff2');
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-SemiBold.woff2') format('woff2');
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Bold.woff2') format('woff2');
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}


/* ///////////
Reckless Neue
////////// */

@font-face {
    font-family: 'Reckless Neue';
    src: url('../fonts/reckless-neue/RecklessNeue-SemiBold.woff2') format('woff2');
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}


/* ///////////
Heading Now Trial
////////// */

@font-face {
    font-family: 'Heading Now Trial';
    src: url('../fonts/heading-now/HeadingNowTrial-35Medium.woff2') format('woff2');
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

img {
    display: flex;
    width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--black-color);
}

body {
    font-family: 'Poppins';
    background: var(--body-color);
}

:root {
    --black-color: #000;
    --theme-blue: #20409A;
    --body-color: #040603;
    --white: #fff;
    --text-white: #ffffff;
    --dark-red: #6C0A0D;
}


/* ///////////
Heading
////////// */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-white);
    text-transform: capitalize;
    font-style: normal;
    font-family: "Reckless Neue";
    font-weight: 600;
}

h1 {
    text-align: center;
    font-size: 55px;
    line-height: 60px;
}

h2 {
    font-size: 45px;
    line-height: 60px;
}

p {
    color: var(--text-white);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.container {
    max-width: 1420px;
    padding: 0 50px;
    width: 100%;
    margin: 0 auto;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all ease .5s;
    padding: 25px 0;
}

#header.active {
    background: #0b0b0b;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    padding: 15px 0;
}

#header.active .logo {
    width: 180px;
}

#header.hide {
    transform: translateY(-100%);
}

.logo {
    display: flex;
    width: 230px;
    transition: all ease .5s;
}

.logo.for_mob {
    display: none;
}

.logo a {
    width: 100%;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 85px;
    justify-content: center;
}

.menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.menu ul li a {
    color: var(--text-white);
    font-size: 20px;
    font-weight: 400;
    line-height: 18px;
    text-transform: capitalize;
    padding: 10px 8px;
    transition: all ease .5s;
    position: relative;
}

.menu ul li a::after {
    content: "";
    width: 0%;
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 2px;
    background: var(--dark-red);
    transition: all ease .5s;
}

.menu ul li a.active::after {
    width: 100%;
}

.menu ul li a:hover::after {
    width: 100%;
}

/* From Uiverse.io by JulanDeAlb */

.hamburger {
    cursor: pointer;
    display: none;
    z-index: 999;
}

.hamburger input {
    display: none;
}

.hamburger svg {
    /* The size of the SVG defines the overall size */
    height: 5em;
    /* Define the transition for transforming the SVG */
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
    fill: none;
    stroke: white;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    /* Define the transition for transforming the Stroke */
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
    stroke-dasharray: 12 63;
}

.hamburger input:checked+svg {
    transform: rotate(-45deg) translateY(3px);
}

.hamburger input:checked+svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
}

/* Banner */
.hero--sec {
    padding: 290px 0 0;
    min-height: 100vh;
    background: url('../images/banner-bg.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero_content {
    max-width: 716px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero_content h1 {
    margin-bottom: 20px;
}

.hero_content p {
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    text-transform: capitalize;
    margin-bottom: 25px;
}

.cta_btn {
    display: inline-flex;
    padding: 15px 39px;
    background: var(--dark-red);
    color: var(--text-white);
    font-family: "Poppins";
    font-size: 20px;
    font-weight: 400;
    line-height: 18.7px;
    overflow: hidden;
    position: relative;
}

.cta_btn:hover::before {
    width: 100%;
    transform: translateX(100%);
}

.cta_btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 10%;
    height: 100%;
    filter: blur(10px);
    transition: all ease .5s;
    transition: transform ease .5s .5s;
}

.cta_btn>span {
    display: flex;
}

.letter {
    display: inline-block;
    overflow: hidden;
    height: 1em;
}

.letter-wrap {
    display: flex;
    flex-direction: column;
    transform: translateY(0);
    transition: transform .45s cubic-bezier(.76, 0, .24, 1);
    will-change: transform;
}

.cta_btn:hover .letter-wrap {
    transform: translateY(-50%);
}


/* Expert Section */

.expert--sec {
    padding: 100px 0 100px;
    position: relative;
    z-index: 2;
}

.expert_wrapper {
    display: flex;
    gap: 30px;
}

.expert_block {
    border-radius: 15px;
    border: 1px solid #282828;
    background: #0D0D0D;
    box-shadow: 0 4px 14.4px 4px rgba(0, 0, 0, 0.05);
    padding: 22px 22px 25px;
    width: 25%;
}

.ex_ico {
    width: 63px;
    margin-bottom: 13px;
}

.expert_block h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.44px;
    text-transform: capitalize;
    margin-bottom: 4px;
}

.expert_block p {
    font-size: 14px;
    line-height: 21px;
}

.expert_bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 1156px;
    z-index: -1;
    overflow: hidden;
}

/* Release */
.release--sec {
    padding-bottom: 100px;
    position: relative;
    z-index: 3;
}

.section_head {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: space-between;
    margin-bottom: 50px;
}

.section_head::before,
.section_head::after {
    content: "";
    display: flex;
    opacity: 0.3;
    background: #FFF;
    width: 100%;
    max-width: 384px;
    height: 1px;
}

.release_img {
    width: 100%;
}

/* CTA */
.cta--sec {
    padding: 100px 0;
    background: url(../images/CTA-bg.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cta_content {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.cta_head {
    text-align: center;
    margin-bottom: 40px;
}

.cta_head p {
    font-size: 23px;
    font-weight: 700;
    line-height: 39px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.cta_head h2 {
    font-size: 70px;
    line-height: 70px;
    text-transform: math-auto;
}


/* Categories */

.category--sec {
    padding: 100px 0;
}

.category_wrapper {
    display: flex;
}

.category_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 23px;
    width: 20%;
    cursor: pointer;
}

.category_img {
    border-radius: 120px;
    background: #141414;
    width: 216px;
    height: 216px;
    position: relative;
    overflow: hidden;
    transition: all ease .5s;
}

.category_card:hover {
    .category_img {
        background: var(--dark-red);
    }

    .category_img img {
        transform: translateY(-20px);
        scale: 1.03;
    }

    .category_info p {
        transform: translateY(-5px);
    }
}

.category_img img {
    position: absolute;
    left: 0;
    top: 83px;
    bottom: 0;
    width: 124px;
    right: 0;
    margin: auto;
    transition: all ease .5s;
}

.category_info p {
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    transition: all ease .5s;
}

/* Industry */
.industries--sec {
    padding: 83px 0 0;
    position: relative;
}

.indus_ico {
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    min-height: 79px;
}

.indus_ico img {
    width: auto;
}

.industry__wrapper {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    z-index: 3;
    padding-left: 30px;
}

.indus_head {
    margin-bottom: 42px;
}

.indus_head h2 {
    margin-bottom: 5px;
    font-weight: 600;
}

.indus_head h3 {
    color: var(--text-white);
    font-size: 30px;
    font-weight: 500;
    line-height: 48px;
    text-transform: capitalize;
}

.indus_head p {
    font-size: 18px;
    line-height: 25px;
    width: 95%;
}

.indus_btm {
    display: flex;
    padding-left: 55px;
}

.industry_cards_wrap {
    display: flex;
    gap: 20px;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 58px;
    margin-left: -120px;
}

.indus__right {
    width: 52%;
    position: relative;
}

.industry_card {
    width: 22%;
    text-align: center;
    box-shadow: 13px 17px 13px #00000003, 6px 7px 9px #00000005,
        1px 1px 5px #00000005;
    background: #161616;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 34px 0 25px;
    transition: all ease 0.3s;
}

/* .industry_card:hover {
    box-shadow: -1px 10px 15px #00000030, 5px -10px 0px #00000005,
        1px 1px 5px #00000005;
} */

.industry_card p {
    color: var(--text-white);
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
}

.indus__img {
    width: 46%;
    padding-left: 115px;
    position: relative;
}

.indus__img::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 35px;
    background: url(../icons/cut-arrow.svg) no-repeat;
    background-position: center;
    background-size: contain;
    width: 165px;
    height: 128px;
}

.indus__left {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 612px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: linear-gradient(209deg, #6C0A0D 0%, #3A0002 99.12%);
    padding: 100px 0 100px 36px;
}

.indus__left h3 {
    max-width: 294px;
    font-family: "Heading Now Trial";
    font-weight: 500;
    font-size: 70px;
    line-height: 75px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}


/* Books */
.books--sec {
    background: linear-gradient(180deg, #0B0B0B 57.21%, #040603 100%);
    padding: 100px 0;
}

.bookSwiper {
    margin-bottom: 50px;
}

.books_slider {
    position: relative;
}

/* .books_slider::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, #040603 0%, rgba(0, 0, 0, 0.00) 100%);
} */

.swiper.BookSwiper {
    padding: 20px 0 60px;
}

.book_card {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .swiper.BookSwiper .swiper-slide-active .book_image {
    scale: 1.1;
} */

.book_image {
    width: 100%;
    position: relative;
    transition: all ease .5s;
}

/* .book_image::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    background-image: var(--img);
    background-size: cover;
    background-position: center;
    height: 100%;
    transform: rotateY(180deg);
    backface-visibility: hidden;
} */

.book_image img {
    filter: drop-shadow(0 30px 25px rgba(44, 44, 44, 0.45));
}

.book_image img {
    -webkit-box-reflect: below 6px linear-gradient(transparent 0%,
            rgba(255, 255, 255, 0.05) 40%,
            rgba(255, 255, 255, 0.2) 100%);
}

/* .book_image::before {
    content: "";
    position: absolute;
    right: -8px;
    top: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(to right, #555, #ddd);
    transform: rotateY(90deg);
    transform-origin: left;
} */

/* End  */


/* Testimonials */
.testimonial--sec {
    padding: 100px 0;
}

.testi_wrapper {
    display: flex;
    gap: 28px;
}

.testi_rating {
    width: 84px;
    margin-bottom: 13px;
}

.testi_card_head h3 {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 13px;
}

.testi_client_img {
    width: 60px;
}

.testi_card_head p {
    color: #767A79;
    font-size: 15px;
}

.testi_client_btm {
    display: flex;
    align-items: center;
    gap: 18px;
}

.testi_card {
    padding: 29px 38px 29px 20px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    border: 1.874px solid rgba(233, 233, 233, 0.17);
    width: 33%;
    position: relative;
}

.testi_card::after {
    content: "";
    position: absolute;
    top: 25px;
    right: 18px;
    background: url('../icons/qouted-ico.svg');
    background-position: center center;
    background-size: contain;
    width: 37px;
    height: 33px;
}

.client_info .name {
    font-size: 13px;
    line-height: 13px;
    letter-spacing: 1.405px;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.client_info .desig {
    font-size: 13px;
    line-height: 13px;
    color: #767A79;
    letter-spacing: 1.2px;
}

/* END */




/* footer */
footer {
    padding-top: 29px;
    background: url('../images/footer-bg.webp');
    background-position: center center;
    background-size: cover;
}

.footer_wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 34px;
}

.footer-logo {
    display: flex;
    width: 270px;
    margin-bottom: 24px;
}

.footer-logo a {
    width: 100%;
}

.footer_menu {
    margin-bottom: 34px;
}

.social_wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social_icon {
    display: flex;
    width: 35px;
}

.footer_copyright {
    text-align: center;
    padding: 14px 0;
    border-top: solid 1px rgb(63 63 63 / 28%);
}


/* Popup */
.popup_form {
    padding: 40px 30px 50px;
    background: #333333;
    width: 100%;
    max-width: 650px;
    border-radius: 16px;
    cursor: auto !important;
}

.contact_popup {
    position: fixed;
    top: 0;
    left: 0;
    cursor: url("../icons/cross-icon.svg") 16 16, auto;
    width: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #000000d9;
    backdrop-filter: blur(4px);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all ease .5s;
}

.contact_popup.open {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
}

.popup_close_btn {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    visibility: hidden;
}

.popup_head {
    margin-bottom: 20px;
}

.form_row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.popup_form h2 {
    font-family: "Reckless Neue";
    font-size: 40px;
}

.popup_form * {
    font-family: 'Poppins';
}

.popup_form textarea,
.popup_form select,
.popup_form input {
    height: 50px;
    padding: 5px 15px;
    border: none;
    outline: none;
    background: #ffffff;
    font-family: 'Poppins';
    width: 100%;
    border-radius: 6px;
    transition: all ease .7s;
}

.popup_form textarea:focus,
.popup_form select:focus,
.popup_form input:focus {
    box-shadow: 0px 1px 8px 2px #ff3a40;
}

.popup_form textarea {
    height: 200px;
    padding: 15px 15px;
    margin-bottom: 20px;
}

.popup_form select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url(../icons/chevron-down.svg);
    background-size: 15px;
    background-position: 97%;
    background-repeat: no-repeat;
}

.form_selecter {
    margin-bottom: 15px;
}

.form_column {
    width: 50%;
}

.popup_btn {
    outline: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    display: inline-flex;
    padding: 15px 39px;
    background: var(--dark-red);
    color: var(--text-white);
    font-family: "Poppins";
    font-size: 20px;
    font-weight: 400;
    line-height: 18px;
    transition: all ease .45s;
}

.popup_btn:hover {
    background: #7c1114;
}


/* Responsive Media Queries */
@media screen and (max-width: 1620px) {
    .indus__left h3 {
        max-width: 194px;
        font-size: 50px;
        line-height: 65px;
    }

}

@media screen and (max-width: 1440px) {
    .indus__img::after {
        left: 70px;
        width: 90px;
        height: 98px;
        bottom: -50px;
        rotate: -60deg;
    }

    .indus__left h3 {
        max-width: 80%;
        font-size: 40px;
        line-height: 48px;
    }

    .indus__left {
        justify-content: flex-end;
        padding: 100px 0 24px 36px;
    }

    /* .indus__img{
        padding: 0;
    } */
    .expert_wrapper {
        gap: 20px;
    }

    .section_head::before,
    .section_head::after {
        max-width: 300px;
    }
}

@media screen and (max-width: 1280px) {
    .header_wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .popup_close_btn {
        visibility: visible;
    }

    .section_head::before,
    .section_head::after {
        max-width: 220px;
    }

    .logo.for_mob {
        display: flex;
    }

    .navigation {
        position: absolute;
        left: 0;
        top: 0;
        height: 100vh;
        width: 100%;
        background: #000;
        flex-direction: column;
        padding: 40px 30px;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        transform: translateX(-100%);
        transition: all ease .5s;
    }

    .navigation.active {
        transform: translateX(0%);
    }

    .menu ul li {
        display: flex;
    }

    .menu ul {
        flex-direction: column;
    }

    nav.menu {
        margin-bottom: 20px;
    }

    .menu ul li a {
        font-size: 50px;
        line-height: 68px;
    }

    #header.hide {
        transform: translateY(0%);
    }

    .logo.for_desk {
        order: -1;
        margin-bottom: 100px;
        width: 300px;
    }

    #header.active .logo {
        width: 300px;
    }

    #header.active .logo.for_mob {
        width: 210px;
    }

    .hamburger {
        cursor: pointer;
        display: flex;
    }

    .hero--sec {
        padding: 320px 0 0;
    }

    .hero_content {
        max-width: 70%;
    }

    h1 {
        font-size: 80px;
        line-height: 92px;
    }

    h1 br {
        display: none;
    }

    .expert_wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    .expert_block {
        width: 48%;
    }

    .section_head {
        justify-content: center;
    }

    .indus__left h3 {
        max-width: 80%;
        font-size: 50px;
        line-height: 56px;
    }

    .indus__left {
        padding: 100px 0 50px 36px;
    }

}

@media screen and (max-width: 992px) {
    .container {
        padding: 0 30px;
    }

    .hero--sec {
        padding: 260px 0 0;
    }

    .hero_content {
        max-width: 100%;
    }

    .menu ul li a {
        font-size: 34px;
        line-height: 38px;
    }

    #header.active .logo,
    .logo.for_desk {
        width: 220px;
    }

    h1 {
        font-size: 60px;
        line-height: 72px;
    }

    .logo {
        width: 200px;
    }

    h2 {
        font-size: 40px;
        line-height: 48px;
    }

    .section_head {
        gap: 30px;
    }

    .section_head::before,
    .section_head::after {
        max-width: 120px;
    }

    .cta--sec {
        padding: 60px 0;
    }

    .cta_head h2 {
        font-size: 54px;
        line-height: 60px;
    }

    .category_wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .category_card {
        width: 30%;
    }

    .category_img {
        width: 185px;
        height: 185px;
    }

    .indus__img {
        padding: 0;
        width: 100%;
    }

    .industry__wrapper {
        flex-direction: column-reverse;
        padding: 0;
    }

    .indus__right {
        width: 100%;
        position: relative;
    }

    .indus_btm {
        padding: 0;
    }

    .industry_cards_wrap {
        margin: 0;
        margin-bottom: 20px;
    }

    .industries--sec {
        padding: 83px 0 220px;
    }

    .indus__left {
        padding: 100px 0 50px 36px;
        width: 100%;
        height: 30%;
        bottom: 0;
        top: auto;
    }

    .testi_wrapper {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .testi_card {
        width: 48%;
    }

    #header.active .logo.for_mob {
        width: 140px;
    }

    .hamburger svg {
        height: 3.3em;
    }
}


@media screen and (max-width: 767px) {
    .hero--sec {
        height: 85vh;
    }

    .navigation {
        padding: 18px 20px;
    }

    .hamburger svg {
        height: 2.7em;
    }

    #header {
        padding: 15px 0;
    }

    #header.active {
        padding: 12px 0;
    }

    .container {
        padding: 0 20px;
    }

    h1 {
        font-size: 34px;
        line-height: 40px;
    }

    .hero_content p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 18px;
    }

    .menu ul li a {
        font-size: 24px;
        line-height: 26px;
    }

    .logo {
        width: 130px;
    }

    .cta_btn {
        padding: 13px 28px;
        font-size: 18px;
    }

    .expert_block {
        width: 100%;
    }

    .section_head {
        margin-bottom: 30px;
    }

    .section_head::before,
    .section_head::after {
        content: normal;
    }

    h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .release--sec {
        padding-bottom: 50px;
    }

    .cta_head h2 {
        font-size: 36px;
        line-height: 40px;
    }

    .cta_head {
        margin-bottom: 20px;
    }

    .cta_head p {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 10px;
    }

    .testimonial--sec,
    .books--sec,
    .expert--sec,
    .category--sec {
        padding: 50px 0;
    }

    .books--sec {
        background: #0b0b0b;
    }

    .category_img {
        width: 165px;
        height: 165px;
    }

    .category_card {
        width: 45%;
    }

    .category_img img {
        width: 90px;
    }

    /* .industries--sec{
        padding: ;
    } */
    .industries--sec {
        padding-top: 50px;
    }

    .indus__left h3 {
        max-width: 86%;
        font-size: 38px;
        line-height: 48px;
    }

    .indus__left {
        padding: 100px 0 24px 20px;
        height: 21%;
    }

    .indus_head {
        text-align: center;
    }

    .indus_head h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .indus_head p {
        font-size: 16px;
        line-height: 24px;
        width: 100%;
    }

    .industry_cards_wrap {
        justify-content: center;
    }

    .industry_card {
        width: 47%;
        padding: 24px 0 20px;
    }

    .indus_btm {
        justify-content: center;
    }

    .testi_card {
        width: 100%;
    }

    .footer-logo {
        width: 140px;
    }

    .footer_copyright p {
        font-size: 12px;
    }

    #header.active .logo,
    .logo.for_desk {
        width: 140px;
    }

    .contact_popup {
        padding: 0 20px;
    }

    .popup_form {
        padding: 20px 16px 30px;
        max-width: 100%;
    }

    .popup_form h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .popup_form textarea,
    .popup_form select,
    .popup_form input {
        height: 40px;
    }

    .popup_form textarea {
        height: 120px;
    }

    .popup_btn {
        padding: 12px 20px;
        font-size: 16px;
    }
}