:root{
    --primary-color: #3498db;
    --secoundry-color: #f1f1f1;
    --black-color: #000;
    --white-color: #fff;
    --text-color: #555;
}

*,
*::after,
*::before
{
    box-sizing: border-box;
}

body{
    margin: 0;
    font-family: "Montserrat" , sans-serif;
    width: 100%;
}

/* Font Size Start */
h1{
    font-size: 48px;
    font-family: "Montserrat";
    font-weight: 500;
    color: #000;
    line-height: normal;
    margin: 0;
}

h2{
    font-size: 36px;
    font-family: "Montserrat";
    font-weight: 500;
    color: #000;
    line-height: normal;
    margin: 0 auto;
}

h3{
    font-size: 26px;
    font-family: "Montserrat";
    font-weight: 500;
    color: #000;
    line-height: normal;
}

h4{
    font-size: 22px;
    font-family: "Montserrat";
    font-weight: 500;
    color: #000;
    line-height: normal;
}

p{
    font-size: 18px;
    font-family: "Open Sans";
    font-weight: 400;
    color: #555;
    line-height: normal;
}
/* Font Size End */

/* Button Start */
.es-btn{
    padding: 12px 16px;
    border-radius: 5px;
    color: var(--white-color);
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
}

.es-btn.dark{
    background: var(--primary-color);
    border: 2px solid #3498db;
}

.es-btn.dark:hover{
    background: var(--white-color);
    color: var(--primary-color);
    border: 2px solid #3498db;
}

.es-btn.light{
    margin-left: 10px;
    background: var(--white-color);
    border: 2px solid #3498db;
    color: var(--primary-color);
}

.es-btn.light:hover{
    background: var(--primary-color);
    border: 2px solid #3498db;
    color: var(--white-color);
}

.es-btn.white{
    color: var(--primary-color);
    background: var(--white-color);
}

.es-btn.white:hover{
    color: var(--white-color);
    background: var(--primary-color);
}
/* Button End */

/* Globle Container css Start */
.container{
    width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 0;
    gap: 50px;
}

.es-container-2{
    width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 0;
    gap: 50px;
}

.es-container-3{
    width: 1240px;
    padding: 80px 0;
    margin: 0 auto;
}
/* Globle Container css End */
 
/* Main Title Section Start */
.es-main-title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 400px;
    background-image: url(images/main_bg1.jpg);
    background-size: cover;
    background-position: center;
}

.es-main-title h1{
    color: var(--white-color);
}

.es-main-title p{
    color: var(--secoundry-color);
}

/* Main Title Section End */

/* Home Section Start */
.es-home-section{
    background-color: #dbedf9;
    /* background-image: linear-gradient(#3498db, #77bae7, #b9dcf3, #fff); */
}

.es-home-box{
    padding-bottom: 120px;
}

.es-home-left{
    width: 80%;
}

.es-home-right img{
    width: 100%;
}

.wp-logo{
    display: flex;
    align-items: center;
    gap: 15px;
}
/* Home Section End */

.es-container-4 {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background: none;
    margin-top: -45px;
}

.es-first-box {
    width: calc(33.33% - 20px);
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #fff;
    border: 2px solid #3498db;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0px 5px 15px 4px rgba(0, 0, 0, 0.1);
}

.es-first-box img {
    width: 60px;
}

.es-first-box h5 {
    font-size: 16px;
    font-family: 'Montserrat';
    font-weight: 500;
    margin: 0 auto;
}

@media (min-width: 576px) and (max-width: 768px) {
    .es-first-box {
        width: calc(50% - 20px);
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .es-first-box {
        width: calc(50% - 20px);
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .es-first-box {
        width: calc(33.33% - 20px);
    }
}


/* Import Event Section Start */
.es-import-event{
    background: var(--white-color);
    text-align: center;
}

.es-import-xt{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}
.es-event-box{
    width: 33.3%;
    padding: 25px;
    border: 3px solid #3498db;
}

.es-top-box{
    border-top: none;
}

.es-middle-box{
    border-left: none;
    border-right: none;
    border-bottom: none;
}

.es-last-box{
    border-top: none;
}

.es-event-box img{
    width: 80%;
}

.es-event-text{
    padding-top: 30px;
}

.es-event-text h3{
    margin: 0;
}

.es-event-text p{
    margin: 15px 0 0;
}
/* Import Event Section End */

/* Image-Box Section Start */
.es-xt-section{
    background-color: var(--white-color);
}

.es-xylus-contain{
    text-align: center;
}

.es-card-f1{
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 50px;
    gap: 50px;
}

.es-left-f1{
    width: 50%;
}

.es-left-f1 img{
    width: 100%;
    border: 5px solid #fff;
    border-radius: 15px;
    box-shadow: 5px -5px 20px 0px rgba(0, 0, 0, 0.05), -5px 5px 20px 0px rgba(0, 0, 0, 0.05);
}

.es-right-f1{
    width: 65%;
    text-align: start;
}

.es-right-f1 h3{
    margin: 0;
}

.es-right-f1 p{
    margin: 0;
    padding-top: 10px;
    text-align: start;
}
/* Image-Box Section End */

/* Integrations Section Start */
.es-integrations {
    background: #dbedf9;
    padding: 80px 0;
    text-align: center;
}

.es-int-xt2 {
    width: 1240px;
    margin: 0 auto;
    padding-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.es-tooltip-2 {
    width: 23%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
    padding: 15px;
    background: #fff;
    border-radius: 5px;
}

.es-tooltip-2 img {
    max-width: 65%;
}
/* Integrations Section End */

/* Call To Action Section Start */

.es-cta-xt{
    max-width: 1240px;
    margin: 0 auto;
    text-align: center;
}

.es-cta-xt h2{
    font-size: 36px;
    font-weight: 500; 
    font-family: "Montserrat" sans-serif;
    color: #FFF;
    margin: 0;
}

.es-cta-xt p{
    font-size: 18px;
    font-weight: 400;
    font-family: "Open Sans";
    color: #FFF;
    line-height: 30px;
}
/* Call To Action Section End */

/* Pricing Section Start */
.es-pricing-section{
    background-color: #dbedf9;
}

.es-pricing-container{
    width: 1240px;
    margin: auto;
    padding: 80px 0;
    text-align: center;
}

.es-pricing-box{
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    text-decoration: none;
    text-align: left;
}

.es-pricing-card{
    width: 33.33%;
    background-color: #dbedf9;
    padding: 25px;
    border: 2px solid #3498db;
    border-radius: 10px;
    /* transform: rotate(-10deg); */
    box-shadow: -5px 5px 20px 0px rgba(26, 26, 26, 0.1);
}

.es-pricing-card h4{
    color: #000;
    font-size: 40px;
    font-weight: 700;
    line-height: 0;
}

.es-cart-btn{
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    display: inline-block;
    margin-top: 100px;
    padding: 12px 15px;
    border: 2px solid #3498db;
    border-radius: 8px;
    color: #3498db;
    background: #dbedf9;
}

.es-cart-btn:hover{
    color: #fff;
    background-color: #3498db;
}

.es-pricing-card-2{
    width: 33.33%;
    background-color: #3498db;
    padding: 25px;
    border: 2px solid #00000050;
    border-radius: 10px;
    box-shadow: 0px 8px 8px 0px rgba(26, 26, 26, 0.08);
    z-index: 9;
}

.es-pricing-card-2 p{
    color: #FFF;
}

.es-pricing-card-2 h4{
    color: #FFF;
    font-size: 40px;
    font-weight: 700;
    line-height: 0;
}

.es-pricing-card-2 .es-cart-btn{
    color: #FFF;
    background: #3498db;
    border-color: #dbedf9;
}

.es-pricing-card-2 .es-cart-btn:hover{
    color: #3498db;
    background: #dbedf9;
    border-color: #dbedf9;
}
/* Pricing Section End */

.es-site-count{
    margin-bottom: 50px;
}

/* Tablate Responcive Start */
@media (min-width: 992px) and (max-width: 1200px) {
    h1{
        font-size: 36px;
    }
    h2{
        font-size: 30px;
    }
    h3{
        font-size: 24px;
    }
    h4{
        font-size: 17px;
    }
    
    .es-btn{
        padding: 10px 14px;
        font-size: 18px;
    }

    /* Globle Container css Start */
    .container{
        width: 100%;
        padding: 80px 50px;
    }
    
    .es-container-2{
        width: 100%;
        padding: 80px 50px;
    }
    
    .es-container-3{
        width: 100%;
        padding: 80px 50px;
    }
    /* Globle Container css End */

    /* Main Title Section Start */
    .es-main-title{
        height: 300px;
    }
    /* Main Title Section End */

    /* Import Event Section Start */
    .es-import-xt{
        gap: 25px;
    }

    .es-event-box{
        width: 31.4%;
    }
    /* Import Event Section End */

    /* Image-Box Section Start */
    .es-card-f1{
        gap: 50px;
    }

    .es-right-f1{
        width: 60%;
        text-align: start;
    }

    .es-left-f1{
        width: 40%;
    }

    .es-left-f1 img{
        width: 100%;
    }
    /* Image-Box Section End */

    /* Integrations Section Start */
    .es-integrations{
        padding: 80px 50px;
    }

    .es-int-xt2{
        width: 100%;
        padding-top: 40px;
    }
    
    .es-tooltip-2{
        width: 30%;
        height: 80px;
    }

    .es-tooltip-2 img {
        width: 60%;
    }
    /* Integrations Section End */

    /* Call To Action Section Start */
    .es-cta-section{
        padding: 80px 50px;
    }
    /* Call To Action Section End */

    /* Pricing Section Start */
    .es-pricing-section{
        padding: 50px;
        background-color: #EFF8FA;
    }
    .es-pricing-box{
        margin: 50px 0 30px;
    }
    .es-pricing-card h4{
        font-size: 30px;
    }
    .es-pricing-card-2 h4{
        font-size: 30px;
    }
    .es-pricing-card-3 h4{
        font-size: 30px;
    }
    .es-cart-btn{
        margin-top: 80px;
    }
    .es-pricing-section{
        padding: 50px;
    }
    .es-pricing-container{
        width: auto;
        padding: 0;
    }
    /* Pricing Section End */
}
/* Tablate Responcive End */

/* Mobile-Tablate Responcive Start */
@media (min-width: 768px) and (max-width: 992px) {
    h1{
        font-size: 32px;
    }

    h2{
        font-size: 28px;
    }

    h3{
        font-size: 22px;
    }

    h4{
        font-size: 18px;
    }

    p{
        font-size: 16px;
    }
    
    .es-btn{
        padding: 10px 14px;
        font-size: 16px;
    }

    /* Globle Container css Start */
    .container{
        width: 100%;
        padding: 60px 50px;
    }
    
    .es-container-2{
        width: 100%;
        padding: 60px 50px;
    }
    
    .es-container-3{
        width: 100%;
        padding: 60px 50px;
    }
    /* Globle Container css End */

    /* Main Title Section Start */
    .es-main-title{
        height: 280px;
    }
    /* Main Title Section End */

    /* Import Event Section Start */
    .es-import-xt{
        gap: 25px;
    }

    .es-event-box{
        width: 48%;
    }
    /* Import Event Section End */

    /* Image-Box Section Start */
    .es-card-f1{
        gap: 35px;
        padding-top: 40px;
    }

    .es-right-f1{
        width: 60%;
        text-align: start;
    }

    .es-left-f1{
        width: 40%;
    }

    .es-left-f1 img{
        width: 100%;
    }
    /* Image-Box Section End */

    /* Integrations Section Start */
    .es-integrations{
        padding: 50px;
    }

    .es-int-xt2{
        width: 100%;
        padding-top: 30px;
    }
    
    .es-tooltip-2{
        width: 47%;
        height: 80px;
    }
    
    .es-tooltip-2 img {
        width: 55%;
    }
    /* Integrations Section End */

    /* Call To Action Section Start */
    .es-cta-section{
        padding: 60px 50px;
    }
    /* Call To Action Section End */

    /* Pricing Section Start */
    .es-pricing-section{
        padding: 50px;
    }
    .es-pricing-container{
        width: auto;
        padding: 0;
    }
    .es-pricing-box{
        margin: 50px 20px 20px;
    }
    .es-pricing-card h4{
        font-size: 26px;
    }
    .es-pricing-card-2 h4{
        font-size: 26px;
    }
    .es-pricing-card-3 h4{
        font-size: 26px;
    }
    .es-cart-btn{
        margin-top: 60px;
    }
    /* Pricing Section End */
}
/* Mobile-Tablate Responcive Start */

/* Mobile-Tablate Responcive Start */
@media (min-width: 576px) and (max-width: 768px) {
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    p {
        font-size: 16px;
    }

    .es-btn {
        padding: 10px 14px;
        font-size: 16px;
    }

    /* Globle Container css Start */
    .container{
        width: 100%;
        padding: 50px;
        flex-direction: column;
    }
    
    .es-container-2{
        width: 100%;
        padding: 50px;
        flex-direction: column;
    }
    
    .es-container-3{
        width: 100%;
        padding: 50px;
    }
    /* Globle Container css End */

    /* Home Section Start */
    .es-home-left{
        width: 100%;
    }
    /* Home Section End */

    /* Main Title Section Start */
    .es-main-title{
        height: auto;
    }
    /* Main Title Section End */

    /* Import Event Section Start */
    .es-import-xt{
        gap: 30px;
        padding-top: 30px;
    }

    .es-event-box{
        width: 100%;
    }
    /* Import Event Section End */

    /* Image-Box Section Start */
    .es-card-f1{
        flex-direction: column;
        gap: 25px;
        padding-top: 30px;
    }

    .es-right-f1{
        width: 100%;
        text-align: start;
    }

    .es-left-f1{
        width: 100%;
    }

    .es-left-f1 img{
        width: 100%;
    }
    /* Image-Box Section End */

    /* Integrations Section Start */
    .es-integrations{
        padding: 50px;
    }

    .es-int-xt2{
        width: 100%;
        padding-top: 30px;
    }
    
    .es-tooltip-2{
        width: 45.5%;
        height: 80px;
    }
    
    .es-tooltip-2 img {
        width: 70%;
    }
    /* Integrations Section End */

    /* Call To Action Section Start */
    .es-cta-section{
        padding: 50px;
    }
    /* Call To Action Section End */

    /* Pricing Section Start */
    .es-pricing-section{
        padding: 50px 25px;
    }
    .es-pricing-container{
        width: auto;
        padding: 0;
    }
    .es-pricing-box{
        flex-direction: column;
        gap: 30px;
        margin: 25px 0 0;
    }
    .es-pricing-card{
        width: 100%;
        margin: 0;
    }
    .es-pricing-card-2{
        width: 100%;
    }
    .es-pricing-card h4{
        font-size: 26px;
    }
    .es-pricing-card-2 h4{
        font-size: 26px;
    }
    .es-cart-btn{
        margin-top: 60px;
    }
    /* Pricing Section End */
}
/* Mobile-Tablate Responcive End */

/* Small Mobile Size Responcive Start */
@media (min-width: 320px) and (max-width: 576px) {
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    p {
        font-size: 16px;
    }

    .es-btn {
        padding: 10px 14px;
        font-size: 16px;
    }

    /* Globle Container css Start */
    .container{
        width: 100%;
        padding: 50px 30px;
        gap: 25px;
        flex-direction: column;
    }
    
    .es-container-2{
        width: 100%;
        padding: 50px 30px;
        flex-direction: column;
    }
    
    .es-container-3{
        width: 100%;
        padding: 50px 30px;
    }
    /* Globle Container css End */

    /* Home Section Start */
    .es-home-left{
        width: 100%;
    }
    /* Home Section End */

    /* Main Title Section Start */
    .es-main-title{
        height: auto;
    }
    /* Main Title Section End */

    /* Import Event Section Start */
    .es-import-xt{
        gap: 25px;
        padding-top: 25px;
    }

    .es-event-box{
        width: 100%;
    }
    /* Import Event Section End */

    /* Image-Box Section Start */
    .es-card-f1{
        flex-direction: column;
        gap: 25px;
        padding-top: 30px;
    }

    .es-right-f1{
        width: 100%;
        text-align: start;
    }

    .es-left-f1{
        width: 100%;
    }

    .es-left-f1 img{
        width: 100%;
    }
    /* Image-Box Section End */

    /* Integrations Section Start */
    .es-integrations{
        padding: 50px 30px;
    }

    .es-int-xt2{
        width: 100%;
        padding-top: 30px;
    }
    
    .es-tooltip-2{
        width: 100%;
        height: 80px;
    }
    
    .es-tooltip-2 img {
        width: 40%;
    }
    /* Integrations Section End */

    /* Call To Action Section Start */
    .es-cta-section{
        padding: 50px 30px;
    }
    /* Call To Action Section End */

    /* Pricing Section Start */
    .es-pricing-section{
        padding: 50px 25px;
    }
    .es-pricing-container{
        width: auto;
        padding: 0;
    }
    .es-pricing-box{
        flex-direction: column;
        gap: 30px;
        margin: 25px 0 0;
    }
    .es-pricing-card{
        margin: 0;
        width: 100%;
    }
    .es-pricing-card-2{
        margin: 0;
        width: 100%;
    }
    .es-pricing-card h4{
        font-size: 26px;
    }
    .es-pricing-card-2 h4{
        font-size: 26px;
    }
    .es-cart-btn{
        margin-top: 60px;
    }
    /* Pricing Section End */
}
/* Small Mobile Size Responcive End */