@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@700');

:root {
    --white: rgba(255, 255, 255, 100);
    --color_primary: rgba(63, 81, 181, 100);
    --background-color: rgba(234, 233, 239, 100);
    --black: rgba(0, 0, 0, 100);
    --black_90: rgba(0, 0, 0, 0.9);
    --black_80: rgba(0, 0, 0, 0.8);
    --black_70: rgba(0, 0, 0, 0.7);
    --black_60: rgba(0, 0, 0, 0.6);
    --black_50: rgba(0, 0, 0, 0.5);
    --black_40: rgba(0, 0, 0, 0.4);
    --black_30: rgba(0, 0, 0, 0.3);
    --black_20: rgba(0, 0, 0, 0.2);
    --black_10: rgba(0, 0, 0, 0.1);
    --green: rgba(43, 100, 46);
}

h1, h2, h3, h4, h5, .barlow-semibold, button {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-style: normal;
}

body {
    display: flex;
    flex-direction: column;
    /*background: #f8f8f8;*/
    font-family: 'Roboto', sans-serif;
    color: var(--black_80);

    background: #f8f8f8;

}

h1 {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    background: var(--green);
    margin-left: -35px;
    padding: 7px;
    color: var(--white);
    box-shadow: rgba(60, 64, 67, 0.3) 0 1px 2px 0, rgba(60, 64, 67, 0.15) 0 1px 3px 1px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

h3 {
    font-size: 20px;
    color: var(--black_70);
    font-weight: 400;
}

label {
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: var(--black);
}

.navbar {
    border-bottom: 1px solid var(--black_10);
    background: var(--white) !important;
}

.navbar .navbar-brand img {
    height: 35px;
    margin-left: 10px;
}

.navbar .navbar-nav {
    padding: 10px;
}

.navbar-nav .nav-item .nav-link {
    font-size: 18px;
    color: var(--black_80);
}

.navbar-nav .nav-item .nav-link.active {
    color: #2E6407;
    font-weight: bold;
}

.custom-content {
    padding: 30px;
    /*box-shadow: rgba(60, 64, 67, 0.3) 0 1px 2px 0, rgba(60, 64, 67, 0.15) 0 1px 3px 1px;*/
    background: var(--white) !important;
    border-radius: 10px;
    border: 1px solid var(--black_10);
}

.helper-text {
    display: block;
    font-size: 15px;
    padding: 5px;
    color: var(--color_primary);
}

.text-agreement {
    font-size: 19px;
}

.text-agreement a {
    text-decoration: none;
    color: var(--color_primary);
}

.instructions {
    display: inline-block;
    font-size: 18px;
    padding: 0;
    margin-bottom: 20px;
    color: var(--black_80);
}

.instructions span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 30px;
    height: 30px;
    background: var(--color_primary);
    color: white;
    border-radius: 100px;
    margin-right: 5px;
}

.instructions strong {
    color: var(--color_primary);
}

.verify-links {
    font-size: 18px;
    word-break: break-word;
    overflow: auto;
}

.verify-links li {
    margin-bottom: 10px;
}

.verify-links a {
    text-decoration: none;
    color: var(--color_primary);
    font-size: 18px;
}

.table {
    word-break: break-word;
}

.adview {
    display: flex;
    justify-content: center;
}

.adview .ad-placeholder {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
    width: 300px;
    color: var(--black_80);
    font-size: 25px;
    border: 3px dotted var(--black_30);
}

.progress-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    height: 100vh;
    width: 100vw;
    background: var(--black_10);
}

.progress-bar .progress-wrapper {
    display: flex;
    align-items: center;
    background: var(--black_60);
    border-radius: 10px;
    padding: 15px;
}

.progress-bar .progress-wrapper .spinner-border {
    color: var(--white);
    width: 35px;
    height: 35px;
}

.dialog {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    height: 100vh;
    width: 100vw;
    background: var(--black_10);
}

.dialog .dialog-wrapper {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 300px;
    background: #ffffff;
    border-radius: 10px;
    word-break: break-word;
}

.dialog .dialog-wrapper .dialog-title {
    display: inline-block;
    color: var(--black);
    margin-top: 20px;
    font-size: 17px;
    font-weight: 700;
}

.dialog .dialog-wrapper .dialog-msg {
    display: inline-block;
    font-size: 15px;
    margin-top: 5px;
    margin-right: 20px;
    margin-left: 20px;
}

.dialog .dialog-wrapper .dialog-split {
    background: var(--black_10);
    height: 1px;
    width: 100%;
    margin-top: 10px;
}

.dialog .dialog-wrapper .btn-dismiss {
    height: 45px;
    background: transparent;
    outline: none !important;
    border: none !important;
    color: #007aff;
    font-size: 18px;
}

.dialog .dialog-wrapper .btn-dismiss:hover {
    background: #f3f3f3;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.social-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.social-container h3 {
    color: var(--black_90);
    padding: 0;
    margin: 0;
}

.social-container i {
    font-size: 35px;
}

.social-container .fa-facebook {
    color: rgb(66 103 178);
}

.social-container .fa-twitter {
    color: rgb(29 161 242);
}

.social-container .fa-whatsapp {
    color: rgb(7 94 84);
}

/*Input*/
.form-control, .form-select {
    display: block;
    box-shadow: none !important;
    background: var(--white);
    border-radius: 0 !important;
    padding: 6px 15px;
    font-size: 20px;
}

.form-control:focus, .form-control:focus-visible, .form-select:focus, .form-select:focus-visible {
    outline: 2px solid var(--color_primary);
}

input[type='radio'], input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: rgb(76 175 80);
}

textarea {
    font-size: 15px !important;
}

/*Buttons*/
.custom-button {
    align-items: center;
    appearance: none;
    border-radius: 4px;
    border-style: none;
    box-shadow: rgba(0, 0, 0, .2) 0 3px 1px -2px, rgba(0, 0, 0, .14) 0 2px 2px 0, rgba(0, 0, 0, .12) 0 1px 5px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 18px;
    font-weight: 700;
    justify-content: center;
    letter-spacing: .0892857em;
    line-height: normal;
    outline: none;
    overflow: visible;
    padding: 10px 16px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: box-shadow 280ms cubic-bezier(.4, 0, .2, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
    will-change: transform, opacity;
}

.table a.btn:after {
    display: none;
}

.custom-button:hover {
    color: white;
    box-shadow: rgba(0, 0, 0, .2) 0 2px 4px -1px, rgba(0, 0, 0, .14) 0 4px 5px 0, rgba(0, 0, 0, .12) 0 1px 10px 0;
}

.custom-button:disabled {
    background-color: rgba(0, 0, 0, .12);
    box-shadow: rgba(0, 0, 0, .2) 0 0 0 0, rgba(0, 0, 0, .14) 0 0 0 0, rgba(0, 0, 0, .12) 0 0 0 0;
    color: rgba(0, 0, 0, .37);
    cursor: default;
    pointer-events: none;
}

.custom-button:not(:disabled) {
    background-color: rgba(43, 100, 46);
}

.custom-button.disabled {
    background-color: rgba(0, 0, 0, .12);
    box-shadow: rgba(0, 0, 0, .2) 0 0 0 0, rgba(0, 0, 0, .14) 0 0 0 0, rgba(0, 0, 0, .12) 0 0 0 0;
    color: rgba(0, 0, 0, .37);
    cursor: default;
    pointer-events: none;
}

.custom-button:focus {
    box-shadow: rgba(0, 0, 0, .2) 0 2px 4px -1px, rgba(0, 0, 0, .14) 0 4px 5px 0, rgba(0, 0, 0, .12) 0 1px 10px 0;
}

.custom-button:active {
    box-shadow: rgba(0, 0, 0, .2) 0 5px 5px -3px, rgba(0, 0, 0, .14) 0 8px 10px 1px, rgba(0, 0, 0, .12) 0 3px 14px 2px;
    background: rgb(70, 158, 73);
}

.custom-button i {
    color: var(--white);
    margin-right: 10px;
}

.button-download {
    appearance: none;
    background-color: #FAFBFC;
    border: 1px solid rgba(27, 31, 35, 0.15);
    border-radius: 6px;
    box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    list-style: none;
    padding: 10px 16px;
    position: relative;
    transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
    white-space: nowrap;
    word-wrap: break-word;
    text-decoration: none !important;
    color: var(--black_80);
}

.button-download:hover {
    background-color: #F3F4F6;
    text-decoration: none;
    transition-duration: 0.1s;
    color: var(--black_80);
}

.button-download:disabled {
    background-color: #FAFBFC;
    border-color: rgba(27, 31, 35, 0.15);
    color: #959DA5;
    cursor: default;
}

.button-download:active {
    background-color: #EDEFF2;
    box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset;
    transition: none 0s;
}

.button-download:focus {
    outline: 1px transparent;
}

.button-download:before {
    display: none;
}

.button-download i {
    color: var(--black_70);
    margin-right: 10px;
}

.how-it-works-step img {
    height: 100px;
}

.how-it-works-step {
    width: 25%;
}

.how-it-works-steps {
    width: 100%;
}

li.nav-item {
    width: 20%;
    text-align: center;
}

footer li.nav-item {
    width: 40%;
    text-align: center;
}

.navbar .navbar-nav {
    width: 100%;
}

/* Custom dropdown */

/*@import url(//fonts.googleapis.com/css?family=Raleway);*/
.custom-sel a {
    text-decoration: none;
    text-transform: uppercase;
    margin: 0;
    padding: 13px 0;
    text-align: center;
    color: #546e7a;
    font-size: 10px;
    font-weight: 700;
    line-height: 24px;
    display: block;

}

.custom-sel {

    /* color: var(--white); */
    box-shadow: rgba(60, 64, 67, 0.3) 0 1px 2px 0, rgba(60, 64, 67, 0.15) 0 1px 3px 1px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    text-align: center;
}

.custom-sel a:hover {
    background-color: #EDF0F2;
}

.custom-sel img {
    margin-right: 5px;
}

.custom-sel a.selected {
    background-color: transparent;
    width: 100%;
    display: flex;
    justify-content: space-evenly;

}

.custom-sel a.selected:hover {
    background-color: transparent;
    color: #546e7a;
}
.show-sel a.selected {
    text-align: right !important;
    display: block !important;

}
.hidden {
    display: none !important;
}

.lightblue {
    color: #03a9f4;
    margin-left: -4px;
}

.show-sel {
    background-color: #ffffff;
    box-shadow: -5px 0px 65px 0px rgba(0, 0, 0, 0.18);
    width: 115% !important;
    z-index: 9;
    padding-bottom: 40px;
}

.custom-sel {
    margin: 10px;
    display: inline-block;
    width: 10%;
    position: absolute;
    right: 0;
    top: 0;
}
.custom-sel a{
    width: 10%;
    float: left;
    text-align: left;
    padding-left: 5px;
}
div#navbarSupportedContent {
    position: relative;
}


.service-card.elementor-box:hover {
    filter: drop-shadow(0px 3px 13px rgba(0, 0, 0, 0.25));
}

.service-card.elementor-box {
    padding: 10px;
    position: relative;
    z-index: 2;
    box-shadow: 0px 10px 30px rgba(8, 14, 28, 0.06);
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    -webkit-transition: 0.4s ease-in-out;
    height: 400px;
    /* transition: 0.4s ease-in-out; */
    border-radius: 10px;
    border: 1px solid var(--black_10);
}

.service-card_number {
    position: absolute;
    top: 25px;
    right: 40px;
    font-size: 70px;
    line-height: 1;
    font-weight: bold;
    color: #000000;
    opacity: 0.5;
}

p.service-card_text {
    color: #575860;
    font-size: 14px;
    text-align: justify;
}

.shape-icon {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    width: 90px;
    height: 85px;
    line-height: 85px;
    text-align: center;
}

.shape-icon img {
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

h3.box-title {
    font-size: 21px;
    line-height: 1.417;
    font-weight: 700;
    margin-top: -0.32em;
    color: #141D38;
    margin-bottom: 15px;
    text-align: left;
}

h2 {
    line-height: 44px;
}

ul.check_list li {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: #141D38;
    gap: 15px;
    margin-bottom: 20px;
}

ul.check_list {
    list-style: none;
    text-align: left;
    padding: 0;
}

span.check-specification {
    font-weight: 600;
    color: #25ba52;
    font-size: 20px;
    width: 35px;
    height: 35px;
    text-align: center;
    border: 3px solid #25ba52;
    border-radius: 35px;
}

.need-service-card {
    padding: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0px 10px 30px rgba(8, 14, 28, 0.06);
    background-color: #ffffff;
    border-radius: 10px;
    -webkit-transition: 0.4s ease-in-out;
}

.box-img {
    height: 225px;
    display: flex;
    align-items: center;
}

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

.box-content h3.box-title {
    font-size: 20px;
}

.box-content {
    padding: 10px 14px;
    margin-top: 15px;
    height: 250px;
    text-align: justify;
    overflow-y:scroll ;
}

.populated-content {
    padding: 30px;
    background-image: url(https://wordpress.themeholy.com/webteck/wp-content/uploads/2024/01/counter_bg_2.png);
    height: 200px;
    display: flex;
    align-items: center;
}

.populated-content .counter img {
    width: 100px;
    line-height: 100px;
    text-align: center;
    position: relative;
    padding-left: 15px;
    margin-bottom: 2px;
    z-index: 2;
}

.populated-content .counter {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}

.media-body {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.counter-card_number {
    font-size: 40px;
    color: #ffffff;
    font-weight: 900;
    margin-bottom: 8px;
    margin-top: -0.3em;
}

.counter-card_text {
    font-weight: 500;
    color: #ffffff;
    display: block;
    margin-bottom: -0.5em;
    font-size: 18px;
}

.populated-content .col-md-4 {
    text-align: justify;
}

@media (max-width: 992px) {
    .box-img {
        height: 200px;
    }

    .populated-content {
        height: auto;
        width: 100%;
        padding: 10px 0;
    }

    .populated-content .counter img {
        width: 70px !important;
    }

    .counter-card_number {
        font-size: 32px;
    }

    .counter-card_text {
        font-size: 15px;
    }

    ul.check_list li {
        font-size: 14px;
    }

    .populated-content .col-md-4 {
        text-align: center;
        margin-bottom: 20px;
    }

    li.nav-item {
        width: 65%;
    }

    .custom-sel {
        width: 30%;
    }

    footer li.nav-item {
        width: 100%;
        text-align: center;
    }

    h1 {
        font-size: 20px;
    }

    h3 {
        font-size: 20px;
    }
    h2 {
        line-height: 37px;
    }
    label {
        display: block;
        font-size: 18px;}
    .form-control, .form-select {
        font-size: 16px;}
}


.nav-mega {
    width: 100%;
}
.nav-mega .dropdown {
    position: static;
}
.nav-mega .dropdown-menu.mega-menu {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-border-radius-topleft: 0;
    -webkit-border-top-left-radius: 0;
    border-top-left-radius: 0;
    -moz-border-radius-topright: 0;
    -webkit-border-top-right-radius: 0;
    border-top-right-radius: 0;
    min-width: auto;
    width: 100%;
    margin-top: 0;
    padding: 0;
    border-color: #ccc;
}
.nav-mega .dropdown-menu.mega-menu > li {
    padding: 20px;
}
.nav-mega .dropdown-menu.mega-menu .media-list .media {
    padding: 10px;
    font-size: 13px;
}
.nav-mega .dropdown-menu.mega-menu .media-list .media-heading {
    font-size: 16px;
}
.show-sel a.select {
    background-color: #EDF0F2;
    color: #2e6407;
    display: flex;
    font-weight: 900;
}
