@import url(styles.css);

/* Start Fonts */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Noto+Kufi+Arabic:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* End Fonts */

:root {
    --main-color: #F34A1E;
    --sec-color: #16068B;
    --dark-color: #000;
    --bg-color: #F0F4F9;
    --bg-grad: linear-gradient(to right, #16068B 0%, #F34A1E 100%);
    --light-color: #f7efee;

}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #000;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:hover {
    text-decoration: none;
    color: var(--sec-color);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:focus {
    text-decoration: none;
    /* color: inherit; */
}

button,
button:hover {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

body {
    padding: 0;
    margin: 0;
    font-family: "Noto Kufi Arabic", serif;
    background: #fff;
    text-align: start;
    direction: rtl;
}

section,
footer {
    /* overflow: hidden; */
    position: relative;
}

p {
    margin: 0;
    font-size: 15px;
    line-height: 25px;
}

ul {
    padding: 0;
    margin: 0;
    display: block;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

li {
    display: block;
    list-style: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

iframe {
    width: 100%;
    height: 100%;
}

.padding {
    padding: 0 !important;
}

img {
    max-width: 100%;
}

input,
button,
input:focus,
button:focus,
input:active,
button:active,
button:hover,
textarea:active,
textarea:focus,
select,
select:active,
select:focus {
    outline: none !important;
}

textarea {
    resize: none;
}

main {
    overflow: hidden;
    /* position: relative; */
    /* min-height: 100vh; */
}

.owl-carousel {
    direction: ltr;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: capitalize;
}

/* Start Sidebar */

.cursor {
    opacity: 0;
    transition: all .5s;
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    padding: 30px;
    padding-top: 30.1px;
    padding-bottom: 53.1px;
    z-index: -1;
    opacity: 0;
    transition: all .3s;
    background: var(--dark-color);
    visibility: hidden;
    right: -100%;
}

.menu-backdrop {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -10;
    opacity: 0;
    transition: all .3s;
}

.mobile-menu .menu-box {
    position: relative;
    z-index: 2;
    height: calc(100% - 18%);
    /* display: flex; */
    /* align-items: center; */
    /* -webkit-align-items: center; */
}

.mobile-menu .menu-box .navigation li {
    margin: 0 0 30px;
    /* text-align: center; */
}

.mobile-menu .menu-box .navigation li a {
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #f0f0f0;
}

.menu-right {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 37px;
}

body.mobile-menu-visible .mobile-menu {
    right: 0;
    opacity: 1;
    z-index: 999999;
    visibility: visible;
    /* transform: none; */
}

/* End Sidebar */


/***

====================================================================
Start Search Popup
====================================================================

***/

.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    display: none;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.9);
    /* height: 100%; */
    /* position: absolute; */
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==), progress;
}

.sidenav-bar-visible .search-popup {
    width: 80%;
}

.search-popup:before {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 560px;
    /* background-image: url(../images/waves-shape.png); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 0px;
    content: "";
}

.search-active .search-popup {
    transform: translateY(0%);
    margin-top: 0;
    display: block;
}

.search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    margin: 0 auto;
    margin-top: -200px;
    border-radius: 50%;
    text-align: center;
    background: var(--main-color);
    width: 70px;
    cursor: pointer;
    box-shadow: 0px 0px 16px rgb(0 0 0 / 16%);
    border-bottom: 3px solid #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-align: center;
    padding: 0;
    opacity: 0;
    inset: 0;
    right: 0;
    left: 0;
    position: absolute;
}

.search-popup .close-search span {
    position: relative;
    display: block;
    height: 70px;
    width: 70px;
    font-size: 30px;
    line-height: 70px;
    color: #ffffff;
}

.search-active .search-popup .close-search {
    visibility: visible;
    top: 50%;
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.search-popup form {
    position: absolute;
    z-index: 10;
    margin: auto;
    top: 0;
    right: 150px;
    left: 150px;
    bottom: 0;
    height: 60px;
    padding: 0;
    border-bottom: 1px solid #444243 !important;
    border: none;
    background-color: transparent;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    overflow: visible;
}

.search-active .search-popup form {
    transform: scaleX(1);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.search-popup .form-group {
    position: relative;
    margin: 0px;
    overflow: hidden;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
    border: none;
    line-height: 20px;
    /* background: transparent !important; */
    width: 100%;
    height: 60px;
    padding: 0px !important;
    background: none !important;
    color: #bababa;
    font-size: 16px;
    font-style: italic;
    outline: none !important;
    box-shadow: none !important;
    font-weight: 400;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
    position: absolute;
    left: 30px;
    top: 0px;
    height: 70px;
    line-height: 70px;
    background: transparent;
    text-align: center;
    font-size: 24px;
    color: #fff;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: 30px;
    height: 60px;
    width: 60px;
    line-height: 60px;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
    color: var(--light-color);
}

.search-popup input::placeholder,
.search-popup textarea::placeholder {
    color: #fff;
}

.search-popup .close-search.style-two {
    position: absolute;
    right: 25px;
    left: auto;
    color: #ffffff;
    /* width: auto; */
    /* height: auto; */
    top: 25px;
    margin: 0px;
    border: none;
    background: none !important;
    box-shadow: none !important;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    inset: 0;
    width: 100%;
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==), progress;
    border-radius: 0;
}

.search-popup .close-search.style-two span {
    font-size: 20px;
    color: #ffffff;
}


/***

====================================================================
End Search Popup
====================================================================

***/

/* Start Header */

.header-med .head-inner ul {
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    /* margin-top: 27px; */
    gap: 38px;
}

header.sticky {
    position: absolute;
    z-index: 9;
    left: 0;
    right: 0;
    padding: 25px 0;
    background: rgb(34 34 31 / 10%);
    /* overflow: hidden; */
    top: 0;
}

.header-med .head-inner .logo a {
    display: block;
    max-width: 63px;
}

.close-btn {
    color: #fff;
    display: table;
    margin: 0 0 30px;
    margin-inline-start: auto;
    font-size: 18px;
    cursor: pointer;
    width: 40.37px;
    height: 40.37px;
    border-radius: 50%;
    border: 0.47px solid #FFFFFF;
    line-height: 40.37px;
    text-align: center;
}

.menu-right .mobile-nav-toggler .lines {
    display: block;
    width: 53px;
    overflow: hidden;
}

.menu-right .mobile-nav-toggler .lines i {
    display: block;
    width: 53px;
    height: 4px;
    margin: 6.5px 0;
    transition: all .5s;
    position: relative;
    overflow: hidden;
}

.menu-right .mobile-nav-toggler .lines ::after,
.menu-right .mobile-nav-toggler .lines ::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: #fff;
    transition: all .5s;
    top: 0;
}

.menu-right .mobile-nav-toggler .lines ::after {
    transform: translateX(-50px);
    transition: all .3s;
}

.menu-right .mobile-nav-toggler:hover .lines ::after {
    transform: none;
}

.menu-right .mobile-nav-toggler:hover .lines ::before {
    transform: translateX(50px);
}

.menu-right .mobile-nav-toggler .lines .line2::after {
    transition: all .5s;
}

.menu-right .mobile-nav-toggler .lines .line3::after {
    transition: all .7s;
}

.menu-right .mobile-nav-toggler .lines i:nth-child(1),
.menu-right .mobile-nav-toggler .lines i:nth-child(3) {
    width: 25px;
}

.menu-right .mobile-nav-toggler .lines i:nth-child(1) {
    margin-inline-start: auto;
}

.lang-h {
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    line-height: 25.66px;
}

.overlay-img {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.overlay-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.navbar-collapse {
    /* display: flex; */
    flex-wrap: wrap;
    justify-content: space-between;
    /* max-height: 100%; */
    /* overflow-y: auto; */
}

.navbar-collapse .navigation {
    /* width: 50%; */
    margin-bottom: 40px;
}

.mobile-menu .menu-box .navigation li a:hover {
    color: #fff;
    text-decoration: underline;
}

.mobile-menu .menu-box .navigation li:last-child {
    margin: 0;
}

.mobile-menu .menu-box .menu-outer {
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
}

.flex-h {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.logo a {
    display: block;
    text-align: center;
}

.logo a img {
    max-height: 277.78px;
}

header .flex-h {
    margin-top: 84px;
}

.header-med .head-inner ul li a {
    color: #FFFFFF;
    font-size: 14px;
    line-height: 24px;
    text-decoration: none;
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    padding: 20px 0;
}


.head-inner {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    -webkit-align-items: center;
}

.logo-h {
    max-width: 136.16px;
    width: 100%;
    filter: brightness(0) invert(1);
}

.logo-h a {
    display: block;
    width: 100%;
}

.header-med .head-inner ul li {
    position: relative;
}

.header-med .head-inner ul li.current-menu-item a,
.header-med .head-inner ul li a:hover,
.header-med .head-inner ul li .sub-menu li a:hover {
    color: var(--main-color);
}

.header-med .head-inner ul li.menu-item-has-children>a::after {
    content: "\f107";
    font-family: 'Font Awesome 6 Pro';
    margin-inline-start: 5px;
    transition: all .4s;
    position: relative;
    display: inline-block;
}

.header-med .head-inner ul li .sub-menu {
    min-width: 276px;
    position: absolute;
    top: 100%;
    right: 0;
    display: block;
    background: #fff;
    box-shadow: 0px 4.39px 39.47px 0px #4F4F4F1F;
    border-radius: 8px;
    padding: 17px;
    visibility: hidden;
    z-index: 99;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-out 0s;
    margin: 0;
}

.header-med .head-inner ul li .sub-menu li a {
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
    padding: 11px 0;
    display: block;
    color: var(--dark-color);
    border-bottom: 1px solid #F2F2F2;
}

.header-med .head-inner ul li .sub-menu li:first-child a {
    padding-top: 0;
}

.header-med .head-inner ul li .sub-menu li:last-child a {
    padding-bottom: 0;
    border: none;
}

.header-med .head-inner ul li:hover .sub-menu {
    transform: scale(1, 1);
    opacity: 1;
    visibility: visible;
}

.header-med .head-inner ul li.menu-item-has-children>a:hover::after {
    transform: rotate(180deg);
}

.head-inner .menu-left {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 39px;
    /* margin-inline-start: auto; */
}

.lang-h:hover {
    color: #fff;
}

.mobile-nav-toggler .lines {
    display: block;
    width: 35px;
    overflow: hidden;
}

.mobile-nav-toggler .lines i {
    display: block;
    width: 53px;
    height: 4px;
    margin: 6.5px 0;
    transition: all .5s;
    position: relative;
    overflow: hidden;
}

.mobile-nav-toggler .lines ::after,
.mobile-nav-toggler .lines ::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--main-color);
    transition: all .5s;
    top: 0;
}

.mobile-nav-toggler .lines ::after {
    transform: translateX(-50px);
    transition: all .3s;
}

.mobile-nav-toggler:hover .lines ::after {
    transform: none;
}

.mobile-nav-toggler:hover .lines ::before {
    transform: translateX(50px);
}

.mobile-nav-toggler .lines .line2::after {
    transition: all .5s;
}

.mobile-nav-toggler .lines .line3::after {
    transition: all .7s;
}

.mobile-nav-toggler .lines i:nth-child(1),
.mobile-nav-toggler .lines i:nth-child(3) {
    width: 25px;
}

.mobile-nav-toggler .lines i:nth-child(1) {
    margin-inline-start: auto;
}

.item.res-menu {
    display: none;
}

body.mobile-menu-visible {
    overflow: hidden;
}

.btn-mobile {
    margin-top: 30px;
}

.btn {
    outline: none;
    position: relative;
    border: 1px transparent solid;
    padding: 11px 27px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    min-width: 145px;
    background: var(--main-color);
    min-height: 40px;
    border-radius: 50px;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 24px;
    box-shadow: none !important;
    border: none !important;
    font-weight: bold;
    gap: 8px;
}

.btn:hover {
    cursor: pointer
}

.btn:hover:before {
    opacity: 1;
    transform: translate(0, 0);
}

.btn:before {
    content: attr(data-hover);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translate(0, -100%);
    transition: all .3s ease-in-out;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    color: #fff;
}

.btn span {
    /* text-transform: uppercase; */
    /* letter-spacing: 3px; */
    /* font-weight: 800; */
    /* font-size: .8em; */
    transition: all .3s ease-in-out;
}

.btn:hover span {
    opacity: 0;
    transform: translate(0, 100%);
}

header .btn {
    /* font-size: 14px; */
    /* line-height: 24px; */
}

.head-inner .nav-inner {
    margin-inline-start: auto;
    margin-inline-end: 52px;
}

/* End Header */

/* Start Banner-h */

.banner-h {
    background: var(--bg-grad);
}

.banner-h .row {
    min-height: 908px;
    align-items: center;
    -webkit-align-items: center;
}

.img-banner {
    margin-top: 77px;
    max-width: 730.13px;
    left: -9vw;
    position: relative;
}

.text-banner h1 {
    font-size: 32px;
    line-height: 48px;
    color: #fff;
    font-weight: bold;
    max-width: 448px;
    margin-bottom: 32px;
}

.text-banner p {
    font-size: 18px;
    line-height: 32px;
    color: #fff;
    margin-bottom: 32px;
}

.btn.btn-white {
    background: #fff;
    color: var(--main-color);
    min-height: 56px;
    min-width: 215px;
}

.btn.btn-white::before {
    color: var(--main-color);
    right: -21px;
}

.img-banner img {
    max-height: 727.09px;
}

/* End Banner-h */

/* Start About-h */

.about-h {
    padding: 117px 0 20px;
}

.about-h .row {
    align-items: center;
    -webkit-align-items: center;
}

.text-about {
    max-width: 778.58px;
}

.title {
    margin-bottom: 30px;
}

.title h3 {
    font-size: 35px;
    color: var(--main-color);
    line-height: 45px;
    margin: 0;
}

.text-about p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
}

.img-about {
    width: 127%;
}

.section-icon {
    position: absolute;
    bottom: -38%;
    /* right: 0; */
    left: 31vw;
    display: flex;
    justify-content: center;
    max-width: 130.3px;
    z-index: 1;
}

/* End About-h */

/* Start Spcial-h */

.spcial-h {
    clip-path: polygon(0 32%, 100% 0%, 100% 100%, 0 100%);
    background: var(--bg-color);
    padding: 205px 0 50px;
}

.spcial-block {
    margin: 15px 0;
    height: calc(100% - 30px);
    background: #fff;
    border-radius: 16px;
    padding: 30px;
}

.spcial-block h3 {
    font-size: 25px;
    line-height: 35px;
    color: var(--main-color);
    margin-bottom: 8px;
    font-weight: bold;
}

.spcial-block p {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    font-weight: 300;
}

/* End Spcial-h */

/* Start How-h */

.how-h {
    padding: 80px 0 0;
    background: #f0f4f8;
}

.title.title-flex {
    display: flex;
    gap: 26px;
}

.title .icon {
    max-width: 70px;
}

.all-how .item-who {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    background: linear-gradient(to left, #fff, transparent);
    border-radius: 30px;
    padding: 48px 58px;
    max-width: 988px;
    margin-bottom: 111px;
}

.all-how .item-who:nth-child(1) .img-who {
    max-width: 634.08px;
    margin: -90px 0 -90px;
    position: relative;
    left: -9%;
}

.all-how .item-who .text-who h3 {
    font-size: 30px;
    line-height: 40px;
    color: var(--main-color);
    margin-bottom: 20px;
}

.all-how .item-who:nth-child(1) .text-who {
    width: calc(100% - 24%);
}

.all-how .item-who .text-who p {
    font-size: 18px;
    line-height: 28px;
    color: #22221F;
    font-weight: 300;
}

.all-how .item-who:nth-child(even) {
    flex-direction: row-reverse;
    margin-inline-start: auto;
    background: linear-gradient(to right, #fff, transparent);
}

.all-how .item-who:nth-child(1) {
    max-width: 100%;
    width: 100%;
}

.all-how .item-who .img-who {
    max-width: 250px;
    margin: -121px -86px 0;
}

.all-how .item-who .text-who {
    width: 655px;
    margin-inline-start: auto;
}

.all-how .item-who:nth-child(odd) .text-who {
    margin: 0;
    margin-inline-end: auto;
}

/* End How-h */

/* Start Why-h */

.why-h {
    padding: 175px 0 20px;
}

.all-items-why {
    max-width: 848.03px;
    margin-inline-start: auto;
    display: flex;
    flex-wrap: wrap;
    background: url(../images/pluse.png);
    min-height: 508.89px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.all-items-why .item {
    width: 50%;
    flex: 0 0 auto;
    padding: 70px 63px 30px;
    padding-inline-end: 20px;
    transform: rotate(-3deg);
    max-width: 48%;
}

.why-block h3 {
    font-size: 28px;
    color: var(--main-color);
    margin-bottom: 18px;
    font-weight: bold;
}

.why-block p {
    font-size: 18px;
    color: #22221F;
    font-weight: 300;
    line-height: 1.3;
}

.all-items-why .item:nth-child(odd) {
    padding-inline-start: 0;
}

.all-items-why .item:nth-child(even) {
    padding-inline-end: 0;
}

.all-items-why .item:nth-child(2) {
    padding-top: 94px;
}

.all-items-why .item:nth-child(3) {
    padding-top: 100px;
}

.all-items-why .item:nth-child(4) {
    padding-top: 116px;
}

.all-items-why .item:nth-child(1) {
    padding-inline-start: 50px;
}

/* End Why-h */

/* Start Download-h */

.download-h {
    background: url(../images/shape.png);
    padding: 550px 0 200px;
    background-size: 100% 100%;
}

.download-h .row {
    align-items: center;
    -webkit-align-items: center;
}

.title.title-white h3 {
    color: #fff;
}

.text-download p {
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    font-weight: 300;
    margin: 0 0 28px;
}

.text-download .item-download {
    text-align: center;
}

.text-download .item-download h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
    line-height: 30px;
}

.links-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    gap: 21px;
}

.links-flex a {
    display: block;
    max-width: 83.63px;
}

.img-download {
    /* width: 110%; */
    margin-bottom: 0;
    position: relative;
    bottom: 0;
    text-align: left;
}

/* End Download-h */

/* Start Partners-h */

.partners-h {
    padding: 80px 0;
}

.partners-h .title h3 {
    color: #22221F;
    font-size: 50px;
    line-height: 60px;
}

.part-block {
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
}

.part-block img {
    max-width: 233px;
    max-height: 83px;
    object-fit: contain;
    object-position: center;
}

ul.slick-dots {
    position: relative;
    bottom: 0;
    margin-top: 58px;
}

ul.slick-dots li {
    width: auto;
    height: auto;
    margin: 0 4px;
}

ul.slick-dots li button {
    background: #E5E9EA;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    transition: all .4s;
}

ul.slick-dots li button::before {
    display: none;
}

ul.slick-dots li.slick-active button {
    width: 39px;
    border-radius: 50px;
    background: var(--main-color);
}

/* End Partners-h */

/* Start Faqs-h */

.faqs-h {
    clip-path: polygon(0 32%, 100% 0%, 100% 100%, 0 100%);
    background: var(--bg-color);
    padding: 200px 0 100px;
}

.faq-block,
.faq-links {
    overflow: hidden;
    margin: 12px 0;
    background: #fff;
    padding: 40px 48px;
    border-radius: 30px;
    height: calc(100% - 24px);
}

.faq-block h3 {
    font-size: 22px;
    line-height: 32px;
    color: #000;
    margin-bottom: 12px;
}

.faq-block p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    color: #22221F;
}

.faq-links {
    padding: 0;
}

.faq-links a {
    padding: 35px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    font-size: 30px;
    color: var(--main-color);
}

.faq-links a i {
    font-weight: 300;
    font-size: 60px;
}

.faq-links a:hover {
    background: var(--main-color);
    color: #fff;
}

/* End Faqs-h */

/* Start Footer */

footer {
    background: var(--bg-grad);
}

.footer-top {
    padding: 80px 0 50px;
}

.foot-block.flex-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    margin-bottom: 42px;
}

.logo-f {
    max-width: 230px;
    filter: brightness(0) invert(1);
}

.upPage {
    font-size: 35px;
    color: #fff !important;
}

.upPage i {
    font-weight: 300;
}

.foot-block h3 {
    font-size: 16px;
    color: #fff;
    line-height: 26px;
    margin-bottom: 25px;
}

.foot-block p {
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    font-weight: 300;
    max-width: 413px;
}

.info-f ul li {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    margin-bottom: 14px;
    color: #fff;
    font-size: 14px;
}

.info-f ul li .icon {
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--main-color);
}

.info-f ul li .icon i {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
}

.info-f ul li .details {
    width: calc(100% - 24px);
    padding-inline-start: 10px;
}

.info-f ul li .details a {
    font-size: 14px;
    color: #fff;
}

.info-f ul li .details a u {
    display: inline-block;
    direction: ltr;
    text-decoration: none;
}

.s-h {
    /* display: flex; */
    /* flex-wrap: wrap; */
    /* gap: 16px; */
    margin-top: 25px;
}

.s-h span {
    width: 100%;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    margin: 25px 0 9px;
}

.s-h .s-in a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    color: var(--main-color);
}

.s-h .s-in {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 25px;
}

.s-h .s-in a i {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
}

.s-h .s-in a:hover {
    background: var(--sec-color);
    color: #fff;
}

.subscribe-h label {
    font-size: 14px;
    color: #fff;
    margin-bottom: 8px;
}

.subscribe-h {
    margin-top: 39px;
    max-width: 384px;
}

.subscribe-h input {
    width: 100%;
    /* text-align: center; */
    height: 56px;
    border-radius: 50px;
    padding: 16px;
    border: none !important;
    box-shadow: none !important;
}

.subscribe-h button.btn {
    width: 100%;
    margin-top: 39px;
}

.footer-bottom {
    background: rgb(34 34 31 / 18%);
    padding: 5px;
}

.copy-right p {
    font-size: 14px;
    line-height: 36px;
    color: #fff;
}

.line-foot {
    position: absolute;
    top: -34px;
    right: 0;
    left: 0;
    margin: 0 auto;
    max-width: 836.96px;
}

.spcial-img {
    max-width: 550px;
    min-height: 430px;
    border-radius: 12px;
    overflow: hidden;
    margin: 15px 0;
    height: calc(100% - 30px);
    margin-inline-start: auto;
}

.spcial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* End Footer */

/* Start Form-img-g */

.form-img-h {
    padding: 80px 0;
}

.form-img-h .row {
    /* align-items: center; */
}

.from-img {
    display: flex;
    justify-content: end;
    align-items: center;
}

.from-img img {
    max-height: 600px;
}

.from-h {
    padding: 30px;
    box-shadow: 0 0 20px rgb(0 0 0 / 5%);
    border-radius: 20px;
}

.from-h .form-group {
    margin: 30px 0;
}

.from-h .form-group label {
    font-size: 16px;
    margin-bottom: 10px;
    color: #777;
}

.from-h .form-group .form-control {
    width: 100%;
    display: block;
    padding: 10px 20px;
    height: 50px;
    border-radius: 8px;
    border: 1px #ddd solid;
    font-size: 15px;
    transition: aal .4s;
}

.iti {
    display: block;
}

.iti__flag {
    display: none;
}

.iti__selected-flag {
    direction: ltr;
}

.from-h .form-group .btn {
    width: 100%;
    height: 50px;
}

.from-h .form-group .form-control:focus {
    box-shadow: none;
    border-color: var(--main-color);
}

.img-download img {
    max-height: 800px;
}

/* End Form-img-g */
.price-section {
    background-color: var(--light-color);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 109px 0;
    overflow: hidden;
}


.price-section .price-circle {
    position: absolute;
    top: -290px;
    right: -114px;
}

.price_heading {
    text-align: center;
}

.price-section .price_heading h4 {
    margin-bottom: 6px;
}

.price-section .price_heading h2 {
    margin-bottom: 38px;
}

.price-section .price-block {
    position: relative;
}

.price-block .price-sidecircle {
    position: absolute;
    right: -60px;
    top: -52px;
}

.price-section .price-block .price_content {
    text-align: center;
    box-shadow: 1px 1px 50px rgb(0 0 0 / 10%);
    border-radius: 10px;
    width: 100%;
    padding: 62px 50px;
    background-color: #fff;
    border: 1px solid white;
    transition: all 0.3s ease-in-out;
}

.price-section .price-block .price_content:hover {
    border: 3px solid var(--main-color);
}

.price-section .price_content .icon-size1 {
    border-radius: 100px;
    height: 120px;
    width: 120px;
    line-height: 120px;
    text-align: center;
    margin-bottom: 27px;
    display: inline-block;
    background: var(--bg-color-red);
    transition: all 0.3s ease-in-out;
}

.price-section .price_content .icon-size1:hover {
    transform: translateY(-10px);
}

.price-section .price_content .icon-size2 {
    background: var(--bg-color-cyan);
}

.price-section .price_content .icon-size3 {
    background: var(--bg-color-blue);
}

.price-section .price_content .text1 {
    font-size: 42px;
    line-height: 64px;
    font-weight: 500;
    color: var(--main-color);
    display: block;
    margin-bottom: 10px;
}

.price-section .price_content .text2 {
    color: var(--bg-grad);
}

.price-section .price_content .text3 {
    color: var(--bg-color-violet);
}

.price-section .price_content .text-size-18 {
    color: var(--bg-color-dark-gray);
    margin-bottom: 10px;
}

.price-section .price_content .for-space {
    margin-bottom: 30px;
}

.price-section .price_content .get_started {
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    padding: 19px 54px;
    border-radius: 8px;
    color: var(--bg-color);
    background-color: var(--sec-color) !important;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

.price-section .price_content .premium {
    background-color: var(--main-color);
}

.price-section .price_content .business {
    background-color: var(--bg-color-violet);
}

.price-section .price_content:hover .get_started {
    background-color: var(--main-color) !important;
}

.price-section .price-circle .img-fluid {
    filter: grayscale(1);
    opacity: .5;
}

.price-block .price-sidecircle .img-fluid {
    filter: grayscale(1) sepia(14);
}


/* End Footer */
