@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;700&display=swap");

:root {
    --primary-color: #196bb5;
    --secondary-color: #ed1c24;
    --tertiary-color: #d0e4ff;
    --quaternary-color: #f2f5f9;
}

* {
    font-family: "Plus Jakarta Sans", sans-serif;
}

body {
    background-color: var(--quaternary-color);
}

h1,
h2,
h3 {
    font-weight: 700;
}

a:hover {
    color: var(--primary-color);
}

.p-color {
    color: var(--primary-color);
}

.s-color {
    color: var(--secondary-color);
}

.w-color {
    color: white;
}

.t-bg {
    background-color: var(--tertiary-color);
}

.p-bg {
    background-color: var(--primary-color);
}

a {
    color: black;
}

.p-heading {
    font-size: 4.4rem;
    line-height: 4.5rem;
}

p,
ul li {
    text-align: justify;
}

.header {
    height: 2rem;
}

.rounded-section {
    border-radius: 0.8rem;
    padding: 1rem 3.7rem;
}

    .rounded-section .img-section {
        width: 75%;
    }

    .rounded-section img {
        max-width: 16.25rem;
    }

.column {
    min-height: 37rem;
}

h1 {
    font-size: 2.8rem;
}

    h1.underline:after {
        content: "";
        margin: 0.25rem auto 0rem;
        display: block;
        width: 3.75rem;
        height: 0.25rem;
        border-radius: 0.125rem;
        background: var(--primary-color);
    }

.client-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 0.5rem;
}

.owl-carousel .owl-item img {
    width: unset !important;
}

.client-card .img-section {
    height: 11.5rem;
    background-color: var(--tertiary-color);
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .client-card .img-section img {
        width: 9rem;
        max-width: 13rem;
        max-height: 8rem;
    }

.client-card .detail-section {
    position: relative;
}

    .client-card .detail-section p {
        font-size: 0.95rem;
        font-weight: 600;
    }

.client-card .icon-section {
    width: 1.8rem;
    border-radius: 0.3rem;
    background: black;
    height: 1.8rem;
    position: absolute;
    right: 0;
    top: 0%;
}

    .client-card .icon-section img {
        width: 1.4rem;
    }

.faq .faq-list ul,
.footer-section ul {
    padding: 0;
    list-style: none;
}

.faq .faq-list li + li {
    margin-top: 0.938rem;
}

.faq .faq-list li {
    padding: 1.25rem;
    background: #fff;
    border-radius: 0.5rem;
    position: relative;
}

.faq .faq-list a {
    display: inline;
    position: relative;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    text-decoration: none;
}

.faq .faq-list ul li p {
    text-align: left;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
    font-size: 1.063rem;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0.3rem 0.4rem;
    border-radius: 0.3rem;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 0.625rem 0 0 0;
}

.faq .faq-list .icon-close {
    background-color: var(--primary-color);
    color: white;
}

.faq .faq-list .icon-show {
    background-color: var(--quaternary-color);
    display: none;
}

.faq .faq-list a.collapsed {
    transition: 0.3s;
}

    .faq .faq-list a.collapsed .icon-show {
        display: inline-block;
    }

    .faq .faq-list a.collapsed .icon-close {
        display: none;
    }

.demo-section input {
    width: 100%;
    border: 0;
    border-bottom: 0.063rem solid black;
    background-color: transparent;
    margin-bottom: 2.3rem;
}

    .demo-section input:focus {
        outline: none;
    }

.demo-section button {
    background-color: var(--primary-color);
    color: white;
    font-size: 1.2rem;
    padding: 0.5rem 2.2rem;
    border-radius: 0.8rem;
}

    .demo-section button:hover {
        background-color: #3e91da;
        color: white;
    }

.footer-section img {
    max-width: 13rem;
}

.footer-section p {
    font-size: 1rem;
    text-align: left;
    margin-top: 1.2rem;
    max-width: 16rem;
}

.footer-section h4 {
    font-size: 1.4rem;
    font-weight: normal;
    margin-top: 0rem;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.footer-section .footer * {
    margin: 0;
    padding: 0;
    max-width: unset;
}

.footer a,
.footer-section ul li a {
    color: white;
    text-decoration: none;
}

hr {
    border: 0.063rem solid white;
}

.social-menu ul {
    display: flex;
}

    .social-menu ul li {
        list-style: none;
        margin: 0 0.625rem 0 0;
    }

        .social-menu ul li .fab {
            font-size: 1.25rem;
            line-height: 2.188rem;
            transition: 0.3s;
            color: var(--primary-color);
        }

            .social-menu ul li .fab:hover {
                color: #fff;
            }

        .social-menu ul li a {
            position: relative;
            display: block;
            width: 2.188rem;
            height: 2.188rem;
            border-radius: 50%;
            background-color: #fff;
            text-align: center;
            transition: 0.6s;
        }

            .social-menu ul li a:hover {
                transform: translate(0, -10%);
            }

        .social-menu ul li:nth-child(1) a:hover {
            background-color: #0077b5;
        }

        .social-menu ul li:nth-child(2) a:hover {
            background-color: rgba(0, 0, 0, 0.829);
        }

        .social-menu ul li:nth-child(3) a:hover {
            background-color: #0e76a8;
            font-size: 1.2rem;
        }

        .social-menu ul li a:hover i {
            color: white;
        }

.btn {
    background-color: white;
    padding: 0.8rem 1rem;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    margin-right: 0.313rem;
}

    .btn:hover {
        background-color: white;
        color: black;
    }

.btn-danger {
    background-color: var(--secondary-color);
    font-size: 1.1rem;
    padding: 0.6rem 1.6rem;
    border-radius: 0.5rem;
}

    .btn-danger:hover {
        background-color: #f44b51;
        color: white;
    }

.owl-prev,
.owl-next {
    width: 2.188rem;
    height: 2.188rem;
    border: 0.063rem solid lightgray !important;
    border-radius: 0.563rem !important;
    margin-top: 1.3rem !important;
    transition: 0.3s;
}

    .owl-prev:hover,
    .owl-next:hover {
        background-color: var(--primary-color) !important;
        color: white;
    }

    .owl-prev i,
    .owl-next i {
        font-size: 0.9rem;
    }

.video-bg {
    background-image: url("/images/video-bg.webp");
    background-repeat: no-repeat;
    background-size: contain;
}

.vjs-default-skin {
    color: #ffffff;
    width: 70% !important;
    height: 100% !important;
    min-width: 37.5rem;
    min-height: 28rem;
    border-radius: 3rem;
    background: var(--quaternary-color);
}

    .vjs-default-skin .vjs-play-progress,
    .vjs-default-skin .vjs-volume-level {
        background-color: var(--primary-color);
    }

.video-js .vjs-tech {
    border-radius: 1.875rem;
}

.vjs-default-skin .vjs-big-play-button {
    left: 50%;
    top: 50%;
    width: 4.375rem;
    height: 4.375rem;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

    .vjs-default-skin .vjs-big-play-button:before {
        left: 0.188rem;
        bottom: 0.313rem;
    }

.vjs-poster {
    border-radius: 1.938rem;
}

.vjs-default-skin .vjs-control-bar {
    border-radius: 0rem 0rem 1.938rem 1.938rem;
}

.content {
    padding: 2rem 7rem 0 7rem;
    max-width: 48.75rem;
}

.hero-images {
    position: relative;
}

    .hero-images .main-image {
        position: absolute;
        bottom: 0;
        right: 10rem;
        width: 62%;
    }

.header {
    padding: 0 2.5rem;
    position: absolute;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

    .preloader img {
        width: 6.25rem;
        height: auto;
    }

.mobile-view {
    display: none;
}

.demo-section .row {
    padding-top: 2.3rem;
}

.faq-list .title {
    max-width: 26rem;
    text-align: left;
}

.testimonials .card {
    min-height: 54rem;
    background: #fff;
    padding: 1rem 0rem;
    border-radius: 1.25rem;
    border: 0;
    margin: 0.4rem;
}

    .testimonials .card .card-body {
        padding: 1rem 2rem;
    }

    .testimonials .card .card-img-top {
        max-width: 12rem;
    }

    .testimonials .card h5 {
        color: var(--primary-color);
        font-size: 1.313rem;
        line-height: 1.3;
    }

        .testimonials .card h5 span {
            font-size: 1.125rem;
            color: #666666;
        }

    .testimonials .card p {
        font-size: 1.125rem;
        color: #555;
        padding-bottom: 0.938rem;
    }

.testimonials .center h5 {
    font-size: 1.3rem;
}

    .testimonials .center h5 span {
        font-size: 1.25rem;
    }

.testimonials .center .card-img-top {
    height: 7.5rem;
    width: 7.5rem;
}

.z-1 {
    z-index: 1;
}

.modal-confirm {
    color: #434e65;
    min-width: 20rem;
}

    .modal-confirm .modal-content {
        padding: 1.25rem;
        font-size: 1rem;
        border-radius: 0.313rem;
        border: none;
    }

    .modal-confirm .modal-header {
        background: var(--primary-color);
        border-bottom: none;
        position: relative;
        text-align: center;
        margin: -1.25rem -1.25rem 0;
        border-radius: 0.313rem 0.313rem 0 0;
        padding: 1.8rem;
    }

    .modal-confirm.error .modal-header {
        background: #bb2124;
    }

    .modal-confirm .modal-header button {
        position: absolute;
        right: 0.938rem;
        top: 0.938rem;
        color: white;
    }

    .modal-confirm h4 {
        text-align: center;
        font-size: 2.25rem;
        margin: 0.625rem 0;
    }

    .modal-confirm .form-control, .modal-confirm .btn {
        min-height: 2.5rem;
        border-radius: 0.188rem;
    }

    .modal-confirm .close {
        position: absolute;
        top: 0.938rem;
        right: 0.938rem;
        color: #fff;
        text-shadow: none;
        opacity: 0.5;
    }

        .modal-confirm .close:hover {
            opacity: 0.8;
        }

    .modal-confirm .icon-box {
        color: #fff;
        width: 5.438rem;
        height: 5.438rem;
        display: inline-block;
        border-radius: 50%;
        z-index: 9;
        border: 0.313rem solid #fff;
        padding: 0.938rem;
        text-align: center;
    }

        .modal-confirm .icon-box i {
            font-size: 3.9rem;
            margin: -0.25rem 0 0 -0.125rem;
        }

    .modal-confirm.modal-dialog {
        margin-top: 80px;
    }

    .modal-confirm .btn, .modal-confirm .btn:active {
        color: #fff;
        border-radius: 0.25rem;
        background: #eeb711 !important;
        text-decoration: none;
        transition: all 0.4s;
        line-height: normal;
        border-radius: 1.875rem;
        margin-top: 0.625rem;
        padding: 0.375rem 1.25rem;
        border: none;
    }

        .modal-confirm .btn:hover, .modal-confirm .btn:focus {
            background: #eda645 !important;
            outline: none;
        }

        .modal-confirm .btn span {
            margin: 0.063rem 0.188rem 0;
            float: left;
        }

        .modal-confirm .btn i {
            margin-left: 0.063rem;
            font-size: 1.25rem;
            float: right;
        }

.trigger-btn {
    display: inline-block;
    margin: 6.25rem auto;
}

.btn-close {
    filter: invert(1);
}

.modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-52.5%, -50%) !important;
}

.buttonload {
    background-color: #04AA6D;
    border: none;
    color: white;
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.fa {
    margin-left: -0.75rem;
    margin-right: 0.5rem;
}

#demo-submit-btn i {
    display: none
}

.header img {
    width: 14rem;
    margin-top: 0.35rem;
}

.testimonials .img-container {
    height: 8rem !important;
}

.testimonials .card-img-top.w-6 {
    width: 6rem !important;
}
.testimonials .card-text.client-position {
    font-size: 1rem;
    color: var(--primary-color);
}

/* responsiveness */
@media only screen and (max-width: 401px) {
    .h-ex-small {
        display: none;
    }

    .vjs-default-skin {
        min-width: 100%;
        min-height: 11rem;
    }
    .testimonials .card {
        min-height: 70rem !important;
    }
}

@media only screen and (max-width: 768px) {
    .testimonials .card {
        min-height: 68rem;
    }

    .hero-images {
        display: none;
    }

    .desktop-view {
        display: none;
    }

    .mobile-view {
        display: block;
    }

    h1 {
        font-size: 2rem;
    }

    .header img {
        width: 10.5rem;
    }

    .header {
        padding: 0.5rem 0.8rem;
        margin-top: 0.2rem;
        background-color: white;
        position: fixed;
        top: 0;
        height: 5rem;
        z-index: 3;
        margin-top: 0;
    }

    .btn,
    .btn-danger {
        font-size: 1rem;
        padding: 0.3rem 0.8rem;
    }

    .btn {
        margin-right: 0;
    }

    .content {
        padding: 5rem 0.3rem 0 0.3rem;
    }

    .rounded-section {
        padding: 1rem 1.7rem;
    }

        .rounded-section .img-section {
            width: 100%;
            margin-top: 2rem;
        }

    .p-heading {
        font-size: 3rem;
        line-height: 3rem;
    }

    .vjs-default-skin {
        min-width: 100%;
        min-height: 11rem;
    }

    .faq-list .col-md-6 {
        padding: 0;
    }

    .faq-list .title {
        max-width: 14rem;
        text-align: left;
    }

    .demo-section {
        padding: 0 1rem;
    }

        .demo-section .row {
            padding-top: 1rem;
        }

    .footer-section img {
        max-width: 10rem;
    }

    .footer-section ul li {
        margin-bottom: 0.2rem;
        font-size: 0.8rem;
    }

    .footer-section p {
        margin-top: 0;
    }

    .footer-section .footer * {
        font-size: 0.8rem;
    }

    .social-menu ul li a {
        width: 1.9rem;
        height: 1.9rem;
    }

    .social-menu ul li .fab {
        font-size: 1rem;
        line-height: 1.9rem;
    }

    .demo-section button {
        font-size: 1.1rem;
        padding: 0.3rem 1.6rem;
        border-radius: 0.8rem;
    }

    .demo-section form {
        padding: 0 1rem;
    }

    p,
    ul li {
        font-size: 0.9rem;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .testimonials .card {
        min-height: 67rem;
    }
    .desktop-view {
        display: none;
    }

    h1 {
        font-size: 2rem;
    }

    .header img {
        width: 11.5rem;
    }

    .btn,
    .btn-danger {
        font-size: 1rem;
        padding: 0.3rem 0.8rem;
    }

    .btn {
        margin-right: 0;
    }

    .content {
        padding: 2rem 3.2rem 0;
    }

    .p-heading {
        font-size: 2.2rem;
        line-height: 2.2rem;
    }

    .h-ipad-view {
        display: none;
    }

    .hero-images .main-image {
        width: 51%;
        right: 7rem;
    }

    .faq-list .title {
        max-width: 14rem;
        text-align: left;
    }

    .column {
        min-height: 51rem;
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1248px) {
    .desktop-view {
        display: none;
    }

    h1 {
        font-size: 2rem;
    }

    .header img {
        width: 12.5rem;
    }

    .btn,
    .btn-danger {
        font-size: 1rem;
        padding: 0.3rem 0.8rem;
    }

    .btn {
        margin-right: 0;
    }

    .content {
        padding: 2rem 3.2rem 0;
    }

    .p-heading {
        font-size: 2.8rem;
        line-height: 2.8rem;
    }

    .content p {
        font-size: 0.8rem;
    }

    .hero-images .main-image {
        width: 51%;
        right: 7rem;
    }

    .column {
        min-height: 41rem;
    }
}

@media only screen and (min-width: 1249px) and (max-width: 1600px) {
    h1 {
        font-size: 2rem;
    }

    .btn,
    .btn-danger {
        font-size: 1rem;
        padding: 0.5rem 0.9rem;
    }

    .btn {
        margin-right: 0.2rem;
    }

    .content {
        padding: 2rem 3.2rem 0;
    }

    .p-heading {
        font-size: 3.4rem;
        line-height: 3.4rem;
    }

    .hero-images .main-image {
        width: 51%;
        right: 7rem;
    }

    .column {
        min-height: 41rem;
    }

    .vjs-default-skin {
        width: 81% !important;
    }
}
