* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: ping;
    src: url("../fonts/alfont_com_AlFont_com_helveticaneueltarabicroman1.ttf");
    font-weight: normal;
}

@font-face {
    font-family: ping;
    src: url("../fonts/alfont_com_AlFont_com_helveticaneueltarabicroman1.ttf");
    font-weight: 700;
}

@font-face {
    font-family: ping;
    src: url("../fonts/alfont_com_AlFont_com_helveticaneueltarabicroman1.ttf");
    font-weight: 900;
}

:root {
    --maincolor: linear-gradient(249.36deg, #37B884 0.32%, #2C4355 100%);
    --textcolor: #2C4355;
    --textsecd: #37B884;
    --textwhite: #ffffff;
    --theme-bg-color: #FAFFFB;
}

/*----------------------      Start Global Item  -----------------------*/
body {
    position: relative;
    background-color: var(--theme-bg-color);
    z-index: 1;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/image/outline-white-logo.png');
    background-repeat: repeat;
    opacity: 0.3;
    z-index: -1;
}

.img-thumbnail {
    background-color: transparent !important;
    border: 0 !important;
    margin: 0;
}

.white-bg {
    background-image: url("../image/white-bg.png");
    background-size: cover;
}

a {
    text-decoration: none !important;
    color: #2C4355 !important;
}

body {
    font-family: "ping", serif;
    overflow-x: hidden;
}

section {
    padding: 100px 0;
    margin: 0 28px;
}

section h3 {
    margin-bottom: 60px;
    font-size: 34px;
    color: white;
    text-align: center;
}

a {
    font-family: "ping", serif;
}

p {
    font-size: 16px;
}


span {
    color: var(--textsecd) !important;
}

ul {
    margin: 0 !important;
    padding-right: 10px;
    text-decoration: none;
}

li {
    text-decoration: none;
    list-style: none;
    color: #2C4355;
    font-size: 16px;
}

h5 {
    color: var(--textcolor);
    font-size: 20px;
}

.btn-secondary ,
.btn-secondary:hover {
    border-radius: 8px;
    background: white;
    color: #2C4355 !important;
    padding: 12px 32px;
    border: 0;
    font-size: 16px;
}

.btn-primary {
    border-radius: 8px;
    background: linear-gradient(249deg, #2D9B50 0.32%, #028072 100%);
    color: white !important;
    padding: 12px 24px;
    border: 0;
    font-size: 16px;
}

.btn-primary-footer {
    border-radius: 8px;
    background: linear-gradient(249deg, #2D9B50 0.32%, #028072 100%);
    color: white !important;
    padding: 8px 16px;
    border: 0;
    font-size: 16px;
}

.loader {
    position: fixed;
    inset: 0 0 0 0;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999999;
}

/*----------------------       End Global Item    -----------------------*/
/*----------------------      Start Nav Area    -----------------------*/
nav {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-bg-color);
    box-shadow: 0 3px 50px var(--theme-bg-color);
}

nav img {
    max-width: 100px;
}

nav ul li {
    margin: 0 20px;
}
nav a{
    font-size: 17px;
    font-weight: 400;
}

/*----------------------      End Nav Area    -----------------------*/

/*----------------------      Start Hero Area    -----------------------*/
.hero {
    padding: 100px 0;
    min-height: calc(100vh - 150px);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 20px;
}

.hero h1 {
    font-size: 40px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    font-weight: 400;
}

.hero h1, .hero p {
    color: var(--textwhite);
}

.hero .d-flex {
    margin-top: 20px;
}

.hero .btn {
    text-align: center;
    width: 140px;
}

.hero .chevron {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px;
}

.hero .chevron img {
    width: 24px;
}

.hero .bump {
    position: absolute;
    bottom: -2px;
    right: 50%;
    transform: translateX(50%);
}

/*----------------------       End Hero Area    -----------------------*/


/*----------------------      Start About Us   -----------------------*/
.about {
    padding: 100px 0;
}

.about h3 {
    font-size: 34px;
    color: #3B648D;
    font-weight: 500;
    text-align: right;
}

.about h3 span {
    background: linear-gradient(249deg, #55C378 0.32%, #169486 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about h4 {
    color: #2C4355;
    font-size: 22px;
    font-weight: 600;
}

@keyframes oscillate {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(5px);
    }
    50% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes slideOutLeft {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-100px);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.quote-container{
    overflow: hidden;
}

.quote-div {
    position: relative;
    width: 100%;
}

.oscillate {
    animation: oscillate 0.7s ease-in-out;
}

.slide-out-left {
    animation: slideOutLeft 1s ease-in-out forwards;
}

.slide-in-right {
    animation: slideInRight 1s ease-in-out forwards;
}
.quote-div h4{
    color: #2C4355 !important;
    font-weight: 500;
}

    /*----------------------       End About Us    -----------------------*/

/*----------------------      Start    -----------------------*/
.services {
    padding: 100px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    display: flex;
}

.services .services-wrapper {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.services .box {
    padding: 20px;
    background: var(--textwhite);
    border-radius: 8px;
    text-align: center;
    width: 12rem;
}

.services .box img {
    max-width: 48px;
}

.services h4 {
    font-size: 16px !important;
    color: #2C4355;
}
.services .box span{
    color: #2C4355 !important;
}
/*----------------------       End    -----------------------*/

/*----------------------      Start Fields  -----------------------*/

.fields h4 {
    font-size: 20px !important;
    color: #2C4355;
}

.fields .fields-wrapper {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

/*----------------------       End Fields   -----------------------*/

/*----------------------      Start    -----------------------*/
.client {
    padding: 100px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
}

.client .clientcont {
    background: url(../image/bgfact.png);
    background-repeat: no-repeat;
    background-size: 80% 100%;
    background-position: center;
    padding: 25px 0;
    align-content: center;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
}
.client .element img{
    max-height: 150px;
    max-width: 150px;

}

    /*----------------------       End    -----------------------*/

/*----------------------      Start    -----------------------*/
.why .why-wrapper {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.why, .fields {
    padding: 100px 0;
    display: flex;
    text-align: center;

}

.why h3, .fields h3 {
    color: var(--textcolor);
}

.why h4, .fields h4 {
    font-size: 24px;
    color: #2C4355;
}

.why p {
    font-size: 16px;
    color: #2C4355;
}

.why .icon, .fields .icon {
    width: 55px;
    height: 55px;
    margin: auto;
    margin-bottom: 15px;
    border-radius: 50%;
    background: var(--maincolor);
    display: flex;
    justify-content: center;
    align-items: center;
}

.why .box, .fields .box {
    padding: 40px 20px !important;
    border: 1px solid var(--textsecd);
    border-radius: 8px;
    text-align: center;
    background: #FFFFFF;
}

.fields .box {
    width: 12rem;
}

.why .box {
    width: 16rem;
}


/*----------------------       End    -----------------------*/

/*----------------------      Start  Facts  -----------------------*/
.facts {
    padding: 100px 0;
    background-image: url(../image/bgfactbig.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    border-radius: 20px;
}

.facts .facts-wrapper {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.facts .factcont {
    background: url(../image/bgfact.png);
    background-repeat: no-repeat;
    background-size: 75% 100%;
    padding: 25px 0;
    align-content: center;
    text-align: center;
    background-position: center;
    width: 20rem;
}

.facts f4 {
    font-size: 34px;
}


/*----------------------       End  Facts  -----------------------*/

/*----------------------      Start Footer    -----------------------*/
footer {
    padding: 130px 0 70px 0;
}
footer h4{
    font-weight: 600 !important;
    margin-bottom: 12px;
    color: #3B648D !important;
}

footer p {
    padding-left: 40px;
    padding-right: 10px;
}

footer li:hover a {
    color: #37B884;
}

footer .social {
    display: flex;
}
footer .social img{
    max-width: 48px;
}

/*----------------------       End Footer     -----------------------*/


/*----------------------      Start Rights     -----------------------*/
.rights {
    border-radius: 12px;
    background: linear-gradient(249deg, #37B884 0.32%, #2C4355 100%);
    backdrop-filter: blur(82px);
    padding: 12px 0;
}

.rights p {
    margin: 0;
    color: var(--textwhite);
}

.banner-heading {
    min-height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem 0;
}

.rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 90%;
    z-index: -1;
}

.services-list { 
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 3rem 0;
}

.service-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: .5rem;
    background-color: #fff;
    border-radius: 14px;
    box-shadow: 0px 4px 4px 0px rgba(55, 184, 132, 0.05);
    padding: 1rem;
    font-weight: 500;
}

.service-item:hover {
    background-color: var(--theme-bg-color);
}

.service-item img {
    max-width: 48px;
    max-height: 48px;
}

.services-banner{
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 4rem 0;
    min-height: 250px;
}

.text-sm {
    font-size: 14px;
}

.btn-theme {
    height: 43px;
    background: linear-gradient(249.36deg, rgb(45 155 80) 0.32%, rgb(2 128 114) 100%);
    border-radius: 8px;
    border: none;
    color: #fff;
}

.btn-theme:hover {
    background: linear-gradient(249.36deg, rgba(45, 155, 80, 0.8) 0.32%, rgba(2, 128, 114, 0.8) 100%);
}

.btn-theme-outline {
    height: 43px;
    background: transparent;
    border-radius: 8px;
    border: 1px solid rgba(55, 184, 132, 1);
    color: #fff;
}

.btn-theme-outline:hover {
    background: linear-gradient(249.36deg, rgba(45, 155, 80, 0.1) 0.32%, rgba(2, 128, 114, 0.1) 100%);
}

.service-album {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.album-image-wrapper {
    height: 100%;
    height: 245px;
}

.service-album .album-image {
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    flex-shrink: 0;
    height: 100%;
    width: 350px;
}

.posts-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}

.post-item .post-image {
    background-position: center;
    background-size: cover;
    background-color: rgba(235, 248, 243, 1);
    border-radius: 20px;
    height: 275px;
    position: relative;
}

.post-item .post-image .post-logo {
    position: absolute;
    width: 25%;
    bottom: 1rem;
    left: 1rem;
}

.post-item .post-image .post-link {
    position: absolute;
    background-color: rgba(41, 138, 99, 1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 1rem;
    right: 1rem;
}

.page-item.active .page-link {
    background-color: rgba(41, 138, 99, 1);
    border-color: rgba(41, 138, 99, 1);
    color: #fff !important;
}

.page-item:not(.active) .page-link {
    border-color: rgba(235, 248, 243, 1);
}

.page-link:hover {
    background-color: rgba(235, 248, 243, 1);
}

.page-link:focus {
    box-shadow: 0 0 0 0.2rem rgba(41, 138, 99, 1);
}

.page-link {
    border-radius: 4px;
}
/*----------------------       End Rights     -----------------------*/
/*----------------------       Start Responsive     -----------------------*/
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1440px;
    }
}

@media (min-width: 992px) {
    .banner-heading {
        min-height: 280px;
    }

    .services-list {
        grid-template-columns: repeat(4, 1fr);
    }

    .service-item {
        padding: 1.5rem 1rem;
    }

    .services-end-banner {
        height: 280px;
    }

    .service-album {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .album-image-wrapper {
        display: flex;
    }

    .album-image-wrapper:not(:nth-child(3n+1)):not(:nth-child(3n+3)) {
        justify-content: center;
    }

    .album-image-wrapper:nth-child(3n+1) {
        justify-content: start;
    }

    .album-image-wrapper:nth-child(3n+3) {
        margin-left: 0;
        justify-content: end;
    }

    .service-album .album-image {
        width: 100%;
        max-width: 380px;
    }

    .posts-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 75px 0;
        margin: 0 8px;
    }

    .btn-secondary {
        border-radius: 8px;
        background: white;
        color: #2C4355 !important;
        padding: 12px 24px;
        border: 0;
        font-size: 14px;
    }

    .btn-primary {
        border-radius: 8px;
        background: linear-gradient(249deg, #2D9B50 0.32%, #028072 100%);
        color: white !important;
        padding: 12px 24px;
        border: 0;
        font-size: 14px;
    }

    .nav-mini {
        padding: 24px 0;
        position: relative;
        z-index: 123;
    }

    .nav-mini img {
        position: relative;
        z-index: 123;
    }

    .nav-mini ul {
        text-align: center;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .nav-mini ul li {
        margin: 12px 0;
    }

    .nav-mini ul li a {
        font-size: 18px;
    }

    .burger-menu {
        margin-right: auto;
        width: 40px;
        display: block;
        transition: all 0.3s;
        cursor: pointer;
        height: 40px;
        position: relative;
        z-index: 123;
    }

    .burger-menu .bar {
        transition: all 0.3s;
        height: 4px;
        width: 100%;
        display: block;
        border-radius: 24px;
        background-color: var(--textsecd);
    }

    .burger-menu .bar:nth-of-type(2) {
        margin: 6px 0;
    }

    .burger-menu--closed {
        transition-delay: 0.3s;
    }

    .burger-menu--closed .bar {
        float: left;
    }

    .burger-menu--closed .bar:nth-of-type(2) {
        width: 75%;
        transition-property: margin, height, width;
        transition-delay: 0.3s, 0.3s, 0s;
    }

    .burger-menu--closed .bar:nth-of-type(3) {
        width: 50%;
    }

    .burger-menu--closed:hover .bar:nth-of-type(2) {
        width: 100%;
    }

    .burger-menu--closed:hover .bar:nth-of-type(3) {
        width: 100%;
    }

    .burger-menu--opened {
        padding-top: 12px;
    }

    .burger-menu--opened .bar:nth-of-type(1) {
        transform: rotate(45deg);
        transition-delay: 0.3s;
        height: 4px;
    }

    .burger-menu--opened .bar:nth-of-type(2) {
        opacity: 0;
        height: 0;
        margin: -3px;
    }

    .burger-menu--opened .bar:nth-of-type(3) {
        transform: rotate(-45deg);
        transition-delay: 0.3s;
        height: 4px;
    }

    .mobile-menu {
        position: fixed;
        inset: 0 0 0 0;
        background: white;
        height: 0vh;
        overflow: hidden;
        transition: .3s ease-in-out;
    }

    .mobile-menu.open {
        height: 100vh;

    }

    .hero h1 {
        font-size: 20px;
        font-weight: 700;
    }

    .hero p {
        font-size: 14px;
        font-weight: 400;
    }

    .about-img {
        margin-bottom: 40px;
    }

    .about h3 {
        font-size: 24px;
        color: #3B648D;
        font-weight: 700;
        text-align: right;
    }

    .services {
        padding: 75px 0;
        background-size: cover;
        background-position: center;
        margin: 0;
    }

    .services .box {
        padding: 12px 4px;
        width: calc(50% - .75rem);
    }

    .services h4 {
        font-size: 14px;
    }

    .fields .box {
        padding: 12px 4px !important;
        width: calc(50% - .75rem);
    }

    .fields .box:last-child:nth-child(odd) {
        flex-grow: 1;
    }

    .fields h4 {
        font-size: 14px !important;
    }

    .why .box {
        padding: 12px 20px !important;
        border: 1px solid var(--textsecd);
        border-radius: 4px;
        text-align: center;
        background: #FFFFFF;
        margin-bottom: 8px;
        width: 100%;
    }

    .why .box h4 {
        font-size: 18px;
    }

    .why .box p {
        font-size: 14px;
    }
    .client,
    .facts{
        padding: 75px 0;
        display: flex;
        margin: 0!important;
        border-radius: 0;
    }
    .facts .factcont {
        background: url(../image/bgfact.png);
        background-repeat: no-repeat;
        background-size: 100% 100%;
        padding: 25px 0;
        align-content: center;
        text-align: center;
        background-position: center;
        margin-bottom: 8px;
        width: calc(50% - .75rem);
    }

    .facts .factcont:last-child:nth-child(odd) {
        flex-grow: 1;
    }

    footer{
        padding: 75px 0 75px 0;
    }
    footer h4{
        font-size: 18px !important;
        font-weight: 600 !important;
        color: #3B648D !important;
    }
    footer p {
        padding-left: 10px;
        padding-right: 4px;
    }
    footer .social img{
        max-width: 36px;
    }
}

/*----------------------       End Responsive     -----------------------*/
