@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;500;600;700&display=swap');

/* global styles  */
:root {
    --main-green: #1AD079;
    --main-blue: #07133B;

}

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

ul {
    margin: 0;
    padding-left: 0;
}


body {
    font-family: 'Alexandria', sans-serif;
    overflow: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

p {

    margin-bottom: 0;
    text-align: justify;
}

li,
span {
    text-align: justify;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}

.primary-green {
    color: var(--main-green);
}

.primary-blue {
    color: var(--main-blue);
}

@media screen and (min-width:991px) {
    .container {
        padding: 0 3.65rem;
    }

}

.fixed {
    position: fixed !important;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999999999999;
}

/* start preloader style  */
.loading {
    transition: 0.3s all;
    opacity: 1;
    height: 100vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 99999999999999999999999999;
    width: 100%;
    overflow: hidden;
}

.loading svg {
    opacity: 0;
    animation: change-opacity 3s ease forwards;
}

@keyframes change-opacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.progress {
    margin-top: 70px;
    margin-left: auto;
    margin-right: auto;
    height: 10px;
    width: 300px;
    border: 1px solid var(--main-blue);
    border-radius: 15px;
    position: relative;
}

.progress .color {
    position: absolute;
    background-color: var(--main-blue);
    width: 0px;
    height: 10px;
    border-radius: 15px;
    animation: progress 3s linear forwards;
}

@keyframes progress {
    0% {
        width: 0%;
    }

    25% {
        width: 50%;
    }

    50% {
        width: 75%;
    }

    75% {
        width: 85%;
    }

    100% {
        width: 100%;
    }
}



/* end global syles */
/* start navbar  */
nav {
    box-shadow: 0px 4px 7px 0px #0000000D;
    position: sticky!important;
    left: 0;
    top: 0;
    z-index: 999999;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, position 0.3s ease;
}

nav .navbar-brand {
    width: 177px;
}

nav .nav-item {
    padding: 25px 12px;
}

nav .nav-item .nav-link,
nav .login {
    color: var(--main-blue);
    font-size: 0.8375rem;
    transition: 0.3s all;
}

nav .nav-item .nav-link.active,
nav  .nav-item:hover .nav-link,
nav .login:hover {
    color: var(--main-green);
}
nav .nav-item.dropdown:hover .dropdown-menu{
    display: block;
}

nav .dropdown-item {
    color: var(--main-blue);
    font-size: 0.8375rem;
    transition: 0.3s all;
}

nav .dropdown-item:hover {
    color: var(--main-green);
}

.dropdown-item.active, .dropdown-item:active{
    background-color: unset;
    color: var(--main-green);
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    background-color: white;
    right: 0;
    left: unset;
    top: 100%;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: white;
}

@media(max-width: 991px) {

    li.nav-item:not(.nav-item:last-child) {
        border-bottom: none;
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        border: none;
        background-color: #cccccc66;
        border-radius: 0;
        margin-right: -12px;
        width: calc(100% + 24px);
        position: relative;
        top: 4px;

    }

    .navbar-expand-lg .navbar-nav .dropdown-menu:hover {
        background-color: #cccccc66;
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu hr {
        display: none;
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu li a {
        color: var(--main-blue);
    }

    .dropdown-item:focus,
    .dropdown-item:hover {
        background-color: unset;
    }
    li.nav-item.dropdown.header-profile {
        margin-top: 0;
        padding-right: 12px !important;
        border: none;
      }
    
       .header-right .header-profile>a.nav-link {
        display: none;
      }
    
      .header-right .header-profile .dropdown-menu {
        display: flex;
        flex-direction: column;
        background-color: transparent;
        padding: 0 !important;
        /* margin-right: 3px; */
        margin-top: -4px;
      }
    
      .header-right .header-profile .dropdown-menu:hover {
        background-color: unset;
    
      }
    
      svg#icon-user1,
      svg#icon-logout {
        display: none;
      }
    
      .header-right .header-profile .dropdown-item {
        padding: 12px !important;
        border: 0.5px solid rgba(119, 119, 119, 0.2);
        width: 100%;
      }
    
      li.nav-item.dropdown.header-profile {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        /* margin-right: 15px; */
      }
      .header-right .header-profile .dropdown-item:first-child{
        border-top: none;
      }
      .header-right .header-profile .dropdown-item:last-child{
        border-top: none;
      }
}

@media (max-width: 768px) {
    li.nav-item.dropdown.header-profile {
      /* margin-right: 15px; */
      border: none;
    }
  
    .header-right .header-profile .dropdown-menu {
      /* margin-right: 3px; */
  
      min-width: calc(100% + 12px) !important;
    }
    
  }
nav .login {
    margin-left: 15px;
}

nav .register {
    color: white;
    font-size: 0.8375rem;
    background-color: var(--main-green);
    padding: 8px 24px;
    border-radius: 50rem;
    transition: 0.3s all;
}

nav .register:hover {
    background-color: var(--main-blue);
}

/* end navbar  */
/* start header  */
header {
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}

@media(min-width:991px) {
    header .col-lg-6:first-child {
        width: 57%;
    }

    header .col-lg-6:last-child {
        width: 43%;
    }
}

header:before {
    content: "";
    position: absolute;
    width: 480px;
    height: 500px;
    right: 0;
    top: 0;
    background: radial-gradient(79.66% 84.43% at 79.66% 15.57%, rgba(26, 208, 121, 0.235) 0%, rgba(255, 255, 255, 0) 100%);

}

header h1 {
    line-height: 1.8;
    font-weight: 600;
    font-size: 2.5rem;
    padding-bottom: 35px;
    position: relative;
}

header h1:after {
    position: absolute;
    content: "";
    width: 88%;
    bottom: 0;
    right: 0;
    height: 1px;
    background-color: black;
}

header p:not(header .left-content p) {
    padding-top: 35px;
    font-weight: 300;
    line-height: 1.8;
    width: 87%;
}

header p i {
    margin-top: 5px;
    margin-left: 8px;
    font-size: 18px;
}

header a {
    color: white;
    background-color: var(--main-green);
    padding: 16px 80px;
    margin-top: 50px;
    width: fit-content;
    text-align: center;
    border-radius: 50rem;
    transition: 0.3s background-color;
}

header a:hover {
    background-color: var(--main-blue);
}

header .left-content {
    border-radius: 28px;
    background-color: white;
    box-shadow: 0px 4px 37px 0px #0000001A;
    position: relative;

}

header .left-content .top {
    background-color: #F9F9F9;
    padding: 15px 30px;

}

header .left-content .right-icon {
    position: absolute;
    right: -32px;
    top: 50%;
    content: "";
    width: 64px;
    height: 64px;
    border-radius: 11px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 11px 0px #0000001A;
    z-index: 22;
}

header .left-content .right-icon:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border-radius: 11px;
    border-left: 4px solid var(--main-blue);
    border-bottom: 4px solid var(--main-blue);

}

header .left-content .right-icon .content {
    width: 35px;
    height: 30px;
    background-color: #F1F2F2;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

header .left-content .right-icon .content:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 6px;
    top: 0;
    left: 0;
    background: linear-gradient(to right, var(--main-green) 0%, var(--main-green) 33%, var(--main-green) 33%, var(--main-green) 66%, var(--main-blue) 66%, var(--main-blue) 100%);
}

header .left-content .right-icon .content i {
    font-size: 24px;
    position: relative;
    top: 8px;
}

header .left-content .top img {
    width: 90px;
}

header .left-content .top .dots div {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    margin-right: 4px;
}

header .left-content .top .dots div.green {
    background-color: #39BD46;
}

header .left-content .top .dots div.yellow {
    background-color: #FDCC0D;
}

header .left-content .top .dots div.red {
    background-color: #FF283F;
}

header .left-content .middle p {
    padding: 15px 30px 200px 30px;
    font-weight: 300;
    font-size: 0.75rem;
    line-height: 1.8;
}

header .left-content .middle p span {
    position: relative;
    background-color: #80D68D;
    padding: 4px 0;

}

header .left-content .middle p span:after {
    /*
    width: 80px;
    height: 28px;
    content: "";
    position: absolute;
    left: 20px;
    bottom: -40px;
    background-image: url(../images/home/header-span-frame.webp);
    background-size: cover;
    */
}

header .bottom {
    padding: 15px 30px;
    display: flex;
    align-items: center;
    border-top: 2.4px solid #C5C5C7;
}

header .bottom i {
    color: #808184;
    font-size: 22px;
    margin-left: 10px;
}

header .bottom i+img {
    width: 12px;
    margin-left: 30px;

}

header .bottom i+img+img {
    width: 84px;
}

header .left-content .header-overlay-image {
    width: 237px;
    position: absolute;
    left: 5%;
    bottom: -10%;
}

/* end header  */





.loading-page {
    position: absolute;
    top: 0;
    left: 0;
    background: white;
    height: 100%;
    width: 100%;
    display: flex;
    /* flex-direction: column; */
    /* gap: 1rem; */
    align-items: center;
    justify-content: center;
    color: var(--main-blue);
    z-index: 999999;
}

.loading-page svg {
    height: 500px;
    width: 500px;
    opacity: 0;
    animation: preloader 3s ease forwards;
    /* stroke: var(--main-blue); */
    /* fill-opacity: 0; */
    /* fill: var(--main-blue); */
    /* stroke-dasharray: 4500; */
    /* stroke-width: 1px;  */
    /* animation: draw 30s ease forwards, fill-opacity 5s ease forwards; */
}

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

    100% {
        opacity: 1;
    }
}

@keyframes draw {
    0% {
        fill-opacity: 0;
        stroke-dashoffset: 4500;
    }

    100% {
        fill-opacity: 1;
        stroke-dashoffset: 0;
    }
}

@keyframes fill-opacity {
    0% {
        fill-opacity: 0;
    }

    100% {
        fill-opacity: 1;
    }
}

/* start search section  */
.search {
    padding: 20px 0 110px 0;
    overflow: hidden;

}

.search .container {
    /* box-shadow: 0px 11px 98px 0px #00000014; */

}

.search form {
    display: flex;
    align-items: center;
    padding: 70px;
    border-radius: 28px;
    box-shadow: 0px 11px 40px 0px #00000014;

}

.search input {
    padding: 25px 30px 25px 20px;
    border-radius: 50rem;
    width: 80%;
    margin-left: 25px;
    border: 1px solid #CFCFCF;
    overflow: visible;
    caret-color: var(--main-blue);
}

.search input:focus {
    outline: none;
}

.search input::placeholder {
    overflow: unset;
    color: #CFCFCF;

}

.search a {
    padding: 25px 90px;
    color: white;
    background-color: var(--main-green);
    border-radius: 50rem;
    font-size: 1.25rem;
    font-weight: 500;
    transition: 0.3s all;
}

.search a:hover {
    background-color: var(--main-blue);
}

/* end search section  */
/* start our sercives */
.our-services {
    padding: 30px 0 90px;
    overflow: hidden;

}

.our-services .title h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.our-services .title p {
    font-weight: 300;
    width: 70%;
    line-height: 2;
    margin-bottom: 70px;
}

.our-services .nav-tabs .nav-link {
    border: none;
    display: flex;
    align-items: center;
    padding: 0;
    width: 90%;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background-color: transparent;
}

.our-services .col-lg-7 {
    padding-left: 75px;

}

.our-services ul {
    border-left: 0.5px solid #9F9F9F;
    padding-left: 0px;
    border-bottom: none;
    display: block;
}

.our-services li {

    margin-bottom: 20px;
}

.our-services li span {
    padding: 13px 20px;
    background-color: #F1F1F2;
    color: var(--main-blue);
    font-size: 1.1625rem;
    width: 80%;
    border-radius: 50rem;
    transition: 0.3s all;
    font-weight: 400;
    text-align: right;

}

.our-services .img-holder {
    width: 73px;
    height: 73px;
    border-radius: 50%;
    background-color: #F1F1F2;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 30px;
    transition: 0.3s all;
}

.our-services li:first-child svg path {
    fill: var(--main-blue);
}

.our-services .nav-tabs .nav-item.show .nav-link span,
.our-services .nav-tabs .nav-link.active span {
    color: white;
    background-color: var(--main-blue);
    box-shadow: 0px 10px 74px 0px #07133B4D;

}

.our-services .nav-tabs .nav-item.show .nav-link .img-holder,
.our-services .nav-tabs .nav-link.active .img-holder {

    background-color: var(--main-blue);
    box-shadow: 0px 6px 29px 0px #07133B4D;

}

.our-services .nav-tabs .nav-item.show .nav-link svg path,
.our-services .nav-tabs .nav-link.active svg path {
    fill: white
}

.our-services li:hover .img-holder {
    background-color: var(--main-blue);
    box-shadow: 0px 6px 29px 0px #07133B4D;

}

.our-services li:hover span {
    color: white;
    background-color: var(--main-blue);
    box-shadow: 0px 10px 74px 0px #07133B4D;

}

.our-services li svg path {
    transition: 0.3s all;
    fill: var(--main-blue);
}

.our-services li:hover svg path {
    fill: white
}


.our-services .left-content img {
    width: 76px;
}

.our-services .left-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 35px 0 25px;
}

.our-services .left-content p {
    font-weight: 300;
    font-size: 1rem;
    line-height: 2;
    color: #9F9F9F;
}

/* end our sercives */
/* start features  */
.features {
    background-color: var(--main-blue);
    color: white;
    padding: 70px 0 110px;
    overflow: hidden;

}
.features p{
    font-weight: 300;
    line-height: 2;
    width: 80%;
    margin: 40px 0 120px;
    font-size: 1.125rem;
}
@media(max-width: 991px){
.features p{
    width: 100%;
}
}
.features .title {
    position: relative;
    padding-right: 68px;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--main-green);
}

.features .title::before {
    position: absolute;
    content: "";
    height: 2px;
    background-color: white;
    width: 60px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.features h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 40px 0;
}

.features .right-content li {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.features .right-content li span {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.8;
    width: calc(100% - 90px);
}

.features .right-content .img-holder {
    width: 75px;
    height: 75px;
    line-height: 80px;
    margin-left: 0.875rem;
}
.features .right-content img{
    width: 100%;
    
}
.features .col-lg-6:first-child {
    width: 60%;
    padding-left: 50px;
}

.features .col-lg-6:last-child {
    width: 40%;
    margin-right: auto;
}

.features .left-content .img-holder img {
    width: 100%;
}

/* end features  */
/* start quick access  */
.quick-access {
    padding: 110px 0;
    overflow: hidden;

}

.quick-access h2 {
    color: var(--main-blue);
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.quick-access p {
    font-weight: 300;
    line-height: 2;
    margin-bottom: 140px;
}

.quick-access p i {
    margin-top: 5px;
    margin-left: 8px;
    font-size: 18px;
}

.quick-access .row {
    row-gap: 100px;
}

.quick-access .item {
    text-align: center;
    position: relative;
    padding: 30px;
    border-radius: 16px;
    border: 0.5px solid #6F7072;
}

.quick-access .item .icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -40px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--main-green);
    transition: 0.3s all;
}

.quick-access .item h3 {
    font-weight: 500;
    font-size: 1rem;
    margin: 50px auto 35px;
    line-height: 1.8;
}

.quick-access .col-lg-4:nth-child(5) h3 {
    /* margin-top: 23px;
    margin-bottom: 25px;
    line-height: 1.8; */
}

.quick-access .item .search-holder {
    position: relative;
}

.quick-access .item a {
    display: block;
    width: 100%;
    border-radius: 50rem;
    padding: 30px;
    border: 1px solid #6F7072;
    width: 100%;
    text-align: center;
    transition: 0.3s all;
}
.quick-access .item:hover a {
    background-color: var(--main-green);
    border-color: var(--main-green);
}

.quick-access .item .search-placeholder {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #6F7072;
    font-size: 1rem;
    background-color: transparent;
    transition: 0.3s all;
}

.quick-access .item:hover .search-placeholder {
    color: white;
}

.quick-access .item:hover .icon {
    background-color: white;
    border: 0.5px solid #6F7072;
}

.quick-access .item:hover .icon svg path {
    fill: var(--main-green);
}

/* end quick access  */
/* start statistics  */
.statistics {
    padding: 80px 0 140px;
    overflow: hidden;

}

.statistics .img-holder {
    text-align: center;
    position: relative;
}

.statistics .img-holder>img {
    width: 310px;
}

.statistics .img-holder img:nth-child(2),
.statistics .img-holder img:last-child {
    width: 120px;
    height: 150px;
    position: absolute;
}

.statistics .img-holder img:nth-child(2) {
    right: 1rem;
    top: 2rem;
}

.statistics .img-holder img:last-child {
    bottom: 2rem;
    left: 1rem;
}

.statistics .col-lg-7 {
    padding-right: 80px;
}

.statistics .col-lg-7 .row {
    row-gap: 80px;
}

.statistics h2 {
    color: var(--main-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.statistics .item .icon {
    position: relative;
}

.statistics .item .icon:after {
    content: "";
    position: absolute;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--main-green);
    top: 0;
    right: 0;
    z-index: -1;
}

.statistics .item span {
    color: var(--main-blue);
    font-size: 2.5rem;
    display: inline-block;
    font-weight: 500;
    margin-top: 10px;
}

.statistics .item p {
    color: var(--main-green);
    font-weight: 600;
    font-size: 1.25rem;
    text-align: right;
}
@media(max-width: 768px){
.statistics .item p {
    text-align: center;
}
}
/* end statistics  */
/* start testimonials  */
.testimonials {
    padding: 50px 0 110px;
    background: linear-gradient(180deg, rgba(26, 208, 121, 0.63) 0%, rgba(26, 208, 121, 0.449163) 0%, rgba(26, 208, 121, 0) 100%);
    overflow: hidden;
}

.testimonials h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--main-blue);
}

.testimonials p:not(.testimonials .item p) {
    line-height: 2;
    width: 52%;
    margin: 30px auto;
}

.testimonials .testimonials-row {
    row-gap: 30px;
    margin-top: 100px;
}

.custom-space {
    margin-top: -80px;
}

.testimonials .item {
    background-color: white;
    padding: 30px;
    border-radius: 24px;
    height: 313px!important;
}
.testimonials .item .customer-img-holder{
     width: 78px;
    height: 78px;
    margin-left: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

}
.testimonials .item img {
   width: 100%;
   position: relative;
z-index: 2;
border-radius: 50%;

}
.testimonials .item .customer-img-holder:before {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    background-color: transparent;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border-radius: 50%;
    z-index: 1;
    border: 1px solid var(--main-green);
}
.testimonials .item .customer-img-holder:after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: #1AD0791A;
    width: calc(100%);
    height: calc(100%);
    border-radius: 50%;
    z-index: 1;
    border: 20px solid #1AD0791A;
    
}
.testimonials .item .customer-name {
    color: var(--main-green);
    font-weight: 500;
    margin-bottom: 8px;
}

.testimonials .item span {
    color: #9F9F9F;
    font-size: 0.8375rem;
}

.testimonials .item .content {
    margin-top: 15px;
    font-weight: 300;
    line-height: 2;
}

/* end testimonials  */
/* start learn more  */
.learn-more {
    padding: 80px 0 110px;
    background-color: var(--main-blue);
    color: white;
    overflow: hidden;

}

.learn-more .col-lg-6:first-child {
    padding-left: 110px;
}

.learn-more h2 {
    color: var(--main-green);
    font-size: 1.5rem;
    font-weight: 700;
    padding-bottom: 30px;
    border-bottom: 1px solid white;
}

.learn-more p {
    line-height: 2;
    font-weight: 300;
    margin: 30px 0;
}

.learn-more li {
    display: flex;
    align-items: center;
    border-radius: 10px;
    background: linear-gradient(268.1deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    margin-bottom: 12px;
    padding: 10px 15px;
    width: 72%;
    font-weight: 400;
    font-size: 1rem;
    transition: 0.3s margin-right;
}

.learn-more li:hover {
    margin-right: 10px;
}

.learn-more .img-holder {
    width: 47px;
    height: 47px;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #7D95FC;
    margin-left: 16px;
}

.learn-more .img-holder img {
    width: 100%;
}

.learn-more .left-content {
    position: relative;
    z-index: 2;
}

.learn-more .left-content a {
    position: relative;
    z-index: 9;
    display: block;
    width: 100%;
    height: 100%;
}

.learn-more .left-content img {
    position: relative;
    z-index: 3;
}

.learn-more .left-content a:after {
    content: "\f04b";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 34px;
    position: absolute;
    width: 106px;
    height: 106px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    color: var(--main-blue);
    box-shadow: 0px 0px 28px 0px #FFFFFF;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    transition: 0.3s all;
}

.learn-more .left-content a:hover:after {
    color: var(--main-green);
}

.learn-more .left-content:before {
    content: "";
    position: absolute;
    background-color: var(--main-green);
    width: 100%;
    height: 100%;
    left: 1rem;
    top: 1rem;
    border-radius: 42px;
    z-index: 1;
}

.learn-more .video {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    /* background-color: rgba(7, 19, 59,0.9); */
    background-color: rgba(0, 0, 0, 0.9);

    z-index: -99999;
    opacity: 0;
    visibility: hidden;
}

.learn-more .video.active {
    opacity: 1;
    visibility: visible;
    z-index: 999999999999999999;
    display: flex;
}

.learn-more .video .close {
    position: fixed;
    right: 80px;
    top: 80px;
    cursor: pointer;
    font-size: 34px;
    transition: 0.3s all;
}

.learn-more .video .close:hover {
    color: var(--main-green);
}

.learn-more .video iframe {
    width: 60%;
    height: 70%;
}

/* end learn more  */
/* start privacy  */
.privacy {
    padding: 110px 0;
    overflow: hidden;
}

.privacy h2 {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--main-blue);
    text-align: center;
}

.privacy p:not(.privacy .item p) {
    color: #9F9F9F;
    line-height: 2;
    width: 50%;
    margin: 20px auto 80px;
    text-align: center;
}

.privacy .item {
    box-shadow: 0px 12px 46px 0px #0000000F;
    padding: 30px 35px;
    border-radius: 24px;
    text-align: center;
    transition: 0.3s margin-top;
}

.privacy .item:hover {
    margin-top: -10px;
}

.privacy .item .img-holder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--main-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0 auto 30px;
}

.privacy .item .img-holder:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    background-color: #07133B26;
}

.privacy .item .img-holder img {
    width: 55%;
}

.privacy .item p {
    line-height: 2.5;
}

/* end privacy  */
/* start contact  */
.contact {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.contact:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 300px;
    height: 40%;
    z-index: -2;
    background: radial-gradient(94.13% 50% at 5.87% 50%, rgba(26, 208, 121, 0.22) 0%, rgba(26, 208, 121, 0) 100%);
}

.contact:after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -200px;
    width: 300px;
    height: 100%;
    background: radial-gradient(94.13% 50% at 5.87% 50%, rgba(26, 208, 121, 0.22) 0%, rgba(26, 208, 121, 0.00) 100%);
    filter: blur(50.5px);
    z-index: -1;
}

.contact .right-content {
    padding-left: 110px;
}

.contact .right-content h2 {
    font-size: 1.5rem;
    color: var(--main-blue);
    font-weight: 600;
}

.contact .right-content p {
    margin: 15px 0 35px;
    line-height: 2;
    color: #9F9F9F;
    font-weight: 300;
}

.contact .right-content li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact .right-content li i {
    background-color: var(--main-green);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    margin-left: 10px;
}

.contact .right-content li:first-child i {
    background-color: #29A71A;
}

.contact .right-content li a {
    font-size: 1.5rem;
    font-weight: 300;
    color: black;
    transition: 0.3s all;
}

.contact .right-content li:hover a {
    color: var(--main-green);
}

.contact .right-content li:first-child:hover a {
    color: #29A71A;
}

.contact form input,
.contact form select,
.contact form textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 22px 30px;
    border: 1px solid #C9C9C9;
    border-radius: 8px;
    height: auto;
    font-family: Arial, Helvetica, sans-serif;
}
.contact form select{
    font-family: 'Alexandria', sans-serif;

}
.contact form input::placeholder,
.contact form textarea::placeholder {
    overflow: visible;
    color: #C9C9C9;
    font-family: 'Alexandria', sans-serif;

}

.contact form select {
    color: #C9C9C9;
    appearance: none;
    padding-left: 20px;
    background-color: transparent;
    background-image: url(../images/home/arrow-down.webp);
    background-repeat: no-repeat;
    background-position: 15px center;
    /* Adjust the position of the arrow image */
    background-size: 28px 28px;
}

.contact form input:focus,
.contact form select:focus,
.contact form textarea:focus {
    outline: none;
    border-color: var(--main-green);
}

.contact form textarea {
    height: 230px;
}

.contact .submit {
    color: white;
    padding: 15px 100px;
    border-radius: 50rem;
    background-color: var(--main-green);
    margin: 10px auto;
    border: none;
    display: block;
    width: fit-content;
    transition: 0.3s all;
}

.contact .submit:hover {
    background-color: var(--main-blue);
}

/* end contact  */
/* start footer  */
footer {
    padding: 110px 0 0;
    background-color: #FAFAFA;
    overflow: hidden;

}

footer img {
    width: 180px;
    padding-bottom: 15px;
    border-bottom: 1px solid black;
}

footer .item p {
    padding-top: 15px;
    font-size: 0.8375rem;
    font-weight: 300;
    line-height: 1.8;
}

footer .item {
    padding-left: 60px;
}

footer li {
    margin-bottom: 20px;
}

footer li a {
    color: black;
    transition: 0.3s all;
}

footer li a:hover {
    color: var(--main-green);
}

footer li i {
    color: var(--main-green);
    font-size: 18px;
    margin-left: 8px;
}

footer .col-lg-5 {
    padding-right: 80px;
}

footer h4 {
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 20px;
}

footer input {
    padding: 15px 20px 15px;
    border-radius: 50rem;
    width: 100%;
    /* margin-left: 10px; */
    outline: none;
    border: 1px solid var(--main-green);
    font-family: Arial, Helvetica, sans-serif;
}

footer input::placeholder {
    color: #C9C9C9;
    overflow: unset;
    font-family: 'Alexandria', sans-serif;

}

footer button {
    padding: 15px 50px 15px;
    border-radius: 50rem;
    color: white;
    background-color: var(--main-green);
    border: none;
    outline: none;
    display: block;
    transition: 0.3s background-color;
}

footer button:hover {
    background-color: var(--main-blue);
}

footer .footer-icons {
    margin-top: 80px;
    padding-bottom: 15px;
    border-bottom: 0.2px solid black;
}

footer .footer-icons i {
    font-size: 1.325rem;
    color: var(--main-green);
    margin-right: 30px;
    transition: 0.3s color;
}

footer .footer-icons i:hover {
    color: var(--main-blue);
}

footer .footer-bottom {
    padding: 22px 0;
    font-weight: 250;
    color: rgba(0, 0, 0, 0.25);
}

/* end footer  */

.partners {
            background-color: #BABABA21;
            padding: 100px 0
        }

        .partners h2 {
            font-size: 1.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 70px;
        }

        .swiper-wrapper {
            align-items: center;
        }

        .swiper .item img {
            width: 100%;
            filter: grayscale(1);
            transition: 0.3s all;
        }

        .swiper .item:hover img {
            filter: grayscale(0);
        }