@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    --darkBackground: #023246;
    --lightText: #F6F6F6;
    --lightBackground: var(--lightText);
    --specialBackground: #ECCC00;
    --dark: black;
    --darkButtonBackground: #287094;
    --darkButtonColor: var(--darkBackground);
    --darkText: var(--darkBackground);
    --whiteBackground: #FFFF;
    --smalltext: 12px;
    --headerFontFamily: 'Space Grotesk', sans-serif;
    /* ? swiperjs */
    --swiper-navigation-sides-offset: 15px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif !important;
}

/* .topSectionWrap {
    background-color: var(--darkBackground);
    height: 100vh;
    width: 100%;
} */

/* ! Header section start */
header {
    padding: 1rem 0 1rem 0;
    background-color: var(--darkBackground);
    height: 12vh;
}

header a {
    color: var(--lightText);
}

header ul li a,
.loginBut {
    transition: 0.3s ease;
    padding: 1rem 0 1rem 0;
}

header ul li a:hover {
    text-shadow: 0 0 5px rgb(61, 179, 238),
        0 0 25px rgb(61, 179, 238),
        0 0 50px rgb(61, 179, 238),
        0 0 100px rgb(61, 179, 238);
    color: var(--lightText);
}

header .line {
    min-width: 2px;
    height: 40px;
    background: var(--lightBackground);
}

.loginBut:hover {
    text-shadow: 0 0 5px rgb(61, 179, 238),
        0 0 25px rgb(61, 179, 238),
        0 0 50px rgb(61, 179, 238),
        0 0 100px rgb(61, 179, 238);
    color: var(--lightText);
    text-decoration: underline;
}

/** Header button start */
.getBtn {
    background-color: #000;
    color: var(--lightText);
}

.getBtn {
    color: var(--lightText) !important;
    border-radius: 50px;
    overflow: hidden;
    padding: 5px 25px;
    position: relative;
}

.getBtn .original {
    background: var(--darkButtonBackground);
    color: var(--lightText);
    display: grid;
    inset: 0;
    place-content: center;
    position: absolute;
    transition: transform 0.2s cubic-bezier(0.87, 0, 0.13, 1);
}

.getBtn:hover .original {
    transform: translateY(100%);
}

.getBtn .letters {
    display: inline-flex;
}

.getBtn span {
    opacity: 0;
    transform: translateY(-15px);
    transition: transform 0.2s cubic-bezier(0.87, 0, 0.13, 1), opacity 0.2s;
}

.getBtn span:nth-child(2n) {
    transform: translateY(15px);
}

.getBtn:hover span {
    opacity: 1;
    transform: translateY(0);
}

.getBtn:hover span:nth-child(2) {
    transition-delay: 0.1s;
}

.getBtn:hover span:nth-child(3) {
    transition-delay: 0.2s;
}

.getBtn:hover span:nth-child(4) {
    transition-delay: 0.3s;
}

.getBtn:hover span:nth-child(5) {
    transition-delay: 0.4s;
}

.getBtn:hover span:nth-child(6) {
    transition-delay: 0.5s;
}

.getBtn:hover span:nth-child(7) {
    transition-delay: 0.6s;
}

/** Header button end */
/** Header handbar start */
.menuBut {
    position: relative;
    width: 80px;
    height: 80px;
    background-color: var(--darkBackground);
}

header svg {
    height: 80px;
    position: absolute;
    width: 80px;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;

}

.x {
    transform: scale(0);
    transition: transform 400ms;
}

.line {
    fill: none;
    stroke: var(--lightText);
    stroke-width: 4px;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform-origin: 50%;
    transition: stroke-dasharray 500ms 200ms, stroke-dashoffset 500ms 200ms, transform 500ms 200ms;
}

.x .line {
    stroke-width: 5.5px;
}

.plate1 .line2 {
    stroke-dasharray: 40 200;
    stroke-dashoffset: 0px;
}

.plate1 .line3 {
    stroke-dasharray: 40 179;
    stroke-dashoffset: 0px;
}

.active .line {
    transition: stroke-dasharray 500ms, stroke-dashoffset 500ms, transform 500ms;
}

.active.plate1 .line1 {
    transform: scale(0, 1);
    transition: transform 500ms 100ms;
}

.active.plate1 .line2 {
    stroke-dasharray: 5px 200;
    stroke-dashoffset: -164px;
}

.active.plate1 .line3 {
    stroke-dasharray: 5px 179;
    stroke-dashoffset: -142px;
}

.active .x {
    transform: scale(1);
    transition: transform 400ms 350ms;
}

/** Header handbar end */
/** Phone navbar start */
.phoneOverlaySection,
.phoneLangOverlaySection {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 0.33s, opacity 0.33s linear;
}

.menushow {
    visibility: visible !important;
    opacity: 1 !important;
    transition-delay: 0s;
}

.phoneOverlaySection .overlaywrap {
    z-index: 5;
    background-color: var(--lightBackground);
    position: absolute;
    top: 75px;
    right: 25px;
    border-radius: 10px;
    overflow: hidden;
}

.phoneLangOverlaySection .overlaywrap {
    background-color: var(--lightBackground);
    position: absolute;
    top: 40px;
    right: 0px;
    border-radius: 10px;
    overflow: hidden;
}

.phoneOverlaySection li,
.phoneLangOverlaySection li {
    padding: 5px 25px;
    transition: all 0.5s ease;
}

.phoneOverlaySection a,
.phoneLangOverlaySection a {
    color: var(--darkBackground);
    margin: 0;
    padding: 0;
}

.phoneOverlaySection ul li:hover,
.phoneLangOverlaySection ul li:hover {
    background: var(--darkButtonBackground);
    cursor: pointer;
}

.phoneOverlaySection ul li:hover a,
.phoneLangOverlaySection ul li:hover {
    color: var(--lightText);
}

/** Phone navbar end */
/* ! Header Section end */

/* ! Hero Section start */
.heroSection {
    color: var(--lightText);
    flex: 1;
    background-color: var(--darkBackground);
    height: 88vh;
}

.heroSection h1 {
    color: var(--lightText);
}

.heroSection p {
    color: var(--lightText);
}

.heroSection div:nth-child(1) h1 {
    font-family: var(--headerFontFamily) !important;
    font-weight: 400;
    line-height: 1.5;
    font-size: 34px;
}

.heroSection div:nth-child(1) h1 span {
    font-family: var(--headerFontFamily) !important;
    font-weight: 600;
    font-style: italic;
}


.heroSection div:nth-child(3) p {
    font-size: var(--smalltext);
}

.heroSection div:nth-child(3) a {
    border-radius: 12px !important;
}

/** Macbook website perive */
.hero-pagination {
    width: 75% !important;
    position: relative !important;
    display: flex;
    justify-content: center;
    bottom: 0 !important;
    margin-top: 2rem;
    gap: 16px !important;
}

.hero-pagination .swiper-pagination-bullet {
    flex: 1;
    border-radius: 16px;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #fff !important;
}

.heromackMockWrapSection img {
    width: 100%;
    height: 100%;
}

.heromackMockWrap .swiper-slide img {
    animation: themeAnimation 1.5s ease;
    transform: all 1s ease;

}

@keyframes Zoom {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

/* ! Header Section end */

/* ! Video Section start */
.videoSection {
    background-color: var(--whiteBackground);
    /* background-color: var(--lightBackground); */
    padding-top: 4rem;
    padding-bottom: 4rem;
    text-align: center;
}

.videoSectionWrap {
    padding: 30px 40px;
}

.videoSectionWrap div:nth-child(2) {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
}

.videoSectionWrap h4,
.videoSectionwrap h2 {
    color: var(--dark);
    font-family: var(--headerFontFamily) !important;
}

.videoSectionWrap iframe {
    border-radius: 18px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: 600px;
    height: 350px;
}

/* ! Video Section end */

/* ! It works Section start */
.itworkSection {
    padding-top: 5rem;
    padding-bottom: 4rem;
    background-color: var(--specialBackground);
    height: 100%;
}

.itworkSection h2 {
    color: var(--darkText);
    font-family: var(--headerFontFamily) !important;
}

.itworkSection p {
    margin-top: .5rem;
    line-height: 1.5;
}

.itworkSection .itworkCard h4 {
    color: var(--darkText);
    font-family: var(--headerFontFamily) !important;
}

.itworkSection .itworkSectionWrap {
    /* padding: 30px 40px; */
    border-radius: 18px;
}

.itworkSectionWrap div:first-child {
    text-align: center;
}

.itworkSectionWrap div:first-child div {
    text-align: start;
}

.itworkCardWrap {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media only screen and (max-width: 992px) {
    .itworkCardWrap {
        grid-template-columns: auto auto;

    }
}

@media only screen and (max-width: 600px) {
    .itworkCardWrap {
        grid-template-columns: auto;
    }
}

.itworkCardWrap .itworkCard {
    /* text-align: center; */
    flex: 1;
}

.itworkCardWrap .itworkCard img {
    width: 250px;
    height: 300px;
}

/* ! It works Section end */

/* ! user portfolio Section start */
.userportfolioSection {
    background-color: var(--darkBackground);
    text-align: center;
    padding: 30px 30px;
}

.userportfolioSection h2 {
    color: var(--lightText);
    font-family: var(--headerFontFamily) !important;
}

.userportfolioSection p {
    color: var(--lightText);
}

.userportfolioSection .topSection {
    margin-top: 2.5rem;
}

/* * swiperjs */
.userportfolioSwiper {
    margin-top: 5rem;
    margin-bottom: 4rem;
}

.userportfolioSwiper .swiper-slide {
    display: flex;
    justify-content: center;
}

.userportfolioSwiper .swiper-slide div {
    width: 800px;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.userportfolioSwiper .swiper-slide div:hover img {
    filter: blur(10px);
}

.userportfolioSwiper .swiper-slide div a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 7px 30px;
    font-weight: 700;
    color: var(--darkBackground);
    border: 1px solid var(--darkButtonBackground);
    background: transparent;
    border-radius: 50px;
    z-index: 5;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    opacity: 0;
}


.userportfolioSwiper .swiper-slide div:hover a {
    opacity: 1;
    transition: all 0.5s ease;
}

.userportfolioSwiper .swiper-slide div img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.userportfolioSwiper-button-next,
.userportfolioSwiper-button-prev {
    transition: all 0.4s ease;
}

.userportfolioSwiper-button-next:hover,
.userportfolioSwiper-button-prev:hover {
    transform: scale(1.05);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: '' !important;
}

.swiper-pagination-bullet-active {
    background-color: var(--darkBackground) !important;
}

/* ! user portfolio Section end */

/* ! growth Section start */
.growthSection {
    margin-top: 5rem;
    margin-bottom: 6rem;
}

.growthSection h2 {
    color: var(--dark);
    font-family: var(--headerFontFamily) !important;
}

.growthSection h4 {
    font-family: var(--headerFontFamily) !important;
    color: var(--darkText);
}

.growthSection p {
    color: var(--dark);
}

.growthSection .bottomSection {
    display: grid;
    grid-template-columns: auto auto auto;
    column-gap: 1rem;
    row-gap: 2rem;
}

.growthSection .bottomSection .lord-icon {
    width: 40px;
    height: 40px;
}

/* ! growth Section end */

/* ! Traffic Section start */
.trafficSection {
    margin-top: 5rem;
    background-color: var(--darkBackground);
}

.trafficSection h2 {
    color: var(--lightText);
    font-family: var(--headerFontFamily) !important;
}

.trafficSection p {
    color: var(--lightText);
}

.trafficSection .col-3 .topSection {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.trafficSectionImageWrap {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    gap: 15px;
    place-content: center;
    grid-template-rows: 55% 45%;
    max-height: 460px;
    padding: 2rem 1rem;
}

.trafficSection .row {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.trafficSectionImageWrap div {
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.trafficSectionImageWrap div:nth-child(1) {
    grid-column: span 3;
}

.trafficSectionImageWrap div:nth-child(5) {
    grid-column: span 2;
}

.trafficSectionImageWrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ! Traffic Section end */

/* ! Trial Section start */
.trialSection {
    background-color: var(--specialBackground);
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.trialSection h2,
.trialSection p {
    color: var(--darkBackground);
}

/* ! Trial Section end */

/* ! Hirepro Section start */
.hireproSection {
    background-color: var(--darkBackground);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.hireproSection h2,
.hireproSection h5 {
    font-family: var(--headerFontFamily) !important;
}

.hireproSection h2,
.hireproSection p,
.hireproSection h5,
.hireproSection a {
    color: var(--lightText);
}

.hireproSection .container .bottomSection div {
    padding-top: 1.5rem;
    flex: 1;
    border-top: 1px solid var(--lightBackground);
}

.hireproSection a {
    text-decoration: underline;
}

/* ! Hirepro Section end */

/* ! Theme Section start */
.themSection {
    background-color: var(--dark);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.themSection .textSection {
    /* padding: 2rem 0; */
    border-right: 1px solid var(--lightBackground);
    display: grid;
    place-content: center;
}

.themSection .textSection h2 {
    color: var(--lightText);
    font-family: var(--headerFontFamily) !important;
}

/** Swiper */
.themSection .swiper-slide .themeimgeWrap {
    display: grid;
    grid-template-columns: auto auto;
    gap: 1rem;
    place-content: end;
}

.themSection .themebuttonWrap {
    justify-content: end;
    margin-bottom: 1rem;
}

.themSection .swiper-slide .themeimgeWrap div {
    border-radius: 18px;
    overflow: hidden;
    min-width: 350px;
    max-width: 350px;
    max-height: 250px;
}

.themSection .swiper-slide .themeimgeWrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: themeAnimation 1.5s ease;
    transform: all 1s ease;
}

@keyframes themeAnimation {
    from {
        opacity: 0.5;
        filter: blur(5px);
    }

    to {
        opacity: 1;
        filter: blur(0);
    }
}

.themeSwiper-button-next,
.themeSwiper-button-prev {
    transition: all 0.4s ease;
}

.themeSwiper-button-next:hover,
.themeSwiper-button-prev:hover {
    transform: scale(1.05);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* ! Theme Section end */

/* ! FAQs Section start */
.faqSection {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.faqSection h2,
.faqSection h4 {
    color: var(--dark);
    font-family: var(--headerFontFamily) !important;
}

.faqSection p {
    color: var(--dark);
}

.faqSection .container .bottomSection {
    margin-top: 2rem;
}

.faqSection .container .bottomSection div {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    border-top: 1px solid var(--dark);
}

/* ! FAQs Section end */

/* ! Signup Section start */
.signupSection .topSection h2 {
    color: var(--dark);
    font-family: var(--headerFontFamily) !important;
}

.signupSection .topSection p {
    color: var(--dark);
}

.signupSection .topSection a {
    color: var(--darkButtonBackground);
    text-decoration: underline;
}

.signupSection strong {
    color: var(--darkBackground) !important;
}

.signupSection input {
    border: 1px solid var(--darkBackground) !important;
    border-radius: 14px;
}

/* ! Signup Section end */

/* ! Checkout page Section start */
.checkoutpageSection h3 {
    color: var(--darkBackground) !important;
}

.checkoutpageSection input {
    border: 1px solid var(--darkBackground) !important;
    border-radius: 14px;
}

/* ! Checkout page Section end */

/* ! Pricing Section start */

.saas-pricing .pricing-tabs .nav-tabs .nav-link.active {
    background: var(--darkBackground) !important;
}

.pricingSection h2 {
    color: var(--darkBackground) !important;
}

.packageFeaturedWrap .pricing-item {
    background-color: var(--specialBackground);
}

/* ! Pricing Section end */

/* ! Login page Section start */
.loginpageSection input {
    border: 1px solid var(--darkBackground) !important;
    border-radius: 14px;
}

.loginpageSection .mainButton {
    border-radius: 4px;
}

/* ! Login Page Section end */

/* ! Footer Section start */
.saas-footer .footer-widget .widget.newsletter-widget .social-link li a,
.saas-footer .footer-widget .widget.newsletter-widget form .form_gorup .newsletter-btn {
    background: var(--darkBackground) !important;
}

.saas-footer .footer-widget .widget.useful-link-widget ul.widget-link li a:hover {
    color: var(--darkButtonBackground);
}

/* ! Footer Section end */



/* ! Common section start */
.mainButton {
    color: var(--lightText);
    background-color: var(--darkButtonBackground);
    border-radius: 50px;
    padding: 7px 30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.mainButton:hover {
    color: var(--lightText);
}

/* ? line loader */
.loader-line {
    width: 200px;
    height: 3px;
    position: relative;
    overflow: hidden;
    background-color: var(--lightText);
    margin: 100px auto;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.loader-line:before {
    content: "";
    position: absolute;
    left: -50%;
    height: 5px;
    width: 50%;
    background-color: var(--darkBackground);
    -webkit-animation: lineAnim 1s linear infinite;
    -moz-animation: lineAnim 1s linear infinite;
    animation: lineAnim 1s linear infinite;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

@keyframes lineAnim {
    0% {
        left: -40%;
    }

    50% {
        left: 20%;
        width: 80%;
    }

    100% {
        left: 100%;
        width: 100%;
    }
}

.lineLoaderSection {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: grid;
    place-content: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.orLine {
    overflow: hidden;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
}

.orLine>span {
    position: relative;
    display: inline-block;
}

.orLine>span:before,
.orLine>span:after {
    content: '';
    position: absolute;
    top: 50%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    width: 100vw;
    margin: 0 20px;
    background-color: rgba(0, 0, 0, 0.3);
}

.orLine>span:before {
    right: 100%;
}

.orLine>span:after {
    left: 100%;
}

/* ! Common section end */








/* ! Media queries section start */
@media only screen and (max-width: 1200px) {

    /* ? Hero Section start */
    .heroSection div:nth-child(1) h1 {
        font-size: 45px;
    }

    /* .heromackMockWrap{
        width: 332px;
        height: 210px;
        top: 38px;
        left: 74px;
    } */

    /* ? Hero Section end */
    /* ? Theme Section start */
    .themSection .swiper-slide .themeimgeWrap div {
        min-width: unset;
    }

    /* ? Theme Section end */
}

@media only screen and (max-width: 992px) {
    .topSectionWrap {
        height: 100%;
    }

    /* ? Hero Section start */
    .heroSection div:nth-child(1) h1 {
        font-size: 30px;
    }

    .heroSection div p {
        font-size: 18px;
    }

    .heroSection br {
        display: none;
    }

    /* .heromackMockWrap{
        width: 512px;
        height: 324px;
        top: 55px;
        left: 105px;
    } */
    /* ? Hero Section end */
    /* ? Video Section start */
    .videoSection br {
        display: none;
    }

    /* ? Video Section end */
    /* ? itworks section start */
    .itworkSection {
        height: 100%;
    }

    .itworkSection .itworkSectionWrap {
        text-align: center;
    }

    .itworkSectionWrap div:first-child div {
        text-align: center;
    }

    /* ? itworks section end */
    /* ? growth section start */
    .growthSection .bottomSection {
        grid-template-columns: auto auto;
    }

    /*? growth section end */
}

@media only screen and (max-width: 768px) {

    /* ? Header section start */
    header .container {
        max-width: none !important;
    }

    header svg {
        width: 60px;
        height: 60px;
    }

    /* ? Header section end */
    /* ? Hero Section start */
    .heroSection div:nth-child(1) h1 {
        line-height: 1.2;
    }

    .heroSection .container {
        max-width: none !important;
    }

    /* .heromackMockWrap{
        width: 548px;
        height: 341px;
        top: 65px;
        left: 110px;
    } */

    /* ? Header section end */
    /* ? Video Section start */
    .videoSection .container {
        max-width: none !important;
    }

    .videoSectionWrap {
        padding: 30px 10px;
    }

    .videoSectionWrap iframe {
        width: 100%;
    }

    /* ? Video Section end */
    /* ? Theme Section start */
    .themSection .textSection {
        text-align: center;
        border: none;
    }

    /* ? Theme Section end */
}

@media only screen and (max-width: 600px) {

    /* ? Header section start */
    header .overlaywrap {
        min-width: 180px;
    }

    /* ? Header section end */
    /*? Hero section start */
    .heroSection {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem;
        height: auto;
    }

    .heromackMockWrap {
        padding-top: 2rem;
    }

    /*? Hero Section end */
    /* ? Video section start */
    .videoSection .videoSectionWrap h2 {
        font-size: 30px !important;
    }

    /* ? Video section end */
    /* ? userportfolio section start */
    .userportfolioSection {
        padding: 30px 0;
    }

    .userportfolioSection .topSection br {
        display: none;
    }

    /* ? userportfolio section end */
    /* ? Theme section start */
    .themSection .swiper-slide .themeimgeWrap div {
        min-width: 190px;
        min-height: 175px;
    }

    /*? Theme section end */
    /*? growth section start */

    .growthSection {
        text-align: center;
        padding: 0 25px;
    }

    .growthSection br {
        display: none;
    }

    .growthSection .bottomSection {
        grid-template-columns: auto;
        row-gap: 3rem;
    }

    .growthSection .bottomSection .lord-icon {
        width: 50px;
        height: 50px;
    }

    /*? growth section end */
}

/* ! Media queries section end */