html {
    scroll-padding-top: 140px;
    scroll-behavior: smooth;
}

::selection {
    background: #3390ff;
    /* Blue highlight */
    color: #fff;
    /* White text */
}

@font-face {
    font-family: 'Nunito';
    src: url('/fonts/Nunito-ExtraLight.woff2') format('woff2'),
        url('/fonts/Nunito-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('/fonts/Nunito-Light.woff2') format('woff2'),
        url('/fonts/Nunito-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('/fonts/Nunito-Regular.woff2') format('woff2'),
        url('/fonts/Nunito-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('/fonts/Nunito-Medium.woff2') format('woff2'),
        url('/fonts/Nunito-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('/fonts/Nunito-SemiBold.woff2') format('woff2'),
        url('/fonts/Nunito-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('/fonts/Nunito-Bold.woff2') format('woff2'),
        url('/fonts/Nunito-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('/fonts/Nunito-Black.woff2') format('woff2'),
        url('/fonts/Nunito-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'playball-regular';
    src: url('/fonts/Playball-Regular.woff2') format('woff2'),
        url('/fonts/Playball-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter24pt-Bold.woff2') format('woff2'),
        url('/fonts/Inter24pt-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


* {
    margin-top: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    font-family: var(--font-family);
    font-weight: var(--font-weight-regular);
    line-height: normal;
}

body,
html {
    width: 100%;
}

body {
    font-size: 14px;
    font-weight: var(--font-weight-regular);
    color: var(--text-color);
    margin: 0;
    padding: 0;
}


a {
    text-decoration: underline;
    color: var(--primary-color);
}

a:hover {
    text-decoration: none;
    color: var(--Secoundry-color);
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin: 0 auto;
    max-width: 600px;
}

.section-spacing {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
}

:root {
    --primary-color: #330c79;
    --Secoundry-color: #e94fca;
    --text-color: #000;
    --gray-border-color: #dfdfdf;
    --light-gray-background: #f7f7f7;
    --dark-gray-background: #efefef;
    --banner-top-content-color: #fff;
    --common-white-color: #fff;
    --homepage-announcement-color: #5d1b9c;
    --font-weight-exlight: 200;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-exblack: 900;
    --button-back-color: #e94fca;
    --button-back-hover: #330c79;
    --button-text-color: #fff;
    --footer-text-color: #fff;
    --footer-back-color: #330c79;

    --font-family: "Nunito", serif;

    --font-inter: "Inter", serif;
    --font-playball-regular: "playball-regular";
}


img {
    max-width: 100%;
    width: auto;
    height: auto;
}

P {
    margin-bottom: 10px;
}

p:last-child {
    margin-bottom: 0;
}

b,
strong {
    font-family: var(--font-family);
    font-weight: var(--font-weight-bold);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: var(--font-family);
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: 25px;
}

.title span {
    color: var(--Secoundry-color);
    font-family: var(--font-family);
    font-weight: var(--font-weight-bold);
}

h1,
.h1 {
    font-size: 30px;
}

h2,
.h2 {
    font-size: 27px;
}

h3,
.h3 {
    font-size: 24px;
}

h4,
.h4 {
    font-size: 21px;
}

h5,
.h5 {
    font-size: 18px;
}

h6,
.h6 {
    font-size: 16px;
}

@media (min-width: 768px) {

    h1,
    .h1 {
        font-size: 34px;
    }

    h2,
    .h2 {
        font-size: 30px;
    }

    h3,
    .h3 {
        font-size: 25px;
    }

    h4,
    .h4 {
        font-size: 23px;
    }

    h5,
    .h5 {
        font-size: 21px;
    }

    body {
        font-size: 16px;
    }

    .container {
        max-width: 760px;
    }

}

@media (min-width: 992px) {

    h1,
    .h1 {
        font-size: 37px;
    }

    h2,
    .h2 {
        font-size: 32px;
    }

    h3,
    .h3 {
        font-size: 27px;
    }

    h4,
    .h4 {
        font-size: 25px;
    }

    h5,
    .h5 {
        font-size: 23px;
    }

    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {

    h1,
    .h1 {
        font-size: 40px;
    }

    h2,
    .h2 {
        font-size: 35px;
    }

    h3,
    .h3 {
        font-size: 30px;
    }

    h4,
    .h4 {
        font-size: 27px;
    }

    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {

    h1,
    .h1 {
        font-size: 45px;
    }

    h2,
    .h2 {
        font-size: 40px;
    }

    h3,
    .h3 {
        font-size: 35px;
    }

    h4,
    .h4 {
        font-size: 30px;
    }

    h5,
    .h5 {
        font-size: 25px;
    }

    h6,
    .h6 {
        font-size: 20px;
    }

    .container {
        max-width: 1210px;
    }
}

#footer .widgets {
    display: none;
}

.section-head-part {
    max-width: 1020px;
    margin: 0 auto 40px auto;
    text-align: center;
}

.section-head-part .section-head-title {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.section-head-part .section-head-title:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
    width: 90px;
    height: 4px;
    background-color: var(--Secoundry-color);
    bottom: 0px;
    border-radius: 5px;
}

p.section-head-content {
    font-size: 16px;
}

.section {
    padding-top: 50px;
    padding-bottom: 50px;
}

@media screen and (max-width: 767px) {
    .section {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

#footer .logo.image-logo {
    max-width: 200px;
    margin: 0 auto;
}

/* page-banner section css start  */


.page-main-banner {
    background-image: linear-gradient(135deg, #3b1082, #9c34c5);
    background-color: transparent;
    background-image: url(https://cartcoders.com/blog/wp-content/themes/maktub-child/images/blog-page-banner-bg-new-1.webp);
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: bottom;
    background-size: cover;
    padding-top: 150px;
    padding-bottom: 120px;
    margin-top: 0;
    margin-bottom: 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.page-main-banner::before {
    content: " ";
    position: absolute;
    bottom: 20%;
    left: 5%;
    height: 82px;
    width: 82px;
    background-image: url(https://cartcoders.com/blog/wp-content/themes/maktub-child/images/pink-circle.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.page-main-banner::after {
    content: " ";
    position: absolute;
    top: 20%;
    right: 0%;
    height: 116px;
    width: 76px;
    background-image: url(https://cartcoders.com/blog/wp-content/themes/maktub-child/images/line-circle-shape.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.page-main-banner .banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-main-banner .hero-content {
    max-width: 650px;
}

.page-main-banner .hero-content h1 {
    font-size: 45px;
    font-family: 'Nunito';
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 24px;
    color: #fff;
}

.page-main-banner .hero-content p {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 36px;
    color: #fff;
    font-family: 'Nunito';
    max-width: 580px;
}

.page-main-banner .hero-buttons {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
}

.page-main-banner .hero-buttons a {
    padding: 10px 25px;
    width: 100%;
    max-width: 185px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Nunito';
    font-size: 16px;
    transition: 0.3s;
    text-align: center;
}

.page-main-banner .hero-buttons a:hover {
    box-shadow: 0 8px 20px rgba(240, 195, 224, 0.26);
    transform: translateY(-2px);
}

.page-main-banner .btn-primary {
    background: #fff;
    color: var(--primary-color);
}

.page-main-banner .btn-secondary {
    background: var(--Secoundry-color);
    color: #fff;
}

.page-main-banner .btn-primary:hover {
    background: #eee;
}

.page-main-banner .btn-secondary:hover {
    background: #d93a8c;
}

.page-main-banner .page-main-banner-company-count {
    max-width: 570px;
    display: flex;
}

.page-main-banner .page-main-banner-company-count-list {
    text-align: center;
    padding: 0 15px;
    position: relative;
    width: 33.333%;
}

.page-main-banner .page-main-banner-company-count-list .count {
    font-size: 45px;
    font-weight: bold;
    font-family: 'Nunito';
    line-height: 1.5;
}

.page-main-banner .page-main-banner-company-count-list .count-label {
    font-size: 16px;
    font-weight: 500;
    font-family: 'Nunito';
    line-height: 1.5;
}

.page-main-banner .hero-image img {
    max-width: 600px;
    width: 100%;
    border-radius: 12px;
}

.page-main-banner .page-main-banner-company-count-list:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #fff;
}

.page-main-banner .page-main-banner-company-count-list:last-child::before {
    display: none;
}

@media (max-width: 1440px) {
    .page-main-banner::before {
        bottom: 18%;
        left: 3%;
    }
}

@media (max-width: 1350px) {
    .page-main-banner::before {
        bottom: -2%;
        left: 10%;
        height: 60px;
        width: 60px;
    }
}

@media screen and (max-width: 1280px),
screen and (max-height: 567px) {
    .page-main-banner .hero-content h1 {
        font-size: 40px;
        margin-bottom: 18px;
    }

    .page-main-banner .hero-content p {
        font-size: 16px;
        margin-bottom: 30px;
        max-width: 510px;
    }

    .page-main-banner .hero-buttons a {
        padding: 8px 20px;
        max-width: 175px;
    }

    .page-main-banner .hero-buttons {
        margin-bottom: 30px;
        gap: 15px;
    }

    .page-main-banner .page-main-banner-company-count-list .count {
        font-size: 40px;
    }

    .page-main-banner {
        padding-top: 120px;
        padding-bottom: 100px;
    }

    .page-main-banner::before {
        bottom: -2%;
        left: 12%;
    }

    .page-main-banner .hero-content {
        max-width: 600px;
    }
}

@media (max-width: 1199px) {
    .page-main-banner .hero-content h1 {
        font-size: 36px;
    }

    .page-main-banner .hero-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .page-main-banner .page-main-banner-company-count-list .count {
        font-size: 37px;
    }

    .page-main-banner .page-main-banner-company-count-list .count img {
        max-width: 28px;
    }

    .page-main-banner .hero-content {
        max-width: 530px;
    }
}

@media (max-width: 992px) {
    .page-main-banner .hero-content h1 {
        font-size: 30px;
    }

    .page-main-banner .page-main-banner-company-count-list .count {
        font-size: 34px;
    }

    .page-main-banner .hero-content {
        max-width: 425px;
    }

    .page-main-banner {
        padding-top: 120px;
        padding-bottom: 90px;
    }
}


@media (max-width: 768px) {
    .page-main-banner .banner-inner {
        flex-direction: column-reverse;
        text-align: center;
        gap: 20px;
    }

    .page-main-banner .hero-content {
        max-width: 100%;
        margin-bottom: 30px;
        text-align: center;
    }

    .page-main-banner .hero-stats {
        justify-content: center;
    }

    .page-main-banner .hero-content p {
        max-width: 100%;
    }

    .page-main-banner .hero-buttons {
        justify-content: center;
    }

    .page-main-banner .page-main-banner-company-count {
        margin: 0 auto;
    }

    .page-main-banner::after {
        top: 10%;
        max-width: 60px;
        height: 79px;
    }

    .page-main-banner {
        padding-top: 150px;
        padding-bottom: 70px;
    }

    .page-main-banner .page-main-banner-company-count-list .count {
        font-size: 30px;
    }

    .page-main-banner .page-main-banner-company-count-list .count img {
        max-width: 24px;
    }

}

@media (max-width: 400px) {
    .page-main-banner .hero-buttons {
        flex-direction: column;
    }

    .page-main-banner .hero-buttons a {
        max-width: 100%;
    }

    .page-main-banner::after {
        display: none;
    }

    .page-main-banner .page-main-banner-company-count-list .count {
        font-size: 26px;
    }

    .page-main-banner .page-main-banner-company-count-list .count img {
        max-width: 20px;
    }

    .page-main-banner .page-main-banner-company-count-list {
        padding: 0 10px;
    }

    .page-main-banner .page-main-banner-company-count-list .count-label {
        font-size: 14px;
    }
}

/* page-banner section css end  */



/* shopify-partner-section css start */

.shopify-partner-main {
    padding-top: 60px;
    position: relative;
}

/* 
.shopify-partner-main .bg-shape {
    z-index: 99;
} */

.shopify-partner-main .light-purple-circle {
    position: absolute;
    top: 2%;
    right: 10%;
}

.shopify-partner-main .plus-img {
    position: absolute;
    top: 29%;
    left: 8%;
}

.shopify-partner-main .triangle-img {
    position: absolute;
    top: 39%;
    right: 0%;
}

.shopify-partner-main .half-circle {
    position: absolute;
    top: 45%;
    left: 0%;
}

.shopify-partner-main .full-circle {
    position: absolute;
    bottom: 18%;
    right: 17%;
    z-index: 99;
}

.shopify-partner-main .gray-plus {
    position: absolute;
    bottom: 10%;
    left: 8%;
}


.shopify-partner-main .grid-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 0 auto;
    padding-top: 20px;
}

.shopify-partner-main .grid-section .card {
    background: #F4EEFF;
    border-radius: 12px;
    padding: 20px;
    border: none;
    transition: transform 0.2s ease;
}

.shopify-partner-main .grid-section .card:hover {
    transform: translateY(-4px);
}

.shopify-partner-main .grid-section .card-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shopify-partner-main .grid-section .card-header-content h3 {
    font-size: 20px;
    font-weight: bold;
    font-family: 'Nunito';
    color: var(--primary-color);
    margin: 0;
}

.shopify-partner-main .grid-section .card-header-content a {
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Nunito';
    color: #000;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.shopify-partner-main .grid-section .card-header-content a img {
    height: auto;
    width: 15px;
}

.shopify-partner-main .grid-section .card p {
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Nunito';
    color: #000;
    font-weight: 500;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.shopify-partner-main .grid-section .card p img {
    height: auto;
    width: 14px;
}

.shopify-partner-main .grid-section .tags {
    color: var(--Secoundry-color);
}

.shopify-partner-main .grid-section .tags span {
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Nunito';
    color: var(--Secoundry-color);
    font-weight: 400;
    margin-right: 10px;
}

.shopify-partner-main .grid-section .rating {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.shopify-partner-main .grid-section .rating span {
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Nunito';
    color: #000;
    font-weight: 500;
    margin-left: 10px;
}

.shopify-partner-main .grid-section .rating .stars {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.shopify-partner-main .grid-section .links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
}

.shopify-partner-main .grid-section .links a {
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 17px;
    line-height: 1.5;
    font-family: 'Nunito';
    font-weight: bold;
    gap: 6px;
}

.shopify-partner-main .grid-section .contact-btn {
    margin-top: 20px;
    background: var(--primary-color);
    font-family: 'Nunito';
    color: #fff;
    padding: 10px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    max-width: max-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.shopify-partner-main .grid-section .contact-btn img {
    height: auto;
    width: 19px;
}

@media (max-width:1440px) {
    .shopify-partner-main .light-purple-circle {
        right: 4%;
    }

    .shopify-partner-main .plus-img {
        left: 4%;
    }

    .shopify-partner-main .triangle-img {
        right: 0%;
    }

    .shopify-partner-main .half-circle {
        left: 0%;
    }

    .shopify-partner-main .full-circle {
        right: 5%;
    }

    .shopify-partner-main .gray-plus {
        left: 2%;
    }

}

@media (max-width: 1300px) {
    .shopify-partner-main .full-circle {
        right: 1%;
    }
}

@media screen and (max-width: 1280px),
screen and (max-height: 567px) {
    .shopify-partner-main .plus-img {
        left: 2%;
    }

    .shopify-partner-main .triangle-img {
        right: 0%;
        max-width: 70px;
    }

    .shopify-partner-main .half-circle {
        max-width: 30px;
    }

    .shopify-partner-main .full-circle {
        right: 1%;
        max-width: 55px;
    }

    .shopify-partner-main .gray-plus {
        left: 2%;
        max-width: 50px;
    }

    .shopify-partner-main .grid-section {
        padding-top: 0;
    }

    .shopify-partner-main .grid-section .card {
        padding: 18px;
    }

    .shopify-partner-main .grid-section .card-header-content h3 {
        font-size: 18px;
    }

    .shopify-partner-main .grid-section .rating .stars {
        gap: 6px;
    }

    .shopify-partner-main .grid-section .links a {
        font-size: 16px;
    }

    .shopify-partner-main .grid-section .rating {
        margin: 12px 0;
    }

    .shopify-partner-main .grid-section .contact-btn {
        margin-top: 18px;
    }

    .shopify-partner-main .grid-section .contact-btn {
        margin-top: 18px;
        padding: 9px 24px;
        font-size: 14px;
    }

    .shopify-partner-main .grid-section .card p {
        font-size: 15px;
        line-height: 1.4;
        margin-bottom: 15px;

    }
}

@media (max-width:1100px) {
    .shopify-partner-main .full-circle {
        display: none;
    }
}

@media (max-width:992px) {
    .shopify-partner-main .grid-section {
        padding-top: 0px;
    }

    .shopify-partner-main .bg-shape {
        display: none;
    }
}

@media (max-width:768px) {
    .shopify-partner-main .grid-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width:480px) {
    .shopify-partner-main .grid-section .card-header-content {
        margin-bottom: 5px;
    }

    .shopify-partner-main .grid-section .card-header-content a {
        font-size: 14px;
    }

    .shopify-partner-main .grid-section .card-header-content a img {
        width: 12px;
    }

    .shopify-partner-main .grid-section .card-header-content h3 {
        font-size: 16px;
    }

    .shopify-partner-main .grid-section .card p {
        font-size: 14px;
    }

    .shopify-partner-main .grid-section .tags span {
        font-size: 14px;
    }

    .shopify-partner-main .grid-section .rating span {
        font-size: 14px;
    }

    .shopify-partner-main .grid-section .rating .stars img {
        max-width: 18px;
    }

    .shopify-partner-main .grid-section .links a {
        font-size: 14px;
    }

    .shopify-partner-main .grid-section .contact-btn {
        margin-top: 16px;
        padding: 8px 20px;
        font-size: 14px;
    }

    .shopify-partner-main .grid-section .card-header-content h3 {
        line-height: normal;
    }

    .shopify-partner-main .grid-section .rating {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }

    .shopify-partner-main .grid-section .rating span {
        margin-left: 0;
    }
}

/* shopify-partner-section css end */


/* How We Vet Partners section css start */

.vet-section {
    padding: 60px 0;
}

.vet-section .vet-section-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.vet-section .vet-text {
    max-width: 420px;
}

.vet-section .vet-text h2 {
    margin-bottom: 15px;
    position: relative;
}

.vet-section .vet-text h2::after {
    content: "";
    width: 70px;
    height: 4px;
    background: var(--Secoundry-color);
    position: absolute;
    bottom: -8px;
    left: 0;
    border-radius: 3px;
}

.vet-section .vet-text p {
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    padding-top: 20px;
    font-family: 'Nunito';
    font-weight: 400;
}

.vet-section .vet-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    flex: 1;
}

.vet-section .vet-box {
    background: #F4EEFF;
    padding: 15px;
    border-radius: 8px;
    font-family: 'Nunito';
    font-size: 16px;
    color: #000;
    font-weight: 500;
    gap: 8px;
    display: inline-flex;
    align-items: center;
}

/* Opposite Layout */
.vet-section.reverse {
    position: relative;
    background: #F4EEFF;
}

.vet-section.reverse .vet-section-inner {
    flex-direction: row-reverse;
}

.vet-section.reverse .vet-box {
    background: #FFF;
}

.vet-section.reverse::after {
    content: " ";
    position: absolute;
    bottom: -20%;
    right: 6%;
    height: 99px;
    width: 95px;
    background-image: url(https://cartcoders.com/blog/wp-content/themes/maktub-child/images/reben-circle.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

}

@media (max-width: 1439px) {
    .vet-section.reverse::after {
        bottom: -12%;
        height: 70px;
        width: 67px;
    }
}

@media (max-width: 1199px) {
    .vet-section .vet-section-inner {
        align-items: center;
    }

    .vet-section .vet-text {
        max-width: 350px;
    }

    .vet-section .vet-box {
        padding: 12px;
        font-size: 14px;
    }

    .vet-section .vet-box img {
        max-width: 18px;
    }

    .vet-section .vet-text {
        max-width: 300px;
    }
}

@media (max-width: 992px) {

    .vet-section .vet-boxes {
        grid-template-columns: 1fr;
    }

    .vet-section .vet-box {
        text-align: left;
    }

    .vet-section.reverse::after {
        bottom: -5%;
    }
}

@media (max-width: 768px) {

    .vet-section .vet-section-inner {
        flex-direction: column;
    }

    .vet-section.reverse .vet-section-inner {
        flex-direction: column;
    }

    .vet-section .vet-boxes {
        grid-template-columns: repeat(2, 1fr);
    }

    .vet-section .vet-text {
        max-width: 100%;
        text-align: center;
    }

    .vet-section .vet-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 580px) {
    .vet-section .vet-boxes {
        grid-template-columns: 1fr;
    }
}


/* How We Vet Partners section css start */

/* Email-banner css start */

.email-banner {
    max-width: 1000px;
    margin: 60px auto;
    background: linear-gradient(274.23deg, #A51788 -5%, #20084D 76.76%);
    border-radius: 20px;
    padding: 25px 25px;
    position: relative;
    overflow: hidden;
}

.email-banner:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 60%;
    background-image: url(https://cartcoders.com/blog/wp-content/themes/maktub-child/images/talk-exp-back-icon-1.svg);
    background-repeat: no-repeat;
    background-position-x: center;
    background-size: 100%;
    background-position-y: top;
}

.email-banner:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 45%;
    background-image: url(https://cartcoders.com/blog/wp-content/themes/maktub-child/images/talk-exp-back-icon-2.svg);
    background-repeat: no-repeat;
    background-position-x: center;
    background-size: 100%;
    background-position-y: bottom;
}

.email-banner .email-banner-content {
    z-index: 1;
    position: relative;
    text-align: center;
}

.email-banner .email-banner-content>*:not(.button) {
    color: var(--banner-top-content-color);
}

.email-banner .line-background {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
}

.email-banner .email-banner-content .button {
    margin-left: auto;
    margin-right: auto;
    background-color: white;
    color: var(--primary-color);
    border-radius: 5px;
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Nunito';
    font-weight: bold;
    margin-top: 20px;
    padding: 12px 30px;
    max-width: 172px;
    width: 100%;
}

.email-banner .email-banner-content .title {
    margin-bottom: 15px;
    align-items: center;
    font-size: 35px;
    line-height: 1.5;
    font-family: 'Nunito';
    font-weight: bold;
}

.email-banner .email-banner-content .content {
    margin-bottom: 20px;
    align-items: center;
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Nunito';
    font-weight: 400;
}

@media screen and (min-width:600px) {
    .email-banner {
        padding: 33px 40px;
    }
}

@media screen and (min-width:768px) {
    .email-banner:before {
        width: 33.5%;
    }

    .email-banner:after {
        width: 28.5%;
    }
}

@media screen and (min-width:992px) {
    .email-banner .email-banner-background .line-background {
        width: 60%;
    }
}


.contact-banner-secound-background {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(274.23deg, #A51788 -5%, #20084D 76.76%);
    border-radius: 20px;
    padding: 25px 25px;
    position: relative;
    overflow: hidden;
}

.contact-banner-secound-background:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 60%;
    background-image: url(https://cartcoders.com/blog/wp-content/themes/maktub-child/images/talk-exp-back-icon-1.svg);
    background-repeat: no-repeat;
    background-position-x: center;
    background-size: 100%;
    background-position-y: top;
}

.contact-banner-secound-background:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 45%;
    background-image: url(https://cartcoders.com/blog/wp-content/themes/maktub-child/images/talk-exp-back-icon-2.svg);
    background-repeat: no-repeat;
    background-position-x: center;
    background-size: 100%;
    background-position-y: bottom;
}

.contact-banner-secound-content {
    z-index: 1;
    position: relative;
    text-align: center;
}

.contact-banner-secound-content>*:not(.button) {
    color: var(--banner-top-content-color);
}

.contact-banner-secound-section .line-background {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
}

.contact-banner-secound-content .button {
    margin-left: auto;
    margin-right: auto;
    background-color: white;
    color: var(--primary-color);
    border-radius: 5px;
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Nunito';
    font-weight: bold;
    margin-top: 20px;
    padding: 12px 30px;
    max-width: 172px;
    width: 100%;
}

.contact-banner-secound-content .button:hover {
    background-color: var(--primary-color);
    color: var(--Secoundry-color);
}

.contact-banner-secound-content .title {
    margin-bottom: 15px;
    align-items: center;
    font-size: 35px;
    line-height: 1.5;
    font-family: 'Nunito';
    font-weight: bold;
}

.contact-banner-secound-content .content {
    margin-bottom: 20px;
    align-items: center;
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Nunito';
    font-weight: 400;
}

@media screen and (min-width:600px) {
    .contact-banner-secound-background {
        padding: 33px 40px;
    }
}

@media screen and (min-width:768px) {
    .contact-banner-secound-background:before {
        width: 33.5%;
    }

    .contact-banner-secound-background:after {
        width: 28.5%;
    }
}

@media screen and (min-width:992px) {
    .contact-banner-secound-section .line-background {
        width: 60%;
    }
}

@media(max-width:1439px) {
    .contact-banner-secound-content .title {
        font-size: 30px;
    }
}

@media(max-width:1199px) {
    .contact-banner-secound-content .title {
        font-size: 27px;
    }
}

@media(max-width:992px) {
    .contact-banner-secound-background {
        padding: 30px;
    }

    .contact-banner-secound-content .title {
        font-size: 25px;
        margin-bottom: 12px;
    }
}

@media(max-width:768px) {
    .contact-banner-secound-content .content {
        font-size: 14px;
    }

    .contact-banner-secound-content .button {
        padding: 10px 30px;
        max-width: 150px;
    }
}

/* Email-banner css end */