html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    background: #fff;
    font-family: 'Axios Pro';
}

/* Axios Pro */

@font-face {
    font-family: 'Axios Pro';
    src: url('/assets/fonts/axiospro/AxiosPro-Bd.woff2') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Axios Pro';
    src: url('/assets/fonts/axiospro/AxiosPro-Md.woff2') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Axios Pro';
    src: url('/assets/fonts/axiospro/AxiosPro-Regular.woff2') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Axios Pro';
    src: url('/assets/fonts/axiospro/AxiosPro-Thin.woff2') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Heading Now Trial */
@font-face {
    font-family: 'Baskerville Old Face';
    src: url('/assets/fonts/baskerville/BASKVILL.TTF') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Heading Now Trial */
@font-face {
    font-family: 'Heading Now Trial';
    src: url('/assets/fonts/heading-now/HeadingNowTrial-36Bold.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ::before,
::after {
    content: "";
} */

h1 {
    font-family: "Heading Now Trial";
    color: #000;
}

h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-family: "Baskerville Old Face";
}

h2 {
    font-size: 45px;
    font-weight: 400;
    line-height: 45px;
    text-transform: capitalize;
}

img {
    width: 100%;
    height: auto;
    display: flex;
    /* filter: blur(50px); */
    /* position: relative; */
}

p {
    color: #000;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.container {
    max-width: 1420px;
    padding: 0 50px;
    width: 100%;
    margin: 0 auto;
}

.container.full_width {
    max-width: 1750px;
}

header {
    padding: 27px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

.head__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    width: 260px;
}

.inner_header .logo {
    filter: invert(1);
}

.nav_menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav_menu li a {
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-decoration: none;
    text-transform: capitalize;
    position: relative;
}
a.nav_link.active::after{
    opacity: 1;
}
.nav_menu li a::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 100px;
    background: #f86d72;
    bottom: -10px;
    left: 0;
    right: 0;
    opacity: 0;
    margin: auto;
}
.inner_header .nav_menu li a {
    color: #000;
}

.nav_menu li {
    list-style: none;
}

.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.hamRotate.active {
    transform: rotate(45deg);
}

.hamRotate180.active {
    transform: rotate(180deg);
}

.line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: #ffffff;
    stroke-width: 5.5;
    stroke-linecap: round;
}

.ham2 .top {
    stroke-dasharray: 40 121;
}

.ham2 .bottom {
    stroke-dasharray: 40 121;
}

.ham2.active .top {
    stroke-dashoffset: -102px;
}

.ham2.active .bottom {
    stroke-dashoffset: -102px;
}

.custom-hamburger {
    display: flex;
    width: 60px;
    position: relative;
    z-index: 99;
}

.cta_btn {
    padding: 12px 24px;
    background: #F86D72;
    color: white;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    width: max-content;
    transition: all ease .5s;
}
.cta_btn:hover{
    background: #db494e;
    transform: translateY(-3px);
}

.cta_btn.mob_only {
    display: none;
}

.hero--sec {
    position: relative;
}

.main_slides .swiper-slide-active {
    .hero_slide_content h1 {
        transform: translateY(0);
        opacity: 1;
    }

    .hero_slide_content p {
        transform: translateY(0);
        opacity: 1;
    }

    .hero_slide_content .cta_btn {
        transform: rotateZ(0);
        opacity: 1;
    }
}

.hero_slide_content h1 {
    font-size: 125px;
    font-weight: 700;
    line-height: 128px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    transform: translateY(30px);
    opacity: 0;
    transition: all ease .6s .5s;
    color: white;
}

.hero_slide_content p {
    font-size: 18px;
    line-height: 23px;
    margin-bottom: 20px;
    transform: translateY(30px);
    opacity: 0;
    transition: all ease .6s .7s;
    color: white;
}

.hero_slide_content .cta_btn {
    transform: rotateZ(-20deg);
    opacity: 0;
    transition: all ease .6s;
}

.main_slides .swiper-slide {
    height: 900px;
}

.hero_slide {
    position: relative;
}

.hero_slide_bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.main_slides .swiper-slide-active {
    .hero_slide_bg img {
        scale: 1.3;
    }
}

.hero_slide_bg img {
    transition: all ease 1.8s;
}

.hero_slide_bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.63);
}

.custom_paginaton {
    display: flex;
    align-items: center;
    padding-right: 20px;
    gap: 28px;
}
.pagination_bar .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #db494e;
}
.custom_pag_arrow {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pagination_bar {
    width: 804px;
    height: 2px;
    background: rgb(255, 255, 255);
    position: relative;
}

.pagination_progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 20%;
    height: 3px;
    background: #F86D72;
}

.custom_paginaton .swiper-button-next {
    position: static;
    width: 68px;
    height: 68px;
    display: flex;
    margin: 0;
    align-items: center;
    justify-content: center;
    border: solid 1px white;
    border-radius: 100px;
}

.custom_paginaton .swiper-button-prev {
    position: static;
    width: 68px;
    height: 68px;
    display: flex;
    margin: 0;
    align-items: center;
    justify-content: center;
    border: solid 1px white;
    border-radius: 100px;
}

.custom_paginaton .swiper-button-next img {
    width: 11px;
}

.custom_paginaton .swiper-button-prev img {
    width: 11px;
}

.custom_paginaton .swiper-button-next::after,
.custom_paginaton .swiper-button-prev::after {
    content: normal;
}

.hero_slide_content {
    max-width: 1750px;
    margin: 0 auto;
    padding: 0 50px;
    width: 100%;
}

/* .mySwiper2 {
    height: 80%;
    width: 100%;
} */

/* .mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
} */

/* .mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
} */

/* .mySwiper .swiper-slide-thumb-active {
    opacity: 1;
} */

.hero_slide {
    position: relative;
    height: 100%;
    padding-top: 324px;
}

.hero_slide_inner {
    width: 650px;
}


.hero__slider .swiper-thumbs {
    position: absolute;
    bottom: 65px;
    width: 1080px;
    height: auto;
    right: 0;
}

.hero__slider .swiper-thumbs .swiper-wrapper {
    margin-bottom: 33px;
}

.custom_num .swiper-pagination-current {
    position: static;
    display: flex;
    background: transparent;
    width: auto;
    height: auto;
    color: white;
    font-size: 80px;
    line-height: 70px;
    font-family: 'Axios Pro';
}

.custom_thumbs_slide {
    position: relative;
    cursor: pointer;
}

.custom_thumbs_content {
    position: absolute;
    left: 0;
    bottom: 25px;
    width: 100%;
    padding: 0 21px;
}

.custom_thumbs_content p::before {
    content: "";
    position: absolute;
    top: -20px;
    width: 17px;
    height: 2px;
    background: #fff;
}

.custom_thumbs_content p::after {
    content: "";
    position: absolute;
    top: -27px;
    width: 2px;
    height: 17px;
    background: #fff;
    right: 0;
    left: 7px;
}

.custom_thumbs_content p {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.54px;
    text-transform: capitalize;
    margin-bottom: 4px;
    position: relative;
    color: white;
}

.custom_thumbs_content h3 {
    font-size: 35px;
    font-weight: 700;
    font-family: "Heading Now Trial";
    line-height: 32px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: white;
}

/* Second Sec */
.expert--sec {
    padding: 50px 0 100px;
}

.expert_wrapper {
    display: flex;
    gap: 30px;
}

.expert_block {
    border-radius: 15px;
    border: 1px solid #E6E6E6;
    background: #FFF;
    box-shadow: 0 4px 14.4px 4px rgba(0, 0, 0, 0.05);
    padding: 30px 23px 29px;
    width: 25%;
}

.ex_ico {
    width: 68px;
    margin-bottom: 13px;
}

.expert_block h3 {
    color: #000;
    font-family: "Axios Pro";
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.44px;
    text-transform: capitalize;
    margin-bottom: 4px;
}

.expert_block p {
    font-size: 16px;
}

/* 3rd */

.selling--sec {
    padding-bottom: 100px;
}

.selling_head {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 50px;
}

.selling_head::before {
    content: "";
    display: flex;
    width: 26%;
    background: #C7C7C7;
    height: 2px;
}

.selling_head::after {
    content: "";
    display: flex;
    width: 26%;
    background: #C7C7C7;
    height: 2px;
}

/* .selling_head h2 {
    max-width: 420px;
} */

.uvySwiper {
    margin-bottom: 50px;
}

.selling_img {
    width: 189px;
    box-shadow: 0 4px 14.5px 7px rgba(0, 0, 0, 0.25);
}

.selling_info_head {
    margin-bottom: 14px;
}

.selling_info_head h3 {
    font-size: 30px;
    font-weight: 400;
    line-height: 35px;
    text-transform: capitalize;
    position: relative;
    margin-bottom: 7px;
}

.selling_info_head h3::after {
    content: "";
    width: 63px;
    height: 1px;
    background: #F86D72;
    display: flex;
    margin-top: 7px;
}

.selling_slide {
    border-radius: 15px;
    background: linear-gradient(180deg, #E1DBFF 0%, #AF9FFF 100%);
    padding: 40px;
    display: flex;
    gap: 28px;
    align-items: center;
}

.swiper-slide.blue .selling_slide {
    background: linear-gradient(180deg, #96D5FF 0%, #C3E9FE 100%);
}

.swiper-slide.pink .selling_slide {
    background: linear-gradient(180deg, #FFCED2 0%, #F9A9AF 100%);
}

.swiper-slide.yellow .selling_slide {
    background: linear-gradient(180deg, #FFFDEB 0%, #FEF7AE 100%);
}
.swiper-slide.oryn .selling_slide {
    background: linear-gradient(180deg, #F3FFFD 0%, #BFFFF2 100%);
}

.selling_info_head h4 {
    font-size: 20px;
    font-weight: 400;
    line-height: 35px;
    text-transform: capitalize;
}

.selling_icon {
    width: 110px;
    margin-bottom: 24px;
    filter: drop-shadow(1px 1px 3px #000000b5);
}

.selling_clients {
    width: 111px;
    filter: drop-shadow(1px 2px 3px gray);
}

.selling_btm {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 4th Section */

.authors--sec {
    /* padding-bottom: 141px; */
    position: relative;
}

.author__main {
    display: flex;
    gap: 65px;
}

.author__left {
    width: 78%;
}

.author_in_head {
    margin-bottom: 50px;
}

.author__right {
    width: 21%;
}

.author__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 50px;
}

.author_card {
    width: 33%;
    display: flex;
    gap: 20px;
}

.author_img {
    width: 57%;
}

.author_info {
    padding-top: 31px;
}

.author_info h3 {
    font-size: 22px;
    font-weight: 400;
    line-height: 26px;
    text-transform: capitalize;
}

.author_info p {
    color: #868477;
    font-size: 14px;
    margin-bottom: 5px;
}

.review_stars {
    margin-bottom: 4px;
}

.author_info h5 {
    font-size: 17px;
    line-height: 26px;
    text-transform: capitalize;
    font-weight: 500;
}

.review_stars.blue svg path {
    fill: #2283C8;
}

.author_teams {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.author_team {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: solid 1px #DDDDDD;
}

.author_team:last-child {
    padding-bottom: 0;
    border: none;
}

.auth_img {
    width: 60px;
}

.auth_team_info p {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.36px;
    text-transform: capitalize;
}

.author-left-top {
    position: absolute;
    width: 230px;
    left: 0;
    top: -80px;
}

.author-right-btm {
    position: absolute;
    width: 235px;
    right: 0;
    bottom: 20px;
}

/* CTA */
.cta--sec {
    padding-top: 141px;
}

.cta__main {
    position: relative;
    overflow: hidden;
    z-index: 2;
    padding-top: 22px;
    border-radius: 30px;
}

.cta__main::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.8;
    background: linear-gradient(270deg, #D3F8F4 0%, #F8D7E2 100%);
    z-index: -1;
    width: 100%;
    height: 100%;
}

.cta_left {
    width: 200px;
    position: absolute;
    left: 0;
    top: 0;
}

.cta_right {
    width: 200px;
    position: absolute;
    right: 0;
    bottom: 0;
}

.cta_wrapper {
    display: flex;
    align-items: center;
    gap: 23px;
    justify-content: center;
}

.cta_img {
    width: 100%;
    max-width: 442px;
}

.cta_content h2 {
    font-size: 62px;
    line-height: 62px;
}

.cta_content h2 span {
    color: #F86D72;
}

/* Services */

.services--sec {
    padding: 100px 0;
}

.services__wrapper {
    display: flex;
    align-items: stretch;
    gap: 24px;
}

.service_block {
    text-decoration: none;
    position: relative;
    background: white;
    width: 25%;
    padding: 57px 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 31px;
    border-radius: 15px;
    transition: all ease 0.4s;
    filter: drop-shadow(0 5.213px 37.87px rgba(10, 10, 66, 0.11));
}

.service_block::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #FFCED2 0%, #F9A9AF 100%);
    z-index: -1;
    border-radius: 15px;
    opacity: 0;
    transition: all ease 0.4s;
}

.service_block:hover::after {
    opacity: 1;
    transform: translate(0);
}

.service_block:hover::before {
    opacity: 1;
}

.service_block::after {
    content: "";
    position: absolute;
    bottom: -35px;
    left: 0;
    right: 0;
    width: 49px;
    height: 49px;
    background-image: url(../icon/arrow-right.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 17px;
    background-color: #F9ABB0;
    border-radius: 50px;
    margin: 0 auto;
    border: solid 5px #e9eaf3;
    transform: translateY(20px);
    opacity: 0;
    transition: all ease 0.4s;
}

/* .service_block:hover {
    background-color: #09abff;

    h3,
    p {
        color: white;
    }

    .service_ico img:first-child {
        opacity: 0;
    }

    .service_ico img:last-child {
        opacity: 1;
    }
} */

.service_ico {
    position: relative;
    width: 161px;
}

/* .service_ico img:first-child {
    transition: all ease 0.2s;
} */

/* .service_ico img:last-child {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all ease 0.4s;
} */

.service_block h3 {
    color: #000;
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 18px;
    font-family: 'Axios Pro';
    transition: all ease 0.4s;
}

.service_block p {
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.14px;
    /* transition: all ease 0.4s; */
    transition: all ease .4s;
}

/* Testi */
.testimonial--sec {
    padding: 100px 0 100px;
    background-color: #fff;
}

.testi__slides .swiper {
    width: 100%;
    height: max-content;
    /* padding: 50px 0 0; */
}

.testi__slides .swiper-slide {
    width: 1042px;
}

/* .testimonial--sec .selling_head {
    margin-bottom: 0;
} */

.testi__block {
    padding: 56px 37px 54px 53px;
    display: flex;
    align-items: center;
    gap: 41px;
    background: #fff;
    box-shadow: 0px 0px 44px 0px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testi__block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: #F9ABB0;
    transition: all ease 6s;
}

.testi__block::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 2px;
    width: 0%;
    background: #F9ABB0;
    transition: all ease 6s;
}

.testi__slides .swiper-slide.swiper-slide-active {
    .testi__block::before {
        width: 100%;
    }

    .testi__block::after {
        width: 100%;
    }

    .testi__img::before {
        height: 100%;
    }

    .testi__img::after {
        height: 100%;
    }
}

.testi__img {
    width: 306px;
}

.testi__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 0%;
    width: 2px;
    background: #F9ABB0;
    transition: all ease 6s;
}

.testi__img::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 0%;
    width: 2px;
    background: #F9ABB0;
    transition: all ease 6s;
}

.testi__right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 44px;
    width: 66%;
}

.testi__right p {
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    line-height: 32px;
    text-transform: capitalize;
    opacity: 0.66;
}

.client_details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.client-name {
    font-size: 30px;
    font-weight: 600;
    line-height: 32px;
    text-transform: capitalize;
    opacity: 0.66;
    margin-bottom: 6px;
    font-family: "Axios Pro";
}

.testi__slides .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    border: solid 1px #e5858b;
    background: transparent;
    opacity: 1;
    transition: all ease 0.4s;
}

.testi__slides .swiper-pagination-bullet-active {
    border-color: #e5858b;
    background: #e5858b;
}

.testi__slides .custom-swiper-pagination {
    width: max-content !important;
    padding: 0;
    margin: 0;
    margin: 0 auto;
    padding: 0 100px;
    height: max-content;
    margin-top: 50px;
}

.client-designation {
    font-style: normal !important;
}

/* Industry */
.industries--sec {
    padding: 83px 0 0;
    position: relative;
}

.indus_ico {
    display: flex;
    justify-content: center;
    width: 60px;
}

.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-family: 'Axios Pro';
    font-weight: 600;
}

.indus_head h3 {
    color: #000;
    font-family: "Axios Pro";
    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: center;
    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: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    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: #171311;
    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(../icon/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(212deg, #D3F8F4 1%, #F8D7E2 100%);
    padding: 100px 0 100px 36px;
}

.indus__left h2 {
    max-width: 294px;
    color: #474747;
    font-family: "Heading Now Trial";
    font-size: 70px;
    font-weight: 700;
    line-height: 75px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}
.newsletter_input {
    position: relative;
}
/* Upcoming */
.upcoming--sec {
    padding: 100px 0;
}

.upcoming_slider {
    margin-bottom: 50px;
}

.upcoming_img {
    margin-bottom: 30px;
}

.upcoming_info {
    padding-bottom: 10px;
    border-bottom: solid 1px #C8C8C8;
}

.upcoming_info h3 {
    color: #2F2F2F;
    font-family: "Axios Pro";
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.upcoming_info p {
    font-size: 18px;
    line-height: 25px;
}

.upcoming_btm {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.upcoming_slider .swiper-scrollbar {
    position: static;
    /* margin-bottom: -10px; */
}

/* Ft */
footer {
    padding: 100px 0px;
    background: linear-gradient(274deg, #d3f8f400 0%, #f8d7e259 100%);
}

.footer__wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer__left {
    width: 30%;
}

.footer__block {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    flex-direction: column;
}

.footer__block form {
    position: relative;
}

.footer-logo {
    width: 260px;
    display: block;
}

.email-input {
    width: 423px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    border: 1px solid #000;
    background: var(--main-bg);
    outline: none;
    padding: 22px 54px 18px 58px;
    /* flex: 1 0 0; */
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    transition: all ease .5s .5s;
}

.email-input:focus {
    border-color: #F86D72;
}

.email-input::placeholder {
    color: var(--Grey-60, #999);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.108px;
}

.footer__block form button[type="submit"] {
    cursor: pointer;
    position: absolute;
    background-color: transparent;
    border: none;
    outline: none;
    right: 24px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 30px;
    height: 30px;
    filter: invert(1);
}

.mail-i {
    position: absolute;
    background-color: transparent;
    border: none;
    outline: none;
    left: 24px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 24px;
    height: 24px;
}

.footer__block h3 {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.12px;
    font-family: 'Axios Pro';
}

.footer-navigation {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.ft-link {
    position: relative;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.108px;
    text-decoration: none;
}

.ft-line {
    position: absolute;
    bottom: -2px;
    height: 2px;
    background-color: #e5858b;
    width: 0%;
    transition: all ease .3s;
}

.ft-link:hover .ft-line {
    width: 100%;
}

.footer__right {
    /* width: 60%; */
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.copy-right {
    padding: 16px 0px;
    background: #000;
}

.copy__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copy-left {
    display: flex;
    align-items: center;
    gap: 38px;
}

.copy-left p {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.108px;
}

.social__wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icon {
    position: relative;
    display: flex;
    height: 52px;
    width: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background: var(--main-bg);
}

.social-icon:hover .s-up {
    scale: 1;
}

.social-icon img {
    width: 24px;
    position: relative;
    z-index: 3;
}

.s-up {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    scale: 0;
    transition: all ease .5s;
}

.fb {
    background-color: #1f7bf2;
}

.in {
    background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
}

.tw {
    background-color: #24a4f3;
}

.yt {
    background-color: #ff0808;
}

.insta-icon {
    filter: invert(100%);
}


/* ABout PG */
.about--banner {
    padding: 168px 0 65px;
    background: linear-gradient(260deg, #FFFDFD 0%, #FFEFF0 100%);
    position: relative;
    z-index: 2;
}

.about_banner_left h1 {
    font-size: 90px;
    font-weight: 700;
    line-height: 83px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about_banner_left {
    max-width: 596px;
    width: 100%;
}

.about_banner_left p {
    font-size: 20px;
}

.about_banner_right {
    width: 50%;
}

.about__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-img-center {
    width: 187px;
    left: 0;
    right: 120px;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    height: max-content;
    z-index: -1;
}

.about-img-left {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 183px;
    z-index: -1;
}

.about-img-right {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 183px;
    z-index: -1;
}

/* Logo Section  */
.logo--sec {
    padding: 121px 0 100px;
}

.logo__wrapper {
    display: flex;
    gap: 30px;
}

.logo__card {
    height: 166px;
    border-radius: 15px;
    background: linear-gradient(180deg, #FFE2E4 39.16%, #FFDBDE 149.4%);
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.logo__card img {
    width: 86px;
}

.logo__card:nth-child(2) {
    background: linear-gradient(180deg, #E1DBFF 0%, #BDAFFF 186.75%);
}

.logo__card:nth-child(3) img {
    width: 76px;
}

.logo__card:nth-child(3) {
    background: linear-gradient(180deg, #D0EEFF 0%, #B7E2FF 138.86%);
}

.logo__card:nth-child(4) {
    background: linear-gradient(180deg, rgb(149 255 121 / 30%) 0%, rgb(73 219 36 / 30%) 100%);
}

.logo__card:nth-child(4) img {
    width: 76px;
}

.logo__card:last-child img {
    width: 131px;
}

.logo__card:last-child {
    background: linear-gradient(180deg, rgb(216 216 216 / 30%) 0%, rgb(143 143 143 / 30%) 100%);
}

/* E-Book */
.ebook--sec {
    position: relative;
}
.ebook--sec.reading {
    padding-bottom: 100px;
}
.ebook__wrap {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 100px;
}

.ebook__wrap:last-child {
    margin-bottom: 0;
}

.ebook__wrap:nth-child(even) {
    flex-direction: row-reverse;
}

.ebook_img {
    width: 50%;
}

.ebook_content {
    width: 50%;
}

.ebook_content h3 {
    font-family: "Axios Pro";
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.ebook_info {
    margin-bottom: 20px;
}

.ebook_info p {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 20px;
}

.ebook_info p:last-child {
    margin-bottom: 0;
}

.ebook_left-img {
    position: absolute;
    left: 0;
    top: -400px;
    bottom: 0;
    width: 206px;
    height: max-content;
    margin: auto;
}

.ebook_right-img {
    position: absolute;
    right: 0;
    width: 190px;
    top: 349px;
}

/* Faq's */

.faq--sec {
    background: rgba(209, 212, 255, 0.15);
    padding: 72px 0 100px;
}

.faq__wrapper {
    display: flex;
    align-items: flex-start;
    gap: 27px;
    justify-content: space-between;
}

.faq__left {
    width: 58%;
}

.faq__block {
    margin-bottom: 20px;
    padding: 19px 22px 18px 53px;
    border-radius: 8px;
    background-color: rgb(59 69 236 / 5%);
    border-left: dotted 3px transparent;
    transition: all ease 0.4s;
}

.faq__block:last-child {
    margin-bottom: 0;
}

.faq__block.open {
    border-color: #000000;
    background: #F86D72;
    box-shadow: 0px 5px 37px 0px rgba(10, 10, 66, 0.11);
}

.faq-item {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    position: relative;
}

.faq-question::before {
    content: "";
    position: absolute;
    left: -29px;
    top: -1px;
    bottom: 0;
    margin: auto;
    width: 14px;
    height: 14px;
    background: #000;
    border-radius: 20px;
    transition: all ease 0.4s;
    animation: blinking-dot 2.5s ease-in-out 1s infinite;
}

@keyframes blinking-dot {
    0% {
        -moz-box-shadow: 0 0 0 0 #278BFF;
        box-shadow: 0 0 0 0 #278BFF;
    }

    70% {
        -moz-box-shadow: 0 0 0 7px rgba(196, 34, 39, 0);
        box-shadow: 0 0 0 7px rgba(196, 34, 39, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(196, 34, 39, 0);
        box-shadow: 0 0 0 0 rgba(196, 34, 39, 0);
    }
}

.faq__block.open .faq-question::before {
    background: #ffffff;
}

.faq-question p {
    color: #000;
    font-size: 23px;
    font-weight: 500;
    letter-spacing: 0.46px;
    transition: all ease .4s;
}

.faq__block.open {
    .faq-question p {
        color: white;
    }

    .faq-answer p {
        color: white;
    }

}

.faq_arrow {
    width: 17px;
    transition: all ease 0.4s;
}

.faq__block.open .faq_arrow {
    transform: rotateX(180deg);
    filter: invert(1);
}

.faq-answer p {
    width: 93%;
    font-size: 18px;
    letter-spacing: -0.17px;
    margin-top: 15px;
    transition: all ease .4s;
}

.faq-answer {
    transition: max-height 0.35s ease-in-out;
    overflow: hidden;
    max-height: 0;
}

.faq__right {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.faq__right p {
    margin-bottom: 20px;
    color: #2E2E54;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.2px;
    opacity: 0.73;
}

.faq__right p:last-child {
    margin-bottom: 0;
}

.faq__right .cta {
    padding: 9px 29px;
}


/* Services PG */

.about--banner.services .about_banner_left {
    max-width: 640px;

}

.expert--sec.services .expert_wrapper {
    gap: 60px;
}

.expert--sec.services .expert_main {
    padding: 38px 40px;
    background: #F3F5FF;
}

.expert--sec.services .expert_block {
    padding: 0;
    box-shadow: none;
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Boost */

.boost--sec {
    padding-bottom: 100px;
}

.boost__wrapper {
    padding: 0 59px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 59px;
}

.boost__content {
    width: 28%;
}

.boost_item {
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: solid 1px #C7C7C7;
}

.boost_item:last-child {
    margin-bottom: 0;
}

.boost_item p {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    text-transform: capitalize;
}

.boost_img {
    width: 30%;
}

/* Book PG */

.authors--sec.books {
    padding: 100px 0 104px;
}
.swiper.BookSwiper {
    padding: 20px 0;
}
/* Tabs */

.roman_tab_item_wrap {
    display: flex;
    gap: 30px;
}

.roman_tab_btn {
    background: #FFF;
    height: 68px;
    width: 23%;
    color: #171311;
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 3px 3px 2px 0px #0000001a;
    /* margin-bottom: 10px; */
    cursor: pointer;
    transition: all ease .3s;
}

.roman_tab_buttons {
    display: flex;
    flex-wrap: wrap;
    row-gap: 15px;
    column-gap: 30px;
    margin-bottom: 30px;
}

.roman_tab_img {
    width: 20%;
}

.roman_tab_item {
    display: none;
}

.roman_tab_item.active {
    display: block;
}

.roman_tab_btn.active {
    background: #F86D72;
    color: #fff;
}

.custom-hamburger {
    display: none;
}

.roman--sec {
    padding-top: 100px;
}

/* Cntct PG  */

.contact--sec {
    padding: 100px 0px;
}

.contact__inner {
    padding: 100px 50px;
    border-radius: 12px;
    border: 1px solid #8E6D6D;
}

.form-wrapper {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 50px;
}

.form-wrap {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.form-block {
    position: relative;
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.form-block label {
    color: #8F8F8F;
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
}

.form-block input {
    width: 100%;
    padding: 0px 20px;
    border-radius: 8px;
    border: 1px solid #8E6D6D;
    background: white;
    color: black;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    height: 68px;
    outline: none;
    transition: all ease .5s;
    box-shadow: 0px 1px 12px 2px transparent;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.select__block {
    position: relative;
    width: 100%;
    height: 68px;
}

.form-block select {
    border-radius: 8px;
    border: 1px solid #8E6D6D;
    background: white;
    height: 100%;
    width: 100%;
    padding: 0px 20px;
    /* background: transparent; */
    outline: none;
    /* border: none; */
    -webkit-appearance: none;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    color: #666;
    transition: all ease .5s;
    padding-right: 60px;
    box-shadow: 0px 1px 12px 2px transparent;
}
.success_msg {
    padding: 7px 20px 5px;
    background: #f86d72;
    color: #fdf5f7;
    border-radius: 4px;
}
/* .disabled-option{
    color: #666!important;
} */

/* option:disabled {
    color: #666!important;
} */

.form-block select:focus {
    border-color: #F86D72;
    /* border-radius: 0px; */
    box-shadow: 0px 1px 12px 2px #f86d72;
}

.dr-arrow {
    position: absolute;
    right: 24px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 24px;
    height: 24px;
}

.large-form {
    width: 54%;
}

.form-block input:focus {
    border-color: #F86D72;
    box-shadow: 0px 1px 12px 2px #f86d72;
}

.form-block input::placeholder {
    color: #666;
}

.form-inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: 53.5%;
}

.form-inner .form-block {
    width: 100%;
}

.input-box {
    width: 100%;
    position: relative;
}

.input-box input {
    padding-left: 60px;
    padding-right: 40px;
}

.type-i {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 24px;
    height: 24px;
}

.pl-dot {
    position: absolute;
    right: 24px;
    width: 16px;
    height: 16px;
    background-color: transparent;
    border-radius: 100px;
    border: solid 1px #F86D72;
    top: 0;
    bottom: 0;
    margin: auto 0;
    animation: bg 3s ease 1s infinite;
}

@keyframes bg {
    from {
        background: #703BF7;
    }

    to {
        background: transparent;
    }
}

.form-block textarea {
    width: 100%;
    height: 170px;
    padding: 24px 20px;
    border-radius: 8px;
    border: 1px solid #8E6D6D;
    background: white;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    resize: none;
    outline: none;
    transition: all ease .5s;
    box-shadow: 0px 1px 12px 2px transparent;
}

.text-area {
    width: 100%;
}

.form-block textarea::placeholder {
    color: #000;
}

.form-block textarea:focus {
    border-color: #F86D72;
    box-shadow: 0px 1px 12px 2px #f86d72;
}

.checkbox-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.form-wrap.mid .form-block {
    width: 50%;
}
#check-box {
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    border: 1px solid #8E6D6D;
    background: transparent;
    -webkit-appearance: none;
}

#check-box:checked {
    background-image: url('../icon/checked.svg');
    background-position: center;
    background-size: 14px;
    background-repeat: no-repeat;
    background-color: #F86D72;
}

.check-block {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-block label,
label a {
    color: #999;
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
}

.submit-btn button {
    padding: 18px 46px;
    cursor: pointer;
    background: #F86D72;
    outline: none;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

label.hidden {
    visibility: hidden;
}

.contact--sec .main__head {
    margin-bottom: 50px;
}

.contact--sec .main__head h2 {
    margin-bottom: 5px;
}

.stars-i {
    width: 70px;
    margin-bottom: 10px;
}

/* Custom Media Queries */

@media screen and (max-width: 1800px) {
    .custom_paginaton {
        padding-right: 20px;
    }

    .hero__slider .swiper-thumbs {
        bottom: auto;
        width: 1040px;
        top: 200px;
    }

    .hero_slide {
        padding-top: 220px;
    }

    .hero_slide_content h1 {
        font-size: 115px;
        line-height: 115px;
    }

    .author-left-top {
        width: 150px;
    }

    .author-right-btm {
        width: 135px;
    }

    .indus__left h2 {
        font-size: 36px;
        line-height: 46px;
        /* width: 32%; */
    }

    .indus__img::after {
        bottom: 100px;
        width: 140px;
        height: 91px;
    }

    .ebook_left-img {
        display: none;
    }

    .ebook_right-img {
        display: none;
    }
}

@media screen and (max-width: 1600px) {
    .hero__slider .swiper-thumbs {
        width: 870px;
        top: 230px;
    }

    .hero_slide_inner {
        width: 550px;
    }

    .hero_slide_content p {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 15px;
    }

    .custom_paginaton .swiper-button-next {
        width: 48px;
        height: 48px;
    }

    .custom_paginaton .swiper-button-prev {
        width: 48px;
        height: 48px;
    }

    .selling_img {
        width: 159px;
    }

    .selling_info_head h3 {
        font-size: 26px;
        line-height: 30px;
    }

    .selling_info_head h4 {
        font-size: 16px;
        line-height: 28px;
    }

    .selling_img {
        width: 139px;
    }

    .main_slides .swiper-slide {
        height: 720px;
    }

    .author_img {
        width: 50%;
    }

    .auth_img {
        width: 53px;
    }

    .industries--sec {
        padding-bottom: 50px;
    }

    .indus__img {
        padding-left: 100px;
    }

    .indus__left {
        width: 40%;
        justify-content: flex-end;
        padding: 40px 20px;
        height: 50%;
        top: auto;
        bottom: 0;
    }

    .indus__img::after {
        bottom: 14px;
        width: 100px;
        height: 70px;
        left: 25px;
        rotate: -50deg;
    }

    .indus__left h2 {
        max-width: 100%;
    }

    .about_banner_right {
        width: 41%;
    }

    .about-img-left {
        width: 110px;
    }
}

@media screen and (max-width: 1440px) {
    .testi__slides .swiper-slide {
        width: 1000px;
    }
}

@media screen and (max-width: 1366px) {
    .indus__img::after {
        bottom: 0px;
    }

    .indus__left {
        width: 50%;
    }
}

@media screen and (max-width: 1280px) {
    .hero_slide_bg {
        height: 100%;
    }

    .hero_slide_bg img {
        height: 100%;
        object-fit: cover;
    }

    .main_slides .swiper-slide {
        height: 650px;
    }

    .hero__slider .swiper-thumbs {
        width: 640px;
        top: 180px;
    }

    .hero_slide_content h1 {
        font-size: 75px;
        line-height: 75px;
    }

    .hero_slide_inner {
        width: 460px;
    }

    .hero_slide {
        padding-top: 180px;
    }

    .hero__slider .swiper-thumbs .swiper-wrapper {
        margin-bottom: 20px;
    }

    .custom_num .swiper-pagination-current {
        font-size: 60px;
        line-height: 50px;
    }

    .expert_wrapper {
        gap: 20px;
    }

    .ex_ico {
        width: 48px;
    }

    .expert_block h3 {
        font-size: 20px;
    }

    .author-left-top {
        display: none;
    }

    .author-right-btm {
        bottom: -100px;
    }

    .auth_img {
        width: 44px;
    }

    .author_teams {
        gap: 12px;
    }

    .author_team {
        padding-bottom: 12px;
    }

    .auth_team_info p {
        font-size: 16px;
    }

    .industry_cards_wrap {
        gap: 10px;
    }

    .industry_card {
        gap: 3px;
        padding: 20px 10px 20px;
    }

    .testi__slides .swiper-slide {
        width: 900px;
    }

    .cta_img {
        max-width: 370px;
    }

    footer {
        padding: 60px 0px;
    }

    .footer__wrap {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer__left {
        width: 100%;
    }

    .logo__wrapper {
        gap: 20px;
    }

    .logo__card {
        height: 146px;
    }

}

@media screen and (max-width: 1100px) {
    .container {
        padding: 0 30px;
    }

    .hero__slider .swiper-thumbs {
        width: 500px;
    }

    .main_slides .swiper-slide {
        height: 610px;
    }

    .expert_wrapper {
        flex-wrap: wrap;
    }

    .expert_block {
        width: 47%;
    }

    .author__left {
        width: 100%;
    }

    .author__right {
        width: 100%;
    }

    .author__main {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .indus__img {
        padding-left: 0;
    }

    .industries--sec {
        padding-bottom: 120px;
    }

    .indus__img::after {
        bottom: -60px;
    }

    .testimonial--sec {
        padding: 90px 0 80px;
    }

    .testi__slides .swiper-slide {
        width: 770px;
    }

    .testi__block {
        padding: 35px 37px 35px 40px;
        gap: 30px;
    }

    .testi__right p {
        font-size: 16px;
        line-height: 24px;
    }

    .faq__wrapper {
        flex-wrap: wrap;
    }

    .faq__left {
        width: 100%;
    }

    .faq__right {
        width: 100%;
    }

    .faq--sec {
        padding: 70px 0 80px;
    }

    .cta_img {
        max-width: 350px;
    }

    .cta_content h2 {
        font-size: 50px;
        line-height: 52px;
    }

    .cta_left {
        width: 130px;
    }

    .cta_right {
        width: 140px;
    }

    .services__wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    .service_block {
        width: 47%;
    }

    .custom_thumbs_content h3 br {
        display: none;
    }

    .custom_thumbs_img {
        position: relative;
        overflow: hidden;
        border-radius: 20px;
    }

    .custom_thumbs_img::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        background: #00000063;
        width: 100%;
        height: 100%;
    }

    .custom_thumbs_content h3 {
        font-size: 24px;
        line-height: 26px;
    }

    .custom_thumbs_content {
        padding: 0 15px;
        z-index: 99;
    }

    .custom_thumbs_content p {
        font-size: 14px;
    }

    .ebook__wrap {
        flex-wrap: wrap;
    }

    .ebook_img {
        width: 100%;
    }

    .ebook_content {
        width: 100%;
    }

    .about--banner {
        padding-bottom: 90px;
    }

    .about_banner_left {
        max-width: 58%;
    }

    .about_banner_left h1 {
        font-size: 70px;
        line-height: 65px;
    }

    .about_banner_left p {
        font-size: 18px;
    }

    .about-img-left {
        width: 80px;
    }

    .ebook__wrap {
        margin-bottom: 50px;
    }

    .ebook_info p {
        font-size: 16px;
        line-height: 24px;
    }

    .boost__wrapper {
        padding: 0;
    }

    .boost_item {
        padding-bottom: 50px;
        margin-bottom: 50px;
    }

    .boost_item p {
        font-size: 26px;
        line-height: 34px;
    }

    .roman_tab_buttons {
        justify-content: center;
    }

    .roman_tab_btn {
        width: 22%;
    }

    .form-wrap {
        gap: 20px;
    }

    .form-block label {
        font-size: 18px;
    }

    .form-wrapper {
        gap: 40px;
    }

    .select__block,
    .form-block input {
        height: 58px;
    }

    .form-block textarea {
        height: 140px;
    }

    .contact__inner {
        padding: 60px 40px;
    }
}

@media screen and (max-width: 992px) {
    .custom-hamburger {
        display: flex;
    }

    .navigation {
        position: fixed;
        left: 0;
        top: 0;
        height: 100vh;
        width: 100%;
        z-index: 99;
        background: #000000;
        /* padding: 50px 30px; */
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 30px;
        transform: translateX(-100%);
        opacity: 0;
        transition: all ease .9s;
    }

    .navigation.open {
        transform: translateX(0%);
        opacity: 1;
    }

    .nav_menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav_menu li {
        width: 100%;
    }

    .nav_menu li a {
        width: 100%;
        display: block;
        font-size: 28px;
        line-height: 38px;
        padding: 10px 20px;
        border-bottom: solid 1px #8080804d;
    }

    .cta_btn.mob_only {
        display: flex;
    }

    .cta_btn.desk_only {
        display: none;
    }

    .hero__slider .swiper-thumbs {
        bottom: 30px;
        width: 100%;
        top: auto;
        padding: 0 20px;
    }

    .main_slides .swiper-slide {
        height: 980px;
    }

    .hero_slide_inner {
        width: 100%;
    }

    .services--sec {
        padding-top: 60px;
    }

    .services__wrapper {
        row-gap: 25px;
    }

    .service_block {
        padding-bottom: 45px;
    }

    .service_block::after {
        bottom: -20px;
    }

    h2 {
        font-size: 38px;
        line-height: 42px;
    }

    .author-right-btm {
        bottom: auto;
        top: 0;
    }

    .industry__wrapper {
        flex-wrap: wrap;
        padding: 0;
        flex-direction: column-reverse;
    }

    .indus__img {
        width: 100%;
    }

    .industry_cards_wrap {
        margin: 0;
    }

    .indus__right {
        width: 100%;
        text-align: center;
    }

    .indus__left {
        width: 100%;
    }

    .industries--sec {
        padding-bottom: 200px;
        padding-top: 60px;
    }

    .indus__img::after {
        rotate: -65deg;
        left: 20%;
    }

    .industry_card {
        width: 23%;
    }

    .industry_cards_wrap {
        justify-content: space-between;
        margin-bottom: 30px;
    }

    .indus_btm {
        padding-left: 0;
        justify-content: center;
    }

    .testimonial--sec,
    .faq--sec {
        padding: 70px 0 60px;
    }

    .testi__block {
        flex-direction: column;
        padding: 5px 5px 30px;
        overflow: hidden;
    }

    .testi__slides .swiper-slide {
        width: 450px;
    }

    .testi__img {
        width: 100%;
    }

    .testi__right {
        width: 100%;
        gap: 24px;
        padding: 0 30px;
    }

    .faq-question {
        width: 95%;
    }

    .faq-question p {
        font-size: 22px;
    }

    .faq__block {
        margin-bottom: 15px;
    }

    .cta_img {
        max-width: 280px;
    }

    .cta_content h2 {
        font-size: 40px;
        line-height: 40px;
    }

    .cta_wrapper {
        padding-right: 20px;
    }

    .cta--sec {
        padding-top: 80px;
    }

    .footer__right {
        width: 100%;
        flex-wrap: wrap;
    }

    .about_banner_left {
        max-width: 50%;
    }

    .about_banner_left h1 {
        font-size: 60px;
        line-height: 60px;
    }

    .about_banner_right {
        width: 48%;
    }

    .logo__wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo__card {
        width: 30%;
    }

    .logo--sec {
        padding: 80px 0 100px;
    }

    .roman_tab_btn {
        width: 21%;
        height: 55px;
        font-size: 18px;
    }

    .form-wrap {
        flex-wrap: wrap;
    }

    .form-block {
        width: 100%;
    }

    .contact__inner {
        padding: 40px 30px;
    }

    .form-wrapper {
        gap: 20px;
    }

    #check-box {
        width: 22px;
        height: 22px;
    }

    .checkbox-wrap {
        flex-wrap: wrap;
    }

    .check-block label,
    label a {
        font-size: 16px;
        line-height: 100%;
    }

    .submit-btn button {
        padding: 16px 36px;
    }

    #check-box:checked {
        background-size: 10px 10px;
    }
}

@media screen and (max-width: 767px) {
    header {
        padding: 14px 0;
    }

    .container {
        padding: 0 20px;
    }

    .hero_slide_content {
        padding: 0 20px;
    }

    .custom_thumbs_content h3 {
        font-size: 24px;
        line-height: 24px;
    }

    .hero_slide {
        padding-bottom: 500px;
    }

    .main_slides .swiper-slide {
        height: 960px;
    }

    .custom_num .swiper-pagination-current {
        font-size: 50px;
        line-height: 40px;
    }

    .custom_paginaton {
        padding-right: 0;
        gap: 10px;
    }

    .services--sec {
        padding-top: 50px;
    }

    .services_head {
        margin-bottom: 30px;
    }

    .services__wrapper {
        row-gap: 35px;
        margin-bottom: 50px;
    }

    .service_block {
        width: 100%;
        padding: 60px 24px;
    }

    .service_block h3 {
        margin-bottom: 12px;
    }

    .service_ico {
        width: 120px;
    }

    .service_block::after {
        bottom: -30px;
    }

    .expert--sec {
        padding: 50px 0;
    }

    .expert_block {
        width: 100%;
    }

    .selling_head::before,
    .selling_head::after {
        width: 10%;
    }

    h2 {
        font-size: 34px;
        line-height: 38px;
    }

    .selling_head {
        margin-bottom: 30px;
    }

    .selling_slide {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 30px 20px;
    }

    .selling_img {
        width: 60%;
    }

    .selling_info_head h3 br {
        display: none;
    }

    .selling_clients {
        width: 130px;
    }

    .uvySwiper {
        margin-bottom: 30px;
    }

    .selling--sec {
        padding-bottom: 70px;
    }

    .hero_slide_content h1 br {
        display: none;
    }

    .author_card {
        width: 48%;
        flex-direction: column;
    }

    .author__wrapper {
        column-gap: 10px;
    }

    .author_info {
        padding-top: 0;
    }

    .author_img {
        width: 100%;
    }

    .industries--sec {
        padding-bottom: 180px;
        padding-top: 50px;
    }

    .indus_head {
        margin-bottom: 30px;
    }

    .indus_head h2 {
        margin-bottom: 5px;
    }

    .industry_cards_wrap {
        justify-content: center;
    }

    .industry_card {
        width: 48%;
        gap: 10px;
    }

    .industry_card p {
        font-size: 16px;
        line-height: 20px;
    }

    .indus_ico {
        width: 40px;
    }

    .indus_ico img {
        width: 100%;
    }

    .indus__left {
        height: 20%;
        padding: 20px;
    }

    .indus__left h2 {
        font-size: 32px;
        line-height: 32px;
    }

    .testimonial--sec {
        padding: 80px 0 50px;
    }

    .testi__head h3 {
        font-size: 20px;
        line-height: 22px;
        margin-bottom: 10px;
    }

    .testi__head h2 {
        font-size: 34px;
        line-height: 40px;
    }

    .testi__head h2 span,
    .testi__head h2 {
        padding-bottom: 13px;
    }

    .testi__slides .swiper-slide {
        width: 90%;
    }

    /* .testi__slides .swiper {
        padding: 30px 0 50px;
    } */

    .testi__block {
        gap: 20px;
        padding: 5px 5px 20px;
    }

    .testi__right {
        gap: 15px;
        padding: 0 20px;
    }

    .testi__right p {
        font-size: 16px;
        line-height: 24px;
    }

    .client-name {
        margin-bottom: 0px;
        /* line-height: 24px; */
        font-size: 24px;
    }

    .testi__slides .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        /* margin: 0 !important; */
    }

    .testi__block::before,
    .testi__block::after {
        background: #0c4b7c;
        height: 1px;
    }

    .testi__img::after,
    .testi__img::before {
        background: #0c4b7c;
        width: 1px;
    }

    .testimonial--sec.inner .testi__head {
        width: 100%;
    }

    .faq--sec {
        padding: 50px 0 50px;
    }

    .faq_head {
        margin-bottom: 30px;
        padding: 0;
    }

    .faq_head h2,
    .faq_head h2 span {
        padding-bottom: 10px;
    }

    .faq__block {
        margin-bottom: 10px;
    }

    .faq-question {
        width: 88%;
    }

    .faq_arrow {
        width: 13px;
    }

    .faq-question p {
        font-size: 16px;
        line-height: 20px;
    }

    .faq-answer p {
        width: 100%;
        font-size: 14px;
        line-height: 20px;
    }

    .faq-question::before {
        top: 4px;
        bottom: auto;
        left: -21px;
        width: 10px;
        height: 10px;
    }

    .faq__block {
        padding: 16px 20px 16px 40px;
        border: solid 1px #e2dede;
    }

    .testi__slides .custom-swiper-pagination {
        margin-top: 20px;
    }

    .cta_wrapper {
        flex-wrap: wrap;
        flex-direction: column-reverse;
        padding: 0;
        gap: 15px;
    }

    .cta_img {
        max-width: 100%;
    }

    .cta_right {
        display: none;
    }

    .cta__main {
        padding: 100px 20px 0;
        text-align: center;
    }

    .footer__block form {
        width: 100%;
    }

    .footer-navigation {
        gap: 15px;
    }

    .email-input {
        width: 100%;
    }

    .footer__block {
        align-items: center;
        text-align: center;
    }

    .footer-navigation {
        align-items: center;
    }

    .copy-left p {
        font-size: 14px;
        line-height: 20px;
    }

    .ft-link {
        font-size: 16px;
        line-height: 20px;
    }

    .footer-navigation {
        gap: 12px;
    }

    .social-icon {
        height: 46px;
        width: 46px;
    }

    .footer__right {
        gap: 20px;
    }

    .footer__right .footer__block {
        width: 100%;
        gap: 20px;
    }

    .copy__main {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 15px;
    }

    .about__wrapper {
        flex-direction: column;
    }

    .about_banner_left {
        max-width: 100%;
    }

    .about_banner_right {
        width: 100%;
    }

    .logo__card img {
        width: 70px;
    }

    .logo__card:nth-child(4) img {
        width: 65px;
    }

    .logo__card {
        height: 110px;
    }

    .logo--sec {
        padding: 50px 0;
    }

    .ebook__wrap {
        margin-bottom: 30px;
    }

    .ebook_content h3 {
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 10px;
    }

    .logo__card:last-child img {
        width: 120px;
    }

    .logo__card {
        width: 46%;
    }

    .boost__wrapper {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .boost_item p {
        font-size: 22px;
        line-height: 28px;
    }

    .boost__content {
        width: 100%;
    }

    .boost_item {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .boost_img {
        width: 60%;
    }

    .roman_tab_buttons {
        flex-wrap: nowrap;
        overflow-x: scroll;
        padding-bottom: 10px;
    }

    .roman_tab_item_wrap {
        flex-wrap: wrap;
    }

    .roman_tab_btn {
        min-width: 160px;
    }

    .roman_tab_img {
        width: 28%;
    }

    .contact--sec {
        padding: 50px 0px;
    }

    .contact__inner {
        padding: 30px 16px;
    }
    .ebook--sec.reading {
        padding-bottom: 50px;
    }
    .upcoming--sec{
        padding: 50px 0;
    }
    .form-block {
        gap: 8px;
    }

    .check-block {
        margin-bottom: 10px;
    }

    .form-block input,
    .form-block select {
        font-size: 16px;
    }

    .submit-btn {
        width: 100%;
    }

    .submit-btn button {
        width: 100%;
    }
}