@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --white: #fff;
    --black: #000;
    --yellow: #ffae48;
    --blue: #2079be;
    --light-blue: #3ab6e6;
}


html, body {
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0;
}

section {
    padding: 100px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

.row {
    display: flex;
}

.row-col {
    display: flex;
    flex-direction: column;
}

.space-between {
    justify-content: space-between;
}

.col-1-2 {
    width: 50%;
}

.col-1-3 {
    width: 30%;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.z-3 {
    z-index: 3;
}

h1, h2, h3, h4, h5, h6, p {
    color: var(--white);
    margin-top: 0;
}

h1 {
    font-family: "Poppins", sans-serif;
    font-size: 85px;
    line-height: 90px;
}

h2 {
    font-family: "Poppins", sans-serif;
    font-size: 35px;
    line-height: 40px;
}

.heading-wrapper h2 {
    font-size: 75px;
    line-height: 80px;
}

h3 {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    line-height: 35px;
    color: var(--blue);
}

.heading-wrapper p {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    line-height: 25px;
    font-weight: bold;
}

.heading-wrapper.normal p {
    font-weight: normal;
}

p {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    line-height: 25px;
}

.center-content {
    justify-content: center;
}

#hero {
    background-image: url(hero-bg-1.jpg);
    padding-bottom: 20px;
}

#hero h2 {
    font-size: 45px;
    line-height: 50px;
}

#products {
    padding: 20px 0;
}

#products .heading-wrapper {
    margin-bottom: 50px;
}

#dashboard img {
    width: 80%;
    margin: 0 auto;
}

.overlay {
    width: 100%;
    height: 100%;
    background-color: #00007f;
    opacity: 0.5;
    top: 0;
}

.bg-black {
    background-color: var(--black);
}

.f-w {
    width: 100%;
}

.primary-btn {
    color: var(--yellow);
    border: 1px solid var(--yellow);
    padding: 10px;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    position: relative;
    max-width: 270px;
    display: block;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    border: 1px solid var(--yellow);
    right: 30px;
}

.primary-btn::after {
    content: '';
    position: absolute;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid var(--yellow);
    top: 30%;
    right: 20px;
}

#benefit {
    background-image: url(case-study-main.jpg);
}

#benefit h3 {
    margin-bottom: 0;
    color: var(--light-blue);
}

.info p {
    font-size: 14px !important;
    font-weight: normal;
}

.bordered-blue {
    border: 1px solid var(--blue);
}

#frog-bg {
    background-image: url(frog-bg.png);
    padding: 500px 0;
}

.web-accent-bg {
    background-image: url('web.svg');
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    overflow: hidden;
}

.bg-top-black-gradient {
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    width: 100%;
    height: 50%;
    top: 0;
    overflow: hidden;
}

.bg-bottom-black-gradient {
    background: linear-gradient(360deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    width: 100%;
    height: 50%;
    bottom: 0;
    overflow: hidden;
}

#testimonial-wrapper li {
    position: relative;
    padding-left: 100px;
}

#testimonial-wrapper .slick-slide {
    position: relative;
}

#testimonial-wrapper .slick-slide::before {
    content: '';
    background-image: url('quote-top.png');
    width: 60px;
    height: 60px;
    position: absolute;
    background-repeat: no-repeat;
    left: 0;
}

#testimonial-wrapper .slick-slide::after {
    content: '';
    background-image: url('quote-bottom.png');
    width: 60px;
    height: 60px;
    position: absolute;
    background-repeat: no-repeat;
    right: 0;
    bottom: 0;
}

#testimonial-wrapper li h3 {
    font-size: 35px;
    color: var(--light-blue);
}

#testimonial-wrapper .slick-arrow,
.slick-dots li button::before {
    display: none !important;
}

.slick-dots .slick-active {
    background-color: #fff;
}

.slick-dots li {
    border: 1px solid #fff;
    height: 15px !important;
}

.slick-dots {
    left: -50%;
    bottom: -60px !important;
}

.indent {
    padding-left: 30px;
}

#faq h3 {
    font-size: 45px;
    line-height: 50px;
    padding-right: 50px;
    color: var(--light-blue)
}

#faq p {
    font-weight: normal;
}

#faq ul li {
    color: var(--white);
    font-size: 20px;
    font-family: "Poppins", sans-serif;
}

#faq .row {
    margin-bottom: 70px;
}

#plans {
    background-color: #102794;
}

#plans .heading-wrapper h2 {
    text-align: center;
    font-size: 65px;
    line-height: 70px;
}

#plan-list {
    justify-content: space-between;
}

#plan-list .plan-item {
    width: 20%;
    padding: 30px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    background-color: #0c0d0c;
}

#plan-list .plan-item h2 {
    color: var(--light-blue);
    margin: 0;
}

#plan-list .plan-item h3 {
    color: var(--white);
    font-size: 18px;
    line-height: 25px;
}

#plan-list .plan-item ul {
    padding-left: 20px;
}

#plan-list .plan-item ul li {
    margin-bottom: 20px;
}

#plan-list .plan-item .heading {
    min-height: 150px;
}

#plan-list .plan-item h4 {
    font-family: "Poppins", sans-serif;
    font-size: 25px;
    font-weight: normal;
    margin: 0;
}

#plan-list .plan-item h2 small {
    font-size: 14px;
}

#plan-list .plan-item h2 {
    color: var(--light-blue);
    margin: 0;
    font-size: 28px;
    line-height: 30px;
}

#plan-list .plan-item p {
    font-size: 16px;
}

#plan-list .plan-item ul li {
    color: var(--white);
    font-size: 18px;
    font-family: "Poppins", sans-serif;
}

#plan-list .plan-item .btn-wrapper {
    margin-top: auto;
}

#register .heading-wrapper h2,
#register .heading-wrapper h3 {
    text-align: center;
    color: var(--white);
}

#faq .row:last-child {
    margin: 0;
}


.m-auto {
    margin: 0 auto;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-100 {
    margin-bottom: 100px;
}

.pt-0 {
    padding-top: 0;
}

.pb-0 {
    padding-bottom: 0;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pt-200 {
    padding-top: 200px;
}

.pb-200 {
    padding-bottom: 200px;
}

.pt-300 {
    padding-top: 300px;
}

.pb-300 {
    padding-bottom: 300px;
}

/* Responsive */
@media only screen and (max-width: 1620px) {
    .container {
        padding: 0 30px;
    }
}

@media only screen and (max-width: 1366px) {
    #logo-wrapper img {
        width: 70%;
    }

    #hero h2 {
        font-size: 35px;
        line-height: 40px;
    }

    h1, 
    .heading-wrapper h2 {
        font-size: 55px;
        line-height: 60px;
    }

    .heading-wrapper p,
    p {
        font-size: 16px;
        line-height: 20px;
    }

    section {
        padding: 50px 0;
    }

    h3 {
        font-size: 20px;
        line-height: 25px;
    }

    #trend {
        padding-bottom: 100px;
    }


    #testimonial-wrapper .slick-slide::after {
        bottom: -100px;
    }

    #faq ul li {
        font-size: 16px;
    }

    #plan-list {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-evenly;
    }

    #plan-list .plan-item {
        width: 40%;
    }

    #faq h3 {
        font-size: 30px;
        line-height: 35px;
    }

    #testimonial-wrapper li {
        padding-left: 20px;
    }
}

@media only screen and (max-width: 1024px) {
    #hero h2 {
        font-size: 30px;
        line-height: 35px;
    }

    h1, .heading-wrapper h2 {
        font-size: 40px;
        line-height: 45px;
    }

    #testimonial-wrapper li h3 {
        font-size: 25px;
        line-height: 30px;
    }

    #plan-list .plan-item h3 {
        font-size: 18px;
    }

    #plan-list .plan-item h2 {
        font-size: 25px;
    }

    #plan-list .plan-item ul li {
        font-size: 16px;
    }

    #plan-list .plan-item p {
        font-size: 16px;
    }

    #frog-bg {
        padding: 200px 0;
    }

    #plans .heading-wrapper h2 {
        font-size: 40px;
        line-height: 45px;
    }
}

@media only screen and (max-width: 980px) {
    #logo-wrapper img {
        width: 50%;
    }
}

@media only screen and (max-width: 767px) {
    .row {
        display: flex;
        flex-direction: column;
    }

    .col-1-2,
    .col-1-3 {
        width: 100%;
    }

    br {
        display: none;
    }

    section {
        text-align: center;
    }

    .primary-btn {
        text-align: left;
        margin: 0 auto;
    }

    #trend {
        padding-bottom: 50px;
    }

    #testimonial-wrapper, 
    #testimonial-wrapper li {
        padding-left: 0;
    }

    #testimonial-wrapper .slick-slide::before {
        top: -100px;
    }

    ul li {
        text-align: left;
    }

    #plan-list .plan-item {
        width: 100%;
    }

    #plan-list {
        flex-direction: row;
    }

    .slick-dots {
        left: 0;
        bottom: -20px !important;
    }

    #testimonial-wrapper li h3 {
        text-align: center;
    }

    .heading-wrapper p, p {
        text-align: center;
    }

    #faq h3 {
        padding-right: 0;
    }
}

@media only screen and (max-width: 640px) {
    section {
        padding: 20px 0;
    }

    #faq .row {
        margin-bottom: 0;
    }

    #plan-list .plan-item .heading {
        min-height: 100px;
    }

    #hero .row.mt-100 {
        margin-top: 30px;
    }

    #trend {
        padding-bottom: 20px;
    }

    #faq h3 {
        margin: 20px 0 0 0;
    }

    #plan-list .plan-item ul li {
        margin-bottom: 5px;
    }

    h1, .heading-wrapper h2 {
        margin-bottom: 20px;
    }

    .primary-btn {
        max-width: 250px;
    }
}