/**************************************
                General
**************************************/
:root {
    --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-duration: 1s;
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: unset;
}

html::-webkit-scrollbar {
    width: 5px;
    background-color: #add3432f;
}

html::-webkit-scrollbar-thumb {
    background-color: #ADD343;
    border-radius: 50rem;
}

a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
}

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

body {
    font-size: 16px;
    font-family: 'Inter';
    font-weight: normal;
    color: #000;
}

a,
a:hover,
a:focus {
    color: #379846;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Mulish Bold';
    font-weight: normal;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

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

main {
    overflow: clip;
}

img {
    max-width: 100%;
    height: auto;
    transition: all .5s;
}

.w-100 {
    width: 100% !important;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

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

/* Popup */
.popup {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.64);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 999999;
    opacity: 0;
    transform: translateY(10px);
    z-index: -1;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
}

.popup.show {
    opacity: 1;
    transform: translateY(0px);
    z-index: 999999;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    -webkit-transition: opacity 0.5s ease, transform 0.5s ease;
    -moz-transition: opacity 0.5s ease, transform 0.5s ease;
    -ms-transition: opacity 0.5s ease, transform 0.5s ease;
    -o-transition: opacity 0.5s ease, transform 0.5s ease;
}

.popup .popup__content {
    width: 50%;
    padding: 0px;
    background: white;
    color: black;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    z-index: 99999;
}

.popup .popup__content .close {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 20px;
    display: block;
    width: 40px;
    height: 40px;
    opacity: 1;
    color: #ffffff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border-radius: 50% 10px 50% 50%;
    flex-direction: column;
    gap: 5px;
    background: #00181c;
    transition: ease-in-out .5s;
    z-index: 9;
}

.popup .popup__content .close:hover {
    background-color: #ffffff;
}

.popup .popup__content .close:hover span {
    background-color: #15222B;
}

.popup .popup__content .close span {
    cursor: pointer;
    position: fixed;
    width: 20px;
    height: 3px;
    background: #ffffff;
}

.popup .popup__content .close span:nth-child(1) {
    transform: rotate(45deg);
}

.popup .popup__content .close span:nth-child(2) {
    transform: rotate(135deg);
}

.left {
    background: #00181c;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px 0 0 10px;
}

.right {
    padding: 30px;
    text-align: left;
    background: #A7C948;
    .title,label{
        color: #fff;
    }
    label{
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 4px;
    }
    .form-control{
        padding: 13px 15px;
    }
   .primary-btn{
    border: 0;
    &:hover{
        background-color: #fff;
        color: #8BC34A;
    }
   }
}

/**************************************
                Helper Class
**************************************/

.sec-gap {
    padding: 50px 0;
}

.pb-50 {
    padding-bottom: 50px;
}

.mb-20 {
    margin-bottom: 20px;
}
.mb-30 {
    margin-bottom: 30px;
}

p {
    color: #212121;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 161.111%;
}

.title {
    color: #1D1D1D;
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 65%;
    position: relative;
    margin-bottom: 30px;
}

.title-sm {
    color: #FFF;
    font-size: 19px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px; /* 115.789% */
}

.section-title {
    color: #000;
    font-size: 54px;
    font-style: normal;
    line-height: 122.222%;
    text-transform: capitalize;
    margin-bottom: 17px;

}
.card-title{
   color: #212121;
font-family: 'Inter SemiBold';
font-size: 24px;
font-style: normal;
font-weight: normal;
line-height: 34px; 
text-transform: capitalize;
margin-bottom: 12px;
}
.small-line {
    width: 38px;
    height: 2px;
    background: #ADD343;
    display: inline-block;
    margin-top: 0px;
    margin-bottom: 10px;
}
.bg-light-blue{
    background-color: #F6FCFF;
}

.primary-btn {
    font-family: 'Inter Bold';
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    padding: 14px 36px;
    line-height: 36px;
    border-radius: 4px;
    background: #379846;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}


.primary-btn:before,
.primary-btn:after {
    position: absolute;
    content: "";
    background: linear-gradient(90deg, #5FB242 0%, #88BC76 100%);
    z-index: -1;
    transition: all .35s;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    height: 53%;
    scale: 0 1;
    transform-origin: left;
}

.primary-btn:before {
    bottom: 0;
    top: auto;
    scale: 0 1;
    transform-origin: right;
}

.primary-btn:after {
    transition-delay: .3s;
}

.primary-btn:hover:before,
.primary-btn:hover:after {
    scale: 1 1;
}

.primary-btn:hover {
    color: #ffffff;
    border-color: #A7C948;
}

.primary-btn:focus {
    color: #fff;
}


.secondary-btn {
    background: #ffffff00;
    border-color: #fff;
    color: #fff;
}

.secondary-btn:hover {
    background: #192B53;
    border-color: #192B53;

    &::after,
    &::before {
        background-color: transparent;
    }
}


.form-control {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    color: #000000;
    padding: 13px 28px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: 1px solid #C1C1C1;
    width: 100%;
    border-radius: 4px;
    outline: none;
    font-family: "Poppins", sans-serif;
}

.form-control:focus {
    border-color: #ADD343;
}

form .btn-group {
    justify-content: center;
}

form .primary-btn {
    padding: 14px 50px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
}

form .primary-btn:hover {
    background: #A7C948;
    color: #ffffff;
}

.form-group {
    margin-bottom: 4px;
}

input,
input:focus {
    outline: none;
    box-shadow: none !important;
    
}

.form-control::placeholder {
    color: rgba(46, 49, 58, 0.5);
}

.form-group {
    position: relative;
}

.italic {
    font-style: italic;
}
.mobile{
    display: none;
}
/**************************************
         Animation
**************************************/
/* Keyframes */
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes zoomReverseIn {
    0% {
        opacity: 0;
        transform: scale(1.25);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(90vw) rotateY(67.50deg);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

/* Animations */
[data-animation] {
    opacity: 0;
    animation-timing-function: var(--animation-timing-function);
    animation-fill-mode: both;
    animation-duration: var(--animation-duration);
    will-change: transform, opacity;
}

/* Disable animation of the children */
.animations-disabled,
.animations-disabled [data-animation] {
    animation: none !important;
    opacity: 1 !important;
}

/* Slide Animations */
.slideInUp {
    animation-name: slideInUp;
}

.slideInDown {
    animation-name: slideInDown;
}

.slideInLeft {
    animation-name: slideInLeft;
}

.slideInRight {
    animation-name: slideInRight;
}

/* Fade Animations */
.fadeIn {
    animation-name: fadeIn;
}

/* Zoom Animations */
.zoomIn {
    animation-name: zoomIn;
}

.zoomReverseIn {
    animation-name: zoomReverseIn;
}

/* Flip Animations */
.flipInY {
    animation-name: flipInY;
}

.flipOutY {
    animation-name: flipInY;
    animation-direction: reverse;
}

/*******************************
	Menu
*******************************/
.action-bar {
    background: #379846;
    padding-block: 8px;
    text-align: center;
    overflow: hidden;
    p{
        margin: 0;
        color: #FFF;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: normal;
    }
    a{
        color: #115278;
    }
}

.call a span {
    color: #ffffff;
font-family: Inter;
font-size: 34px;
font-style: normal;
font-weight: 500;
line-height: normal;
transition: all .5s;
}
.call a:hover span{
color: #ADD343;
}


.call a{
    display: flex;
    align-items: center;
    gap: 9px;
    position: relative;
}

.header-area {
    background-color: rgba(255, 255, 255, 0);
    position: fixed;
    z-index: 999;
    right: 0;
    left: 0;

}
.logo{
    transition: all .5s;
}
.flex-box {
    display: flex;
    align-items: center;
    gap: 15px;
}
header{
    padding-block: 24px;
}
.header-area.sticky {
    background: #00181c;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    animation: slideDown 0.35s ease-out;
    header{
        padding-block: 10px;
    }
    .logo{
        width: 80px;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

#menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header {
    position: relative;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    transition: ease-in-out .4s;
.primary-btn{
    padding: 13px 19px;
}
}
.logo {
    bottom: 3px;
}


.fixed-btn {
    position: fixed;
    bottom:40px;
    right: 1px;
    z-index: 8;
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.enq-btn {
    position: fixed;
    top: 30%;
    right: 5px;
    height: 40px;
    font-weight: 400;
    text-align: center;
    z-index: 9;
    transform: rotate(-90deg);
    transform-origin: bottom right;
    overflow: clip;
    display: flex;
    border-radius: 4px;
    background: linear-gradient(90deg, #5FB242 0%, #88BC76 100%);
}
.enq-btn::after, .enq-btn::before {
    content: '';
    content: '';
    position: absolute;
    z-index: -1;
    background: #A7C948;
    inset: 0;
    scale: 1 0;
    transition: scale 450ms;
    transform-origin: top;
}
.enq-btn:hover::after, .enq-btn:focus-visible::after {
    scale: 1 1;
    transform-origin: right;
}

.enq-btn a {
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 44px;
    color: #fff;
    padding: 0 23px;
    font-weight: 500;
    font-family: 'Inter Medium';
    text-transform: uppercase;
}
.fc {
    width: 52px;
    height: 52px;
    background-color: #A7C948;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    &:hover{
        background-color: #379846;
    }
}
.fc:hover,
.fw:hover {
    transform: scale(1.2);
}

/************************************* Home Page **************************************/

.banner {
    position: relative;
    background: url('../img/banner-bg.webp') no-repeat center center;
    z-index: 1;
    padding-top: 150px;
    background-size: cover;
    h1 {
        color: #FFF;
        font-family: 'Mulish Regular';
        font-size: 64px;
        font-style: normal;
        font-weight: normal;
        line-height: 115.625%;
        text-transform: capitalize;
        margin-bottom: 13px;
        span{
            font-family: 'Mulish Bold';
        }
    }

    p {
        color: #FFF;
        font-family: 'Inter SemiBold';
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 165%;
        text-transform: capitalize;
        margin-bottom: 34px;
    }

}
@keyframes rotate{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
.slick-dots{
    li{
        width: 9px;
        height: 9px;
        background-color: #f3672100;
        outline: 1px solid #fff;
        outline-offset: 4px;
        border-radius: 50%;
        margin: 0 10px;
        transition: all .5s;
        button{
            opacity: 0;
        }
    }
    li.slick-active,li:hover{
        background-color: #ADD343;
    }
}

.banner-item{
    position: relative;
    margin-bottom: 25px;
    
}
.banner-content{
    padding-right: 50px;
}
.btn-group {
    display: flex;
    gap: 10px;
}

.banner-img {
   position: relative;

}

/********** About ********/
.about{
    img{
        border-radius: 10px;
    }
    .col-lg-5{
        .row .col-lg-6:last-child{
            margin-top: 170px;
        }
    }
}

/********* Supertrader Programme ************/
.supertrader{
    background: #F4F4F4;
}
.supertrader-img{
    border-radius: 20px 20px 0 0;
    width: 100%;
}
.tabs {
    display: flex;
    gap: 6px;
    margin-top: -102px;
    padding-bottom: 19.4px;
    position: relative;
    z-index: 1;
}
.tab-link {
    border-radius: 12px 12px 0 0;
    background: #A0BD4C;
    backdrop-filter: blur(2.5px);
    color: #FFF;
    font-family: 'Mulish SemiBold';
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 66px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 50px;
    cursor: pointer;
    .icon{
        width: 62px;
        height: 62px;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
}
.tab-link.active {
    background: #ffffff;
    color: #379846;
    position: relative;
    .icon{
        background: #A0BD4C;
        img{
            filter: invert(1);
        }
    }
    &:after{
        content: '';
        position: absolute;
        width: 100%;
        height: 16px;
        background-image: url(../img/tab-active.webp);
        bottom: -12px;
        left: 0;
        background-size: 100%;
        background-repeat: no-repeat;
    }
}
.tab-content {
    display: none;
    padding: 40px 50px;
    background-color: #fff;
    margin-top: -20px;
    h3{
        color: #379846;
font-family: 'Mulish Bold';
font-size: 34px;
font-style: normal;
font-weight: 700;
line-height: 66px; /* 194.118% */
text-transform: capitalize;
    }
}
.tab-content.active {
    display: block;
}
.benefits-list {
    list-style: none;
    padding: 0;
}
.benefits-list li {
    margin-bottom: 15px;
}
.benefits-list li h4 {
    margin: 0;
    color: #212121;
    font-family: 'Inter SemiBold';
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    line-height: 34px;
    text-transform: capitalize;
    &::before{
        content: '';
        background-image: url(../img/check-icon.webp);
        background-size: cover;
        width: 31px;
        height: 31px;
        background-repeat: no-repeat;
        display: inline-block;
        margin-right: 10px;
        transform: translateY(6px);
    }
}
.benefits-list li p {
    margin: 5px 0 0;
    color: #555;
    font-size: 14px;
}
.author{
    padding-top: 300px;
}
.author-img{
    display: inline-block;
    position: relative;
    z-index: 1;
    float: left;
    margin-top: -48px;
    margin-bottom: 20px;
    &::after,
    &::before{
        content: '';
        position: absolute;
        left: 36px;
        bottom: 22px;
        width: 600px;
        height: 568px;
        border-radius: 600px;
        background: #A0BD4C;
        overflow: hidden;
    }
    &::after{
        border-radius: 595px;
        background: #ECF7CA;
        transform: translate(-20px, 13px);
        z-index: -1;
    }

    .author-img{
        width: 665px;
        height: 707px;
        border-radius: 707px;
        overflow: hidden;
        position: relative;
    }
}

.shapes{
    position: absolute;
    width: 100%;
    .dots{
        position: absolute;
        right: 25%;
        top: -110px;
    }
}
.circle-outline,
.circle-big,
.circle-md,
.circle-small{
    position: absolute;
    border-radius: 50%;
}
.circle-outline,.circle-big{
    width: 80px;
    height: 80px;
    background: #5FB242;
    border: 10px solid #5FB242;
    border-radius: 50%;
}
.circle-outline{
    right: 6%;
    top: -65px;
}
.circle-big{
   background: transparent;
}
.circle-md{
    width: 40px;
    height: 40px;
    background: #A0BD4C;
    &.one{
        left: -44px;
        bottom: -140px;
    }
    &.tow{
        left: 148px;
        bottom: -95px;
    }

}
.circle-small{
    width: 30px;
    height: 30px;
    background: #A0BD4C;
    top: -155px;
    left: 35%;
}

.benefits{
    background: #FCFFF2;
    .col-lg-7:hover .key-item:not(:hover){
        transform: scale(1);
        opacity: .5;
    }
    .col-lg-7 .key-item:hover{
            transform: scale(1.051);
    }
    .key-item{
        border-radius: 10px;
        background: #E7F2E6;
        padding: 15px;
        padding-left: 108px;
        margin-bottom: 11px;
        transition: all .5s;
    }
}
.key-item{
    position: relative;
    padding-left: 98px;
    &:hover{
        .icon-box{
            background-color: #ADD343;
            box-shadow: 0 0 0 3.18px rgba(173, 211, 67, 0.221);
            img{
                transform: rotateY(180deg);
                filter: brightness(0) saturate(100%) invert(97%) sepia(0%) saturate(7487%) hue-rotate(77deg) brightness(110%) contrast(100%);
            }
        }
    }
    .icon-box{
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: #FFF;
        box-shadow: 0 0 0 5px rgba(161, 189, 76, 0.205);
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 15px;
        top: 15px;
    }
}
.img-box{
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* **** Why Choose *** */
.why-choose{
    padding-top: 50px;
    padding-bottom: 100px;
    position: relative;
    .section-title{
        margin-bottom: 70px;
    }
    .row{
        position: relative;
        z-index: 1;
    }
}

.center-lefe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -53%);
    text-align: center;
    z-index: -1;
    padding: 35%;
    padding-top: 32%;
    span{
        width: 450px;
        height: 485px;
        border-radius: 526px;
        border: 1px dashed #B5B2B2;
        background: rgba(160, 189, 76, 0.08);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -40%);
        z-index: -1;
    }
  }

  @keyframes rotateme {
    from {
        transform: rotate(0deg);
    }
    to { 
        transform: rotate(360deg);
    }
  }

  .list-item{
    position: relative;
    padding-left: 104px;
    margin-bottom: 75px;
    height: 120px;
    .card-title{
        margin-bottom: 2px;
    }
    p{
        margin: 0;
    }
    &:hover{
        span{
            img{
                transform: rotateY(180deg);
            }
        }
    }
  }
  .list-item span{
    border-radius: 50%;
    background-color: #223725;
    width: 86px;
    height: 86px;
    outline: 1px dashed rgba(0, 0, 0, 0.418);
    outline-offset: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .left-item .list-item{
    padding-left: 0;
    padding-right: 104px;
    text-align: right;
  }
  .left-item .list-item span{
    right: 0;
    left: auto;
  }

  .left-item .list-item:nth-child(1),
  .left-item .list-item:nth-child(3){
    margin-right: 7px;
  }
  .left-item .list-item:nth-child(2){
    margin-right: 13%;
  }
  .left-item .list-item:nth-child(3),
  .right-item .list-item:nth-child(3){
    margin-bottom: 0;
  }
  .right-item .list-item:nth-child(1),
  .right-item .list-item:nth-child(3){
    margin-left: 7px;
  }
  .right-item .list-item:nth-child(2){
    margin-left: 13%;
  }



/********** Key USPS ********/
.faith-factors{
    position: relative;
    background: #223725;
    z-index: 2;
    .section-title,.card-title,p{
        color: #fff;
    }
    .key-item{
        border: 1px solid rgba(255, 255, 255, 0.09);
        background: rgba(255, 255, 255, 0.08);
            .icon-box {
        box-shadow: 6px 0px 0 0px #5FB242;
    }
        h4{
            color: #5FB242;
            font-family: 'Inter SemiBold';
            font-size: 18px;
            font-style: normal;
            font-weight: normal;
            line-height: 30px;
            text-transform: capitalize;
            margin-bottom: 10px;
        }
        ul{
            list-style-type: disc;
            padding-left: 20px;
            margin-bottom: 1rem;
            ::marker{
                color: #5FB242;
            }

            li{
            color: #fff;
            font-size: 18px;
            font-style: normal;
            font-weight: normal;
            line-height: 30px;
            text-transform: capitalize;
            }
        }
    }
}
.faith-content-box{
    border-radius: 20px;
    background: #FCFFF2;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.11);
    padding: 25px;
    text-align: center;
    margin-top: 30px;
    .btn-group{
        justify-content: center;
    }
    p{
        color: #000;
        font-family: 'Inter SemiBold';
    }
}
/* ***** Testimonial ***** */
.testimonials{
    background: #E8F2E9;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0;
    .slick-dots{
        bottom: -59px;
        li{
            background-color: #f3672100;
            outline: 2px solid #212121;
            button{
                opacity: 0;
            }
        }
        li.slick-active,li:hover{
            background-color: #379846;
            outline-color: #379846;
        }
    }
}
.stars{
    margin-bottom: 15px;
}
.testi-head {
    padding: 0px;
    padding-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.testi-box{
    border-radius: 10px;
    background: #FFF;
    padding: 30px;
    transition: all .5s;
    &:hover{
        background: rgb(173, 211, 67);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
}
.testi-box .flex h5 {
color: #379846;
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 29px;
}

.testi-box .flex p {
    color: #000;
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: 18px;
margin: 0;
}

.testi-box .flex {
    position: relative;
    padding-left: 75px;
    padding-right: 55px;
    min-height: 70px;
    padding-top: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 6px;
}

.user-img {
    width: 57.404px;
    height: 57.404px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    background: #E8F2E9;
    color: #212121;
    font-family: 'Inter SemiBold';
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    left: 0;
}
.testi-slider{
    .slick-list{
        margin: 0 -15px;
    }
    .slick-slide{
        margin: 0 15px;
    }
}
.slick-arrow{
    width: 49px;
    height: 49px;
    background-color: #FFF;
    filter: drop-shadow(0px 6px 7px rgba(0, 0, 0, 0.18));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    border-radius:  50%;
    -webkit-border-radius:  50%;
    -moz-border-radius:  50%;
    -ms-border-radius:  50%;
    -o-border-radius:  50%;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    top: -21%;
    right: 0;
    &.slick-prev{
        left: unset;
        right: 70px;
    }
}
.slick-arrow::before {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 1px solid #171717;
    border-left: 1px solid #171717;
    display: inline-block;
    transform: rotate(135deg);
    margin-right: 5px;
    opacity: 1;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.slick-arrow.slick-prev::before {
    transform: rotate(316deg);
    margin-left: 8px;
}

.slick-arrow:hover,
.slick-arrow:focus {
    background-color: #379846;
    filter: drop-shadow(0px 6px 7px rgba(25, 43, 82, 0.185));
    -webkit-filter: drop-shadow(0px 6px 7px hsl(221, 54%, 21%));
}

.slick-arrow:hover::before,
.slick-arrow:focus::before {
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
}

.certifications-box{
box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.25);
transition: all .5s;
&:hover{
    box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}
img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
}
.mb-50{
    margin-bottom: 50px;
}
.faq{
    background: #ffffff;
}
.accordion__item {
    margin: 12px auto;
    transition: .5s;
}

.accordion__item:hover {
    transform: translateY(-5px)
}

.accordion__item .accordion__title {
    position: relative;
    display: block;
    padding: 13px 90px 15px 13px;
    margin-bottom: 0;
    color: #fff;
    font-size: 22px;
    font-family: 'Inter Bold';
    text-decoration: none;
    color: rgb(18, 18, 18);
    border-radius: 3px;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
    cursor: pointer;
    font-weight: normal;
    border-bottom: 1px solid #B1B1B1;
}

  
.accordion__title::after {
    content: '';
    background-image: url(../img/faq-arrow.webp);
    background-repeat: no-repeat;
    position: absolute;
    background-size: 100%;
    width: 22px;
    height: 22px;
    right: 15px;
    top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
}
.accordion__title.accordion-active::after{
    transform: rotate(180deg);
}
.accordion__item .accordion-active{
    border-radius: 19px 19px 0 0;
    background: #F2F2F2;
    border-bottom: 0px solid #fff;
}



.accordion__item .accordion__content {
    padding: 15px;
    font-size: 20.356px;
    line-height: 1.667;
    margin-bottom: 0;
    display: none;
    padding-right: 3%;
    border-radius: 0 0 19px 19px;
    background: #F2F2F2;
}

/******************************/
footer {
    background: #282828;
    width: 100%;
    padding-top: 50px;
.form-control{
    border-radius: 4px;
border: 1px solid #708998;
color: #C6C6C6;
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: 22px;
background-color: transparent;
padding: 7px 8px;
&::placeholder{
    color: #C6C6C6;
}
}
.primary-btn{
    width: 100%;
}
}

.footer-box {
    padding-right: 4%;
}

.footer-logo {
    margin-bottom: 25px;
}

footer p {
    color: #D1D1D1;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 24px;
}

.footer-title {
    font-size: 22px;
    line-height: 53px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    position: relative;
    margin-bottom: 18px;
}

  
.footer-title:after {
    content: '';
    width: 40px;
    height: 2px;
    background: #ADD343;
    display: inherit;
    margin-top: -8px;
}
footer ul li a,
footer p a {
    color: #D1D1D1;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 38px;
position: relative;
}

footer ul li a{
    display: block;
}
footer ul li a:hover{
    color: #ADD343;
    transform: translateX(5px);
    &::before{
        border-top: 1px solid #ADD343;
        border-left: 1px solid #ADD343;
    }
}

.footer-social a:hover {
    background-color: #ADD343;
    border-color: #ADD343;
    transform: scale(1.1);
}
.copyright-section{
    background: #282828;
    border-top: 1px solid rgba(255, 255, 255, 0.212);
}
.copyright {
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 16px;
    display: flex;
    justify-content: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}

.copyright a {
    color: #FF8A36;
    text-decoration: underline;
}
.copyright p{
    margin: 0;
}
.footer-contact p{
    position: relative;
    padding-left: 40px;
}
.footer-contact p span{
    position: absolute;
    left: 0px;
    top: 3px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
.footer-social{
    display: flex;
    gap: 10px;
    a{
        width: 58.931px;
        height: 58.931px;
        border-radius: 50%;

        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
}
}
input[type="submit"]{
    border: 0;
}

/*******************************
  Responsive
********************************/

@media (max-width: 1920px) {}

@media (max-width: 1600px),
(max-width: 1536px) {
    
}

@media (max-width: 1536px) {}

@media (max-width: 1440px) {}

@media (max-width: 1440px),
(max-width: 1366px) {
    .banner {
        h1 {
            font-size: 54px;
        }
        p {
            font-size: 17px;
        }
    }
    .popup .popup__content {
        width: 70%;
    }
    .about-us {
        .about-vector {
            width: 20%;
        }
    }
    .testimonials {
        .slick-dots {
            bottom: -45px;
        }
    }
    p {
        font-size: 16px;
        line-height: 1.667;
    }
    
    .section-title {
        font-size: 35px;
        line-height: 46px;
    }
   
    .sec-gap {
        padding: 40px 0;
    }
    
    .card-title {
        font-size: 20px;
        line-height: 30px;
    }
    .author {
        padding-top: 300px;
    }
}

@media (max-width: 1366px) {}

@media (max-width: 1199.98px) {
.banner {
        h1 {
            font-size: 46px;
        }
    }
    .tab-link {
    font-size: 26px;
    gap: 11px;
    padding: 16px 30px;
}
.author {
    padding-top: 300px;
}
}

@media (max-width: 991.98px) {
  .banner{
    .col-lg-5{
        order: -1;
    }
  }
    header {
        height: auto;
    }
    
    .topbar a {
        padding-block: 5px;
    }
    
    .section-title {
        font-size: 30px;
        margin-bottom: 10px;
        line-height: 36px;
    }
   .banner-content {
    padding-right: 0;
    text-align: center;
    background: #013236bf;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    margin-top: -307px;
    z-index: 1;
    position: relative;
    .btn-group{
        justify-content: center;
    }
}
.about{
    text-align: center;
    .btn-group{
        justify-content: center;
    }
}
    .tab-link {
        font-size: 20px;
        gap: 11px;
        padding: 9px 19px;
    }
    .left {
    padding: 10px;
}
}

@media (max-width: 575.98px) {
    .fc {
        width: 41px;
        height: 41px;
    }
    .fw{
        width: 45px;
        height: 45px;
    }
    .enq-btn{
        right: 0;
        height: 35px;
    }
    .enq-btn a {
        font-size: 14px;
        padding: 0 17px;
        line-height: 37px;
    }
    p{
        font-size: 14px;
    }
    .section-title {
        font-size: 24px;
        margin-bottom: 10px;
        line-height: 28px;
    }
    .sec-gap {
        padding: 20px 0;
    }
    .primary-btn{
        font-size: 14px;
        padding: 5px 28px;
    }
    .action-bar {
        padding-block: 5px;
        p{
            font-size: 14px;
        }
    }
    .call a span {
        display: none;
    }
    .logo{
        width: 120px;
        height: auto;
    }
    header {
        padding-block: 7px;
    }
    .call{
        width: 45px;
        height: 45px;
        background: #379846;
        border-radius: 50%;
        padding: 10px;
        img{
            filter: brightness(0) saturate(100%) invert(93%) sepia(40%) saturate(325%) hue-rotate(167deg) brightness(109%) contrast(108%);
        }
    }
    .banner{
        padding-top: 120px;
        h1 {
            font-size: 30px;
        }
        p {
            font-size: 15px;
            margin-bottom: 15px;
        }
    }
    .banner-content{
        padding: 15px;
        margin-top: -175px;
    }
    .banner-item {
        margin-bottom: 0;
    }
    .about {
        & .col-lg-5 {
            .row .col-lg-6:last-child {
                margin-top: 100px;
            }
        }
    }
    .tabs {
        margin-top: -49px;
        justify-content: center;
    }
    .tab-link{
        height: 45px;
        flex-direction: column;
        line-height: 110%;
        font-size: 14px;
        text-align: center;
        justify-content: center;
        .icon{
            display: none;
        }
    }
    .tab-content{
        padding: 15px;
        h3{
            font-size: 24px;
            line-height: 27px;
            margin-bottom: 5px;
        }
    }
    .benefits-list li h4 {
        font-size: 18px;
        line-height: 24px;
        &::before {
            background-size: contain;
            width: 18px;
            height: 21px;
            margin-right: 5px;
        }
    }
    .author{
        padding-top: 180px;
    }
    .author-img {
        margin-top: -10px;
        &::after, &::before {
            width: 300px;
            height: 268px;
        }
        .author-img {
            width: 491px;
            height: 388px;
        }
    }
    .circle-outline, .circle-big {
        width: 70px;
        height: 70px;
    }
    .circle-outline {
        right: 0%;
        top: -65px;
    }
    .circle-small {
        left: 22%;
    }
    .circle-md {
        &.one {
            left: 5px;
            bottom: -140px;
        }
    }
    .shapes {
        .dots {
            right: 33%;
            top: -110px;
        }
    }
    .key-item {
        text-align: center;
        .icon-box {
            width: 65px;
            height: 65px;
            padding: 10px;
            position: relative;
            left: 50%;
            top: -15px;
            transform: translateX(-50%);
        }
    }
    .benefits{
        .row{
            .col-lg-5{
                order: -1;
            }
        }
        .key-item {
            padding: 15px;
            padding-left: 15px;
            padding-top: 30px;
        }
    }
    .card-title{
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 5px;
    }
    .why-choose {
        .section-title {
            margin-bottom: 20px;
        }
    }
    .list-item{
        height: auto;
        padding: 20px;
        padding-top: 100px;
        margin-bottom: 20px;
        background: #E7F2E6;
    }
    .list-item span{
        width: 70px;
        height: 70px;
        padding: 13px;
    }
    .left-item .list-item{
        padding-left: 10px;
        padding-right: 10px;
        text-align: center;
    }
    .left-item .list-item:nth-child(1), .left-item .list-item:nth-child(3)
    {
        margin-right: 0px;
    }
    .center-lefe{
        display: none;
    }
    .left-item .list-item span {
        right: unset;
        top: 15px;
        transform: translateX(-50%);
        left: 50%;
    }
    .right-item .list-item span {
        right: unset;
        top: 15px;
        transform: translateX(-50%);
        left: 50%;
    }
    .left-item .list-item:nth-child(2) {
        margin-right: 0;
    }
    .right-item .list-item:nth-child(1), .right-item .list-item:nth-child(3) {
        margin-left: 0;
        margin-top: 20px;
    }
    .right-item .list-item:nth-child(2) {
        margin-left: 0;
    }
    .right-item{
        .list-item{
            text-align: center;
        }
    }
    .faith-factors {
        & .key-item {
            & ul {
                li {
                    font-size: 15px;
                    line-height: 24px;
                    text-align: left;
                    margin-bottom: 7px;
                }
            }
        }
    }
    .faith-content-box {
        border-radius: 15px;
        padding: 20px;
        margin-top: 10px;
    }
    .testi-box{
        padding: 20px;
    }
    .user-img{
        width: 47.404px;
        height: 47.404px;
    }
    .testi-box .flex h5 {
        font-size: 16px;
        line-height: 23px;
    }
    .testi-box .flex p {
        font-size: 13px;
    }
    .testimonials {
        .slick-dots {
            bottom: -35px;
        }
        .mb-30{
            margin-bottom: 70px;
        }
    }
    .slick-arrow{
        top: -9%;
    }
    .faq{
        .mb-50 {
            margin-bottom: 10px;
        }
    }
    .accordion__item .accordion__title{
        font-size: 15px;
        padding: 10px 60px 10px 10px;
    }
    .accordion__title::after {
        width: 18px;
        height: 18px;
    }
    .accordion__item .accordion__content {
        padding: 10px;
        font-size: 14.356px;
        border-radius: 0 0 12px 12px
    }
    .accordion__item .accordion-active{
        border-radius: 12px 12px 0 0;
    }
    footer {
        padding-top: 20px;
    }
    .footer-box{
        padding-right: 0;
        text-align: center;
    }
    .footer-logo{
        margin-bottom: 10px;
        width: 150px;
    }
    footer p {
        font-size: 14px;
    }
    footer ul li a, footer p a {
        font-size: 15px;
    }
    .footer-title {
        font-size: 18px;
        margin-bottom: 13px;
    }
    form .primary-btn {
        padding: 5px 50px;
    }
    .copyright-section {
        margin-top: 20px;
    }
    .copyright{
        font-size: 14px;
        margin-top: 0;
        justify-content: center;
        padding: 10px 0;
    }
    footer {
        .form-control {
            padding: 9px 8px;
        }
    }
        .popup .popup__content {
        width: 90%;
    }
    .left{
        display: none;
    }
}