@charset "UTF-8";

html {
    overflow-x: hidden;
}

html {
    font-size: 12px;
}

@media screen and (min-width: 200px) {
    html {
        font-size: calc(12px + 5 * (100vw - 200px) / 1240);
    }
}

@media screen and (min-width: 1440px) {
    html {
        font-size: 17px;
    }
}

body {
    direction: rtl;
    font-family: "El Messiri", sans-serif;
    font-optical-sizing: auto;
}

a {
    color: skyblue;
}

*:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(21, 156, 228, 0.4);
}

#layout {
    min-height: 200vh;
}

.btn {
    display: inline-block;
    outline: none;
    font-weight: 700;
    margin: 0 0 0 0.25rem;
    text-decoration: none;
    text-align: center;
    border-radius: 15rem;
    transition: 0.4s;
}

@media screen and (max-width: 768px) {
    .btn {
        padding: 1rem;
    }
}

@media screen and (min-width: 768px) {
    .btn {
        padding: 0.65rem 1rem;
    }
}

.btn-white {
    background-color: #fff;
    border: 1px solid #fff;
    color: #0D2C74 !important;
    fill: #0D2C74;
}

.btn-white:hover,
.btn-white:focus {
    background-color: #ededed;
    border-color: #ededed;
}

.btn-white-outline {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    fill: #fff;
}

.btn-white-outline:hover,
.btn-white-outline:focus {
    background-color: #fff;
    color: #0D2C74;
}

.btn-black {
    background-color: #000;
    border: 1px solid #000;
    color: #fff !important;
    fill: #fff;
}

.btn-black:hover,
.btn-black:focus {
    background-color: black;
    border-color: black;
}

.btn-black-outline {
    background-color: transparent;
    border: 1px solid #000;
    color: #000;
    fill: #000;
}

.btn-black-outline:hover,
.btn-black-outline:focus {
    background-color: #000;
    color: #fff;
}

.btn-light-green {
    background-color: #53B368;
    border: 1px solid #53B368;
    color: #fff !important;
    fill: #fff;
}

.btn-light-green:hover,
.btn-light-green:focus {
    background-color: #459d59;
    border-color: #459d59;
}

.btn-light-green-outline {
    background-color: transparent;
    border: 1px solid #53B368;
    color: #53B368;
    fill: #53B368;
}

.btn-light-green-outline:hover,
.btn-light-green-outline:focus {
    background-color: #53B368;
    color: #fff;
}

.btn-dark-green {
    background-color: #3F9457;
    border: 1px solid #3F9457;
    color: #fff !important;
    fill: #fff;
}

.btn-dark-green:hover,
.btn-dark-green:focus {
    background-color: #347b48;
    border-color: #347b48;
}

.btn-dark-green-outline {
    background-color: transparent;
    border: 1px solid #3F9457;
    color: #3F9457;
    fill: #3F9457;
}

.btn-dark-green-outline:hover,
.btn-dark-green-outline:focus {
    background-color: #3F9457;
    color: #fff;
}

.btn-blue {
    background-color: #0D2C74;
    border: 1px solid #0D2C74;
    color: #fff !important;
    fill: #fff;
}

.btn-blue:hover,
.btn-blue:focus {
    background-color: #092054;
    border-color: #092054;
}

.btn-blue-outline {
    background-color: transparent;
    border: 1px solid #0D2C74;
    color: #0D2C74;
    fill: #0D2C74;
}

.btn-blue-outline:hover,
.btn-blue-outline:focus {
    background-color: #0D2C74;
    color: #fff;
}

.btn-dark-blue {
    background-color: #221842;
    border: 1px solid #221842;
    color: #fff !important;
    fill: #fff;
}

.btn-dark-blue:hover,
.btn-dark-blue:focus {
    background-color: #150e28;
    border-color: #150e28;
}

.btn-dark-blue-outline {
    background-color: transparent;
    border: 1px solid #221842;
    color: #221842;
    fill: #221842;
}

.btn-dark-blue-outline:hover,
.btn-dark-blue-outline:focus {
    background-color: #221842;
    color: #fff;
}

.btn-offwhite {
    background-color: #F6F6F6;
    border: 1px solid #F6F6F6;
    color: #fff !important;
    fill: #fff;
}

.btn-offwhite:hover,
.btn-offwhite:focus {
    background-color: #e4e4e4;
    border-color: #e4e4e4;
}

.btn-offwhite-outline {
    background-color: transparent;
    border: 1px solid #F6F6F6;
    color: #F6F6F6;
    fill: #F6F6F6;
}

.btn-offwhite-outline:hover,
.btn-offwhite-outline:focus {
    background-color: #F6F6F6;
    color: #fff;
}

.line-heading {
    color: #3F9457;
    font-weight: 700;
    margin-bottom: 2rem;
}

.line-heading::after {
    content: "";
    display: block;
    width: 5rem;
    border: 2px solid #3F9457;
    border-radius: 1rem;
    margin-top: 0.5rem;
}

.icon {
    width: 1em;
    height: 1em;
}

.section {
    position: relative;
    min-height: 50vh;
    padding: 3rem 0;
}

.section>* {
    position: relative;
}

.section::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background-image: url(../img/logo/icon-grey.svg);
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
}

.section .section-header {
    text-align: center;
    padding: 2rem 1rem;
}

.section .section-header h2 {
    font-weight: 700;
    font-size: 1.25rem;
    color: #3F9457;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.section .section-header h2::before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-left: 0.5rem;
    background-image: url(../img/logo/icon-green.svg);
    background-size: contain;
}

.section .section-header h3 {
    font-weight: 700;
    font-size: 2.5rem;
    color: #0D2C74;
}

.section .section-header p {
    font-size: 1.15rem;
    color: rgba(0, 0, 0, 0.6);
}

.section.blue {
    background-color: #0D2C74;
    color: #fff;
}

.section.blue::before {
    background-image: url(../img/logo/icon-gray.svg);
}

.section.blue .section-header h2 {
    color: #fff;
}

.section.blue .section-header h2::before {
    background-image: url(../img/logo/icon-white.svg);
}

.section.blue .section-header h3 {
    color: #fff;
}

.section.blue .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

#hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    color: #221842;
    display: flex;
    flex-direction: column;
}

#hero>* {
    position: relative;
}

#hero #navbar {
    padding: 2rem 1rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#hero #navbar.scrolled {
    padding: 0.5rem 1rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

#hero #navbar .logo {
    margin: 0;
}

#hero #navbar .logo img {
    width: 100%;
}

#hero #navbar .nav-menu {
    list-style: none;
    margin: 0;
}

#hero #navbar .nav-menu .nav-item {
    text-align: center;
}

#hero #navbar .nav-menu .nav-item a {
    color: inherit;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

#hero #navbar .nav-menu .nav-item a::after {
    position: absolute;
    content: "";
    right: 0;
    display: block;
    width: 0;
    border-radius: 1rem;
    margin-top: 0.5rem;
    background-color: #3F9457;
    transition: width 0.3s;
}

#hero #navbar .nav-menu .nav-item:last-child {
    border-left: none;
}

#hero #navbar .nav-menu .nav-item.current {
    font-weight: 700;
}

#hero #navbar .nav-menu .nav-item.current a::after {
    height: 3px !important;
}

#hero #navbar .nav-menu .nav-item.current a,
#hero #navbar .nav-menu .nav-item:hover a {
    color: #3F9457;
}

#hero #navbar .nav-menu .nav-item.current a::after,
#hero #navbar .nav-menu .nav-item:hover a::after {
    width: 2.4rem;
    height: 2px;
}

#hero #navbar .nav-actions>* {
    margin: 0 0.5rem;
}

#hero #navbar .nav-actions a:first-child {
    font-weight: 700;
    color: inherit;
    text-decoration: none;
}

#hero .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 130vw;
    height: 130vw;
    transform: translate(-50%, -50%);
    background-image: url(../img/bg3.jpg);
    background-size: 50% 50%;
    background-repeat: no-repeat;
    background-position: right bottom;
    padding: 25rem;
    border-radius: 50%;
    overflow: hidden;
}

#hero .background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(123, 163, 255, 0.6117647059);
}

#hero .background::after {
    position: relative;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #fff;
    background-image: url(../img/logo/icon-grey.svg);
    background-size: 30% 30%;
    background-position: 65% 65%;
    background-repeat: no-repeat;
}

#hero .hero-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#hero .hero-body h2 {
    font-weight: 600;
    font-size: 1.25rem;
    color: #53B368;
}

#hero .hero-body h3 {
    font-weight: 700;
    font-size: 2.5rem;
}

#hero .hero-body p {
    font-size: 1.25rem;
    opacity: 0.6;
}

#hero .hero-body .actions a {
    min-width: 10rem;
}

#hero .scroll {
    width: 100%;
    padding: 1rem 0;
    display: flex;
    justify-content: center;
}

#hero .scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: inherit;
    font-weight: 700;
    text-decoration: none;
}

#hero .scroll .arrows {
    position: relative;
    width: 2rem;
    height: 2rem;
    transform: translate(50%, -50%);
    margin-bottom: 0.5rem;
}

#hero .scroll .arrows:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-left: 0.6666666667rem solid rgba(13, 44, 116, 0.9);
    border-bottom: 0.6666666667rem solid rgba(13, 44, 116, 0.9);
    transform: translate(-0.6666666667rem, 2.6666666667rem) rotate(-45deg);
    animation: arrows 3s linear infinite;
}

#hero .scroll .arrows:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-left: 0.6666666667rem solid rgba(13, 44, 116, 0.9);
    border-bottom: 0.6666666667rem solid rgba(13, 44, 116, 0.9);
    transform: translate(-1.3333333333rem, 0px) rotate(-45deg);
    animation: arrows 3s linear infinite -1.5s;
}

@keyframes arrows {
    0% {
        border-left: 0.6666666667rem solid rgba(13, 44, 116, 0);
        border-bottom: 0.6666666667rem solid rgba(13, 44, 116, 0);
        transform: translate(0, -1.3333333333rem) rotate(-45deg);
    }

    10%,
    90% {
        border-left: 0.6666666667rem solid rgba(13, 44, 116, 0);
        border-bottom: 0.6666666667rem solid rgba(13, 44, 116, 0);
    }

    50% {
        border-left: 0.6666666667rem solid rgba(13, 44, 116, 0.9);
        border-bottom: 0.6666666667rem solid rgba(13, 44, 116, 0.9);
        transform: translate(0, 0px) rotate(-45deg);
    }

    100% {
        border-left: 0.6666666667rem solid rgba(13, 44, 116, 0);
        border-bottom: 0.6666666667rem solid rgba(13, 44, 116, 0);
        transform: translate(0, 1.3333333333rem) rotate(-45deg);
    }
}

@media screen and (max-width: 768px) {
    #hero #navbar {
        padding: 1rem;
        flex-wrap: wrap;
        transition: background-color 0.6s;
    }

    #hero #navbar:has(#toggleExpand:checked) {
        background-color: #fff;
    }

    #hero #navbar .logo {
        width: min(85%, 100px);
    }

    #hero #navbar .toggle-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 22px;
        width: 22px;
        cursor: pointer;
    }

    #hero #navbar .toggle-btn span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: #0D2C74;
        transition: all 0.6s ease-in-out;
    }

    #hero #navbar .nav-menu,
    #hero #navbar .nav-actions {
        width: 100%;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.6s ease-in-out;
    }

    #hero #navbar .nav-menu li {
        margin: 2rem 0;
        text-align: center;
    }

    #hero #navbar .nav-actions {
        text-align: center;
    }

    #hero #navbar #toggleExpand:checked~.nav-menu,
    #hero #navbar #toggleExpand:checked~.nav-actions {
        max-height: 150vh;
    }

    #hero #navbar #toggleExpand:checked~.toggle-btn span:nth-of-type(1) {
        transform: rotate(-45deg);
        transform-origin: top right;
        width: 28px;
    }

    #hero #navbar #toggleExpand:checked~.toggle-btn span:nth-of-type(2) {
        transform-origin: center;
        width: 0;
    }

    #hero #navbar #toggleExpand:checked~.toggle-btn span:nth-of-type(3) {
        transform: rotate(45deg);
        transform-origin: bottom right;
        width: 28px;
    }

    #hero .hero-body {
        width: 100%;
    }
}

@media screen and (min-width: 768px) {
    #hero #navbar .logo {
        width: max(10%, 100px);
    }

    #hero #navbar .nav-menu {
        width: 60%;
        display: flex;
        align-items: center;
    }

    #hero #navbar .nav-menu .nav-item {
        border-left: 1px solid rgba(13, 44, 116, 0.2);
        width: 16.6666666667%;
    }

    #hero .hero-body {
        width: 45%;
    }
}

#about {
    background-color: #F6F6F6;
}

#about .section-body {
    color: #222;
}

#about .section-body .row .logo {
    position: relative;
    min-height: 50vh;
    background-image: url(../img/bg3.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

#about .section-body .row .logo img {
    width: 50%;
    margin-bottom: 2rem;
}

#about .section-body .row .logo h4 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
}

#about .section-body .row .logo>* {
    position: relative;
}

#about .section-body .row .logo::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(138.47deg, rgba(13, 44, 116, 0.9) 0.88%, rgba(3, 107, 107, 0.9) 99.1%);
}

#about .section-body .row .content {
    font-size: 1.1rem;
}

#about .section-body .row .content>h4 {
    font-weight: 700;
    font-size: 1.8rem;
}

#about .section-body .row .content>p {
    padding: 0.25rem 0.5rem 0.25rem 2rem;
    border-right: 4px solid #0D2C74;
    color: rgba(0, 0, 0, 0.6);
}

#about .section-body .row .content>ul {
    list-style: none;
    padding: 0.25rem;
    color: rgba(0, 0, 0, 0.6);
}

#about .section-body .row .content>ul li {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
}

#about .section-body .row .content>ul li::before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-left: 0.5rem;
    background-image: url(../img/tick.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

#about .section-body .row .content .sub-row {
    display: flex;
    padding-left: 22px;
}

#about .section-body .row .content .sub-row .sub-icon {
    width: 20%;
    flex-shrink: 0;
    display: flex;
    justify-content: start;
    align-items: start;
    padding: 1rem;
}

#about .section-body .row .content .sub-row .sub-icon img {
    width: 100%;
    /* height: 100%; */
}

#about .section-body .row .content h5 {
    font-weight: 700;
    font-size: 1.6rem;
}

#about .section-body .row .content p {
    color: rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 768px) {
    #about .section-body .row .content {
        padding: 1rem;
    }
}

@media screen and (min-width: 768px) {
    #about .section-body .row {
        display: flex;
        justify-content: space-between;
    }

    #about .section-body .row>* {
        width: 49%;
    }

    #about .section-body .row .logo {
        border-radius: 2rem 0 0 2rem;
    }
}

#process .section-body {
    padding: 0 4rem;
}

#process .section-body .content {
    background-color: #fff;
    padding: 3rem;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

#process .section-body .content .progress-chart .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

#process .section-body .content .progress-chart .step>* {
    position: relative;
}

#process .section-body .content .progress-chart .step .step-icon {
    padding: 2rem;
    width: 7rem;
    height: 7rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    background-color: #eceef4;
}

#process .section-body .content .progress-chart .step .step-icon img {
    width: 100%;
    height: 100%;
}

#process .section-body .content .progress-chart .step h4 {
    font-size: 1.25rem;
}

#process .section-body .content .progress-chart .step.current .step-icon {
    background-color: #0D2C74;
}

#process .section-body .content .progress-chart .step.current h4 {
    font-weight: 700;
    color: #0D2C74;
}

#process .section-body .content .progress-chart .step.current:not(:last-child)::before {
    background-color: #0D2C74;
}

#process .section-body .content .apply {
    position: relative;
    margin-top: 2rem;
    min-height: 45vh;
    border-radius: 2rem;
    overflow: hidden;
    color: #fff;
    background-image: url(../img/bg4.png);
    background-position: bottom right;
    background-size: cover;
    background-repeat: no-repeat;
}

#process .section-body .content .apply .apply-content {
    padding: 0.5rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: linear-gradient(90deg, #0A1B44 30.18%, rgba(5, 23, 64, 0.62) 98.79%);
}

#process .section-body .content .apply .apply-content h4 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

#process .section-body .content .apply .apply-content a {
    min-width: 7rem;
}

@media screen and (max-width: 768px) {
    #process .section-body .content .progress-chart .step {
        padding-bottom: 2rem;
    }

    #process .section-body .content .progress-chart .step:not(:last-child)::before {
        position: absolute;
        content: "";
        top: 7rem;
        right: 50%;
        width: 2px;
        height: 100%;
        background-color: rgba(13, 44, 116, 0.2);
    }

    #process .section-body .content .progress-chart .step h4 {
        padding: 0.5rem 0;
        background-color: #fff;
    }
}

@media screen and (min-width: 768px) {
    #process .section-body .content .progress-chart {
        display: flex;
        justify-content: space-between;
    }

    #process .section-body .content .progress-chart .step {
        width: 20%;
    }

    #process .section-body .content .progress-chart .step:not(:last-child)::before {
        position: absolute;
        content: "";
        top: 3.5rem;
        right: 50%;
        width: 100%;
        height: 2px;
        background-color: rgba(13, 44, 116, 0.2);
    }
}

#features {
    background-image: url(../img/bg5.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#features::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 44, 116, 0.9);
    background-image: none;
}

#features .section-body .features-list .feature {
    display: flex;
    padding: 1rem;
    margin: 0.75rem 0;
    border-radius: 1.25rem;
    background-color: rgba(255, 255, 255, 0.16);
}

#features .section-body .features-list .feature .feature-icon {
    border-radius: 0.75rem;
    overflow: hidden;
    width: 35%;
    flex-shrink: 0;
}

#features .section-body .features-list .feature .feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#features .section-body .features-list .feature .feature-body {
    padding: 0.75rem;
}

#features .section-body .features-list .feature .feature-body h4 {
    font-size: 1.25rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

#features .section-body .features-list .feature .feature-body ul {
    font-size: 0.85rem;
    padding: 0 1rem;
}

#features .section-body .features-list .feature .feature-body ul li {
    margin: 0.25rem 0;
}

#features .section-body .action {
    padding: 1rem 0;
    text-align: center;
}

#features .section-body .action a {
    min-width: 7rem;
}

@media screen and (max-width: 768px) {
    #features .section-body {
        padding: 1rem 1.5rem;
    }

    #features .section-body .action a {
        width: 100%;
    }
}

@media screen and (min-width: 768px) {
    #features .section-body {
        padding: 3rem;
    }

    #features .section-body .features-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    #features .section-body .features-list .feature {
        width: 48%;
    }
}

#paths .section-body .tabs {
    position: relative;
    width: min(70%, 400px);
    margin: 0 auto;
    display: flex;
    background-color: #F0F5FF;
    border-radius: 15rem;
}

#paths .section-body .tabs::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #0D2C74;
    border-radius: 15rem;
    transition: 0.3s;
}

#paths .section-body .tabs label {
    position: relative;
    width: 50%;
    padding: 1rem;
    text-align: center;
    border-radius: 15rem;
    cursor: pointer;
}

#paths .section-body .tabs label h4 {
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
    color: rgba(0, 0, 0, 0.6);
    transition: 0.3s;
}

#paths .section-body .content {
    display: none;
    padding: 3rem;
    counter-reset: card;
}

#paths .section-body .content .row * {
    transition: 0.3s;
}

#paths .section-body .content .row:first-child> :last-child {
    background-color: #0D2C74;
}

#paths .section-body .content .row:first-child> :last-child h5 {
    color: #fff;
}

#paths .section-body .content .row:first-child> :last-child .tags span {
    background-color: #fff;
    color: #0D2C74;
}

#paths .section-body .content .row:first-child> :last-child::before {
    background-color: #fff;
    color: #0D2C74;
}

#paths .section-body .content .row .row-header {
    text-align: center;
    color: rgba(0, 0, 0, 0.95);
    margin: 3rem 0;
    border-radius: 3rem;
    border-right: 3px solid #0D2C74;
    padding: 0 1rem;
}

#paths .section-body .content .row .row-header h4 {
    font-size: 2.5;
    margin-bottom: 2rem;
}

#paths .section-body .content .row .row-header p {
    font-size: 1.25rem;
}

#paths .section-body .content .row .card {
    position: relative;
    margin: 3rem 0;
    padding: 1rem;
    border-radius: 1.25rem;
    background-color: rgba(13, 44, 116, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#paths .section-body .content .row .card::before {
    counter-increment: card;
    content: counter(card);
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.5rem;
    border-radius: 50%;
    background-color: #0D2C74;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 20px 0px rgba(21, 119, 235, 0.4);
}

#paths .section-body .content .row .card .card-icon {
    width: 7rem;
    height: 7rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    border: 1px solid #0D2C74;
    background-color: #fff;
}

#paths .section-body .content .row .card .card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#paths .section-body .content .row .card h5 {
    font-weight: 700;
    font-size: 1.25rem;
    color: #0D2C74;
}

#paths .section-body .content .row .card .tags span {
    font-size: 0.85rem;
    width: fit-content;
    display: block;
    padding: 0.5rem 1rem;
    margin: 0.5rem auto;
    border-radius: 15rem;
    background-color: #0D2C74;
    color: #fff;
}

#paths .section-body #internalTabRadio:checked~.tabs label[for=internalTabRadio] h4,
#paths .section-body #externalTabRadio:checked~.tabs label[for=externalTabRadio] h4 {
    color: #fff;
}

#paths .section-body #externalTabRadio:checked~.tabs::before {
    transform: translateX(-100%);
}

#paths .section-body #internalTabRadio:checked~.content#internalTab,
#paths .section-body #externalTabRadio:checked~.content#externalTab {
    display: block;
}

@media screen and (max-width: 768px) {
    #paths .section-body .content .row .card::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        width: 0;
        height: 3rem;
        border: 1.5px dashed #989898;
    }

    #paths .section-body .content .row:last-child .card:last-child::after {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    #paths .section-body .content .row {
        display: flex;
        justify-content: space-between;
    }

    #paths .section-body .content .row:nth-child(odd)> :first-child::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 100%;
        width: 16.6666666667%;
        height: 0;
        border: 1.5px dashed #989898;
    }

    #paths .section-body .content .row:nth-child(odd)> :last-child::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        width: 1.5px;
        height: 6rem;
        border: 1.5px dashed #989898;
    }

    #paths .section-body .content .row:nth-child(odd):last-child> :last-child::after {
        display: none;
    }

    #paths .section-body .content .row:nth-child(even) {
        flex-direction: row-reverse;
    }

    #paths .section-body .content .row:nth-child(even)> :first-child::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 100%;
        width: 16.6666666667%;
        height: 0;
        border: 1.5px dashed #989898;
    }

    #paths .section-body .content .row:nth-child(even)> :last-child::after {
        content: "";
        position: absolute;
        top: 100%;
        right: 50%;
        width: 1.5px;
        height: 6rem;
        border: 1.5px dashed #989898;
    }

    #paths .section-body .content .row> :last-child {
        width: 30%;
    }

    #paths .section-body .content .row> :first-child {
        width: 60%;
    }
}

#target .section-body .swiper {
    padding: 5rem 2rem;
}

#target .section-body .swiper .swiper-wrapper .swiper-slide .card {
    min-height: 30vh;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

#target .section-body .swiper .swiper-wrapper .swiper-slide .card:hover {
    background-color: #081c4b;
}

#target .section-body .swiper .swiper-wrapper .swiper-slide .card .card-icon {
    width: 7.5rem;
    height: 7.5rem;
    border-radius: 50%;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background-color: #fff;
}

#target .section-body .swiper .swiper-wrapper .swiper-slide .card .card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#target .section-body .swiper .swiper-wrapper .swiper-slide .card h5 {
    font-size: 1.5rem;
    font-weight: 700;
}

#target .section-body .swiper .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.69);
}

#target .section-body .swiper .swiper-pagination-bullet-active {
    background-color: #fff;
    width: 2.25rem;
    border-radius: 1rem;
}

#target .section-body .swiper .swiper-button-next,
#target .section-body .swiper .swiper-button-prev {
    color: #0D2C74;
    background-color: rgba(255, 255, 255, 0.69);
    border-radius: 50%;
    padding: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
}

#target .section-body .swiper .swiper-button-next:hover,
#target .section-body .swiper .swiper-button-prev:hover {
    background-color: #fff;
}

#target .section-body .swiper .swiper-button-next::after,
#target .section-body .swiper .swiper-button-prev::after {
    content: "";
}

#target .section-body .swiper .swiper-button-next::before,
#target .section-body .swiper .swiper-button-prev::before {
    display: block;
}

#target .section-body .swiper .swiper-button-next::before {
    font-family: "boxicons";
    content: "\eb33";
}

#target .section-body .swiper .swiper-button-prev::before {
    font-family: "boxicons";
    content: "\ebe6";
}

#target .section-body .action {
    padding: 1rem 2rem;
    text-align: center;
}

@media screen and (max-width: 768px) {
    #target .section-body .action a {
        width: 100%;
    }
}

#stats {
    background-color: #F6F6F6;
}

#stats .section-body .stats-list {
    padding: 3rem;
}

#stats .section-body .stats-list .stat {
    padding: 1.25rem;
    min-height: 30vh;
    margin: 2rem 0;
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    transition: 0.3s;
}

#stats .section-body .stats-list .stat .stat-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background-color: #F6F6F6;
}

#stats .section-body .stats-list .stat .stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#stats .section-body .stats-list .stat .stat-number {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    direction: ltr;
}

#stats .section-body .stats-list .stat .stat-text {
    color: rgba(0, 0, 0, 0.6);
}

#stats .section-body .stats-list .stat:hover {
    background-color: #0D2C74;
    color: #fff;
    box-shadow: 0px 4px 75px 0px rgba(13, 44, 116, 0.4509803922);
}

#stats .section-body .stats-list .stat:hover .stat-icon {
    background-color: #fff;
}

#stats .section-body .stats-list .stat:hover .stat-text {
    color: rgba(255, 255, 255, 0.7);
}

#stats .section-body .action {
    padding: 1rem 2rem;
    text-align: center;
}

@media screen and (max-width: 768px) {
    #stats .section-body .action a {
        width: 100%;
    }
}

@media screen and (min-width: 768px) {
    #stats .section-body .stats-list {
        display: flex;
        justify-content: space-between;
    }

    #stats .section-body .stats-list .stat {
        width: 23%;
    }
}

#stories .section-body {
    padding: 3rem 2rem;
}

#stories .section-body .companies-list {
    border-radius: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

#stories .section-body .companies-list .company-logo {
    width: min(9rem, 100%);
    height: min(9rem, 100%);
    margin: 2rem;
}

#stories .section-body .companies-list .company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media screen and (max-width: 768px) {
    #stories .section-body .companies-list {
        padding: 0.25rem;
    }
}

@media screen {
    #stories .section-body .companies-list {
        padding: 2rem;
    }
}

#faq {
    padding-top: 0;
    background-color: #fff;
}

#faq .section-header {
    position: relative;
    padding: 5rem 1rem;
    background-image: url(../img/bg6.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#faq .section-header>* {
    position: relative;
}

#faq .section-header::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, rgba(10, 27, 68, 0.88) 25.92%, rgba(63, 148, 87, 0.88) 98.79%);
}

#faq .section-body {
    color: #000;
}

#faq .section-body .faq-sections {
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 1.25rem;
}

#faq .section-body .faq-sections h4 {
    padding: 1rem 0;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    font-weight: 600;
    font-size: 1.5rem;
}

#faq .section-body .faq-sections .tab-names-list label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0.5rem;
    margin: 0.75rem 0;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: 0.3s;
}

#faq .section-body .faq-sections .tab-names-list label::after {
    font-family: "boxicons";
    content: "\ed38";
}

#faq .section-body .faq-tabs .faq-tab {
    display: none;
}

#faq .section-body .faq-tabs .faq-tab .accordion .item {
    padding: 2rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

#faq .section-body .faq-tabs .faq-tab .accordion .item input {
    display: none;
}

#faq .section-body .faq-tabs .faq-tab .accordion .item .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

#faq .section-body .faq-tabs .faq-tab .accordion .item .title h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 500;
}

#faq .section-body .faq-tabs .faq-tab .accordion .item .title::after {
    content: "+";
    font-size: 1.5rem;
    margin-right: 0.25rem;
    flex-shrink: 0;
}

#faq .section-body .faq-tabs .faq-tab .accordion .item .body {
    max-height: 0;
    overflow: hidden;
    color: rgba(0, 0, 0, 0.6);
    transition: max-height 0.4s;
}

#faq .section-body .faq-tabs .faq-tab .accordion .item .body::before {
    content: "";
    display: block;
    height: 1.5rem;
}

#faq .section-body .faq-tabs .faq-tab .accordion .item .faq-toggler:checked~.title::after {
    content: "-";
}

#faq .section-body .faq-tabs .faq-tab .accordion .item .faq-toggler:checked~.body {
    max-height: 100vh;
}

#faq .section-body #faqTab1Radio:checked~.faq-sections .tab-names-list label:nth-child(1) {
    background-color: #0D2C74;
    color: #fff;
}

#faq .section-body #faqTab1Radio:checked~.faq-tabs .faq-tab:nth-child(1) {
    display: block;
}

#faq .section-body #faqTab2Radio:checked~.faq-sections .tab-names-list label:nth-child(2) {
    background-color: #0D2C74;
    color: #fff;
}

#faq .section-body #faqTab2Radio:checked~.faq-tabs .faq-tab:nth-child(2) {
    display: block;
}

#faq .section-body #faqTab3Radio:checked~.faq-sections .tab-names-list label:nth-child(3) {
    background-color: #0D2C74;
    color: #fff;
}

#faq .section-body #faqTab3Radio:checked~.faq-tabs .faq-tab:nth-child(3) {
    display: block;
}

#faq .section-body #faqTab4Radio:checked~.faq-sections .tab-names-list label:nth-child(4) {
    background-color: #0D2C74;
    color: #fff;
}

#faq .section-body #faqTab4Radio:checked~.faq-tabs .faq-tab:nth-child(4) {
    display: block;
}

@media screen and (max-width: 768px) {
    #faq .section-body {
        padding: 2rem 1rem;
    }

    #faq .section-body .faq-sections {
        margin-bottom: 2rem;
    }
}

@media screen and (min-width: 768px) {
    #faq .section-body {
        padding: 2rem;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    #faq .section-body .faq-sections {
        width: 30%;
    }

    #faq .section-body .faq-tabs {
        width: 65%;
    }
}

#team {
    background-color: #F6F6F6;
}

#team .section-body .swiper {
    padding: 5rem 2rem;
}

#team .section-body .swiper .swiper-wrapper .swiper-slide .team-member {
    min-height: 35vh;
    padding-bottom: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    background-color: #fff;
    box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px, rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
    overflow: hidden;
    transition: 0.3s;
}

#team .section-body .swiper .swiper-wrapper .swiper-slide .team-member .team-member-photo {
    width: 100%;
    height: 30vh;
    margin-bottom: 1.5rem;
    filter: grayscale(100%);
    transition: 0.3s;
}

#team .section-body .swiper .swiper-wrapper .swiper-slide .team-member .team-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#team .section-body .swiper .swiper-wrapper .swiper-slide .team-member h5 {
    font-weight: 600;
    font-size: 1.25rem;
}

#team .section-body .swiper .swiper-wrapper .swiper-slide .team-member p {
    color: rgba(0, 0, 0, 0.6);
}

#team .section-body .swiper .swiper-wrapper .swiper-slide .team-member:hover {
    background-color: #0D2C74;
    box-shadow: 3px 4px 40px 0px rgba(13, 44, 116, 0.2588235294);
}

#team .section-body .swiper .swiper-wrapper .swiper-slide .team-member:hover .team-member-photo {
    filter: grayscale(0%);
}

#team .section-body .swiper .swiper-wrapper .swiper-slide .team-member:hover h5 {
    color: #fff;
}

#team .section-body .swiper .swiper-wrapper .swiper-slide .team-member:hover p {
    color: rgba(255, 255, 255, 0.6);
}

#team .section-body .swiper .swiper-pagination-bullet {
    background-color: rgba(13, 44, 116, 0.69);
}

#team .section-body .swiper .swiper-pagination-bullet-active {
    background-color: #0D2C74;
    width: 2.25rem;
    border-radius: 1rem;
}

#team .section-body .swiper .swiper-button-next,
#team .section-body .swiper .swiper-button-prev {
    color: #fff;
    background-color: rgba(13, 44, 116, 0.9);
    border-radius: 50%;
    padding: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
}

#team .section-body .swiper .swiper-button-next:hover,
#team .section-body .swiper .swiper-button-prev:hover {
    background-color: #0D2C74;
}

#team .section-body .swiper .swiper-button-next::after,
#team .section-body .swiper .swiper-button-prev::after {
    content: "";
}

#team .section-body .swiper .swiper-button-next::before,
#team .section-body .swiper .swiper-button-prev::before {
    display: block;
}

#team .section-body .swiper .swiper-button-next::before {
    font-family: "boxicons";
    content: "\eb33";
}

#team .section-body .swiper .swiper-button-prev::before {
    font-family: "boxicons";
    content: "\ebe6";
}

#testimonials .section-body .swiper {
    padding: 5rem 2rem;
}

#testimonials .section-body .swiper .swiper-wrapper {
    align-items: center;
}

#testimonials .section-body .swiper .swiper-wrapper .swiper-slide .testimonial {
    position: relative;
    background-color: #fff;
    padding: 2rem 1rem;
    border-radius: 1rem;
    overflow: hidden;
}

#testimonials .section-body .swiper .swiper-wrapper .swiper-slide .testimonial>* {
    position: relative;
}

#testimonials .section-body .swiper .swiper-wrapper .swiper-slide .testimonial .rating {
    color: #FBA333;
}

#testimonials .section-body .swiper .swiper-wrapper .swiper-slide .testimonial .details {
    padding: 0.5rem 0 2rem 0;
    color: rgba(34, 34, 34, 0.87);
}

#testimonials .section-body .swiper .swiper-wrapper .swiper-slide .testimonial .author {
    display: flex;
    align-items: center;
}

#testimonials .section-body .swiper .swiper-wrapper .swiper-slide .testimonial .author .author-photo {
    width: 3.25rem;
    height: 3.25rem;
    margin-left: 1rem;
    border-radius: 50%;
    overflow: hidden;
}

#testimonials .section-body .swiper .swiper-wrapper .swiper-slide .testimonial .author .author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#testimonials .section-body .swiper .swiper-wrapper .swiper-slide .testimonial .author h5 {
    color: #222;
    font-weight: 600;
    font-size: 1.1rem;
}

#testimonials .section-body .swiper .swiper-wrapper .swiper-slide .testimonial .author p {
    color: #0D2C74;
    font-size: 0.85rem;
    margin: 0;
}

#testimonials .section-body .swiper .swiper-wrapper .swiper-slide .testimonial::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: -7rem;
    width: 11rem;
    height: 11rem;
    transform: rotate(36deg);
    background-color: rgba(13, 44, 116, 0.11);
    border-radius: 3rem;
}

#testimonials .section-body .swiper .swiper-wrapper .swiper-slide .testimonial::after {
    content: "،،";
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    font-size: 7rem;
    color: #0D2C74;
}

#testimonials .section-body .swiper .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.69);
}

#testimonials .section-body .swiper .swiper-pagination-bullet-active {
    background-color: #fff;
    width: 2.25rem;
    border-radius: 1rem;
}

#testimonials .section-body .swiper .swiper-button-next,
#testimonials .section-body .swiper .swiper-button-prev {
    color: #0D2C74;
    background-color: rgba(255, 255, 255, 0.69);
    border-radius: 50%;
    padding: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
}

#testimonials .section-body .swiper .swiper-button-next:hover,
#testimonials .section-body .swiper .swiper-button-prev:hover {
    background-color: #fff;
}

#testimonials .section-body .swiper .swiper-button-next::after,
#testimonials .section-body .swiper .swiper-button-prev::after {
    content: "";
}

#testimonials .section-body .swiper .swiper-button-next::before,
#testimonials .section-body .swiper .swiper-button-prev::before {
    display: block;
}

#testimonials .section-body .swiper .swiper-button-next::before {
    font-family: "boxicons";
    content: "\eb33";
}

#testimonials .section-body .swiper .swiper-button-prev::before {
    font-family: "boxicons";
    content: "\ebe6";
}

#partners .section-body .swiper {
    padding: 5rem 3rem;
}

#partners .section-body .swiper .swiper-wrapper .swiper-slide .partner-logo {
    width: 100%;
    height: 30vh;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 2.25rem;
    overflow: hidden;
}

#partners .section-body .swiper .swiper-wrapper .swiper-slide .partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#partners .section-body .swiper .swiper-pagination-bullet {
    background-color: rgba(13, 44, 116, 0.69);
}

#partners .section-body .swiper .swiper-pagination-bullet-active {
    background-color: #0D2C74;
    width: 2.25rem;
    border-radius: 1rem;
}

#partners .section-body .swiper .swiper-button-next,
#partners .section-body .swiper .swiper-button-prev {
    color: #fff;
    background-color: rgba(13, 44, 116, 0.9);
    border-radius: 50%;
    padding: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
}

#partners .section-body .swiper .swiper-button-next:hover,
#partners .section-body .swiper .swiper-button-prev:hover {
    background-color: #0D2C74;
}

#partners .section-body .swiper .swiper-button-next::after,
#partners .section-body .swiper .swiper-button-prev::after {
    content: "";
}

#partners .section-body .swiper .swiper-button-next::before,
#partners .section-body .swiper .swiper-button-prev::before {
    display: block;
}

#partners .section-body .swiper .swiper-button-next::before {
    font-family: "boxicons";
    content: "\eb33";
}

#partners .section-body .swiper .swiper-button-prev::before {
    font-family: "boxicons";
    content: "\ebe6";
}

#contact {
    background-color: #fff;
}

#contact .container {
    position: relative;
    background-image: url(../img/bg7.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

#contact .container>* {
    position: relative;
}

#contact .container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, #0A1B44 25.92%, rgba(5, 23, 64, 0.62) 98.79%);
}

#contact .container .section-body .contact-form-container .form-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#contact .container .section-body .contact-form-container .form-container .form-field {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 3rem;
    padding: 1rem;
    background-color: rgba(242, 242, 242, 0.2);
}

#contact .container .section-body .contact-form-container .form-container .form-field.full {
    border-radius: 1rem;
}

#contact .container .section-body .contact-form-container .form-container .form-field label {
    border: 0 !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    /* 1 */
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    /* 2 */
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
}

#contact .container .section-body .contact-form-container .form-container .form-field i {
    margin-left: 0.5rem;
}

#contact .container .section-body .contact-form-container .form-container .form-field i,
#contact .container .section-body .contact-form-container .form-container .form-field :last-child::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#contact .container .section-body .contact-form-container .form-container .form-field :last-child {
    flex-grow: 1;
    background-color: transparent;
    border: none;
    color: #fff;
    direction: rtl;
}

#contact .container .section-body .contact-form-container .form-container .form-field :last-child option {
    color: #0D2C74;
}

#contact .container .section-body .contact-form-container .form-container .form-field textarea {
    min-height: 13rem;
}

@media screen and (max-width: 768px) {
    #contact {
        padding: 0;
    }

    #contact .container {
        padding: 3rem 1.5rem;
    }

    #contact .container .section-body .contact-form-container .form-container>* {
        width: 100%;
    }
}

@media screen and (min-width: 768px) {
    #contact {
        padding: 3rem;
    }

    #contact .container {
        padding: 3rem;
        border-radius: 2rem;
        display: flex;
    }

    #contact .container .section-header {
        width: 45%;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        text-align: right;
    }

    #contact .container .section-body .contact-form-container .form-container>* {
        width: 48%;
        margin-bottom: 1rem;
    }

    #contact .container .section-body .contact-form-container .form-container>*.full {
        width: 100%;
    }
}

#footer {
    background-color: #000614;
    color: #fff;
}

#footer section#info .logo {
    width: 8rem;
    margin-bottom: 1.25rem;
}

#footer section#info .logo img {
    width: 100%;
}

#footer section#info p {
    margin: 1rem 0;
    color: rgba(255, 255, 255, 0.6);
}

#footer section#info .social {
    margin: 1rem 0;
    display: flex;
}

#footer section#info .social a {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 0.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

#footer section#info .social a:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

#footer section#sitemap ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
}

#footer section#sitemap ul li {
    width: 50%;
    margin: 0.75rem 0;
}

#footer section#sitemap ul li::before {
    font-family: "boxicons";
    content: "\ed3f";
    color: rgba(253, 252, 252, 0.3);
}

#footer section#sitemap ul li a {
    color: #fff;
    text-decoration: none;
    margin-right: 3px;

}

#footer section#communication .contact-item {
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

#footer section#communication .contact-item i {
    width: 2.5rem;
    height: 2.5rem;
    margin-left: 0.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
}

#footer section#communication .contact-item p {
    margin: 0;
}

@media screen and (max-width: 768px) {
    #footer .sections {
        padding: 3rem 1rem;
    }

    #footer .sections section {
        padding: 2rem 0;
    }
}

@media screen and (min-width: 768px) {
    #footer .sections {
        padding: 4rem 2rem;
        display: flex;
        justify-content: space-between;
    }

    #footer .sections section {
        width: 30%;
    }
}

/*# sourceMappingURL=landing.css.map */
