/* Animation */

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}

.rotate {
    animation: rotation 8s infinite linear;
}

@keyframes heartbeat {
    0% {
        transform: scale( .75);
    }
    20% {
        transform: scale( 1);
    }
    40% {
        transform: scale( .75);
    }
    60% {
        transform: scale( 1);
    }
    80% {
        transform: scale( .75);
    }
    100% {
        transform: scale( .75);
    }
}

.beat {
    animation: heartbeat 1s infinite;
}

@keyframes pulse-ani {
    from {
        transform: scale3d(1, 1, 1);
    }
    50% {
        transform: scale3d(1.05, 1.05, 1.05)
    }
    to {
        transform: scale3d(1, 1, 1)
    }
}

.pulse {
    animation: pulse-ani 1s infinite;
}


.cta-img{
    width: 100%;
    height: auto;
    margin-bottom: 81px;
}





/* Portal Section Css End */

.portal-section {
    padding: 100px 0px;
}

.portal-heading {
    text-align: center;
}

.portal-heading h5 {
    font-weight: 600;
    border-bottom: solid 2px #e26228;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 4px;
}

.portal-heading h2 {
    font-weight: 500;
}

.portal-heading span {
    color: #e26228;
    font-weight: 600;
}

.portal-block {
    margin-left: 215px;
    margin-top: 40px;
}

.portal-row-1 {
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

.portal-box {
    margin: 0px 30px;
}

.portal-row-2 {
    display: flex;
    margin-left: -80px;
    margin-right: auto;
}


/* Portal Section Css End */


/* Services Secrion Css Start */

.services-section {
    padding: 0px 0px 100px 0px;
}

.service-section-heading {
    text-align: center;
    margin-bottom: 75px;
}

.service-section-heading h3 {
    border-bottom: solid 2px #f1a56c;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    padding: 35px 25px 35px 25px;
    background: linear-gradient(45deg, #e65c0099, #f9d42369);
    border-radius: 15px;
}

div.service-card.active {
    transform: scale(1.03);
    background-image: url(../img/ser-box-blend-img.webp);
    background-repeat: no-repeat;
    background-color: #f1a56c;
    background-position: bottom right;
    background-blend-mode: luminosity;
    background-size: 40%;
    color: white;
    box-shadow: 0px 30px 60px 0px rgb(8 0 42 / 10%);
    border-radius: 14px;
}

.service-card:hover {
    transform: scale(1.01);
    background-image: url(../img/ser-box-blend-img.webp);
    background-repeat: no-repeat;
    background-color: #f1a56c;
    background-position: bottom right;
    background-blend-mode: luminosity;
    background-size: 40%;
    color: white;
}

.service-card h3 {
    text-align: center;
    margin-bottom: 25px;
}

.service-card p {
    margin-bottom: 120px;
}

.chat-button {
    text-align: left;
    margin-top: -90px;
}

.chat-button a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 19px;
    /* border: solid 1px rgb(0, 0, 0); */
    padding: 7px 15px;
    border-radius: 10px;
    background-color: #fcd486;
}


/* .service-card-heading {
    padding: 56px;
    background-color: #fcd486;
    margin-top: -35px;
    clip-path: circle(44.2% at 14% 22%);
    margin-left: -25px;
    margin-bottom: 15px;
} */

.service-card h3 {
    text-align: center;
    /* margin-left: -45px; */
    font-weight: 600;
}


/* Services Section Css End */


/* Add here all your CSS customizations */

.p-0 {
    padding: 0px;
}

.p-3 {
    padding: 3px;
}

.p-5 {
    padding: 5px;
}

.p-10 {
    padding: 10px;
}

.p-15 {
    padding: 15px;
}

.p-20 {
    padding: 20px;
}

.p-25 {
    padding: 25px;
}

.p-30 {
    padding: 30px;
}

.p-35 {
    padding: 35px;
}

.p-40 {
    padding: 40px;
}

.p-45 {
    padding: 45px;
}

.p-50 {
    padding: 50px;
}

.pt-0 {
    padding-top: 0px;
}

.pt-3 {
    padding-top: 3px;
}

.pt-5 {
    padding-top: 5px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-25 {
    padding-top: 25px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-35 {
    padding-top: 35px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-45 {
    padding-top: 45px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-100 {
    padding-top: 100px;
}

.pr-0 {
    padding-right: 0px;
}

.pr-3 {
    padding-right: 3px;
}

.pr-5 {
    padding-right: 5px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-15 {
    padding-right: 15px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-25 {
    padding-right: 25px;
}

.pr-30 {
    padding-right: 30px;
}

.pr-35 {
    padding-right: 35px;
}

.pr-40 {
    padding-right: 40px;
}

.pr-45 {
    padding-right: 45px;
}

.pr-50 {
    padding-right: 50px;
}

.pb-0 {
    padding-bottom: 0px;
}

.pb-3 {
    padding-bottom: 3px;
}

.pb-5 {
    padding-bottom: 5px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-35 {
    padding-bottom: 35px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-45 {
    padding-bottom: 45px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pl-0 {
    padding-left: 0px;
}

.pl-3 {
    padding-left: 3px;
}

.pl-5 {
    padding-left: 5px;
}

.pl-10 {
    padding-left: 10px;
}

.pl-15 {
    padding-left: 15px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-25 {
    padding-left: 25px;
}

.pl-30 {
    padding-left: 30px;
}

.pl-35 {
    padding-left: 35px;
}

.pl-40 {
    padding-left: 40px;
}

.pl-45 {
    padding-left: 45px;
}

.pl-50 {
    padding-left: 50px;
}

.m-0 {
    margin: 0px;
}

.m-3 {
    margin: 3px;
}

.m-5 {
    margin: 5px;
}

.m-10 {
    margin: 10px;
}

.m-15 {
    margin: 15px;
}

.m-20 {
    margin: 20px;
}

.m-25 {
    margin: 25px;
}

.m-30 {
    margin: 30px;
}

.m-35 {
    margin: 35px;
}

.m-40 {
    margin: 40px;
}

.m-45 {
    margin: 45px;
}

.m-50 {
    margin: 50px;
}

.mt-0 {
    margin-top: 0px;
}

.mt-3 {
    margin-top: 3px;
}

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mr-0 {
    margin-right: 0px;
}

.mr-3 {
    margin-right: 3px;
}

.mr-5 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-25 {
    margin-right: 25px;
}

.mr-30 {
    margin-right: 30px;
}

.mr-35 {
    margin-right: 35px;
}

.mr-40 {
    margin-right: 40px;
}

.mr-45 {
    margin-right: 45px;
}

.mr-50 {
    margin-right: 50px;
}

.mb-0 {
    margin-bottom: 0px;
}

.mb-3 {
    margin-bottom: 3px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

.ml-0 {
    margin-left: 0px;
}

.ml-3 {
    margin-left: 3px;
}

.ml-5 {
    margin-left: 5px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-25 {
    margin-left: 25px;
}

.ml-30 {
    margin-left: 30px;
}

.ml-35 {
    margin-left: 35px;
}

.ml-40 {
    margin-left: 40px;
}

.ml-45 {
    margin-left: 45px;
}

.ml-50 {
    margin-left: 50px;
}

.banner {
    /* The image used */
    background-image: url("../img/main-banner.jpg");
    /* Full height */
    height: 850px;
    width: auto;
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: top;
}

.banner h1 {
    color: #e16127;
    font-size: 44px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: poppins;
}

.banner h1 {
    color: #000000;
    font-size: 44px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: poppins;
    text-shadow: 0 0 4px #ffffff;
}

.banner p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 45px;
}

.banner-main ul {
    padding-left: 18px;
    list-style: none;
    position: relative;
    margin: 20px 0 40px 0;
}

.banner-main ul li {
    font-size: 16px;
    color: #ffffff;
    line-height: 16px;
    padding-top: 16px;
    padding-left: 15px;
}

.banner-main ul li:before {
    content: "\f058";
    position: absolute;
    left: 0;
    color: #ff5000;
    font: normal normal normal 20px/1 FontAwesome;
}

.banner-main-cnt a {
    display: inline-block;
    width: 165px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    border-radius: 4px;
    background-color: #ff5000;
    color: #ffffff;
    font-size: 18px;
    margin-right: 20px;
}

.banner-main-cnt .btn-2 {
    display: inline-block;
    width: 165px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    border-radius: 4px;
    background-color: #ffffff;
    color: #000000;
    font-size: 18px;
    margin-right: 20px;
}

.banner-main-cnt .btn-2:hover {
    background-color: #ff5000;
    color: #ffffff;
}

.banner-main-cnt a:hover,
.banner-main-cnt a:active,
.banner-main-cnt a:focus {
    background-color: #fff;
    color: #000;
}

.banner-main-cnt {
    margin-top: 45px;
}

.banner-main {
    padding: 100px 0;
    display: flex;
    align-items: center;
}






/* THE LEAD FORM */

.form-banner {
    padding: 18px 0px;
    width: 70%;
    border-radius: 13px;
    box-shadow: 0px 0px 10px 0px rgb(255 255 255);
    border: 2px white solid;
    z-index: 2;
    background-color: #ffffff96;
    margin: 0;
}

.form_body {
    padding: 10px 25px 30px 25px;
}

.form-banner p {
    color: white !important;
    text-align: center;
    background-color: green;
    padding: 5px
}

.form-banner h2 {
    text-align: center;
    font-size: 26px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0px;
    padding: 0 9px;
    line-height: 29px;
}

.form-banner h5 {
    text-align: center;
    font-size: 18px;
    color: #000;
    font-weight: 500;
    margin-bottom: 0px;
    padding: 10px 9px 0 9px;
    line-height: 20px;
    font-weight: 700;
}

.form-banner h4 {
    text-align: center;
    color: #ffffff;
    font-weight: 400;
    font-size: 19px;
}

.form-banner h4 a {
    color: #fdc716;
    font-size: 22px;
    font-weight: 900;
}

.form-banner h4 a:hover {
    color: #ffffff;
    text-decoration: underline !important;
}

@keyframes pulse-ani {
    from {
        transform: scale3d(1, 1, 1);
    }
    50% {
        transform: scale3d(1.05, 1.05, 1.05)
    }
    to {
        transform: scale3d(1, 1, 1)
    }
}

.pulse {
    animation: pulse-ani 1s infinite;
}

.form-banner label {
    margin-top: 15px;
    color: #ffffff;
    line-height: normal;
    display: block;
}

.form-banner input[type="text"],
.form-banner input[type="tel"],
.form-banner input[type="email"] {
    width: 100%;
    height: 33px;
    padding: 8px;
    border: 1px white solid;
    border-radius: 4px;
    margin-top: 14px;
    background-color: white;
    color: black;
}

.form-banner ::placeholder {
    color: black;
    opacity: 1;
    /* Firefox */
}

.form-banner textarea {
    width: 100%;
    height: 60px;
    padding: 10px;
    border: 0px;
    resize: none;
    border-radius: 4px;
    margin-top: 14px;
    background-color: white;
    border: 1px white solid;
    color: black;
}

.cty-code {
    margin-top: 14px;
}

.form-submit {
    text-align: center;
    margin-top: 20px;
}

.form-submit input[type="submit"] {
    cursor: pointer;
    display: inline-block;
    width: 165px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    border-radius: 65px;
    background-color: #ffffff;
    color: #ec2527;
    font-size: 18px;
    border: 0px;
    font-weight: 500;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
}

.form-submit input[type="submit"]:hover,
.form-submit input[type="submit"]:active,
.form-submit input[type="submit"]:focus {
    background-color: #000;
    color: #fff;
}

.form-banner input[type="submit"] {
    cursor: pointer;
    display: inline-block;
    width: 100%;
    height: 44px;
    line-height: 17px;
    text-align: center;
    border-radius: 4px;
    background-color: #000000;
    color: #ffffff;
    font-size: 22px;
    border: 0px;
    font-weight: 600;
    -webkit-transition: 0.3s ease-in-out;
    margin-top: 20px;
}

select {
    width: 100%;
    height: 33px;
    padding: 0 8px;
    border: 1px white solid;
    border-radius: 4px;
    margin-top: 14px;
    background-color: #ffffff;
    color: black;
}


/* THE LEAD FORM END */











section.b-infoblock-with-icon-group {
    padding: 0px 0 100px 0;
    width: 100%;
}

section.awards {
    padding: 100px 0;
}

section.awards img {
    transition: ease 1s;
}

section.awards img:hover {
    transform: scale(1.05);
    cursor: pointer;
    transition: ease 1s;
}

.bx-controls-direction {
    display: none;
}


/* Footer List */

.footer-list {
    position: relative;
    list-style: none;
    padding: 0;
}

.footer-list li {
    position: relative;
    margin-bottom: 10px;
}

.footer-list li:last-child {
    margin-bottom: 0px;
}

.footer-list li a {
    position: relative;
    color: #5e5e5e;
    font-size: 16px;
    font-weight: 400;
    padding-left: 22px;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.footer-list li a:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 7px;
    width: 12px;
    height: 9px;
    background: url(../img/curve-icon.png) no-repeat;
}

.footer-list li a:hover {
    color: #f1562d;
}

.b-default-top-indent.b-carousel-reset.b-carousel-arr-out.b-carousel-small-arr.f-carousel-small-arr.b-remaining {
    pointer-events: none;
}

.b-about-container__text.f-about-container__text.f-primary-l span {
    color: #e26228;
    display: block;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 0 0 0;
}

section.serv-box h4 {
    font-size: 18px;
    margin: 0;
    font-weight: 700;
}

section.serv-box h3 {
    font-size: 28px;
    margin: 0;
}

.fw-700 {
    font-weight: 700;
}

.banner ul.b-list-markers.f-list-markers li {
    margin-left: 30px;
    font-size: 16px;
}

.banner ul.b-list-markers.f-list-markers li:before {
    content: "\f058";
    position: absolute;
    left: 0;
    color: #ff5000;
    font: normal normal normal 20px/1 FontAwesome;
}

ul.b-list-markers.f-list-markers {
    position: relative;
    margin-top: 40px;
}

a.b-categories-icons__item_link:hover {
    background-color: #e26228;
    padding-left: 40px;
    padding-right: 40px;
    transition: ease 1s;
}

        .grecaptcha-badge {
            width: 70px !important;
            overflow: hidden !important;
            transition: all 0.3s ease !important;
            left: 4px !important;
        }

        .grecaptcha-badge:hover {
            width: 256px !important;
        }



@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    .banner {
        height: fit-content;
    }
    .banner h1 {
        font-size: 38px;
        text-align: center;
    }
    .banner p {
        text-align: center;
    }
    .banner ul {
        display: absolute;
        transform: translateX(12%);
    }
    .banner .banner-main-cnt {
        text-align: center
    }
    .form-banner {
        margin-top: 70px;
        margin-left: auto;
        margin-right: auto;
    }

    .portal-row-1 {
        display: block;
    }
    .portal-row-2 {
        display: block;
        margin-left: 170px;
        margin-top: -630px;
    }

    .portal-block {
        margin-left: 0px;
    }
    .portal-row-2 .portal-box:last-child {
        display: none;
    }
}



