@font-face {
    font-family: Jost-Regular;
    src: url('../fonts/Jost-Regular.ttf');
}

@font-face {
    font-family: Jost-Medium;
    src: url('../fonts/Jost-Medium.ttf');
}

@font-face {
    font-family: Jost-SemiBold;
    src: url('../fonts/Jost-SemiBold.ttf');
}

@font-face {
    font-family: Jost-Bold;
    src: url('../fonts/Jost-Bold.ttf');
}

:root {
    --theme-color-1: #120245;
    --theme-color-2: #785DC5;
    --theme-color-3: #8DE5FE;
    --theme-color-4: #FFD982;
    --theme-color-5: #FFA365;
    --theme-color-6: #FAA3DB;
    --theme-color-7: #F6F5F8;
    --body-bg: #f6f6f6;
    --footer-bg: #ffffff;
    --font-color: #57667E;
    --heading-color: #120245;
    --font-white: #ffffff;
}

body {
    background-color: var(--body-bg);
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 25px;
    font-family: 'Jost-Regular';
    font-weight: normal;
    color: var(--font-color);
}

h1,
h2,
h3 {
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'Jost-Bold';
    font-weight: normal;
}

h4,
h5 {
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'Jost-SemiBold';
    font-weight: normal;
}

p {
    margin-bottom: 0;
}

a,
a:hover,
a:active,
a:focus {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.theme-btn {
    border-radius: 30px;
    height: 48px;
    text-align: center;
    border: none;
    max-width: max-content;
    width: auto;
    padding: 10px 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Jost-Medium';
    font-weight: normal;
    transition: ease-in-out 0.3s;
    font-size: 14px;
}

.btn-main {
    color: #fff;
    background-color: var(--theme-color-2);
    transition: ease-in-out 0.3s;
    border: 1px solid var(--theme-color-2);
}

.btn-main:hover {
    background-position: left bottom;
    color: #fff;
    background-color: #280882;
    border: 1px solid #280882;
    transition: ease-in-out 0.3s;
}

.btn-secondary {
    color: #fff;
    background-color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
}

.btn-secondary:hover {
    color: #fff;
    background-color: #080b67;
    transition: ease-in-out 0.3s;
}

.btn-border {
    border: 1px solid var(--theme-color-1);
    background-color: transparent;
    color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
}

.btn-border:hover {
    border-color: var(--theme-color-1);
    background-color: var(--theme-color-1);
    color: #fff;
    transition: ease-in-out 0.3s;
}

.btn-border-white {
    border: 1px solid var(--font-white);
    background-color: transparent;
    color: var(--font-white);
    transition: ease-in-out 0.3s;
}

.btn-border-white:hover {
    border-color: var(--theme-color-1);
    background-color: var(--theme-color-1);
    color: #fff;
    transition: ease-in-out 0.3s;
}

.policy-main-heading {
    font-size: 20px;
    margin-bottom: 20px;
}

.policy-description {
    margin-bottom: 20px;
}

.page-full-coming {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: cover !important;
    background-repeat: no-repeat;
    /* background-image: url('../images/coming-soon-bg.jpg'); */
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/pagebanner-bg.jpg');
    padding: 30px;
}

.page-coming-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.page-coming-inner h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--font-white);
}

.page-coming-inner p {
    margin-bottom: 20px;
    color: var(--font-white);
}

.soon-subscribe {
    width: 100%;
}

.soon-form-wrapper {
    position: relative;
    width: 100%;
}

.soon-input {
    width: 100%;
    height: 55px;
    border-radius: 35px;
    padding: 10px 15px;
    display: inline-block;
    border: none;
}

.soon-submit {
    background-color: var(--theme-color-2);
    border-radius: 35px;
    text-align: center;
    color: #fff;
    padding: 10px 10px;
    position: absolute;
    top: 5px;
    right: 5px;
    border: none;
    width: 135px;
}

.soon-counter-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.soon-counter-list>div {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 30px 8px 0px 8px;
    background-color: rgb(255 255 255 / 20%);
    flex-direction: column;
    color: var(--theme-color-3);
    font-family: 'Jost-Bold';
    font-weight: normal;
    font-size: 32px;
}

.soon-counter-list>div span {
    font-family: 'Jost-Medium';
    font-weight: normal;
    /* margin: 10px 0px; */
    color: var(--font-white);
    font-size: 14px;
}

.coming-soon .footer-heading {
    font-size: 20px;
    line-height: 24px;
    color: #fff;
}

.coming-soon .footer-social-list {
    margin-top: 20px;
}

.coming-soon .footer-social-list li {
    display: inline-block;
    margin-right: 20px;
}

.coming-soon .footer-social-list li a {
    display: inline-block;
    color: #fff;
}

.error-page {
    height: calc(100vh - 1px);
    display: inline-block;
    width: 100%;
}

.error-page-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-page-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.error-page-content h1 {
    font-size: 120px;
    color: var(--theme-color-3);
}

.error-page-content h3 {
    font-size: 40px;
}

.error-page-content p {
    font-size: 20px;
    margin: 20px 0px;
}

.faq .accordion-item {
    margin-bottom: 20px;
    border: transparent;
}

.faq .accordion-button {
    border: transparent;
}

.faq .accordion-button {
    border-radius: 10px !important;
    background-color: var(--font-white);
    font-family: 'Jost-Medium';
    font-size: 16px;
    min-height: 75px;
}

.faq .accordion-button:not(.collapsed) {
    background-color: var(--font-white);
    box-shadow: none;
}

.faq .accordion-button span {
    margin-right: 10px;
}

.faq .accordion-body p span {
    margin-right: 10px;
}

.error-msg-contact {
    display: none;
    transition: ease-out 0.3s;
    opacity: 0;
}

.error-msg-contact-display {
    display: block;
    transition: ease-out 0.3s;
    opacity: 1;
    position: absolute;
    bottom: -8px;
    font-size: 10px;
    left: 0;
    margin: 0;
    line-height: 0;
    color: red;
}

.success-msg-contact {
    display: none;
    transition: ease-out 0.3s;
}

.success-msg-contact-display {
    position: absolute;
    display: block;
    transition: ease-out 0.3s;
    padding: 13px;
    background: var(--theme-color-2);
    font-size: 14px;
    /* border-radius: 5px; */
    z-index: 10;
    bottom: 0;
    left: 50%;
    color: #fff;
    width: 265px;
    border-radius: 30px;
    top: 50%;
    transform: translate(-50%, -50%);
}

.success-msg-contact-display p {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
}

.check-success-icon {
    padding: 10px 13px;
    color: #fff;
    background-color: var(--theme-color-3);
    border-radius: 50%;
    min-width: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    margin: 0;
    margin-bottom: 20px;
}

.success-msg p,
.success-msg-display p {
    margin-bottom: 0;
}

.error-msg p,
.error-msg-display p {
    margin-bottom: 0;
}

#backTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--theme-color-1);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 18px;
}

#backTop:hover {
    background-color: var(--theme-color-1);
}

#loading {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: block;
    /* opacity: 0.7; */
    background-color: #fff;
    z-index: 1001;
    text-align: center;
}

#loading-image {
    position: absolute;
    top: 40%;
    z-index: 999;
    transform: translate(-50%);
    background-color: #fff;
    display: inline-block;
}

/* header */
.auth-link {
    color: var(--heading-color);
}

.navbar {
    padding-top: 12px;
    padding-bottom: 12px;
    background-color: transparent;
    position: absolute;
    width: 100%;
    z-index: 999;
    display: inline-block;
}

.navbar-brand img {
    width: 135px;
}

.nav-link {
    padding: 8px 16px !important;
    height: 100%;
    color: var(--font-color) !important;
}

.nav-item.dropdown .nav-link::after {
    font-family: Fontawesome;
    content: '\f067';
    margin-left: 2px;
    font-size: 8px;
}

.navbar.fixed-top {
    position: fixed;
    background-color: var(--font-white);
}

.dropdown-menu {
    border-radius: 10px;
    border: transparent;
}

.dropdown-menu .dropdown-item {
    padding: 10px 15px;
    font-size: 14px;
    color: var(--font-color);
}

.dropdown-item:hover {
    background-color: var(--theme-color-7);
    color: var(--theme-color-2);
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--theme-color-7);
    color: var(--theme-color-2);
}

/* the slides */
.slick-slide {
    margin: 0 20px;
}

/* the parent */
.slick-list {
    margin: 0 -20px;
}

.section {
    width: 100%;
    position: relative;
    padding: 4rem 0;
}

.section-heading-wrapper {
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.section-small-heading {
    font-size: 16px;
    margin-bottom: 20px;
    margin-top: 15px;
    color: var(--font-color);
    text-transform: uppercase;
    text-align: center;
}

.section-heading {
    font-size: 36px;
    margin-bottom: 20px;
    margin-top: 15px;
    text-align: center;
}

.section-description {
    text-align: center;
}

.faq {
    padding: 4rem 0;
    background-color: var(--theme-color-7);
}

.faq .accordion-button::after {
    background-image: none;
    position: relative;
    content: '\f067';
    font-family: 'Fontawesome';
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    opacity: 0.8;
}

.faq .accordion-button:not(.collapsed)::after {
    content: '\f068';
}

.faq .accordion-button:focus {
    box-shadow: none;
}

.faq-container {
    width: 100%;
    position: relative;
    display: inline-block;
}

.faq-container .accordion {
    width: 100%;
    float: left;
}

.faq-container .accordion .accordion-item {
    width: 48%;
    float: left;
    margin: 0px 9px;
    margin-bottom: 20px;
}

.nav-link:focus,
.nav-link:hover {
    color: var(--theme-color-2);
}

.page-full {
    width: 100%;
    height: 100vh;
    position: relative;
    display: inline-block;
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
}

.page-full-inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.error-inner h2 {
    font-size: 150px;
    /* margin-bottom: 20px; */
    color: var(--theme-color-4);
}

.error-inner h4 {
    font-size: 40px;
    margin-bottom: 20px;
}

.error-inner p {
    margin-bottom: 20px;
}

.error-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* home */

.main-content-wrapper {
    width: 100%;
    position: relative;
    display: inline-block;
}

.banner-container {
    width: 100%;
    position: relative;
    height: 590px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding-top: 60px;
}

.banner-wrapper h1 {
    font-size: 48px;
    line-height: 60px;
    text-align: left;
    margin-bottom: 30px;
}

.banner-wrapper h1 span {
    color: var(--theme-color-3);
}

.banner-wrapper p {
    text-align: left;
}

.banner-btns {
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 30px;
}

.banner-trust-logos {
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 3rem;
}

.banner-trust-logos p {
    margin-bottom: 10px;
}

.bannerlogos {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
}

.bannerlogos img {
    height: 25px;
    object-fit: contain;
}

.banner-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section.features{
    overflow: hidden;
}

.carosel.features {
    position: relative;
    width: 100%;
    min-height: 250px;
}

.features .slick-slide {
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.5;
    margin: 0px 10px;
}

.features .slick-center {
    opacity: 1;
}

.features .slick-slide .feature-card{  
    min-height: 180px;
}

.features .slick-center .feature-card{
    min-height: 250px;
}

.features .slick-list{
    overflow: initial;
}

.features .slick-track{
    display: flex;
    align-items: center;
    justify-content: center;
}

.features .slick-dots{
    bottom: -45px;
}

.features .feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.features .feature-icon {
    font-size: 28px;
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color-7);
}

.feature-heading {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
    color: var(--heading-color);
}

.feature-description {
    font-size: 14px;
    color: var(--font-color);
}

.service-card{
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-align: lett;
    gap: 15px;
}

.service-icon{
    width: 60px;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 12px;
}

.service-icon.sicon1{
    background-color: var(--theme-color-1);
}

.service-icon.sicon2{
    background-color: var(--theme-color-2);
}

.service-icon.sicon3{
    background-color: var(--theme-color-4);
}

.service-icon.sicon4{
    background-color: var(--theme-color-5);
}

.service-card h3{
    font-size: 20px;
}

.achievements{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 2.5rem 0rem;
}

.achievements-item h3{
    font-size: 20px;
    color: var(--theme-color-5);
}

.partners-image-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card{
    width: 100%;
    position: relative;
    display: inline-block;
    background-color: var(--font-white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testi-author{
    display: flex;
    align-items: center;
    gap: 15px;
}

.testi-author img{
    width: 35px;
    height: 35px;
    min-width: 35px;
    border-radius: 50%;
}

.testi-author h3{
    font-size: 16px;
}

.testistar{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.testistar i{
    color: #fdb611;
}

.testimonial-wrapper::after{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    display: inline-block;
    width: 100%;
    height: 365px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    transform: translate(-50%, -50%);
}

.support{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
}

.contact-content-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
}

.contact-content-wrapper img{
    width: 100%;
    height: 420px;
    border-radius: 12px;
    object-fit: cover;
}

.contact-content-wrapper::after{
    content: '';
    z-index: 10;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    border-radius: 12px;
}

.contact-content-wrapper p{
    text-align: left;
    color: var(--font-white);
}

.contact-list-item a{
    color: var(--font-white) !important;
}

.contact-list-item h3{
    color: var(--font-white) !important;
}

.contact-layer{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 2rem;
    z-index: 11;
}

.contact-lists{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 25px;
}

.contact-list-item{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-list-item span{
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--theme-color-5);
    color: var(--font-white);
    margin-right: 15px;
    background-color: var(--theme-color-5);
    font-size: 24px;
}

.contact-list-item div h3{
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--heading-color);
}

.contact-list-item div a{
    text-decoration: none;
    color: var(--font-color);
}

.contact-form-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 2rem;
    border-radius: 12px;
    background-color: var(--font-white);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.form-input{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 12px 15px;
    background-color: #f4f4f4;
    border-radius: 6px;
    border: none;
}

.blog-card{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 20px;
    border-radius: 12px;
    background-color: var(--font-white);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.blogImg img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blogcontent{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 20px;
}

.blogcontent span{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    color: var(--theme-color-2);
}

.blog-link{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.blog-link h3{
    font-size: 18px;
}

.blogauthor{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.authorInfo h4{
    font-size: 14px;
}

footer{
    background-color: #051311;
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 0;
    z-index: 10;
}
footer ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
footer a {
    color: #ffffff;
}
.footer-about{
    width: 100%;
    position: relative;
    display: inline-block;
}

.footer-about img{
    width: 180px;
}

.footer-about p{
    color: var(--font-white);
    margin-bottom: 10px;
}

.footer-about p:last-child{
    margin-top: 2rem;
}

.footer-quick-links{
    position: relative;
    width: 100%;
    display: inline-block;
}

.footer-heading{
    font-size: 20px;
    color: var(--font-white);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.footer-quick-links ul li{
    margin-bottom: 10px;
}

.footer-quick-links ul li:last-child{
    margin-bottom: 0px;
}

.footer-quick-links ul li a{
    color: var(--font-white);
    transition: ease-in-out 0.3s;
}

.footer-quick-links ul li a:hover{
    color: var(--theme-color-5);
    transition: ease-in-out 0.3s;
}

.footer-quick-links ul li a::before{
    width: 5px;
    height: 5px;
    background-color: var(--font-white);
    border-radius: 50%;
    content: '';
    position: relative;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 2px;
}

.footer-follow ul li{
    display: inline-block;
    margin-right: 10px;
}

.footer-follow ul li a{
    width: 30px;
    height: 30px;
    min-width: 30px;
    background-color: var(--theme-color-5);
    color: var(--font-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: ease-in-out 0.3s;
}

.footer-follow ul li a:hover{
    transition: ease-in-out 0.3s;
    background-color: #dc6718;
}

.footer-contact{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-contact-item{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact-item span{
    width: 30px;
    height: 30px;
    min-width: 30px;
    margin-right: 15px;
    background-color: var(--theme-color-5);
    color: var(--font-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.footer-contact-item span:hover{
    transition: ease-in-out 0.3s;
    background-color: #dc6718;
}

.footer-contact-item a{
    width: auto;
    display: inline-block;
    color: var(--font-white);
}

.footer-bottom-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0px;
    border-top: 1px solid #dddddd;
}

.footer-bottom-wrapper p{
    color: var(--font-white)
}

.footer-layer-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--theme-color-1);
    border-radius: 12px;
}

.footer-layer-content{
    flex: 50% 0;
    padding: 20px;
}

.footer-layer-image{
    flex: 50% 0;
}

.footer-layer-image img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.footer-layer{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 200px;
    z-index: 11;
    margin-bottom: -4.5rem;
}

.footer-layer-content h4{
    font-size: 16px;
    color: var(--font-white);
    margin-bottom: 10px;
}

.footer-layer-content h3{
    font-size: 28px;
    color: var(--font-white);
    margin-bottom: 18px;
}

.about-list{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 2rem;
}

.about-list-item{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.about-list-item:last-child{
    margin-bottom: 0px;
}

.al-icon{
    width: 60px;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--theme-color-5);
    padding: 10px;
}

.al-info h3{
    font-size: 18px;
    margin-bottom: 10px;
}

.page-banner{
    background-color: var(--font-white);
    display: inline-block;
    width: 100%;
    padding: 4rem 0;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-image: url('../images/Abstract-PNG-Image.png'); */
    background-image:linear-gradient(45deg,
              rgba(255,255,255, 0.95),
              rgba(255,255,255, 0.95)), url('../images/Abstract-PNG-Image.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-banner-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-banner-wrapper h3{
    font-size: 24px;
    margin-bottom: 0;
}

.page-banner-wrapper ul li{
    display: inline-block;
}

.page-banner-wrapper ul li::after{
    content: '\f054';
    font-family: 'Fontawesome';
    position: relative;
    display: inline-block;
    margin: 0px 10px;
    font-size: 10px;
}

.page-banner-wrapper ul li:last-child:after{
    display: none;
}