@font-face {
    font-family: clash-display;
    src: url('../Assets/ClashDisplay-Medium.otf');
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body,
html {
    overflow-x: hidden;
}

:root {
    --primary-color: #7620C2;
    --secondary-color: #ffff;
    --clash-family: clash-display;
    --bg-body: #13072F;
    --title-color: linear-gradient(to right, #2C00CC, #41ECFF, #FFFFFF);
    --paragraph-color: linear-gradient(to right, #FFFFFF, #744580, #744580);
}

body {
    background: var(--bg-body);
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
    display: inline-block;
}

.container {
    max-width: 1650px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-2 {
    width: calc(2 * 8.33%);
    padding: 0 15px;
}

.col-3 {
    width: calc(3 * 8.33%);
    padding: 0 15px;
}

.col-6 {
    width: calc(6 * 8.33%);
    padding: 0 15px;
}

.col-4 {
    width: calc(4 * 8.33%);
    padding: 0 15px;
}

/* .col-12 {
    width: calc(12 * 8.33%);
    padding: 0 15px;
} */
.col-10 {
    width: calc(10 * 8.33%);
    padding: 0 15px;
}

.primary-btn {
    background-color: var(--primary-color);
    padding: 20.65px 53.72px;
    border-radius: 30px;
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 500;
    font-family: var(--clash-family);
}

.secondary-btn {
    color: var(--secondary-color);
    font-family: var(--clash-family);
}

.title2 {
    color: var(--secondary-color);
    font-size: 24px;
    font-family: var(--clash-family);
    /* position: relative;
    width: fit-content;
    margin: 0 auto; */
}

.align-row {
    align-items: center;
}

/* .title2::after {
    content: '';
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background: var(--secondary-color);
    position: absolute;
    top: 50%;
    left: -19px;
    transform: translateY(-50%);
} */

/* hdr-sec */

.hdr-sec {
    padding: 15px 0;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

.nav-logo>a {
    width: 152px;
}

.nav-logo>a>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

nav {
    background: rgba(255, 255, 255, 10%);
    padding: 11px 17px;
    border-radius: 50px;
    backdrop-filter: blur(20px);
}

nav,
.navbar-links,
.navbar-links>ul {
    display: flex;
    align-items: center;
}

.navbar-links>ul {
    margin: 0 auto;
}

.navbar-links {
    flex-grow: 1;
}

.nav-links {
    color: var(--secondary-color);
    font-size: 22px;
    font-weight: 400;
    font-family: var(--clash-family);
}

.nav-items {
    position: relative;
}

.nav-items::after {
    content: "";
    width: 100%;
    height: 2px;
    background: white;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    display: none;
}

.nav-items:hover::after {
    display: block;
}

.nav-items {
    margin-right: 54px;
}

nav .primary-btn {
    padding: 14.5px 29.5px 15.5px 33.5px;
    font-size: 29px;
    font-weight: 500;
    font-family: var(--clash-family);
}

.primary-btn:hover {
    background: linear-gradient(to bottom, #E3CCF8, #9328F2);
}

.secondary-btn:hover {
    text-decoration: underline;
}


nav .secondary-btn {
    color: var(--secondary-color);
    font-size: 29px;
    font-weight: 500;
    font-family: var(--clash-family);
    margin-right: 37px;
}

/* .menu {
    color: var(--secondary-color);
    display: none;
} */

.menu {
    border: 0;
    background: none;
    position: relative;
    z-index: 999;
    display: none;
    align-items: center;
    flex-direction: column;
    margin-left: auto;
}

.menu>span {
    display: inline-block;
    height: 3px;
    width: 30px;
    background: white;
    transition: 0.5s linear;
}

.menu::after,
.menu::before {
    position: absolute;
    content: '';
    height: 3px;
    width: 30px;
    background: white;
    transition: 0.5s linear;
}

.menu::after {
    top: -7px;
}

.menu::before {
    top: 7px;
}

.menu.animate span {
    transform: translateX(-50px);
    opacity: 0;
}

.menu.menu.animate::after {
    transform: rotate(45deg) translateX(10px);
}

.menu.menu.animate::before {
    transform: rotate(-45deg) translateX(10px);
}

.navbar-links.active {
    display: flex;
}

/* Banner-sec */
.banner-sec {
    min-height: 100vh;
    padding: 120px 0;
    background: url('../Assets/bgbanner.png') no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: -1;
}

.banner-content {
    position: relative;
}

.title1 {
    font-size: 70.73px;
    font-weight: 600;
    font-family: var(--clash-family);
    max-width: 566px;
    color: transparent;
    background: var(--title-color);
    background-clip: text;
    -webkit-background-clip: text;
}

.banner-content>p {
    max-width: 496px;
    font-size: 13px;
    font-weight: 400;
    font-family: var(--clash-family);
    color: transparent;
    background: var(--paragraph-color);
    background-clip: text;
    -webkit-background-clip: text;
    margin-top: 46px;
}

.banner-btn>.primary-btn {
    margin-top: 46px;
    margin-right: 51px;
}

.banner-btn>.secondary-btn {
    text-decoration: underline;
}

.banner-btn>.secondary-btn:hover {
    text-decoration: none;
}

.banner-ad {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 72%);
    border-radius: 30px;
    width: fit-content;
    padding: 20px;
    color: var(--secondary-color);
    position: absolute;
    right: 0;
    bottom: 0;
}

.banner-title-ad {
    font-size: 20px;
    font-family: var(--clash-family);
    font-weight: 400;
    max-width: 353px;
    margin-left: 44px;
}

.banner-content::after {
    content: 'Scroll Down';
    position: absolute;
    left: 43%;
    bottom: -16px;
    background: rgba(0, 0, 0, 10%);
    height: 186px;
    width: 184px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--clash-family);
    font-size: 25.83px;
    color: var(--secondary-color);
    backdrop-filter: blur(20px);
}

/* logo-ipsum-section */
/* .logo-ipsum {
    position: relative;
    width: 100%;
    display: inline-block;
    animation: movetext 10s linear infinite;
}

@keyframes movetext {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
} */

/* about-section */

.about-content>p {
    font-size: 3.542vw;
    font-family: var(--clash-family);
    color: transparent;
    background: var(--paragraph-color);
    background-clip: text;
    -webkit-background-clip: text;
    max-width: 907px;
    margin-bottom: 35px;
    margin-top: 48px;
}

.about-img {
    max-width: 694px;
    margin: 0 auto;
}

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


.review {
    background: black;
    border: 1px solid var(--secondary-color);
    border-radius: 60.74px;
    width: fit-content;
    display: flex;
    align-items: center;
    padding: 15.19px 37.96px;
    margin-top: 100px;
}

.review>img {
    margin-right: -21px;
    height: 80.51px;
    width: 80.51px;
    object-fit: contain;
}

.review>p {
    max-width: 113px;
    color: var(--secondary-color);
    font-size: 15px;
    font-family: var(--clash-family);
    margin-left: 33.34px;
}

/* Service-Section */
.service-section {
    padding: 120px 0;
}

.Service-hding>.title2 {
    text-align: center;
}

.Service-hding>p {
    font-size: 68px;
    font-family: var(--clash-family);
    color: transparent;
    background: var(--secondary-color);
    background-clip: text;
    -webkit-background-clip: text;
    max-width: 1022px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 48px;
}

.card {
    padding: 62px 42px;
    border: 1px solid var(--secondary-color);
    border-radius: 57.33px;
    margin-bottom: 12px;
}

.card-icon {
    width: 91.76px;
}

.card-icon>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-bottom: 36.71px;
}

.card>h5 {
    margin-bottom: 25px;
    color: var(--secondary-color);
    font-family: var(--clash-family);
}

.card-content {
    display: flex;
    align-items: end;
}

.card-content>p {
    color: var(--secondary-color);
    font-family: var(--clash-family);
}

.card-content>a {
    background: #9328F2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9px 9px;
    border-radius: 100%;
    margin-left: 57px;
}

/* work-with-us-section */
.work-us-sec {
    padding: 120px 0;
    background: url('../Assets/work-us-sec-bg.png') no-repeat center/cover;
    height: 100%;
}

.subtitle>.title2 {
    text-align: center;
}

.subtitle>p {
    font-size: 68px;
    font-family: var(--clash-family);
    color: transparent;
    background: var(--secondary-color);
    background-clip: text;
    -webkit-background-clip: text;
    max-width: 1022px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 150px;
    margin-top: 48px;
}

.work-us-cntnt>p {
    color: var(--secondary-color);
    font-size: 29px;
    font-family: var(--clash-family);
    max-width: 1282px;
    margin: 0 auto;
    text-align: center;
}

.work-us-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}

.work-sec-icon {
    margin: 0 12px;
}

/* about-us2 */
.about-us2 {
    padding-top: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-content2>p {
    font-size: 68px;
    font-family: var(--clash-family);
    color: transparent;
    background: var(--paragraph-color);
    background-clip: text;
    -webkit-background-clip: text;
    max-width: 1006px;
    margin-top: 48px;
}

/* Pricing-plans-sec */
.Pricing-plans-sec {
    padding: 120px 0;
}

.pricing-hding>.title2 {
    text-align: center;
}

.pricing-hding>p {
    font-size: 68px;
    font-family: var(--clash-family);
    color: transparent;
    background: var(--secondary-color);
    background-clip: text;
    -webkit-background-clip: text;
    max-width: 1072px;
    text-align: center;
    margin: 0 auto;
    margin-top: 48px;
}

.Pricing-row {
    display: flex;
    align-items: center;
    /* justify-content: end; */
}

.price-card {
    border: 1px solid var(--secondary-color);
    border-radius: 38px;
    padding: 29px 20px 29px 30px;
    max-width: 801px;
    min-height: 357px;
    margin-top: 100px;
}

.price-content>span {
    font-size: 36px;
    font-family: var(--clash-family);
    font-weight: 500;
    color: var(--secondary-color);
}

.price-content>p {
    font-size: 20px;
    font-weight: 100;
    font-family: var(--clash-family);
    color: transparent;
    background: var(--secondary-color);
    background-clip: text;
    -webkit-background-clip: text;
    margin-top: 30px;
}

.price-ul>li {
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 400;
    font-family: var(--clash-family);
    margin-bottom: 30px;
    width: fit-content;
}

/* testimonials-sec */
.testimonials-sec {
    padding: 120px 0;
}

.testimonials-img>img {
    max-width: 585px;
    margin: 0 auto;
}

.testimonials-img>a>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testimonials-hding>p {
    font-size: 3.542vw;
    font-family: var(--clash-family);
    color: transparent;
    background: var(--secondary-color);
    background-clip: text;
    -webkit-background-clip: text;
    max-width: 733px;
    margin-top: 24px;
}

.testimonials-content>p {
    font-size: 1.492vw;
    font-weight: 100;
    line-height: 1;
    font-family: var(--clash-family);
    color: transparent;
    background: var(--secondary-color);
    background-clip: text;
    -webkit-background-clip: text;
    max-width: 888px;
    margin-top: 26px;
}

.rating-img {
    margin-top: 74px;
}

.testimonials-content>h3 {
    font-size: 28.65px;
    font-weight: 500;
    line-height: 1;
    font-family: var(--clash-family);
    color: transparent;
    background: var(--secondary-color);
    background-clip: text;
    -webkit-background-clip: text;
    margin-top: 54px;
}

.rating-img>p {
    font-size: 28.65px;
    font-family: var(--clash-family);
    font-weight: 100;
    color: var(--secondary-color);
}

/* ad-sce */
.ad-sec {
    padding: 120px 0;
}

.ad-img {
    max-width: 595px;
    margin: 0 auto;
}

.ad-img>a>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ad-content>p {
    font-size: 70.73px;
    font-family: var(--clash-family);
    color: transparent;
    background: var(--secondary-color);
    background-clip: text;
    -webkit-background-clip: text;
    max-width: 676px;
    margin-bottom: 87px;
}

/* 
============
Footer-sec
============
*/
footer {
    padding: 120px 0;
    background: url('../Assets/aivio.footer.png') no-repeat center/cover;
}

.footer-logo>img {
    max-width: 151px;
}

.footer-logo>a>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-hdr>p {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--clash-family);
    color: var(--secondary-color);
    max-width: 349px;
    margin: 42px 0;
}

.social-links {
    display: flex;
}

.social-links>li {
    margin-right: 29px;
}

.social-links li a {
    transition: 0.5s linear;
}

.social-links li a:hover {
    transform: scale(1.2);
}

.footer-links-hding {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--clash-family);
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.footer-links>li>a {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--clash-family);
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.Navigation-arrow>svg {
    margin-right: 9px;
}

.footer-contact-icon {
    display: flex;
}

.footer-contact-icon>img {
    margin-right: 17px;
}

.email-inout-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid white;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.email-inout-form>input[type=email] {
    background: transparent;
    border: none;
    display: inline-block;
    height: 100%;
    width: 80%;
    padding: 18px 8px;
    color: var(--secondary-color);
    font-family: var(--clash-family);
}

.email-inout-form>input[type=email]:focus {
    box-shadow: none;
    outline: none;
}

.email-inout-form>input[type=email]::placeholder {
    color: var(--secondary-color);
}

.email-btn-submit {
    background: var(--primary-color);
    border: none;
    outline: none;
    box-shadow: none;
    padding: 13px;
    border-radius: 50px;
}

.checkbox>label {
    font-family: var(--clash-family);
    color: var(--secondary-color);
    margin-left: 11px;
}

label>span {
    text-decoration: underline;
}

.checkbox {
    margin-top: 34.5px;
    display: flex;
    margin-right: 11px;
}

.checkbox>input[type=checkbox]:focus {
    appearance: none;
}

.checkbox>input[type=checkbox] {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid white;
    border-radius: 4px;
    cursor: pointer;
}

.footer-links li a {
    transition: 0.5s linear;
}

.footer-links li a:hover {
    transform: scale(1.2);
}

.footer-links li a {
    transition: 0.5s linear;
}

.footer-links li a:hover {
    transform: scale(1.2);
}


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

    /* banner-sec */
    .banner-content::after {
        display: none;
    }
}

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

    /* header-sec */
    .navbar-links {
        display: none;
        position: fixed;
        top: 0;
        bottom: 0;
        right: -100;
        width: 50%;
        height: 100vh;
        background: black;
        transition: 0.5s linear;
    }

    .menu {
        display: flex;
        margin-left: auto;
    }

    .active {
        right: 0 !important;
    }

    .navbar-links {
        padding-top: 100px;
    }

    .navbar-links>ul,
    .navbar-links {
        flex-direction: column;
    }

    .nav-items {
        margin-left: 0;
        margin: 0 auto 20px;
    }

    .nav-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .secondary-btn {
        margin-right: 0;
        margin-bottom: 20px;
    }

}

@media screen and(max-width: 1175px) {
    .col-6 {
        width: 100%;
    }

}

@media screen and (max-width:1119px) {
    .col-2 {
        width: 50%;
    }

    .col-6 {
        width: 100%;
    }

    /* about-us2 */
    .about-content2>p {
        font-size: 27px;
        max-width: 1006px;
        margin-top: 28px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width:1022px) {
    .col-4 {
        width: 50%;
    }
}

@media screen and (max-width:768px) {
    .col-3 {
        width: 100%;
        margin-top: 20px;
    }

    .col-4 {
        width: 100%;
    }

    .col-6 {
        width: 100%;
    }

    /* header-sec */
    .navbar-links {
        display: none;
        position: fixed;
        top: 0;
        bottom: 0;
        right: -100;
        width: 72%;
        height: 100vh;
        background: black;
        transition: 0.5s linear;
    }

    .menu {
        display: flex;
        margin-left: auto;
    }

    .active {
        right: 0 !important;
    }

    .navbar-links {
        padding-top: 100px;
    }

    .navbar-links>ul,
    .navbar-links {
        flex-direction: column;
    }

    .nav-items {
        margin-left: 0;
        margin: 0 auto 20px;
    }

    .nav-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    nav .secondary-btn {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .nav-btn>.primary-btn {
        padding: 10px 20px;
        font-size: 20px;
    }

    .nav-btn>.secondary-btn {
        text-decoration: underline white;
    }

    /* banner-sec */
    .banner-content>.title1 {
        font-size: 60px;
        max-width: 566px;
    }

    .banner-ad {
        position: relative;
        right: 0;
        bottom: -46px;
    }

    /* about-sec */
    .about-row {
        flex-wrap: wrap-reverse;
    }

    .about-img {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .about-content>.primary-btn {
        padding: 15px 30px;
    }

    .about-content>h3 {
        font-size: 16px;
    }

    .about-content>p {
        font-size: 27px;
        max-width: 907px;
    }

    /* service-sec */
    .card {
        padding: 30px 24px;
    }

    .service-section {
        padding: 50px 0;
    }

    .Service-hding>h3 {
        font-size: 16px;
        margin-top: 50px;
    }

    .Service-hding>p {
        font-size: 27px;
    }

    /*work-sec  */
    .work-us-sec {
        padding: 50px 0;
    }

    .subtitle>p {
        font-size: 27px;
        margin-bottom: 60px;
    }

    .subtitle>h3 {
        font-size: 16px;
    }

    .work-us-btns {
        margin-top: 40px;
    }

    /* about-us2 */
    .about-us2 {
        padding: 50px 0;
    }

    /* Pricing-plans-sec */
    .Pricing-plans-sec {
        padding: 50px 0;
    }

    .pricing-hding>p {
        font-size: 27px;
    }

    .price-card {
        margin-top: 50px;
    }

    .price-ul>li {
        margin-top: 20px;
    }

    /* testimonials-sec */
    .testimonials-sec {
        padding: 50px 0;
    }

    .testimonials-hding>.title2 {
        margin-top: 30px;
    }

    .testimonials-hding>p {
        font-size: 27px;
    }

    .testimonials-content>p {
        font-size: 20px;
    }

    .testimonials-img>img {
        max-width: 400px;
        margin: auto;
    }

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

    /* ad-sec */
    .ad-sec {
        padding: 50px 0;
    }

    .ad-img>img {
        max-width: 595px;
        margin: auto;
        margin-bottom: 30px;
    }

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

    /* footer-sec */
    .footer-contact {
        margin-top: 40px;
    }
}

@media screen and (max-width:400px) {
    .navbar-links {
        width: 77%;
    }

    .nav-btn>.primary-btn {
        padding: 10px 20px;
        font-size: 20px;
    }

    .nav-btn>.secondary-btn {
        text-decoration: underline white;
    }
}

/* @media screen and (max-width:320px) {
    .navbar-links {
        width: 77%;
    }

    .nav-btn>.primary-btn {
        padding: 10px 20px;
        font-size: 20px;
    }

    .nav-btn>.secondary-btn {
        text-decoration: underline white;
    }
} */