@font-face {
    font-family: "DINNextLTArabic";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/DINNextLTArabic/DINNextLTArabic-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "DINNextLTArabic";
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/DINNextLTArabic/DINNextLTArabic-Medium.ttf") format("truetype");
}

@font-face {
    font-family: "DINNextLTArabic";
    font-style: normal;
    font-weight: bold;
    src: url("../fonts/DINNextLTArabic/DINNextLTArabic-Bold.ttf") format("truetype");
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

a,
a:hover {
    text-decoration: none;
    color: inherit;
}

p {
    margin: 0;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

button:focus {
    outline: none !important;
}

.btn {
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.rest-btn {
    background: transparent;
    border: 0;
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    padding: 0;
    cursor: pointer;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

:root {
    --main-color: #CA0C4D;
    --second-color: #9e043a;
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1194px;
    }
}

body {
    font-family: "DINNextLTArabic", Arial, Helvetica, sans-serif;
    font-size: 16px;
    text-align: start;
    direction: ltr;
    min-height: 100vh;
    background: #FFFFFF;
    color: #3B3F47;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body::-webkit-scrollbar-track {
    background: #FFF;
}

body::-webkit-scrollbar-thumb {
    background: var(--main-color);
}

body::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

body.overflow-toggle {
    overflow: hidden;
}

.btn-primary {
    background: var(--main-color);
    color: #FFF;
    border: 0;
    border-radius: 25px;
}

.btn-primary:is(:active, :hover, :active, :focus, :focus-within, :focus-visible) {
    background: var(--second-color) !important;
}

.btn-outline-main {
    background-color: transparent;
    color: var(--main-color);
    border-radius: 25px;
    border: 1px solid var(--main-color);
}

.btn-outline-main:is(:active, :hover, :active, :focus, :focus-within, :focus-visible) {
    background-color: var(--main-color) !important;
    color: #FFF !important;
    border-color: var(--main-color) !important;
}

.btn-outline-main:is(:active, :hover, :active, :focus, :focus-within, :focus-visible) svg path {
    fill: #FFFFFF;
}

.dropdown .dropdown-toggle:after {
    display: none;
}

.dropdown .dropdown-item:focus,
.dropdown .dropdown-item:hover,
.dropdown .dropdown-item:active {
    background-color: #fdfdfd;
    color: #303030;
}

.main-color {
    color: var(--main-color) !important;
}

.font-medium {
    font-weight: 500;
}

.scroll {
    overflow: auto;
}

.scroll::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.scroll::-webkit-scrollbar-thumb {
    background: #DCD9D9;
    border-radius: 5px;
}

.scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

.main-wrapper {
    min-height: 100vh;
}

.page-container {
    margin-top: 120px;
}

.header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    inset-block-start: 0;
    width: 100%;
    z-index: 3;
    background-color: #FFF;
    height: 80px;
    -webkit-border-after: 1px solid rgba(112, 112, 112, 0.07);
    border-block-end: 1px solid rgba(112, 112, 112, 0.07);
}

@media (max-width: 1199px) {
    .header {
        position: fixed;
        inset-inline-end: 0;
        top: 0;
        width: 100%;
        z-index: 999;
        height: 70px;
    }
}

.header .header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header .header-inner .header-logo img {
    width: 85.11px;
}

@media (max-width: 767px) {
    .header .header-inner .header-logo img {
        width: 60px;
    }
}

.header .header-inner .header-nav {
    position: absolute;
    inset-inline-end: 50%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
}

.header .header-inner .header-nav .close-menu {
    display: none;
}

@media (max-width: 1199px) {
    .header .header-inner .header-nav .close-menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: absolute;
        inset-inline-end: 20px;
        inset-block-start: 20px;
        padding: 5px;
        border-radius: 50%;
        border: 1px solid #030F17;
    }
}

.header .header-inner .header-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 30px;
}

.header .header-inner .header-nav ul li a {
    color: #2D2D2D;
    font-size: 15px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    position: relative;
}

.header .header-inner .header-nav ul li a:after {
    content: "";
    position: absolute;
    inset-inline-end: 0;
    bottom: -30px;
    background: var(--main-color);
    width: 100%;
    height: 4px;
    border-radius: 3px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.header .header-inner .header-nav ul li a:hover {
    color: var(--main-color);
}

.header .header-inner .header-nav ul li a:hover:after {
    opacity: 1;
    visibility: visible;
}

.header .header-inner .header-nav ul li.active a {
    color: var(--main-color);
}

.header .header-inner .header-nav ul li.active a:after {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1199px) {
    .header .header-inner .header-nav {
        -webkit-margin-start: 0;
        margin-inline-start: 0;
        position: absolute;
        inset-inline-start: -100%;
        inset-block-start: 0;
        inset-inline-end: unset;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        width: 100%;
        height: 100vh;
        background: #FFF;
        z-index: 999;
        padding: 20px;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        overflow-y: scroll;
    }

    .header .header-inner .header-nav.show-menu {
        inset-inline-start: 0;
    }

    .header .header-inner .header-nav ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-margin-before: 50px;
        margin-block-start: 50px;
    }

    .header .header-inner .header-nav ul li {
        -webkit-margin-after: 35px;
        margin-block-end: 35px;
    }

    .header .header-inner .header-nav ul li:last-child {
        -webkit-margin-after: 0;
        margin-block-end: 0;
    }

    .header .header-inner .header-nav ul li a {
        color: #082034;
    }

    .header .header-inner .header-nav ul li a:after {
        background: var(--second-color);
        inset-block-end: -10px;
    }
}

.header .header-inner .header-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 18px;
}

@media (max-width: 767px) {
    .header .header-inner .header-action {
        gap: 0 10px;
    }
}

.header .header-inner .header-action .header-lang .dropdown .dropdown-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.header .header-inner .header-action .header-lang .dropdown .dropdown-toggle span {
    font-size: 15px;
    color: #2D2D2D;
}

@media (max-width: 1199px) {
    .header .header-inner .header-action .header-lang .dropdown .dropdown-toggle span {
        font-size: 14px;
    }
}

.header .header-inner .header-action .header-lang .dropdown .dropdown-toggle .arrow {
    -webkit-margin-start: 5px;
    margin-inline-start: 5px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.header .header-inner .header-action .header-lang .dropdown .dropdown-menu {
    -webkit-box-shadow: 0 3px 6px rgba(211, 211, 211, 0.3);
    box-shadow: 0 3px 6px rgba(211, 211, 211, 0.3);
    min-width: 109px;
    border: 0;
    text-align: center;
    padding: 0;
    top: 10px !important;
}

.header .header-inner .header-action .header-lang .dropdown .dropdown-menu .dropdown-item {
    padding: 8px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.header .header-inner .header-action .header-lang .dropdown .dropdown-menu .dropdown-item:last-child {
    margin-bottom: 0;
}

.header .header-inner .header-action .header-lang .dropdown .dropdown-menu .dropdown-item span {
    color: #232F3E;
    font-size: 14px;
}

.header .header-inner .header-action .contact .btn-outline-main {
    padding: 4px 10px;
    min-width: 125px;
}

@media (max-width: 767px) {
    .header .header-inner .header-action .contact .btn-outline-main {
        min-width: auto;
    }
}

.header .header-inner .header-action .contact .btn-outline-main span {
    -webkit-padding-start: 5px;
    padding-inline-start: 5px;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .header .header-inner .header-action .contact .btn-outline-main span {
        font-size: 13px;
    }
}

.header .header-inner .header-action .menu-toggle {
    display: none;
}

@media (max-width: 1199px) {
    .header .header-inner .header-action .menu-toggle {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.header.header-active {
    position: fixed;
    inset-inline-end: 0;
    top: 0;
    width: 100%;
    z-index: 999;
}

.hero-section {
    min-height: 100vh;
    padding-top: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

@media (max-width: 1199px) {
    .hero-section {
        min-height: auto;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 100px 0;
    }
}

.hero-section .hero-section-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 84px 20px;
    position: relative;
}

@media (max-width: 991px) {
    .hero-section .hero-section-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0;
    }
}

.hero-section .hero-section-inner .hero-section-content {
    max-width: 399px;
}

@media (max-width: 991px) {
    .hero-section .hero-section-inner .hero-section-content {
        max-width: 100%;
        text-align: center;
        padding: 0 15px;
    }
}

.hero-section .hero-section-inner .hero-section-content p {
    font-size: 15px;
    font-weight: 500;
    color: var(--main-color);
    margin-bottom: 17px;
}

.hero-section .hero-section-inner .hero-section-content h1 {
    font-size: 32px;
    font-weight: 500;
    color: #2D2D2D;
    margin-top: 17px;
    line-height: 49px;
}

@media (max-width: 991px) {
    .hero-section .hero-section-inner .hero-section-content h1 {
        font-size: 25px;
        text-align: center;
        line-height: 40px;
    }
}

.hero-section .hero-section-inner .hero-section-content h5 {
    font-size: 18px;
    color: #2D2D2D;
    line-height: 34px;
    font-weight: normal;
}

@media (max-width: 991px) {
    .hero-section .hero-section-inner .hero-section-content h5 {
        text-align: center;
    }
}

.hero-section .hero-section-inner .hero-section-content .btn-primary {
    margin-top: 18px;
    padding: 6.8px 37px 11px;
}

.hero-section .hero-section-inner .hero-section-img {
    -ms-flex-item-align: end;
    align-self: flex-end;
    margin-top: 44.5px;
}

@media (max-width: 991px) {
    .hero-section .hero-section-inner .hero-section-img {
        -ms-flex-item-align: center;
        align-self: center;
        text-align: center;
    }

    .hero-section .hero-section-inner .hero-section-img img {
        width: 70%;
    }
}

.hero-section .hero-section-inner .hero-section-line {
    position: absolute;
    inset-inline-start: 20%;
    bottom: 15%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    transform: rotateY(180deg);
}

@media (max-width: 1199px) {
    .hero-section .hero-section-inner .hero-section-line {
        display: none;
    }
}

.hero-section .hero-section-inner .hero-section-circle {
    position: absolute;
    inset-inline-end: -1%;
    top: 7%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

.hero-section .hero-section-patterns img {
    position: absolute;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    z-index: 0;
}

.hero-section .hero-section-patterns img:nth-child(1) {
    inset-inline-start: 0;
    top: 10%;
    transform: rotate(180deg);
}

.hero-section .hero-section-patterns img:nth-child(2) {
    inset-inline-end: 0;
    bottom: 0;
    transform: rotate(180deg);
}

.why-ejack-section {
    margin-top: 63px;
    margin-bottom: 130px;
    position: relative;
}

@media (max-width: 1199px) {
    .why-ejack-section {
        margin-top: 30px;
        margin-bottom: 80px;
    }
}

.why-ejack-section .sec-haed {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1199px) {
    .why-ejack-section .sec-haed {
        text-align: center;
    }
}

.why-ejack-section .why-ejack-content {
    margin-top: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}

@media (max-width: 767px) {
    .why-ejack-section .why-ejack-content {
        gap: 15px;
    }
}

@media (max-width: 1199px) {
    .why-ejack-section .why-ejack-content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-top: 50px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.why-ejack-section .why-ejack-content .why-ejack-card {
    padding: 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

@media (max-width: 767px) {
    .why-ejack-section .why-ejack-content .why-ejack-card {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 45%;
        flex: 1 0 45%;
        margin-bottom: 20px;
    }
}

.why-ejack-section .why-ejack-content .why-ejack-card .img {
    width: 108px;
    height: 72px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 32px;
}

.why-ejack-section .why-ejack-content .why-ejack-card h4 {
    font-size: 17px;
    color: #000;
    margin-bottom: 13px;
}

.why-ejack-section .why-ejack-content .why-ejack-card p {
    font-size: 14px;
    color: #202937;
    line-height: 29px;
}

.why-ejack-section .why-ejack-patterns img {
    position: absolute;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    z-index: 0;
}

.why-ejack-section .why-ejack-patterns img:nth-child(1) {
    inset-inline-start: 0;
    top: -20%;
    transform: rotate(180deg);
}

.who-we-are-section {
    margin-top: 130px;
    margin-bottom: 123px;
}

@media (max-width: 1199px) {
    .who-we-are-section {
        margin-top: 80px;
        margin-bottom: 80px;
    }
}

.who-we-are-section .who-we-are-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.who-we-are-section .who-we-are-inner img {
    transform: rotateY(180deg);
}

@media (max-width: 991px) {
    .who-we-are-section .who-we-are-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .who-we-are-section .who-we-are-inner .img {
        display: none;
    }
}

.who-we-are-section .who-we-are-inner .who-we-are-content {
    max-width: 465px;
}

.who-we-are-section .who-we-are-inner .who-we-are-content .sec-haed {
    margin-bottom: 20px;
    position: relative;
}

@media (max-width: 991px) {
    .who-we-are-section .who-we-are-inner .who-we-are-content .sec-haed {
        text-align: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.who-we-are-section .who-we-are-inner .who-we-are-content .sec-haed h4 {
    margin-bottom: 23px;
}

.who-we-are-section .who-we-are-inner .who-we-are-content .sec-haed img {
    position: absolute;
    top: -58px;
    inset-inline-start: -15px;
}

@media (max-width: 991px) {
    .who-we-are-section .who-we-are-inner .who-we-are-content .sec-haed img {
        display: none;
    }
}

@media (max-width: 991px) {
    .who-we-are-section .who-we-are-inner .who-we-are-content {
        max-width: 100%;
    }
}

.who-we-are-section .who-we-are-inner .who-we-are-content p {
    line-height: 35px;
}

@media (max-width: 991px) {
    .who-we-are-section .who-we-are-inner .who-we-are-content p {
        text-align: center;
    }
}

.our-services-section {
    margin-top: 123px;
    margin-bottom: 190px;
    position: relative;
}

@media (max-width: 1199px) {
    .our-services-section {
        margin-top: 80px;
        margin-bottom: 80px;
    }
}

.our-services-section .sec-haed {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 516px;
    margin: 0 auto 68px;
}

@media (max-width: 767px) {
    .our-services-section .sec-haed {
        margin-bottom: 20px;
    }
}

.our-services-section .sec-haed p {
    text-align: center;
}

.our-services-section .our-services-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 19px;
}

@media (max-width: 1199px) {
    .our-services-section .our-services-inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .our-services-section .our-services-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.our-services-section .our-services-inner .our-services-card {
    background: #FFF;
    -webkit-box-shadow: 0 7px 27px rgba(205, 205, 205, 0.2);
    box-shadow: 0 7px 27px rgba(205, 205, 205, 0.2);
    border-radius: 27px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 57px 34px 27px;
}

@media (max-width: 1199px) {
    .our-services-section .our-services-inner .our-services-card {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 48%;
        flex: 0 1 48%;
    }
}

@media (max-width: 767px) {
    .our-services-section .our-services-inner .our-services-card {
        -webkit-box-flex: 100%;
        -ms-flex: 100%;
        flex: 100%;
        padding: 20px;
    }
}

.our-services-section .our-services-inner .our-services-card .img {
    width: 66px;
    height: 66px;
    background-color: #FDF2F6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 32px;
}

.our-services-section .our-services-inner .our-services-card h5 {
    font-size: 17px;
    font-weight: 500;
    color: #312B2D;
    margin-bottom: 13px;
}

.our-services-section .our-services-inner .our-services-card p {
    font-size: 14px;
    color: #202937;
    line-height: 29px;
}

.our-services-section .our-services-patterns img {
    position: absolute;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    z-index: 0;
}

.our-services-section .our-services-patterns img:nth-child(1) {
    inset-inline-end: 0;
    top: -20%;
    transform: rotate(180deg);
}

.working-mechanism-section {
    margin-top: 190px;
    margin-bottom: 92px;
    position: relative;
}

@media (max-width: 1199px) {
    .working-mechanism-section {
        margin-top: 80px;
        margin-bottom: 80px;
    }
}

.working-mechanism-section .sec-haed {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1199px) {
    .working-mechanism-section .sec-haed {
        text-align: center;
    }
}

.working-mechanism-section .working-mechanism-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 60px;
    position: relative;
}

@media (max-width: 991px) {
    .working-mechanism-section .working-mechanism-inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 30px;
    }
}

.working-mechanism-section .working-mechanism-inner:after {
    content: "";
    position: absolute;
    inset-inline-end: 50%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    top: 70px;
    background: #F9F8F8;
    width: 80%;
    height: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: -1;
}

@media (max-width: 991px) {
    .working-mechanism-section .working-mechanism-inner:after {
        display: none;
    }
}

.working-mechanism-section .working-mechanism-inner .working-mechanism-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 209px;
    margin: auto;
    position: relative;
}

@media (max-width: 991px) {
    .working-mechanism-section .working-mechanism-inner .working-mechanism-card {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 47%;
        flex: 1 0 47%;
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .working-mechanism-section .working-mechanism-inner .working-mechanism-card {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 45%;
        flex: 1 0 45%;
    }
}

.working-mechanism-section .working-mechanism-inner .working-mechanism-card:after {
    content: "";
    position: absolute;
    top: 64px;
    inset-inline-end: -50px;
    width: 22.04px;
    height: 22.04px;
    background: url(../img/arrow.svg) no-repeat;
    background-size: contain;
    transform: rotate(180deg);
}

@media (max-width: 991px) {
    .working-mechanism-section .working-mechanism-inner .working-mechanism-card:after {
        display: none;
    }
}

.working-mechanism-section .working-mechanism-inner .working-mechanism-card:last-child:after {
    display: none;
}

.working-mechanism-section .working-mechanism-inner .working-mechanism-card .img {
    width: 142px;
    height: 142px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 3px 29px rgba(231, 231, 231, 0.55);
    box-shadow: 0 3px 29px rgba(231, 231, 231, 0.55);
    margin-bottom: 22px;
    border-radius: 50%;
    background-color: #FFF;
}

@media (max-width: 575px) {
    .working-mechanism-section .working-mechanism-inner .working-mechanism-card .img {
        width: 100px;
        height: 100px;
        margin-bottom: 10px;
    }
}

.working-mechanism-section .working-mechanism-inner .working-mechanism-card .img img {
    width: 65px;
}

@media (max-width: 575px) {
    .working-mechanism-section .working-mechanism-inner .working-mechanism-card .img img {
        width: 40px;
    }
}

.working-mechanism-section .working-mechanism-inner .working-mechanism-card h5 {
    font-size: 17px;
    font-weight: 500;
    color: #312B2D;
    margin-bottom: 13px;
    margin-top: 22px;
    text-align: center;
}

@media (max-width: 575px) {
    .working-mechanism-section .working-mechanism-inner .working-mechanism-card h5 {
        font-size: 14px;
        margin-bottom: 10px;
        margin-top: 10px;
    }
}

.working-mechanism-section .working-mechanism-inner .working-mechanism-card p {
    font-size: 14px;
    color: #202937;
    line-height: 29px;
    text-align: center;
}

.working-mechanism-section .working-mechanism-patterns img {
    position: absolute;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    z-index: 0;
}

.working-mechanism-section .working-mechanism-patterns img:nth-child(1) {
    inset-inline-start: 0;
    top: -20%;
    transform: rotate(180deg);
}

.testimonials-section {
    padding-top: 200px;
    margin-bottom: 132px;
    position: relative;
}

@media (max-width: 1199px) {
    .testimonials-section {
        margin-top: 80px;
        margin-bottom: 80px;
    }
}

@media (max-width: 767px) {
    .testimonials-section {
        padding-top: 130px;
        margin-top: 0;
    }
}

@media (max-width: 575px) {
    .testimonials-section {
        padding-top: 100px;
    }
}

.testimonials-section .sec-haed {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.testimonials-section .testimonials-inner {
    max-width: 706px;
    margin: 40px auto 0;
    position: relative;
}

@media (max-width: 991px) {
    .testimonials-section .testimonials-inner {
        max-width: 100%;
    }
}

.testimonials-section .testimonials-inner blockquote {
    margin: 0;
}

.testimonials-section .testimonials-inner p {
    font-size: 18px;
    color: #312B2D;
    line-height: 35px;
    margin-bottom: 30px;
    text-align: center;
}

.testimonials-section .testimonials-inner .author-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.testimonials-section .testimonials-inner .author-info .avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonials-section .testimonials-inner .author-info .avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.testimonials-section .testimonials-inner .author-info h5 {
    margin-top: 17px;
    font-size: 18px;
    color: #312B2D;
    margin-bottom: 0;
}

.testimonials-section .testimonials-inner .swiper-pagination {
    position: unset;
    margin-top: 21px;
}

.testimonials-section .testimonials-inner .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #F1F5F7;
    opacity: 1 !important;
}

.testimonials-section .testimonials-inner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--main-color);
}

.testimonials-section .testimonials-inner .blockquote-start {
    position: absolute;
    bottom: 60px;
    inset-inline-start: -60px;
}

@media (max-width: 991px) {
    .testimonials-section .testimonials-inner .blockquote-start {
        inset-inline-start: 0;
        bottom: 80px;
    }
}

@media (max-width: 575px) {
    .testimonials-section .testimonials-inner .blockquote-start {
        bottom: 60px;
    }

    .testimonials-section .testimonials-inner .blockquote-start svg {
        width: 60px;
    }
}

.testimonials-section .testimonials-inner .blockquote-end {
    position: absolute;
    top: -30px;
    inset-inline-end: -110px;
}

@media (max-width: 991px) {
    .testimonials-section .testimonials-inner .blockquote-end {
        top: -80px;
        inset-inline-end: 0;
    }
}

@media (max-width: 575px) {
    .testimonials-section .testimonials-inner .blockquote-end {
        top: -60px;
    }

    .testimonials-section .testimonials-inner .blockquote-end svg {
        width: 60px;
    }
}

.testimonials-section .testimonials-plan img {
    position: absolute;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    z-index: 0;
    inset-inline-start: 0;
    top: 0;
    transform: rotateY(180deg);
}

@media (max-width: 991px) {
    .testimonials-section .testimonials-plan img {
        width: 60%;
    }
}

.contact-us-sec {
    margin-top: 132px;
    margin-bottom: 91px;
}

@media (max-width: 1199px) {
    .contact-us-sec {
        margin-top: 80px;
        margin-bottom: 80px;
    }
}

.contact-us-sec .contact-us-box {
    background: rgba(248, 247, 247, 0.87);
    border-radius: 46px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 41px 27px 38px 71px;
    position: relative;
}

@media (max-width: 991px) {
    .contact-us-sec .contact-us-box {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .contact-us-sec .contact-us-box .contact-us-text {
        text-align: center;
    }
}

.contact-us-sec .contact-us-box .contact-us-text h5 {
    color: #000;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 6px;
}

@media (max-width: 767px) {
    .contact-us-sec .contact-us-box .contact-us-text h5 {
        margin-bottom: 15px;
    }
}

.contact-us-sec .contact-us-box .contact-us-text p {
    font-size: 17px;
    color: #202937;
    margin-bottom: 30px;
    max-width: 548px;
    line-height: 35px;
}

@media (max-width: 1199px) {
    .contact-us-sec .contact-us-box .contact-us-text p {
        max-width: 100%;
    }
}

.contact-us-sec .contact-us-box .contact-us-text .contact-us-action .btn-primary {
    padding: 10px 25px;
}

.contact-us-sec .contact-us-box .contact-us-text .contact-us-action .btn-primary span {
    -webkit-padding-start: 8px;
    padding-inline-start: 8px;
}

.contact-us-sec .contact-us-box .contact-us-img {
    position: absolute;
    right: 27px;
    top: -54px;
}

@media (max-width: 1199px) {
    .contact-us-sec .contact-us-box .contact-us-img {
        display: none;
    }
}

.sec-haed {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.sec-haed h4 {
    font-size: 30px;
    font-weight: 500;
    color: #2D2D2D;
    margin-bottom: 15px;
}

@media (max-width: 1199px) {
    .sec-haed h4 {
        font-size: 25px;
    }
}

.sec-haed p {
    font-size: 17px;
    color: #63666C;
    margin-bottom: 23px;
}

.sec-haed span {
    display: inline-block;
    width: 62px;
    height: 7px;
    background-color: var(--main-color);
    border-radius: 20px;
}

.footer {
    position: relative;
    background: #2D2D2D;
}

.footer .footer-top {
    padding: 67px 0 50px;
    display: grid;
    grid-template-columns: 284px 1fr 1fr 1fr 265px;
    grid-gap: 0 50px;
}

@media (max-width: 1199px) {
    .footer .footer-top {
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 50px;
        padding: 50px 0 30px;
    }
}

@media (max-width: 991px) {
    .footer .footer-top {
        grid-gap: 17px;
    }
}

@media (max-width: 991px) {
    .footer .footer-top .footer-info {
        grid-column: 1/4;
        text-align: center;
    }
}

.footer .footer-top .footer-info .footer-logo {
    margin-bottom: 16px;
}

.footer .footer-top .footer-info p {
    font-size: 14px;
    color: #FFFFFF;
    line-height: 31px;
    max-width: 284px;
}

@media (max-width: 1199px) {
    .footer .footer-top .footer-info p {
        max-width: 80%;
    }
}

@media (max-width: 991px) {
    .footer .footer-top .footer-info p {
        margin-bottom: 10px;
        max-width: 100%;
    }
}

.footer .footer-top .footer-list h4 {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .footer .footer-top .footer-list h4 {
        font-size: 15px;
    }
}

.footer .footer-top .footer-list ul li {
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .footer .footer-top .footer-list ul li {
        margin-bottom: 15px;
    }
}

.footer .footer-top .footer-list ul li:last-child {
    margin-bottom: 0;
}

.footer .footer-top .footer-list ul li a {
    color: #FFFFFF;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    font-size: 14px;
}

.footer .footer-top .footer-list ul li a:hover {
    color: var(--main-color);
}

.footer .footer-top .footer-list .footer-mail {
    margin-bottom: 30px;
}

.footer .footer-top .footer-list .footer-mail .footer-mail-form {
    position: relative;
}

.footer .footer-top .footer-list .footer-mail .footer-mail-form .form-control {
    height: 40px;
    background-color: #454647;
    border-radius: 30px;
    font-size: 13px;
    color: #FFF;
    -webkit-padding-end: 60px;
    padding-inline-end: 60px;
    border: none !important;
}

.footer .footer-top .footer-list .footer-mail .footer-mail-form .form-control::-webkit-input-placeholder {
    color: #A6A6A6;
    font-size: 12px;
}

.footer .footer-top .footer-list .footer-mail .footer-mail-form .form-control::-moz-placeholder {
    color: #A6A6A6;
    font-size: 12px;
}

.footer .footer-top .footer-list .footer-mail .footer-mail-form .form-control:-ms-input-placeholder {
    color: #A6A6A6;
    font-size: 12px;
}

.footer .footer-top .footer-list .footer-mail .footer-mail-form .form-control::-ms-input-placeholder {
    color: #A6A6A6;
    font-size: 12px;
}

.footer .footer-top .footer-list .footer-mail .footer-mail-form .form-control::placeholder {
    color: #A6A6A6;
    font-size: 12px;
}

.footer .footer-top .footer-list .footer-mail .footer-mail-form .form-control:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.footer .footer-top .footer-list .footer-mail .footer-mail-form .btn-primary {
    position: absolute;
    inset-inline-end: 0;
    inset-block-start: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    min-width: 51px;
    height: 40px;
}

.footer .footer-top .footer-list .footer-social ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
}

@media (max-width: 991px) {
    .footer .footer-top .footer-list .footer-social ul {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.footer .footer-top .footer-list .footer-social ul li {
    margin-bottom: 0;
}

.footer .footer-top .footer-list .footer-social ul li a {
    width: 29px;
    height: 29px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #FFFFFF;
    -webkit-transition: background 0.3s;
    -o-transition: background 0.3s;
    transition: background 0.3s;
}

.footer .footer-top .footer-list .footer-social ul li a:hover {
    background: var(--main-color);
}

.footer .footer-top .footer-list .footer-social ul li a:hover img {
    -webkit-filter: invert(0) brightness(100);
    filter: invert(0) brightness(100);
}

@media (max-width: 991px) {
    .footer .footer-top .footer-list:last-of-type {
        grid-column: 1/4;
        text-align: center;
    }
}

.footer .footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    padding: 30px 0 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 991px) {
    .footer .footer-copyright {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 15px 0;
        gap: 10px;
    }
}

.footer .footer-copyright p {
    font-size: 14px;
    color: #FFF;
}

@media (max-width: 991px) {
    .footer .footer-copyright p {
        font-size: 12px;
    }
}


.loveapex {
    -webkit-animation: loveapex 1s ease-in-out alternate forwards infinite;
    animation: loveapex 1s ease-in-out alternate forwards infinite;
    padding: 0 3px;
}

@-webkit-keyframes loveapex {

    0%,
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

@keyframes loveapex {

    0%,
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

/*# sourceMappingURL=style.css.map */