/* FONT IMPORT */
@import url(layout.min.css);
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

:root {
    --white: #fff;
    --black: #000;
    --primary: #20E700;
    --secondary: #023430;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Figtree", sans-serif;
}

section {
    position: relative;
}

p {
    color: #333333;
    font-size: 1.0625rem;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}

/* PRELOADER */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--white);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--secondary);
}

/* PRELOADER */

/* GLOBAL CSS */

.form-inline a {
    color: var(--secondary);
}

.themeBtn {
    background: var(--primary);
    color: var(--secondary);
    text-transform: capitalize;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    width: fit-content;
    justify-content: center;
    padding: 1.125rem 3.5em;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.themeBtn:before {
    content: "";
    position: absolute;
    background: var(--secondary);
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -100%;
    transition: 0.5s ease;
    z-index: -1;
}

.themeBtn:hover:before {
    right: 0;
}

.themeBtn:hover {
    color: var(--white);
}

/* !GLOBAL CSS */

/* Banner Css Start */

.mainBanner {
    background: url(../images/mainBanner.png)center/cover fixed;
    height: 890px;
    display: flex;
    align-items: end;
}

.bannerContent h1 {
    color: var(--secondary);
    font-weight: bold;
    text-transform: capitalize;
    font-size: 4.375rem;
    margin: 0;
}

.bannerContent p {
    font-size: 1.125rem;
    margin: 1rem 0 2rem 0;
}

.banWraps {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.imagesList {
    display: flex;
}

.imagesList li+li {
    margin-left: -0.875rem;
}

.stars {
    display: flex;
    gap: 5px;
}

.stars li {
    color: #F0AD4E;
    font-size: 0.875rem;
}

.banStars h4 {
    margin: 0;
    font-size: 1.0625rem;
    font-weight: bold;
    color: #333333;
}

/* Banner Css End */

/* Brand Sec Css Start */

.brandSec {
    background: url(../images/brandBg.png)center/cover fixed;
    height: 700px;
    display: flex;
    align-items: end;
    padding-bottom: 3.125rem;
}

.brandBox {
    background: rgb(231 245 255 / 90%);
    border-radius: 20px;
    padding: 2.375rem 1.5rem 2.375rem 3.125rem;
    display: flex;
    align-items: center;
    gap: 2.1875rem;
}

.brandBox h4 {
    color: var(--secondary);
    font-size: 1.5625rem;
    font-weight: bold;
}

.brandBox p {
    margin: 0;
}

.brandLogo {
    display: flex;
    gap: 2.1875rem;
    align-items: center;
}

.brandContent {
    flex: 1;
}

/* Brand Sec Css End */

/* Process Sec Css Start */

.processSec {
    padding: 6.875rem 0 10rem 0;
}

.processImages img {
    border-radius: 30px;
}

.processImages {
    position: relative;
}

.process2 {
    position: absolute;
    bottom: -7rem;
    right: 0;
    border: 10px solid #FFFFFF;
    box-shadow: 0 10px 25px 0 rgb(0 0 0 / 7%);
}

.iconBox {
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8125rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    border: 1px solid var(--primary);
    border-radius: 10px;
    width: fit-content;
    padding: 9px 1.2em;
    background: #F8F6FF;
    margin-bottom: 1.25rem;
}

.secHeading {
    text-transform: capitalize;
    font-size: 3.125rem;
    color: var(--secondary);
    font-weight: bold;
}

.processContent ul li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.processContent ul li h4 {
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.25rem;
}

.processContent p {
    margin: 0;
}

.processContent ul {
    margin-top: 3.125rem;
}

.processContent ul li+li {
    margin-top: 2.25rem;
}

.processContent {
    margin-top: 3.125rem;
}

/* Process Sec Css End */

/* Work Sec Css Start */

.workSec {
    padding: 6.25rem 0;
    background: #E7F5FF;
}

.workHeading .iconBox {
    margin: 0 auto 1.25rem;
}

.workWraps {
    padding: 1px;
    border-radius: 30px;
    background: linear-gradient(180deg, #fff, #113B38);
    margin-top: 2.125rem;
}

.workBox {
    text-align: center;
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0 10px 25px rgb(0 0 0 / 7%);
    padding: 2.5rem 1.375rem 3.75rem 1.375rem;
}

.workBox h4 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--secondary);
    text-transform: capitalize;
    margin: 1.75rem 0 1.125rem 0;
}

.workBox p {
    margin: 0;
}

/* Work Sec Css End */

/* Trade Sec Css Start */

.tradeSec {
    background: url(../images/tradeBg.png)center/cover fixed;
    padding: 6.25rem 0 5rem 0;
}

.tradeContent .themeBtn {
    margin: 2rem auto 0;
    padding: 1.125rem 2.2em;
}

/* Trade Sec Css End */

/* Pricing Sec Css Start */

.pricingSec {
    padding: 6.25rem 0;
}

.pricingBox {
    border: 1px solid #999999;
    padding: 2.1875rem 1.875rem;
    margin-top: 2rem;
}

.pricingBox h3 {
    text-transform: uppercase;
    color: var(--secondary);
    font-size: 1.875rem;
    font-weight: bold;
}

.pricingBox p {
    color: var(--black);
    font-size: 1.0625rem;
    margin: 0;
}

.pricingBox h4 sub {
    font-weight: normal;
    bottom: 3px;
    font-size: 16px;
}

.certificateBtn img {
    transition: 0.5s ease;
}

.certificateBtn {
    color: var(--secondary);
    font-weight: 600;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid var(--secondary);
    width: fit-content;
    border-radius: 10px;
    padding: 0.875rem 4em;
    margin-top: 1.875rem;
}

.certificateBtn:hover,
.copyrightBtn:hover {
    background: var(--secondary);
    color: var(--white);
}

.certificateBtn:hover img {
    filter: brightness(0) invert(1);
}

.pricingBox h4 span {
    display: block;
    color: var(--black);
    font-size: 1.0625rem;
    text-transform: capitalize;
    font-weight: 400;
}

.pricingBox h4 {
    color: var(--secondary);
    font-size: 1.875rem;
    font-weight: bold;
    margin: 2rem 0;
}

.copyrightBtn {
    color: var(--white);
    background: var(--primary);
    width: 100%;
    display: inline-block;
    border-radius: 10px;
    text-align: center;
    text-transform: capitalize;
    font-weight: 600;
    padding: 0.875rem 0;
}

.pricingBox ul li {
    display: flex;
    gap: 1.25rem;
    align-items: baseline;
}

.pricingBox ul li h5 {
    color: #333333;
    font-size: 1.0625rem;
    font-weight: bold;
    margin: 0;
    line-height: 1.4;
}

.pricingBox ul li h5 span {
    display: block;
    font-weight: 400;
    width: 85%;
}

.pricingBox ul li i {
    font-size: 1.125rem;
    color: #333333;
}

.viewMore {
    text-align: center;
    display: block;
    text-transform: capitalize;
    font-weight: 600;
    color: var(--secondary);
    text-decoration: underline !important;
    margin-top: 1.125rem;
}

.viewMore:hover {
    color: var(--primary);
}

.pricingBox ul {
    margin: 2.5rem 0;
}

.pricingBox ul li+li {
    margin-top: 0.625rem;
}

/* Pricing Sec Css End */

/* Review Sec Css Start */

.reviewSec {
    background: #E7F5FF;
    padding: 6.25rem 0 5rem 0;
}

.reviewWraps {
    padding: 1px;
    border-radius: 30px;
    background: linear-gradient(180deg, #fff, #113B38);
}

.reviewBox {
    background: var(--white);
    border-radius: 30px;
    text-align: center;
    padding: 2.1875rem 2.1875rem 3.75rem 2.1875rem;
}

.reviewBox h4 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--secondary);
    margin: 1.5625rem 0 0 0;
}

.reviewBox span {
    text-transform: uppercase;
    color: #333333;
    letter-spacing: 1.5px;
    font-weight: 600;
    font-size: 0.8125rem;
}

.reviewBox ul {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 1.125rem 0 1.375rem 0;
}

.reviewBox ul li {
    font-size: 0.9375rem;
    color: #FEC42D;
}

.reviewBox p {
    margin: 0;
    font-weight: 500;
    font-style: italic;
    opacity: 83%;
}

.reviewSlider {
    padding: 2.8125rem 0 4rem 0;
}

.reviewSlider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    aspect-ratio: 1;
}

.reviewSlider .swiper-pagination-bullet-active {
    width: 42px;
    border-radius: 30px;
    background: var(--primary);
}

/* Review Sec Css End */

/* Faq Sec Css Start */

.faqSec {
    padding: 6.25rem 0 5rem 0;
}

.faqHeading figure img {
    border-radius: 30px;
    margin-top: 2.5rem;
}

.faqSec #accordion .card {
    border: none;
    padding: 0 0 0.5rem 0;
    background: transparent;
    margin-bottom: 0.75rem;
    border-radius: unset;
}

.faqSec #accordion .card .btn-link {
    --height: 5rem;
    --width: 4.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    color: #242429;
    border: 0;
    font-size: 1.0625rem;
    font-weight: bold;
    text-decoration: none;
    overflow: hidden;
    text-align: left;
    background: #E0EFF8;
    border-radius: 10px;
    padding: 1rem 1rem;
}

.faqSec #accordion .card .btn-link i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #242429;
    margin-left: auto;
    border-radius: 100px;
}

.faqSec #accordion .card .btn-link i::before {
    content: "\f077";
}

.faqSec #accordion .card .btn-link.collapsed i::before {
    content: "\f078";
}

.faqSec #accordion .card+.card {
    margin-top: 0;
}

.faqSec #accordion .card .card-body {
    padding: 0 0 0 0;
}

.faqSec #accordion .card .card-body p {
    margin: 1.25rem 0 0 1.25rem;
}

.faqWraps {
    margin: 0 2rem;
}

.faqSec #accordion .card .btn-link.collapsed {
    background: transparent;
}

.faqPara {
    font-style: italic;
    font-weight: 500;
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 2rem;
}

.faqPara:before {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 5px;
    height: 55px;
    left: 0;
}

/* Faq Sec Css End */

/* Protect Sec Css Start */

.protectSec {
    padding: 3.75rem 0 5rem 0;
    background: #E7F5FF;
}

.protectContent ul li a {
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.0625rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.protectContent ul li a i {
    font-size: 1.25rem;
}

.protectContent ul li {
    margin-top: 1.875rem;
}

.protectContent ul {
    margin-bottom: 6.25rem;
}

.protectContent p {
    margin: 1.5rem 0 1.75rem 0;
}

.protextForm {
    margin: 0 4rem;
}

.protextForm label {
    text-transform: capitalize;
    font-size: 0.9375rem;
    font-weight: bold;
    color: var(--secondary);
}

.protextForm .form-control {
    background: var(--white);
    border-radius: 10px;
    border: unset;
    outline: unset;
    box-shadow: unset;
    height: 60px;
    padding-left: 1.5rem;
    font-size: 0.875rem;
    color: rgb(153 153 153 / 83%);
}

.protextForm .form-control::placeholder {
    text-transform: capitalize;
    color: rgb(153 153 153 / 83%);
}

.protextForm .form-group {
    margin-bottom: 1.625rem;
}

.protextForm textarea {
    height: 90px !important;
    padding-top: 1rem;
    resize: none;
}

.protextForm .themeBtn {
    margin-top: 1.25rem;
    width: 100%;
    border: unset;
    outline: unset;
}

/* Protect Sec Css End */

/* Footer Css Start */

footer {
    background: var(--secondary);
    padding: 0.9375rem 0;
}

.copyRight p {
        color: var(--white);
    /* font-weight: 600; */
    margin: 0;
    font-size: 13px;
}

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

/* Footer Css End */

.popup-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgb(2 52 48 / 85%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

/* Popup Box */
.popup-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: #f8f8f8;
    padding: 2rem 2rem;
    width: 550px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.popup-box h2 {
    margin-bottom: 5px;
    color: var(--secondary);
    font-size: 2rem;
    font-weight: bold;
    text-transform: capitalize;
}

.popup-box p {
    color: #666;
    margin-bottom: 25px;
}

.popup-box input {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    outline: unset;
    box-shadow: unset;
}

.green-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    border-radius: 8px;
    transition: 0.3s;
    color: var(--white);
    text-transform: uppercase;
}

.green-btn:hover {
    background: var(--secondary);
    color: var(--white);
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    background: #f1f1f1;
    font-size: 22px;
    cursor: pointer;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    outline: unset !important;
}

/* Show Popup */
.show-popup {
    opacity: 1 !important;
    visibility: visible !important;
}

.popup-box h3 {
    color: var(--primary);
    font-size: 2rem;
}

.popup-box h3 span {
    color: var(--black);
    font-weight: bold;
    font-size: 26px;
}





