@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Space+Grotesk:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Turret+Road:wght@200;300;400;500;700;800&display=swap');
/* Boxicons */

@font-face {
    font-family: boxicons;
    src: url("../fonts/boxicons/boxicons.ttf");
}

@font-face {
    font-family: HelveticaNeueBold;
    src: url("../fonts/helvetica-neue/HelveticaNeueBold.otf");
}

@font-face {
    font-family: HelveticaNeueHeavy;
    src: url("../fonts/helvetica-neue/HelveticaNeueHeavy.otf");
}

@font-face {
    font-family: HelveticaNeueLight;
    src: url("../fonts/helvetica-neue/HelveticaNeueLight.otf");
}

@font-face {
    font-family: HelveticaNeueMedium;
    src: url("../fonts/helvetica-neue/HelveticaNeueMedium.otf");
}

@font-face {
    font-family: HelveticaNeueRoman;
    src: url("../fonts/helvetica-neue/HelveticaNeueRoman.otf");
}

/* Root Styling */

:root {
    --c1: #1D2758;
    --c2: #6DC8C7;
    --c3: linear-gradient(90deg, #39A888, #1C75BC);
    --f1: 'HelveticaNeueLight';
    --f2: 'HelveticaNeueRoman';
    --f3: 'HelveticaNeueMedium';
    --f4: 'HelveticaNeueBold';
    --f5: 'HelveticaNeueHeavy';
    --f6: 'Space Grotesk';
    --f7: 'poppins';
    --f8: 'Orbitron';
    --f9: 'Turret Road';
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.img__contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.img__cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* General Styling */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    list-style-type: none;
    font-family: 'Roboto', sans-serif;
}

::selection {
    background-color: var(--c1);
    color: #fff;
}

a {
    display: inline-block;
    color: #000;
    transition: all 300ms ease-in-out;
}

a:hover {
    color: #000;
}

ul,
ol,
dl {
    margin-bottom: 0;
    padding: 0;
}

p,
li,
a,
span,
input,
input::placeholder,
button {
    font-family: var(--f6);
}

.imgFluid {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    transition: all 300ms ease-in-out;
    outline: 0;
}

i.bx {
    font-family: boxicons;
    vertical-align: middle;
}

/* button style */

.themebtn {
    padding: 10px 25px;
    background: var(--c1);
    color: #fff;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 400;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 99;
    border: none;
    box-shadow: 0px 0px 0px 1px var(--c1);
    color: #fff;
    font-weight: 500;
}

.themebtn:hover {
    color: #fff;
    box-shadow: 0px 0px 0px 1px var(--c2);
}

.themebtn::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    -webkit-animation: shine .75s;
    animation: shine 2s linear infinite;
}

.themebtn::after {
    position: absolute;
    content: '';
    width: 0;
    right: 0;
    height: 100%;
    background-color: var(--c2);
    top: 0;
    transition: 400ms ease;
    z-index: -1;
}

.themebtn:hover::after {
    width: 100%;
    left: 0;
}

.themebtn:hover span {
    animation: tada 1s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/* button style */

/* header css start */

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 0px;
}

a.header__logo img {
    width: 191px;
    height: auto;
    object-fit: contain;
}

ul.header-main__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

ul.header-main__nav li a {
    font-size: 15px;
    font-family: var(--f1);
    position: relative;
    text-transform: capitalize;
}

ul.header-main__nav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--c1);
    transition: all 500ms;
}

ul.header-main__nav li a.active::after {
    width: 100%;
    left: 0;
}

ul.header-main__nav li a:hover::after {
    width: 100%;
    left: 0;
}

ul.header-main__nav li a:hover {
    color: var(--c1);
}

ul.header-main__nav li a.active {
    color: var(--c1);
}

/* header css end */

/* baner css start */

.home_banner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: transparent;
    height: 700px;
}

.banner_img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.banner_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner_cont {
    position: relative;
    color: #fff;
    width: 90%;
}

.banner_cont h6 {
    font-size: 20px;
    text-transform: uppercase;
    font-family: var(--f1);
}

.banner_cont h3 {
    font-size: 55px;
    font-family: var(--f6);
    text-transform: capitalize;
    margin: 10px 0px;
    color: var(--c1);
    line-height: 1.1;
    font-weight: 800;
    text-shadow: 0px 2px 8px #898989;
}

.banner_cont p {
    font-size: 21px;
    width: 85%;
    color: #1d2758c2;
    margin: 21px 0px 33px;
}

/* baner css end */

.banner_sub_img {
    width: 75%;
    height: 511px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    float: inline-end;
    transform: scale(1.2);
    margin-right: -70px;
}

.banner_sub_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner_main {
    position: relative;
}

.banner_person {
    position: absolute;
    width: 344px;
    height: 544px;
    overflow: hidden;
    bottom: -98px;
    left: 48%;
    animation: img_bounceIn 700ms ease-out forwards;
    animation-delay: 1s;
}

.banner_person img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.transparent {
    background: transparent;
    box-shadow: none;
    color: var(--c1);
    font-size: 17px;
    width: max-content;
    padding: 9px 2px !important;
    border-radius: 0;
    font-family: var(--f4);
}

.transparent::before {
    background: var(--c1);
    animation: none;
    left: 50%;
    height: 2px;
    width: 100%;
    transform: translateX(-50%);
    top: 72%;
}

.transparent:hover {
    background: transparent;
    letter-spacing: 1px;
}

.transparent::after {
    display: none;
}

.transparent:hover::before {
    background: #fff;
}

.banner_btn {
    display: flex;
    align-items: center;
    gap: 70px;
}

.banner_cont h3 span {
    color: #fff;
    text-shadow: 0px 2px 8px #6d6d6d;
    position: relative;
}

.banner_cont h3 span small {
    position: absolute;
    font-size: 14px;
    font-family: var(--f6);
    left: 24%;
    bottom: 2px;
}

.banner_person::before {
    position: absolute;
    content: '';
    width: 300px;
    height: 300px;
    background: url(../images/banner_ticker.webp);
    top: 85px;
    left: 15px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    animation: ticker 20s linear infinite;
}

@keyframes ticker {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes img_bounceIn {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    60% {
        opacity: 1;
        transform: translateY(-20px);
    }
    75% {
        transform: translateY(10px);
    }
    90% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}

.chat_header_btn a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f7);
    color: var(--c1);
    margin-top: 3px;
    font-size: 15px;
    font-weight: 500;
}

.chat_header_btn a i {
    font-size: 22px;
    color: var(--c2);
}

.chat_header_btn a:hover i {
    animation: tada 600ms;
}

.banner_btn .themebtn {
    padding: 9px 23px;
}

.business_img {
    width: 100%;
    height: 578px;
    position: relative;
    border-right: 2px solid var(--c1);
}

.business_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business {
    padding: 140px 0px 110px;
    position: relative;
}

.bussiness_sub_img {
    width: 100%;
    height: 365px;
    position: relative;
}

.bussiness_sub_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business_img::before {
    position: absolute;
    content: '';
    width: 14%;
    height: 100%;
    background: #fff;
    top: 0;
    right: 0;
    z-index: 999;
}

.business_main {
    padding-left: 34px;
    position: relative;
}

.business_main h3 {
    font-size: 45px;
    font-family: var(--f6);
    color: var(--c1);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 22px;
}

.business_main p {
    font-size: 14px;
    font-family: var(--f7);
    font-weight: 500;
    color: #1d2758b3;
}

.business_services_item {
    display: flex;
    gap: 30px;
    margin-bottom: 36px;
}

.business_services_item small {
    font-size: 57px;
    line-height: 1;
    font-family: var(--f6);
    font-weight: 600;
    color: var(--c2);
}

.bus_cont h4 {
    font-size: 27px;
    font-family: var(--f6);
    font-weight: 400;
    color: var(--c1);
    text-transform: uppercase;
    margin-bottom: 31px;
}

.bus_cont h4 span {
    font-weight: 600;
    color: var(--c2);
}

.bus_cont p {
    font-size: 13px;
    margin: 0;
    line-height: 1.8;
    height: 100px;
    overflow-y: scroll;
}

.business_services .row {
    margin-top: 3rem;
}

p.agency {
    position: absolute;
    top: -90px;
    z-index: 9999;
    width: 100px;
    height: 100px;
    background: url(../images/agency_bg.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-family: var(--f8);
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    color: #fff;
    transform: rotate(-17deg);
    margin: 0;
}

.bussiness_sub_img::before {
    position: absolute;
    content: '';
    width: 60px;
    height: 60px;
    background: var(--c2);
    border-radius: 100%;
    bottom: 50%;
    left: -90px;
}

.business::before {
    position: absolute;
    content: '';
    width: 138px;
    height: 178px;
    background: url(../images/business_before.webp);
    top: 3%;
    right: -8px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.business::after {
    position: absolute;
    content: '';
    width: 130px;
    height: 140px;
    background: url(../images/business_after.webp);
    right: 15%;
    bottom: 2px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.about_img {
    width: 95%;
    height: 590px;
    overflow: hidden;
    -webkit-mask-image: url(../images/about_img_mask.webp);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    transition: 1s;
    border-radius: 21px;
    position: relative;
    z-index: 1;
}

.about_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about_main {
    position: relative;
}

.about_arrow {
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background: #E6E6F4;
    position: absolute;
    transition: 1s;
    top: 0px;
    left: 50px;
}

.about_arrow ig {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about_macbook_item {
    width: 209px;
    height: auto;
    text-align: center;
    padding: 22px 23px;
    background: var(--c2);
    border-radius: 28px;
    position: absolute;
    transition: 700ms;
    bottom: -50px;
    right: -30px;
    z-index: 1;
}

.macbook_img {
    width: 65px;
    height: 61px;
    overflow: hidden;
    border-radius: 10px;
    margin: 0 auto 8px;
}

.macbook_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about {
    padding: 160px 0px 70px;
    background: #F4F4F4;
    position: relative;
}

.macbook_cont h4 {
    font-size: 14px;
    font-family: var(--f6);
    font-weight: 500;
    color: #fff;
}

.macbook_cont p {
    font-size: 9px;
    color: #fff;
    line-height: 1.3;
}

.about_img:hover {
    mask-image: none;
}

.about_main:hover .about_arrow {
    transform: scale(0);
}

.about_main:hover .about_macbook_item {
    transform: scale(1.2);
}

.about_main::before {
    position: absolute;
    content: '';
    width: 260px;
    height: 260px;
    background: url(../images/about_img_ticker.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    top: -90px;
    right: -40px;
}

.never_stop {
    position: absolute;
    top: -55px;
    right: 9%;
    z-index: 999;
    width: 100px;
    height: 100px;
}

.never_stop img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: ticker 20s linear infinite;
}

img.about_star {
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: none;
}

.about_cont h6 {
    font-size: 18px;
    text-transform: capitalize;
    font-family: var(--f6);
    color: var(--c2);
    margin-bottom: 12px;
}

.about_cont h3 {
    font-size: 45px;
    font-family: var(--f6);
    color: var(--c1);
    margin-bottom: 35px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1.4;
    position: relative;
}

.about_cont h5 {
    font-size: 20px;
    width: 89%;
    font-family: var(--f6);
    color: var(--c1);
    font-weight: 600;
}

.about_cont p {
    font-size: 14px;
    font-family: var(--f7);
    font-weight: 500;
    color: #1d2758b3;
    line-height: 1.7;
    width: 89%;
    margin: 19px 0px;
}

.about_btn {
    display: flex;
    align-items: center;
    gap: 19px;
}

.lightblue {
    background: var(--c2);
    box-shadow: 0px 0px 0px 1px var(--c2);
}

.about_cont h3::before {
    position: absolute;
    content: '';
    width: 80%;
    height: 20px;
    background: url(../images/line.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    bottom: -10px;
    left: 0;
}

p.launch {
    position: absolute;
    top: 10px;
    left: 50%;
    background: #fff;
    border-radius: 10px;
    padding: 14px 10px;
    font-size: 19px;
    width: 120px;
    text-align: center;
    font-family: var(--f7);
    line-height: 1.1;
    font-weight: 500;
    text-transform: capitalize;
    transform: translateX(-50%);
    color: var(--c1);
    margin: 0;
    box-shadow: 0px 0px 10px 0px #dddddd;
}

.services {
    padding: 70px 0px;
}

.services_icon {
    width: 100%;
    height: 90px;
}

.section_title h6 {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--c2);
    font-family: var(--c6);
}

.section_title h3 {
    font-size: 40px;
    font-family: var(--f6);
    font-weight: 600;
    color: var(--c1);
    margin: 0;
}

.services_item {
    background: var(--c1);
    padding: 38px 30px;
    border-radius: 30px;
    overflow: hidden;
    transition: 500ms;
}

.services_icon img {
    width: 150px;
    object-fit: contain;
    height: 140px;
    float: inline-end;
    position: relative;
    top: -70px;
    right: -70px;
}

.services_cont span {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background: #fff;
    font-size: 33px;
    font-weight: 700;
    color: var(--c1);
}

.services_cont {
    color: #fff;
    position: relative;
    z-index: 1;
}

.services_cont h3 {
    font-size: 33px;
    font-family: var(--f6);
    line-height: 1.1;
    margin: 22px 0px;
}

.services_cont p {
    font-size: 19px;
    font-family: var(--f7);
    font-weight: 100;
    margin: 0;
    height: 120px;
    overflow-y: scroll;
}

.services .row .col-lg-3:nth-child(even) .services_item {
    background: var(--c2);
}

.services .row {
    margin-top: 3rem;
    ;
}

.services_item:hover::before {
    height: 100%;
}

.services .row .col-lg-3:nth-child(even) .services_item:hover::before {
    height: 100%;
    background: var(--c1);
}

.services .row .col-lg-3:nth-child(even) .services_item .services_cont span {
    color: var(--c2);
}

.services_item:hover .services_cont span {
    color: var(--c2);
}

.services .row .col-lg-3:nth-child(even) .services_item:hover .services_cont span {
    color: var(--c1);
}

.services_item::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    transition: 500ms;
    background: var(--c2);
    content: '';
}

.get-in-touch {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: var(--c1);
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 45vh;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    overflow: hidden;
}

.get_in_touch_img {
    position: absolute;
    width: 48%;
    height: 100%;
    top: 49%;
    right: 4%;
    transform: translateY(-50%);
}

.get_in_touch_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 100% 33%;
}

.get-in-touch_main h3 {
    font-size: 45px;
    font-family: var(--f6);
    margin: 0;
    font-weight: 600;
}

.get-in-touch_main {
    color: #fff;
}

.get-in-touch_main p {
    font-size: 15px;
    font-family: var(--f7);
    font-weight: 400;
    color: #ffffffbd;
    line-height: 1.7;
    width: 89%;
    margin: 19px 0px;
}

.live_chart a {
    display: block;
    color: #fff;
    width: max-content;
    font-size: 16px;
    text-transform: capitalize;
    line-height: 1.5;
}

.get-in-touch_btn {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lightblue:hover::after {
    background: var(--c1);
}

.get-in-touch_btn .themebtn {
    padding: 9px 40px;
}

.live_chart a:hover {
    color: var(--c2);
}

.portfolio_top_title {
    width: 100%;
    height: auto;
    text-align: end;
    position: relative;
    z-index: 1;
}
.portfolio_top_title h3 {
    font-size: 53px;
}
.portfolio_top_title img {
    width: 87%;
    height: auto;
}
.bookfair_img_p {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.bookfair_img_p .bookfair_img {
    width: 47%;
}

.bookfair_img_p img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 19px;
}

.portfolio {
    padding: 70px 0px;
    background: var(--c2);
    position: relative;
    overflow: hidden;
}

.portfolio_top_btn .themebtn {
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: max-content;
    background: var(--c2);
}

.portfolio_top_btn .themebtn img {
    width: 15px;
    height: auto;
}

.portfolio_title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-top: 1px solid #000;
    position: relative;
    padding: 44px 0px;
    gap: 50px;
}

.portfolio_title span {
    font-size: 60px;
    font-family: var(--f6);
    font-weight: 600;
    color: var(--c2);
}

.portfolio_title h3 {
    font-size: 17px;
    font-family: var(--f6);
    color: var(--c1);
    font-weight: 400;
    width: 49%;
}

.portfolio_img {
    position: absolute;
    top: 28%;
    right: 0;
    transform: translateY(-50%);
    width: 180px;
    height: 260px;
    overflow: hidden;
    transition: 500ms;
}

.portfolio_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.portfolio_main .row {
    margin-top: 7rem;
}

.portfolio_title:hover .portfolio_img {
    transform: scale(1.2) translateY(-50%);
}

.portfolio_item .portfolio_title:nth-child(even) .portfolio_img {
    right: 13%;
}

.portfolio_main {
    padding: 32px 50px;
    background: url(../images/portfolio_bg.webp);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: top;
    overflow: hidden;
}

.portfolio_person {
    width: 100%;
    height: 658px;
    overflow: hidden;
    position: relative;
    top: 47px;
    text-align: center;
    margin: -140px auto 0;
}

.portfolio_person img {
    width: 86%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 99;
}

.portfolio_person::before {
    position: absolute;
    content: '';
    width: 500px;
    height: 420px;
    background: url(../images/port_vector.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 5s linear infinite;
}

@keyframes rotate {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.portfolio::before {
    position: absolute;
    content: '';
    width: 550px;
    height: 550px;
    background: url(../images/globe.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    top: -15%;
    left: 18%;
}

.portfolio_title:hover {
    background: var(--c1);
}

.portfolio_title:hover h3 {
    color: #fff;
}

.portfolio_title:hover span {
    color: #fff;
}

.marquee span {
    font-size: 75px;
    color: #fff;
    font-weight: 800;
    margin-left: 106px;
    position: relative;
    animation: marquee 32s linear infinite;
}

.top-bar-con .marquee span {
    font-size: 18px;
}

section.marquee.marquee--alt span {
    margin-left: 29px;
}

.track {
    position: absolute;
    white-space: nowrap;
    will-change: auto;
    animation: marquees 30s linear infinite;
}

.head_trc {}

.marquees {
    position: relative;
    width: 100vw;
    max-width: 100%;
    height: 91px;
    display: flex;
    align-items: center;
}

section.marquee {
    background: var(--c1);
    padding: 0;
    overflow: hidden;
}

.top-bar-con .marquee {
    padding: 0 0;
}

@keyframes marquees {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-82%);
    }
}

.banner_marquee {
    position: absolute;
    bottom: 0%;
    right: 0;
    width: 50%;
    overflow: hidden;
    height: 70%;
    z-index: 999;
}

.track span {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--f9);
    margin-left: 92px;
    position: relative;
}

.marquees.marquee2 {
    background: #000;
    padding: 0px 0px;
    transform: rotate(331deg);
    position: absolute;
    bottom: 99px;
    left: 71px;
}

.marquees.marquee2 span {
    color: #fff;
    display: inline-block;
}

.marquees.marquee1 {
    background: #fff;
    padding: 0px 0px;
    transform: rotate(314deg);
    left: 20%;
    top: 60%;
    z-index: 21;
}

.track span::before {
    position: absolute;
    content: '';
    width: 40px;
    height: 40px;
    background: url(../images/marquee_star.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    top: 50%;
    left: -63px;
    transform: translateY(-50%);
}

.marquees.marquee2 span::before {
    filter: brightness(100);
}

.transforming_book {
    padding: 70px 0px 0;
}

.transforming_book_cont p {
    font-size: 14px;
    font-family: var(--f7);
    font-weight: 500;
    color: #000000cf;
    width: 100%;
    line-height: 1.8;
    margin: 28px 0px;
}

.transforming_book_cont h3 {
    font-size: 45px;
    font-family: var(--f6);
    color: var(--c1);
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    width: 95%;
}

.transforming_book_btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 130px;
}

.live_chat_btn a {
    display: block;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 500;
    text-transform: capitalize;
}

.transforming_book_cont {
    padding-left: 51px;
    border-left: 1px solid var(--c1);
    position: relative;
}

span.agency {
    position: absolute;
    top: -70px;
    left: -52px;
    z-index: 9999;
    width: 100px;
    height: 100px;
    background: url(../images/agency_bg.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-family: var(--f8);
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    color: #fff;
    transform: rotate(-17deg);
    margin: 0;
}

.transforming_book_cont::before {
    position: absolute;
    content: '';
    width: 60px;
    height: 60px;
    background: #fead35;
    border-radius: 100%;
    bottom: 19%;
    left: -30px;
    animation: ball 9s linear infinite;
}

@keyframes ball {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-300px);
    }
}

.transforming_book_img {
    width: 100%;
    height: 750px;
    overflow: hidden;
    text-align: center;
}

.transforming_book_img img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    border-radius: 30px;
}

.live_chat.alt {
    color: var(--c2);
}

.transforming_book_cont::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 30%;
    top: 100%;
    left: -1px;
    background: var(--c1);
}

.contact_form {
    padding: 50px 40px;
    width: 70%;
    background: #EFF0F3;
    border-radius: 20px;
    position: relative;
    border-bottom: 9px solid var(--c1);
    overflow: hidden;
}

.form_fields {
    width: 100%;
    height: 47px;
    border: none;
    box-shadow: 0px 0px 0px 1px #cacaca00;
    border-radius: 5px;
    margin-bottom: 17px;
    padding: 13px;
    font-size: 14px;
}

.banner_form {
    text-align: -webkit-right;
    position: relative;
}

textarea.form_fields {
    height: 101px;
}

h3.form_title {
    text-align: center;
    text-transform: capitalize;
    font-size: 28px;
    font-family: var(--f3);
    color: var(--c1);
    margin-bottom: 21px;
    font-weight: 600;
}

.banner_form::before {
    position: absolute;
    content: '';
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%);
    background: url(../images/FORM_Vector.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: 72px;
    right: -330px;
    animation: rotate 14s linear infinite;
}

/* mujtaba css */

.foo_logo {
    width: 300px;
    height: auto;
}

.footer_main p {
    font-size: 18px;
    font-family: var(--f1);
    margin: 0 0 50px;
}

.footer_newsLetter h3 {
    font-family: var(--f6);
    font-size: 27px;
    margin: 0 0 0px;
    text-transform: capitalize;
    font-weight: 700;
}

.footer_newsLetter p {
    font-size: 16px;
    font-family: var(--f1);
    margin: 10px 0;
}

.news_form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #444444c9;
    border-radius: 10px;
}

.news_form input {
    padding: 15px 15px;
    width: 97%;
    background: transparent;
    border: none;
    font-size: 14px;
    font-family: var(--f1);
}

.news_form button {
    padding: 10px;
    background: transparent;
    border: none;
    font-size: 30px;
    height: 20px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4444;
}

.footer {
    padding: 290px 0 60px;
    background: #F4F4F4;
}

.footer_linksMain {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.footer_link h4 {
    font-family: var(--f4);
    font-size: 20px;
    margin: 0px 0 15px;
}

.footer_link li a {
    font-size: 16px;
    font-family: var(--f1);
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.footer_link li {
    margin: 5px 0;
}

.foo_botomMain {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 20px;
}

.foo_botomImg {
    width: 37%;
    height: 210px;
}

.foo_btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

.foo_btns li a {
    background: var(--c2);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--f1);
    font-size: 27px;
    border-radius: 100%;
}

.innerMAincta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 114px 0;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: -180px;
    position: relative;
    z-index: 1;
}

.cta_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: -1;
}

.mainCta {
    width: 90%;
}

.innerCtacontent h3 {
    font-family: var(--f6);
    font-size: 41px;
    color: #fff;
    font-weight: 600;
    line-height: 54px;
}

.innerCtacontent p {
    font-size: 15px;
    color: #fff;
    font-family: var(--f1);
    letter-spacing: 0.5px;
    margin: 20px 0;
}

.themebtn.gradient {
    background: var(--c3);
    box-shadow: none;
}

.themebtn.gradient:after {
    background: var(--c1);
}

.faq_head h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 80px;
    font-family: var(--f6);
    margin: 0;
    justify-content: center;
    padding: 20px;
    border: 1px solid #000;
    border-top: none;
}

.flower_img {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 20s linear infinite;
}

.faq_crd {
    display: flex;
    align-items: center;
    border: 1px solid #000;
    border-top: 0;
    cursor: pointer;
}

.faqcrd_left h3 {
    font-size: 20px;
    font-family: var(--f3);
    margin: 0;
}

.faq_crdRigth {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 88px;
    padding: 36px 20px;
    border-left: 1px solid #000;
    margin-left: auto;
    position: relative;
    justify-content: end;
    transition: 500ms all;
    padding-right: 10px;
}

.faq_crdRigth p {
    font-size: 14px;
    font-family: var(--f6);
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 81%;
    margin: 0 auto;
    visibility: hidden;
    transition: 500ms all;
}

.faqcrd_left {
    width: 50%;
    padding: 20px 30px;
}

.faq_crdRigth.active {
    width: 538px;
}

.faq_btn a {
    width: 40px;
    height: 40px;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 100%;
}

.faq_text.active {
    opacity: 1;
    visibility: visible;
}

.faq_innerbtn.active {
    transform: rotate(-100deg);
    background: var(--c2);
}

.faqs {
    padding: 0 0 70px;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

.faq_bg {
    position: absolute;
    right: -50px;
    width: 24%;
    height: 95%;
    bottom: 0;
    display: none;
}

.testimonial {
    padding: 70px;
    background: var(--c2);
}

.test_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.test_top h3 {
    width: 53%;
    font-family: var(--f6);
    font-weight: 700;
    color: #fff;
    font-size: 35px;
    font-weight: 400;
}

.test_right {
    width: 47%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.test_right p {
    width: 420px;
    font-size: 14px;
    color: #fff;
    font-family: var(--f1);
    margin: 0;
}

.test_right ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.test_right ul li button {
    background: #fff;
    border: 1px solid #000;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    border-radius: 5px;
}

.test_crd {
    background: #fff;
    padding: 30px;
    border-radius: 30px;
}

.collen_img {
    width: 25px;
    margin: 0 0 10px;
}

.test_crd p {
    font-size: 25px;
    font-family: var(--f6);
    font-weight: 600;
}

.test_user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user_img {
    width: 60px;
    aspect-ratio: 1/1;
}

.test_user p {
    font-size: 14px;
    font-family: var(--f6);
    font-weight: 600;
    margin: 0;
}

.test_user p span {
    display: block;
    font-size: 14px;
    font-weight: 100;
}

.test_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.test_logo {
    width: 250px;
    height: auto;
}

.test_slider {
    margin: 30px 0 0;
}

.TestsliderItem {
    margin: 0 10px;
}

.project_crd {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 300px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.project_img {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: -1;
}

.project_maincontent {
    height: 180px;
    position: absolute;
    bottom: 0;
    border-radius: 20px;
    background: var(--c3);
    padding: 20px;
    transform: translatey(100%);
    transition: 500ms all;
}

.pro_arrow {
    width: 55px;
    height: 55px;
    background: #ffffff47;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(135deg);
    font-size: 33px;
    margin-left: auto;
    color: #fff;
}

.project_maincontent p {
    margin: 15px 0 0;
    font-size: 24px;
    font-family: var(--f6);
    font-weight: 600;
    color: #fff;
}

.project_crd:hover .project_maincontent {
    transform: translatey(0);
}

.projects {
    padding: 0 0 70px;
}

/* width */

::-webkit-scrollbar {
    width: 3px;
}

/* Track */

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #999;
    border-radius: 10px;
}

/* Handle */

::-webkit-scrollbar-thumb {
    background: var(--c1);
    border-radius: 10px;
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: var(--c2);
}

.mainCta_sec {
    padding: 70px 0px;
}

.contact_main {
    background: var(--c2);
    padding: 52px;
    border-radius: 30px;
    margin-bottom: -280px;
    position: relative;
    z-index: 1;
}

.contact_fields {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 9px;
    padding: 12px;
    margin-bottom: 13px;
    /* box-shadow: 0px 0px 7px 0px #8e8e8e; */
    border: 1px solid var(--c1);
    outline: 0;
    color: var(--c1);
}

textarea.contact_fields {
    height: 141px;
}

.contact_fields::placeholder {
    font-size: 15px;
    text-transform: capitalize;
    font-family: var(--f6);
    font-weight: 500;
    color: #000000cf;
}

.form_top_title h3 {
    font-size: 44px;
    font-family: var(--f6);
    color: var(--c1);
    font-weight: 900;
    text-transform: capitalize;
}

.form_top_title h6 {
    font-size: 20px;
    font-family: var(--f7);
    color: var(--c1);
}

.form_btn button {
    width: 100%;
    font-size: 16px;
}

.footer_newsLetter {
    width: 67%;
}

.foo_btns li a:hover {
    transform: translateY(-6px);
    background: var(--c1);
}

.pop_form {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 500ms all;
}

.overLay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #00000094;
    backdrop-filter: blur(5px);
}

.main_popForm .contact_form {
    width: 100%;
}

.main_popForm {
    width: 24%;
    margin: 0 auto;
    position: relative;
}

.crs_btn {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--c1);
    top: 10px;
    z-index: 9;
    right: 10px;
    border-radius: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 0px 6px #eff0f3;
}

.pop_form.active {
    opacity: 1;
    visibility: visible;
}

/* responsive  css start */

.menu_logo {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 7px 10px;
    background: var(--c1);
    top: 0;
    left: 0;
    z-index: 999;
    transition: 500ms all;
    justify-content: center;
}

.side_menu {
    width: 70%;
    background: var(--c1);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transform: translateX(-100%);
    transition: 500ms all;
    overflow-y: auto;
}

.responsive_menu {
    display: none;
}

.show {
    transform: translateX(0%);
}

.responsive_logo img {
    width: 100px;
}

.open_menu {
    font-size: 30px;
    color: #fff;
}

.side_menu li a {
    padding: 10px 12px;
    width: 100%;
    border-bottom: 1px solid #ffffff69;
    color: #fff;
    text-transform: capitalize;
    font-size: 15px;
}

.close_menu {
    text-align: end;
    padding: 8px 12px !important;
}

.menu_sticky {
    position: fixed;
}

.responsive_overly {
    width: 100%;
    height: 100vh;
    position: fixed;
    background: #000000a3;
    transition: 1s;
    left: -100%;
    top: 0;
    z-index: 999;
}

.responsive_overly.show {
    left: 0;
}

.side_menu li.accordion-button {
    background: transparent;
    padding: 0;
}

.side_menu .accordion-item {
    background: transparent;
}

.side_menu .accordion-button::after {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: boxicons !important;
    background-image: none;
    content: "\ea4a";
    color: #fff;
    font-size: 23px;
}

.side_menu .accordion-body {
    padding: 0;
    height: 120px;
    overflow-x: auto;
}

.side_menu .accordion-button:not(.collapsed)::after {
    transform: translateY(-50%) rotate(-180deg);
    background-image: none;
    content: "\ea4a";
}

.side_menu .accordion-button:not(.collapsed) {
    background: transparent;
    box-shadow: none;
    outline: 0;
    border-color: transparent;
}

.side_menu .accordion-button:not(.collapsed) a {
    background: var(--c2);
}

.close_menu i {
    font-size: 23px;
}

.side_menu .accordion-body li a {
    padding-left: 23px;
}

/* responsive  css end */

.contact_form::before {
    position: absolute;
    content: '';
    width: 270px;
    height: 20px;
    background: var(--c1);
    top: 0;
    right: 0;
    transition: 500ms;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%)
}

.contact_form::after {
    position: absolute;
    content: '';
    width: 300px;
    height: 17px;
    background: #1c27598c;
    top: 0;
    right: 0;
    transition: 500ms;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%)
}




@media(max-width: 1400px){
    
    .banner_person {
      left: 41%;
      width: 320px;
      height: 470px;
    }
    .contact_form {
      width: 80%;
      padding: 50px 30px;
    }
    .home_banner {
      height: 650px;
    }
}