* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 28px;
    color: #6A6A6A;
    font-weight: 400;
    font-family: "Plus Jakarta Sans", sans-serif;
    overflow-x: hidden;
}

main.home-new {
    overflow: hidden;
}

/* Container */
.container-middle {
    max-width: 1270px;
    padding-left: 15px;
    padding-right: 15px;
    margin: auto;
}

h1,
h2 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #3E4A59;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.logo {
    margin-bottom: 0px;
}

/* Header */
.header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9;
    padding: 9px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, .11);
    background: #FFF;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo span {
    color: #1abc9c;
}

/* Desktop Menu */
.desktop-menu ul {
    display: flex;
    list-style: none;
    flex-direction: rows;
    align-items: center;
}

.desktop-menu li {
    position: relative;
    cursor: pointer;
}

nav.desktop-menu li a {
    color: #4c4b4b;
    font-size: 15px;
    font-weight: 700;
    margin: 0 10px !important;
    position: relative;
    text-decoration: none;
}

ul.dropdown-menu li a {
    font-weight: 500;
}

/* Dropdown base */
.dropdown {
    position: relative;
}

/* Dropdown style */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 253px;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    list-style: none;

    opacity: 0;
    transform: translateY(10px);
    transition: 0.25s ease;
    pointer-events: none;
}

/* Dropdown items */
.dropdown-menu li {
    padding: 5px 15px;
}

.dropdown-menu li:hover {
    background: #f2f2f2;
}

.header-rights-menu {
    display: flex;
    flex-grows: 0;
    padding: 0;
    overflow-y: visible;
    justify-content: center;
    align-items: center;
}

/* Show dropdown on desktop hover ONLY */
@media(min-width:901px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}

nav.desktop-menu .dropdown {
    margin-right: 10px;
}

/* Button */
.btns {
    background: #1abc9c;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #3e4a59;
    padding: 20px;
    transition: .3s;
    z-index: 2000;
}

.sidebar.active {
    left: 0;
}

.sidebar ul {
    list-style: none;
}

.sidebar li a {
    color: #fff;
    text-decoration: none;
}

.sidebar li {
    padding: 12px 0;
    cursor: pointer;
}

/* Mobile dropdown */
.mobile-submenu {
    display: none;
    padding-left: 15px;
}

.mobile-dropdown.active .mobile-submenu {
    display: block;
}

/* Close button */
.close-btn {
    font-size: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    color: #fff;
    text-align: right;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 1500;
}

.overlay.active {
    display: block;
}

@media (max-width:1199px) {
    div#menuBtn {
        background: #3e4a59;
        width: 45px;
        height: 45px;
        border-radius: 50% !important;
        line-height: 24px;
        padding: 0 !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (min-width:1200px) {
    ul.dropdown-menu {
        display: block;
    }
}

div#menuBtn img {
    filter: brightness(0) invert(1);
    max-width: 23px;
    height: 23px;
}

li.mobile-dropdown>a:after {
    content: url(../image/ico-mobile.svg);
    position: absolute;
    right: 0px;
    top: 0px;
    display: block;
}

li.mobile-dropdown a {
    position: relative;
}

.sidebar ul li a {
    display: block;
}

.sidebar li {
    border-bottom: 1px solid #ffffff2e;
}

/* Responsive */
@media(max-width:1199px) {
    .desktop-menu {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }
}
}

ul.dropdown-menu {
    display: block;
}

@media (min-width: 992px) {
    .logo-icon {
        max-width: 103px;
    }
}

.top-btn-quotes {
    padding: 12px 22px !important;
    background: #1ea19a;
    color: #ffffff !important;
    border-radius: 6px;
    display: inline-block;
    text-decoration: none;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin: 0 10px !important;
    position: relative;
    text-decoration: none;
}

.top-btn-quotes:hover {
    background: #3e4a59;
    color: #FFF !important;
}

.desktop-menu li.dropdown>a:after {
    content: url(../image/ico.svg);
    position: absolute;
    right: -16px;
    top: -2px;
    display: block;
}

@media (min-width:1200px) and (max-width:1250px) {
    nav.desktop-menu li a {
        margin: 0 7px !important;
    }
}

/*********End************/
@media (min-width: 991px) {
    main.home-new {
        margin-top: 30px;
    }
}

.btns {
    border-radius: 4px;
    padding: 19px 35px;
    text-align: center;
    font-size: 15px;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    display: inline-block;
    line-height: 18px;
    border: 1px solid transparent;
    min-width: 154px;
    text-decoration: none;
}

.btns-primary {
    background: #1ea19a;
    color: #fff !important;
}

.btns-primary:hover,
.btns-primary:focus {
    background: #3e4a59 !important;
    color: #fff !important;
    box-shadow: none;
    border-color: #3e4a59;
}

/********Homepage banner css********/
@media only screen and (min-width: 992px) {
    section.hero-banner-sec {
        background: url(../image/Header_banner-image2.webp);
    }
}

section.hero-banner-sec {
    background-size: 50% !important;
    background-position: right top !important;
    background-repeat: no-repeat !important;
    padding: 100px 0;
}

@media (min-width: 991px) {
    section.hero-banner-sec {
        background-size: 65% !important;
        padding: 60px 0;
    }
}

.tps-img img {
    max-height: 30px;
    width: auto;
    height: auto;
    max-width: 100%;
    margin-bottom: 10px;
}

.banner-text-main {
    max-width: 596px;
}

.main-banner-title {
    font-size: 48px;
    line-height: 55px;
    color: #3E4A59;
    margin-bottom: 15px;
    font-weight: 800;
}

.banner-text-main p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}

.hero-banner-sec ul.main-check-list.col-count-2 {
    column-count: 1;
}

ul.main-check-list li {
    min-width: 290px;
}

ul.main-check-list li {
    position: relative;
    color: #3E4A59;
    font-size: 20px;
    font-weight: 700;
    padding-left: 34px;
    list-style: none;
    margin-bottom: 11px;
}

ul.main-check-list li img {
    position: absolute;
    left: 0;
    top: 6px;
    width: 25px;
    height: 23px;
}

ul.main-check-list {
    margin: 0 0 30px;
    padding: 0;
}

@media (min-width: 991px) {
    .hero-banner-sec .rows {
        align-items: center;
    }
}

.banner-img-bx img {
    height: auto;
}

@media (min-width: 991px) {
    .banner-img-bx {
        margin-top: 210px;
    }
}

@media screen and (min-width: 1500px) and (max-width: 1699px) {
    .banner-img-bx img {
        width: 350px;
    }
}

/*********End*************/
/*****Second step*******/
.main-sec-space {
    padding: 80px 0;
}

section {
    position: relative;
}

.btn-cols {
    margin-top: 30px;
}

/*********End*************/
/*******Review sec*********/
.review-col-bx {
    padding: 30px 20px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, .11);
    margin: 30px 10px 0;
    border-radius: 9px;
    text-align: center;
    height: 100%;
    margin-bottom: 0;
}

.review-text-bx {
    text-align: center;
}

.main-feefo-stars {
    width: 110px;
    height: 22px;
    background-image: url(../image/feefo-star.svg);
    background-position: center;
    background-repeat: repeat-x;
    margin: 0 auto 10px auto;
}

@media (min-width: 981px) {
    .review-sec .section-heading {
        margin-bottom: 58px;
    }
}

.reiview-auths-bx span {
    width: 51px;
    height: 51px;
    background: #3E4A59;
    display: inline-block;
    text-align: center;
    line-height: 51px;
    font-size: 20px;
    color: #FFF;
    border-radius: 50%;
    font-weight: 600;
    margin-top: 10px;
}

.reiview-auths-bx h3 {
    font-size: 16px;
    line-height: 20px;
    color: #3E4A59;
    padding-bottom: 0;
    margin-top: 8px;
}

/**********End**************/
/******Area sec********/
.area-rows {
    background: #F3F4F6;
    padding: 40px 40px 75px;
    border-radius: 10px;
}

section.main-area-sec .col-lg-9.no-mt {
    margin-top: 3rem;
}

/*********End**********/
/********Bin sec*******/
.bin-boxs {
    position: relative;
    border: 1px solid #e4e1e1;
    background: #FFF;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 0, 0, .11);
    min-height: 376px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bin-medias {
    text-align: center;
}

.bin-medias span {
    min-height: 123px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.bin-medias h3 {
    min-height: 57px;
    padding-bottom: 0;
    margin-bottom: 0;
}

.bin-medias h3 {
    font-size: 24px;
    font-weight: 800;
    margin-top: 23px;
}

.bin-hover-show {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
}

.bin-hover-show h3 {
    font-size: 24px;
    color: #FFF;
    text-align: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 27px;
    padding-top: 20px;
}

.bin-body-main {
    padding: 30px 67px;
}

.bin-body-main h4 {
    color: #FFF;
    margin-bottom: 20px;
}

.bin-body-main h4 {
    font-size: 14px;
}

.bin-detail-bx {
    color: #FFF;
}

.bin-item-bx {
    width: 33.33%;
}

.bin-item-bx p {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
}

.bin-boxs:hover:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #1ea19a;
    border-radius: 10px
}

.bin-body-main {
    color: #FFF
}

.bin-body-main h4 {
    color: #FFF;
    margin-bottom: 20px
}

.bin-detail-bx {
    color: #FFF
}

.bin-boxs:hover .bin-hover-show {
    opacity: 1
}

.bin-hover-show {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between
}

.bin-hover-show h3 {
    font-size: 24px;
    color: #FFF;
    text-align: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 27px;
    padding-top: 20px
}

.bin-body-main {
    padding: 30px 67px
}

.bin-body-main .btns {
    min-width: 208px;
    padding: 17px 20px;
    background: #3e4a59
}

.btn-cols {
    margin-top: 30px
}

.bin-medias span {
    min-height: 123px;
    display: flex;
    align-items: end;
    justify-content: center
}

.bin-medias h3 {
    min-height: 57px;
    padding-bottom: 0;
    margin-bottom: 0
}

.grids-three-cols-bx {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 0px;
    margin-top: 50px;
}

.bin-detail-bx {
    display: flex;
}

/********End***********/
/******Features sec********/
.features-rows {
    background: #F3F4F6;
    padding: 70px 40px 45px;
    border-radius: 10px
}

.features-cols {
    margin-bottom: 15px
}

span.features-icon {
    width: 77px;
    height: 77px;
    background: #3e4a59;
    display: inline-block;
    text-align: center;
    line-height: 74px;
    border-radius: 50%;
    margin-bottom: 20px
}

.features-item {
    border-bottom: 1px solid #3e4a59;
    margin-bottom: 0;
    padding-bottom: 0;
    min-height: 250px;
    height: 100%
}

.features-cols:nth-child(5) .features-item,
.features-cols:nth-child(6) .features-item {
    padding: 0;
    border: 0;
    margin: 0
}

.features-item p {
    color: #3E4A59
}

.features-img {
    height: 100%
}

.features-rows .btn-cols {
    margin-top: 10px
}

.features-item h3 {
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 30px;
}

span.features-icon img {
    max-width: 43px;
    height: auto;
    vertical-align: middle;
}

.features-img img {
    height: auto;
    width: 100%;
}

/*******Contact Image********/
.contact-img-bx,
.contact-img-bx img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.lead-rows {
    background: #f3f4f6;
    margin-top: 65px;
    align-items: center;
    padding: 30px;
    border-radius: 10px
}

.lead-rows p {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #3E4A59
}

.form-group {
    margin-bottom: 20px
}

.form-control,
select {
    height: 54px;
    background: #fff;
    border-color: #404040;
    font-size: 14px;
}

.form-control {
    display: block;
    width: 100%;
    width: 100%;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-clip: padding-box;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    padding: .375rem .75rem;
}

body textarea.form-control {
    height: 175px
}

.rows.submit-rows p {
    padding-bottom: 0;
    margin-bottom: 0
}

.btn-block {
    width: 100%
}

.form-box-bx {
    padding: 50px 50px 10px;
    background: #FFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, .11);
    border-radius: 10px;
}

::-webkit-input-placeholder {
    color: #000 !important
}

::-moz-placeholder {
    color: #000 !important
}

:-ms-input-placeholder {
    color: #000 !important
}

:-moz-placeholder {
    color: #000 !important
}

/*******End**********/
/*****Basic col css********/
.text-primary-main {
    color: #1EA19A !important;
}

.main-sec-space {
    padding: 80px 0;
}

.align-items-centers {
    align-items: center !important;
}

.no-pad-tops {
    padding-top: 0px;
}

@media (min-width: 992px) {
    .flex-lg-rows-reverses {
        flex-direction: row-reverse !important;
    }
}

.cols-6 {
    flex: 0 0 auto;
    width: 50%;
}

@media (min-width: 992px) {
    .cols-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .cols-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .cols-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .cols-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .cols-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .cols-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .cols-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
}

@media (min-width: 768px) {
    .cols-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }
}

@media (min-width: 1200px) {
    .cols-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }
}

.text-center {
    text-align: center !important;
}

.mb-5-space {
    margin-bottom: 3rem !important;
}

.rows>* {
    padding-left: 12px;
    padding-right: 12px;
}

.rows {
    display: flex;
    flex-wrap: wrap;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .display-md-none {
        display: none !important;
    }

    .display-md-block {
        display: block !important;
    }
}

@media (min-width: 992px) {
    .display-lg-block {
        display: block !important;
    }

    .display-lg-none {
        display: none !important;
    }
}

.display-none {
    display: none;
}

.cols-lg-12 {
    width: 100%;
}

@media only screen and (min-width: 992px) {
    .left-shadow-bg-bx:before {
        content: "";
        position: absolute;
        width: 329px;
        height: 731px;
        background: url(../image/left-bg.webp) no-repeat;
        top: -198px;
        z-index: -1;
    }

    .right-shadow-bg-bx:before {
        content: "";
        position: absolute;
        width: 329px;
        height: 731px;
        background: url(../image/right-bg.webp) no-repeat;
        top: -198px;
        right: 0;
        z-index: -1;
    }

    .left-shadow-bg-bx-mids:before {
        content: "";
        position: absolute;
        width: 329px;
        height: 731px;
        background: url(../image/left-bg.webp) no-repeat;
        top: 20%;
    }
}

/******End*******/
/**********footer**********/
footer {
    background: #F5F5F5;
    padding: 80px 0 0;
}

.footer-menu-bx ul {
    margin: 0;
    padding: 0;
}

.footer-menu-bx ul li {
    list-style: none;
}

.footer-menu-bx ul li a {
    color: #5B5B5B;
    text-decoration: none;
}

.footer-col-bx p {
    margin-bottom: 7px;
}

ul.social-icon-bx {
    margin: 0;
    padding: 0;
}

ul.social-icon-bx li {
    display: inline-block;
    margin-right: 10px;
}

ul.social-icon-bx li a {
    width: 33px;
    height: 33px;
    border: 1px solid #404755;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
}

ul.social-icon-bx li a svg {
    font-size: 16px !important;
    width: 17px;
    height: 17px;
    display: inline-block;
    vertical-align: middle;
}

.footer-wrap-bx {
    border-bottom: 1px solid #ccc;
    padding-bottom: 70px;
    margin-bottom: 24px;
}

.footer-col-bx a {
    color: #6A6A6A;
    text-decoration: none;
}

.copy-sec a {
    text-decoration: none;
}

.text-default {
    color: #6A6A6A !important;
}

.footer-col-bx h3 {
    margin-bottom: .5rem;
}

@media (min-width:992px) {
    .footer-col-bx h3 {
        font-size: 24px;
        line-height: 30px;
        font-weight: 800;
    }
}

@media (max-width:991px) {
    .grids-three-cols-bx {
        padding: 0px;
    }

    .link-open-bx,
    .cnt-open-bx {
        display: none;
    }

    .footer-col-bx h3:before {
        content: "\+";
        color: #777676;
        right: 13px !important;
        position: absolute;
        font-size: 24px;
        font-weight: 600;
        top: 3px;
    }

    .footer-col-bx h3 {
        position: relative;
        border-bottom: 1px solid #000;
        padding-bottom: 10px;
        font-size: 16px;
    }

    .footer-wrap-bx .rows.align-items-centers.justify-content-between {
        justify-content: space-between !important;
        display: flex;
        margin-top: 20px;
    }

    .menu-show-bx .link-open-bx {
        display: block;
    }

    .cnt-show-bx .cnt-open-bx {
        display: block;
    }

    .menu-show-bx h3:before,
    .cnt-show-bx h3:before {
        content: "-";
    }

    .footer-sm-bx {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
    }

    .footer-sm-bx ul {
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: space-between;
    }

    .footer-sm-bx ul li {
        display: block;
        width: 50%;
        text-align: center;
    }

    .footer-sm-bx ul li a {
        display: block;
        padding: 12px 20px;
    }

    .bg-default {
        background: #3e4a59;
    }

    .bg-primary {
        background: #1ea19a !important;
    }

    .copy-sec {
        padding-bottom: 75px !important;
    }

    .footer-wrap-bx {
        padding-bottom: 24px;
    }

    .footer-sm-bx ul li img {
        max-width: 23px;
    }
}

/*************Footer End*********/
/********Responsiove css*********/
.lead-text-bx img {
    max-width: 24px;
    vertical-align: middle;
}

.solution-img-bx {
    display: none;
}

@media (max-width: 991px) {
    .rows {
        display: block;
    }

    .banner-text-main {
        max-width: 100%;
    }

    .logo-icon {
        max-width: 97px;
        height: auto;
    }

    section.hero-banner-sec .banner-text-main {
        text-align: center;
    }

    .main-banner-title {
        font-size: 30px;
        line-height: 33px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .banner-text-main p {
        font-size: 18px;
    }

    .hero-banner-sec ul.main-check-list li {
        display: inline-block;
    }

    .banner-img-bx {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    section.hero-banner-sec .rows {
        justify-content: center;
    }

    .banner-img-bx {
        margin-top: 50px;
    }

    .main-sec-space {
        padding: 30px 0;
    }

    section.hero-banner-sec {
        padding-bottom: 22px;
    }

    main.home-new h1,
    main.home-new h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .review-sec .rows.mt-1 .col-md-3 {
        flex: 0 0 auto;
        width: 100%;
    }

    .review-sec .rows.mt-1 .col-md-3 {
        margin-bottom: 30px;
    }

    .area-rows {
        padding: 14px;
        margin: 0;
    }

    section.main-area-sec.main-sec-space .col-lg-9.no-mt {
        margin-top: 20px !important;
    }

    .hide-sm {
        display: none !important;
    }

    .area-col h2 {
        margin-bottom: 10px !important;
    }

    section.main-area-sec.main-sec-space p.mb-5-space:empty {
        display: none;
    }

    .grids-three-cols-bx {
        margin-top: 15px;
    }

    section.text-sec-main.main-sec-space.no-pad-tops.left-shadow-bg-bx-mids {
        padding-top: 0px;
    }

    .bin-medias span img {
        max-width: 61px;
        max-height: 61px;
        object-fit: contain;
    }

    .bin-hover-show h3 {
        font-size: 16px;
        padding: 10px 5px;
        margin-bottom: 9px !important;
        line-height: 20px;
    }

    .bin-body-main h4 {
        margin-bottom: 8px;
    }

    .bin-item-bx p {
        font-size: 13px;
    }

    .bin-body-main .btns {
        min-width: auto;
        padding: 10px 10px;
        font-size: 12px;
    }

    .bin-body-main {
        padding: 12px;
        padding-top: 0;
    }

    .bin-medias h3 {
        margin-top: 7px;
        font-size: 16px;
        line-height: 21px;
    }

    .bin-boxs .btn-cols {
        text-align: center;
        margin-top: 18px;
    }

    .bin-medias span {
        min-height: 61px;
    }

    .bin-boxs {
        min-height: 255px;
        padding: 9px !important;
    }

    .features-rows {
        margin: 0;
        padding: 30px 10px;
    }

    .features-rows h2 {
        text-align: center;
    }

    .features-item {
        border: 0;
        padding: 0;
        min-height: auto;
        margin-bottom: 0;
    }

    .features-item h3,
    h3 {
        font-size: 20px;
    }

    .rows.features-rows {
        padding-bottom: 0px;
    }

    .lead-rows p {
        font-size: 17px;
    }

    .lead-text-bx {
        text-align: center;
    }

    .pt-2.pb-2 .container {
        padding: 0px;
    }

    .lead-rows {
        margin-top: 25px;
        padding: 25px;
    }

    .lead-rows p br {
        display: none;
    }

    .rows.cols-reverse {
        flex-direction: column-reverse;
        display: flex;
    }

    .form-box-bx {
        margin-bottom: 10px;
    }

    .form-box-bx {
        padding: 25px;
        position: relative;
    }

    .solution-img-bx {
        display: block;
    }

    .review-col-bx {
        margin-bottom: 0;
        height: auto;
        padding-bottom: 30px;
    }

    .img-cols img {
        width: 100%;
    }

    .solution-img-bx img {
        width: 100%;
    }

    .lead-img-bx img {
        width: 100%;
    }
}

@media (max-width:767px) {
    .grids-three-cols-bx {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .features-item span.features-icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
        position: absolute;
        left: 0;
    }

    .features-item {
        position: relative;
        padding-left: 76px !important;
    }

    .features-item h3 {
        margin-bottom: 0;
        line-height: 24px;
        font-size: 18px;
    }

    .features-item span.features-icon {
        margin-bottom: 5px;
    }

    .features-item span.features-icon img {
        max-width: 32px;
    }

}

@media (min-width:768px) and (max-width:980px) {
    .grids-three-cols-bx {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*Get Quote form page*/
section.form-banner-bg-bx {
    min-height: 432px;
    background-size: cover !important;
    margin-top: -10px;
}

section.inner-page-blue {
    padding: 70px 0;
    background: #23304a;
    margin-bottom: 64px;
}

@media only screen and (min-width: 992px) {
    section.form-banner-bg-bx {
        background: url(../image/Background-Image.webp);
    }
}

.form-space-bx {
    margin-top: -430px;
    overflow: hidden;
}

ul.check-list-bxs {
    margin-top: 30px;
    margin-bottom: 0;
    padding: 0;
}

ul.check-list-bxs li {
    display: inline-block;
    margin: 0 20px;
    color: #FFF !important;
}

ul.check-list-bxs li {
    position: relative;
    color: #3E4A59;
    font-size: 20px;
    font-weight: 700;
    padding-left: 34px;
    list-style: none;
    margin-bottom: 11px;
}

ul.check-list-bxs li img {
    position: absolute;
    left: 0;
    top: 6px;
}

ul.check-list-bxs li img {
    width: 25px;
    height: 23px;
}

.form-banner-text {
    text-align: center;
}

.col-lg-12 {
    width: 100%;
}

.process-sec-bx .process-box {
    text-align: center;
    padding: 40px 40px 70px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .11);
    height: 100%;
    border-radius: 10px;
    position: relative;
}

@media (min-width: 981px) {
    .process-sec-bx .process-box h3 {
        min-height: 60px;
    }
}

.process-sec-bx .process-box h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 800;
    margin: 20px 0;
}

.process-sec-bx span.step-text {
    position: absolute;
    bottom: 35px;
    left: 0;
    right: 0;
    color: #1EA19A;
    font-weight: 600;
}

.process-sec-bx .col-lg-12.text-center.mb-5 {
    margin-bottom: 3rem !important;
}

/*Only step form css*/
.form-container {
    max-width: 880px;
    margin: 30px auto 30px;
    border-radius: 10px;
    border: 1px solid #EDEAEA;
    background: #f3f4f6;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, .05);
    clear: both;
    padding: 30px 100px;
}

.form-container h2 {
    color: #12A19A;
    font-size: 40px;
    font-weight: 700;
    text-align: center !important;
    margin-bottom: 0px;
}

.form-container fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
    max-width: 660px;
    margin: auto;
}

fieldset legend {
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 26px;
    line-height: 28px;
    border: 0;
    text-align: center;
    color: #23304A;
}

/* PROGRESS */
.form-container .progress {
    background: #233048;
    height: 8px;
    margin: 20px auto 12px;
    max-width: 500px;
    border-radius: 10px;
}

.form-container .progress-bar {
    height: 100%;
    width: 0%;
    background: #1ea69a;
    transition: .4s;
    border-radius: 10px;
}

span.red-mark {
    color: red;
    font-size: 20px;
    position: relative;
    top: 2px;
}

/* STEP WRAPPER */
.form-container .form-wrap {
    position: relative;
    overflow: hidden;
    transition: height .3s ease;
}

/* STEP */
.form-container .form-wrap section {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(60px);
    transition: .4s ease;
}

.form-container .form-wrap section.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.form-container .form-wrap section.prev {
    transform: translateX(-60px);
}

/* GRID */
.form-container .three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* CARD */
.form-container .radio_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    left: 0;
}

.form-container span.check-text {
    font-size: 18px;
    line-height: 18px;
    color: #23304A;
    font-weight: 500;
}

.form-container .checkmark {
    /* width: 100%; */
    /* float: left; */
    margin-bottom: 0px;
    /* min-width: 122px; */
    height: 118px;
    text-align: center;
    display: flex;
    align-items: center;
    font-size: 16px;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid #D6D6D6;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .05);
    font-weight: 700;
    color: #000;
    flex-wrap: wrap;
    padding: 7px 10px;
}

.active_box span.checkmark {
    border: 1px solid #23304A;
    background: #F4F8FF;
}

@media (min-width: 768px) {
    .form-container .box-height-sm span.checkmark {
        min-height: 75px;
        height: auto;
    }
}

.form-container .step_3 .three-col {
    grid-template-columns: repeat(2, 1fr);
}

.form-container .box-height-sm span.icon-check {
    display: inline-block;
    text-align: left;
    width: inherit;
    margin-bottom: 0;
    min-width: 75px;
}

.form-container .box-height-sm span.icon-check img {
    max-width: 65px;
    max-height: 65px;
    height: auto;
    width: auto;
    margin-bottom: 0px;
}

.form-container fieldset {
    position: relative;
}

/* CONTENT CENTER */
.form-container .mid-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

section.step_3 span.check-text {
    min-width: 90%;
    display: flex;
    text-align: left;
    margin: auto !important;
    align-items: center;
}

.form-container .icon-check img {
    width: 40px;
    margin-bottom: 10px;
}

/* STEP INNER */
.form-container .step_1_main {
    position: relative;
    padding-bottom: 0px;
}

/* ERROR */
.form-container .error {
    color: red;
    font-size: 16px;
}

/* BUTTON OVERLAP */
.btn-action-main {
    display: block;
    align-items: center;
    justify-content: center;
}

.btn-action-main {
    list-style: none;
    margin: 25px 0 0px;
    text-align: center;
}

.form-container .btn {
    padding: 14px 25px;
    border: none;
    cursor: pointer;
    border-radius: 6px;
}

.form-container .btn-primary {
    border-radius: 5px;
    background: #12A19A;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .05);
    outline: 0 !important;
    border: 0;
    font-size: 20px;
    color: #FFF;
    font-weight: 500;
    padding: 11px 23px;
    min-width: 274px;
}

.form-container .btn-danger {
    background: transparent !important;
    border: 0 !important;
    color: rgba(35, 48, 74, .5);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    margin-bottom: 0;
}

.form-container .step_2 span.checkmark {
    height: 75px;
}

.form-container .form-control {
    padding: 10px;
    font-size: 18px !important;
    border-radius: 10px !important;
    border: 1px solid #D6D6D6;
    background: #FFF !important;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .05);
    margin-bottom: 20px;
    width: 100%;
    height: 54px;
    box-sizing: border-box;
}

.form-container .form-control:focus {
    box-shadow: none !important;
    background: #F0F5FC;
    border-color: #F0F5FC;
    color: #787D82;
}

.form-container input:focus-visible {
    outline: 0px;
}

.form-container .step_3 .three-col {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
    justify-content: center;
    gap: 0px;
}

.form-container .step_3 .three-col label.radio_container {
    width: calc(50% - 2px);
    padding: 0 5px;
}

.form-container .step_3 .three-col span.checkmark {
    margin-bottom: 15px;
}

/* MOBILE */
@media(max-width:768px) {
    .form-container .three-col {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }

    .form-container .btn-action-main {
        position: relative;
        margin-top: 20px;
    }

    .form-container .errorTxt {
        position: relative;
        bottom: auto;
    }
}

.form-container label.top-label {
    color: #23304A;
    text-align: left;
    display: block;
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 14px;
    font-weight: 500;
}

.two-col-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.col-6-form {
    width: 49%;
}

.name-col {
    width: 100%;
}

.errorTxt {
    color: #cc3300;
    text-align: center;
}

::-webkit-input-placeholder {
    color: #c5c3c3 !important;
}

::-moz-placeholder {
    color: #c5c3c3 !important;
}

:-ms-input-placeholder {
    color: #c5c3c3 !important;
}

:-moz-placeholder {
    color: #c5c3c3 !important;
}

@media (max-width:767px) {
    .form-container {
        padding: 20px 20px 20px;
        margin: 30px auto 30px;
        max-width: 95%;
    }

    fieldset legend {
        font-size: 16px;
        line-height: 24px;
    }

    .form-container span.check-text {
        font-size: 14px;
        line-height: 16px;
        font-weight: 500;
    }

    .form-container .step_1 .checkmark {
        height: 102px;
    }

    section.step_3 span.check-text {
        font-size: 14px;
        line-height: 16px;
        font-weight: 500;
        display: block;
        text-align: center;
    }

    .form-container .box-height-sm span.icon-check img {
        max-width: 67px;
        max-height: 67px;
    }

    .form-container .box-height-sm span.icon-check {
        display: block;
        margin-bottom: 9px;
        text-align: center;
        width: 100%;
    }

    section.inner-page-blue .container-middle {
        padding: 0px;
    }

    .form-container .step_3 .three-col span.checkmark {
        margin-bottom: 15px;
        min-height: 142px;
    }

    .two-col-fields {
        display: block;
    }

    .col-6-form {
        width: 100%;
    }

    section.inner-page-blue {
        padding-bottom: 30px;
    }

    ul.check-list-bxs {
        margin-top: 0px;
    }

    .process-sec-bx .container-middle .cols-lg-4 {
        padding: 0px;
    }

    .process-sec-bx .container-middle .cols-lg-4 {
        margin-bottom: 20px;
    }
}

@media (max-width:480px) {
    section.step_3 span.check-text {
        font-size: 12px;
    }
}

/*End*/

.submit-btn {
    position: relative;
}

.submit-btn.loading {
    color: transparent;
    pointer-events: none;
}

.submit-btn.loading::after {
    content: "";
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}