@import url(bootstrap.min.css);
@import url(animate.css);
@import url(all.css);
@import url(jquery.fancybox.css);
@import url(swiper-bundle.min.css);
@import url(odometer.css);
@import url(intlTelInput.css);

/* Start Fonts */

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

/* End Fonts */

:root {
    --main-color: #6D4089;
    --sec-color: #7F5283;
    --thr-color: #FEDE29;
    --dark-color: #3D244C;
    --bg-color: #FAF2FF;
    --bg-grad: linear-gradient(76.44deg, #3D244C 1.09%, #6D4089 106.26%)
}

* {
    box-sizing: border-box;
    text-transform: capitalize;
}

a {
    text-decoration: none;
    font-family: 'Khula', sans-serif;
    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(--main-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: 'Khula', sans-serif;
    background: #fff;
    text-align: start;
}

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

p {
    margin: 0;
    color: var(--dark-color);
    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;
    /* min-height: 100vh; */
}

.owl-carousel {
    direction: ltr;
}


/* Start Loading */

.loader {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 999999999999999999999999999999;
    background: #fff;
    transition: all .5s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader .loader-inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.loader .loader-inner img {
    max-width: 250px;
}


/* End Loading */


/* Start Not-found */

.not-found .not-found-pro {
    max-width: 500px;
    margin: auto;
    text-align: center;
}

.not-found .not-found-pro img {
    max-height: 400px;
}

.not-found .not-found-pro h2 {
    font-size: 30px;
    color: var(--dark-color);
    font-weight: bold;
}

.not-found .not-found-pro h4 {
    margin: 15px 0;
    font-size: 20px;
    color: #777;
}

.not-found .not-found-pro p {
    margin: 25px 0 15px;
    font-size: 14px;
    color: #777;
    /* font-weight: bold; */
    position: relative;
}

.not-found .not-found-pro .btn.go-home {
    padding: 0;
    line-height: normal;
    min-height: auto;
    background: transparent;
    color: var(--sec-color);
    font-size: 20px;
    text-decoration: underline;
    margin: 0 auto;
}

.not-found .not-found-pro p::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    border-bottom: 1px #f1f1f1 solid;
    margin: auto;
    width: 100%;
    bottom: 0;
    height: 1px;
    z-index: -2;
}

.not-found .not-found-pro p::before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    margin: auto;
    z-index: -1;
    border: 1px #f1f1f1 solid;
}

.not-found.not-found-404 .not-found-pro h2 {
    margin: 20px 0;
}


/* End Not-found */


/* Start Select Nice */

select {
    display: none;
}

.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border: none;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    /* float: right; */
    font-family: inherit;
    font-size: 16px;
    font-weight: normal;
    line-height: 50px;
    outline: none;
    padding-right: 30px;
    padding-left: 30px;
    position: relative;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    color: #E2DDDD;
    width: 100%;
    background: transparent;
    border-bottom: 1px solid #707070;
    padding: 0 20px;
}

.nice-select:hover {
    border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
    border-color: #999;
}

.nice-select:after {
    content: "\f107";
    display: block;
    margin-top: 0;
    pointer-events: none;
    position: absolute;
    left: 15px;
    top: 0;
    -webkit-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    transition: all 0.15s ease-in-out;
    font-family: 'Font Awesome 6 Pro';
    font-weight: bold;
    border: none !important;
    transform: none !important;
    font-size: 14px;
    color: #585858;
    /* opacity: .35; */
}

.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
}

.nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none;
}

.nice-select.disabled:after {
    border-color: #cccccc;
}

.nice-select.wide {
    width: 100%;
}

.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important;
}

.nice-select.right {
    float: right;
}

.nice-select.right .list {
    left: auto;
    right: 0;
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}

.nice-select.small:after {
    height: 4px;
    width: 4px;
}

.nice-select.small .option {
    line-height: 34px;
    min-height: 34px;
}

.nice-select .list {
    background-color: var(--white-color);
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
    width: 100%;
}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding: 0 10px;
    text-align: start;
    transition: all 0.2s;
    color: #000;
    background: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: var(--main-color);
    color: #fff;
}


/* End Select Nice */



/***

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

***/

.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -200%;
    transform: translateY(-100%);
    background-color: rgba(0, 0, 0, 0.90);
    -webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.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;
}

.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-color: 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;
}

.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;
    opacity: 1;
    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;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: -35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    background-color: #111111;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.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"] {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 50px;
    color: #000000;
    height: 70px;
    width: 100%;
    padding: 10px 30px;
    background-color: #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;
    font-weight: 500;
    text-transform: capitalize;
    padding-inline-end: 70px;
}

.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: #000000;
    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;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
    color: #000000;
}

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

.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;
}

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


/***

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

***/



/*** 

====================================================================
	Start Mobile Menu
====================================================================

***/

.nav-outer .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 30px;
    line-height: 50px;
    cursor: pointer;
    color: #ffffff;
    display: none;
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    padding: 20px;
    max-width: 100%;
    height: 100%;
    visibility: hidden;
    z-index: 999999;
    background: var(--dark-color);
    transform: translateX(100%);
    transition: all 200ms ease;
}

.mobile-menu .nav-logo {
    position: relative;
    padding: 20px 20px;
    /* text-align: left; */
    display: none;
}

.mobile-menu .nav-logo img {
    max-width: 200px;
    max-height: 55px;
}

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

.mobile-menu-visible .mobile-menu {
    visibility: visible;
    transform: none;
    /* transition-delay: 300ms; */
}

.mobile-menu .menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--dark-color);
    opacity: 0;
    transform: translateX(100%);
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 1;
    width: 100%;
    visibility: visible;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .menu-box {
    position: relative;
    /* right: -200%; */
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 120px);
    overflow: hidden;
    overflow-y: auto;
    padding: 0;
    z-index: 5;
    border-radius: 0px;
}

.mobile-menu-visible .mobile-menu .menu-box {
}

.mobile-menu .close-btn {
    position: relative;
    left: 0;
    top: 0;
    line-height: normal;
    width: auto;
    text-align: left;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    /* opacity: 0; */
    margin: 14px 0;
    width: 40px;
    height: 40px;
    /* transition: all .5s; */
    line-height: 40px;
    border: 1px #fff solid;
    text-align: center;
    border-radius: 50%;
    transition: all 100ms ease;
    -moz-transition: all 100ms ease;
    -webkit-transition: all 100ms ease;
    -ms-transition: all 100ms ease;
    -o-transition: all 100ms ease;
    margin-inline-start: auto;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    text-align: center;
    justify-content: center;
}

.mobile-menu-visible .mobile-menu .close-btn {
    /* opacity: 1; */
    /* display: block; */
    /* -webkit-transition-delay: 300ms; */
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    /* transition-delay: 300ms; */
}

.mobile-menu .close-btn:hover {
    opacity: 0.50;
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    /* max-height: calc(100vh - 100px); */
    /* overflow: hidden; */
    /* overflow-y: scroll; */
    display: block;
    padding-inline-end: 0;
    height: 100%;
}

.mobile-menu .navigation li {
    /* position: relative; */
    display: block;
    border-bottom: none;
}

.mobile-menu .navigation li>ul>li:last-child {
    border-bottom: none;
}

.mobile-menu .navigation li>ul>li:first-child {
    border-top: none;
}

.mobile-menu .navigation li>a {
    position: relative;
    display: block;
    line-height: normal;
    font-size: 18px;
    color: #fff;
    text-transform: capitalize;
    padding-inline-end: 30px;
    margin: 30px 0;
    font-weight: normal;
}

.mobile-menu .navigation li:hover>a,
.mobile-menu .navigation li.current>a {
    color: var(--main-color);
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 44px;
    height: 44px;
    text-align: center;
    font-size: 16px;
    line-height: 44px;
    color: #404040;
    cursor: pointer;
    z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 10px;
    width: 1px;
    height: 24px;
    border-left: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul {
    display: block;
    background: transparent;
    /* height: 0; */
    transition: none;
    overflow: hidden;
    position: absolute;
    /* right: 100%; */
    top: 0;
    padding-inline-start: 13px;
    /* transition: none; */
    position: relative;
}

.sticky-header .navbar-header {
    display: none;
}

.sticky-header .outer-box .nav-btn {
    position: relative;
    top: 4px;
    float: right;
    font-size: 22px;
    color: #000000;
    cursor: pointer;
    margin-top: 0px;
    margin-left: 30px;
}

.sticky-header .outer-box .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 28px;
    color: #000000;
    cursor: pointer;
    margin-left: 30px;
}

.sticky-header .outer-box .search-box-btn {
    color: #000000;
}

.sticky-header .outer-box {
    padding: 22px 0px;
}

.mobile-menu .menu-box .nav-title {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: var(--main-color);
    justify-content: space-between;
}

.mobile-menu .menu-box .nav-title h3 {
    margin: 0;
    color: #fff;
    font-size: 18px;
}

.mobile-menu .navigation li.menu-item-has-children a::after {
    content: "\f177";
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    font-family: 'Font Awesome 6 Pro';
    font-weight: lighter;
    transition: all .5s;
    /* margin-inline-end: -40px; */
}

.mobile-menu .navigation li.open .sub-menu {
    height: auto;
    padding: 0 20px;
}

.mobile-menu .navigation li.menu-item-has-children.open::after {
    transform: rotate(180deg);
}

.pages-bady {
    /* transition: all .5s; */
    overflow: hidden;
}

body.mobile-menu-visible .pages-bady {
    transform: translateX(-100%);
}

.mobile-menu::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 95%;
    height: 100%;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

.menu-outer {
    padding: 0;
}

div#navbarSupportedContent {
    height: 100%;
}

.mobile-menu .menu-box::-webkit-scrollbar {
    width: 5px;
}

.mobile-menu .menu-box::-webkit-scrollbar-track {
    background: rgb(255 255 255 / 15%);
}

.mobile-menu .menu-box::-webkit-scrollbar-thumb {
    background: #ffffff5e;
    outline: none;
}

/*** 

====================================================================
	End Sidebar style
====================================================================

***/

/* Start Header */

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

.header-top {
    padding: 34px 0;
}

header {
    position: relative;
    z-index: 9;
    right: 0;
    left: 0;
    top: 0;
    padding: 25px 0;
    background: #fff;
    transition: all .5s;
    z-index: 9999;
}

.header-top .head-top .nav-head ul {
    display: flex;
    flex-wrap: wrap;
}

.logo {
    /* max-width: 20%; */
    /* flex: 0 0 20%; */
    /* text-align: center; */
    margin-inline-end: 28px;
}

.header-top .head-top .nav-head ul li {
    margin-inline-end: 30px;
}

.header-top .head-top .nav-head ul li a {
    font-size: 14px;
    line-height: 17px;
    /* identical to box height */
    letter-spacing: 0.0125em;
    color: #FFF;
}

.header-top .head-top .nav-head,
.header-top .head-top .menu-top-right {
    max-width: 40%;
    flex: 0 0 40%;
}

.logo a {
    display: block;
}

.logo img {
    max-height: 68.5px;
    transition: all .5s;
}

.header-top .head-top .menu-top-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    -webkit-align-items: center;
}

.res-menu {
    display: none;
}

.btn:hover,
.btn:focus,
.btn-check:focus+.btn,
.header-top .btn:hover,
.btn.btn-white:hover {
    background: var(--sec-color);
    color: #fff;
    box-shadow: none !important;
}

.lang {
    color: #262526;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    /* identical to box height */
    text-transform: capitalize;
    transition: all .5s;
}

.header-top .btn {
    background: #fff;
    color: var(--main-color);
}

.search-box-btn.search-box-outer {
    cursor: pointer;
    font-size: 20px;
    color: #fff;
    transition: all .5s;
    /* margin: 0 32px; */
    margin-inline-end: 13px;
}

.header-top .head-top .nav-head ul li a:hover,
.header-page .header-top .head-top .nav-head ul li a:hover,
.header-page .header-top .head-top .nav-head ul li.current-menu-item a,
.header-top .head-top .nav-head ul li.current-menu-item a {
    color: var(--main-color);
}

.lang:hover {
    color: var(--main-color);
    /* border-color: var(--main-color); */
}

.search-box-btn.search-box-outer:hover,
.header-page .search-box-btn.search-box-outer:hover {
    color: var(--sec-color);
}

.button_su {
    overflow: hidden;
    position: relative;
    display: inline-block;
    border-radius: 50px;
    margin-bottom: 0;
}

.su_button_circle {
    background-color: red;
    border-radius: 1000px;
    position: absolute;
    left: 0;
    top: 0;
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    pointer-events: none;
    /*animation-timing-function: ease-in-out; */
    transition: all .5s;
}

.btn {
    display: inline-block;
    background: var(--main-color);
    color: #fff;
    min-width: 170px;
    text-align: center;
    border-radius: 0;
    transition: 400ms;
    text-decoration: none;
    min-height: 50px;
    padding: 13px 25px;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    border: none;
    font-weight: 700;
    font-size: 16px;
}

.button_text_container {
    position: relative;
    z-index: 10000;
    display: inline-block;
    line-height: 32px;
}

.explode-circle {
    animation: explode 0.5s forwards;

}

.desplode-circle {
    animation: desplode 0.5s forwards;
}

@keyframes explode {
    0% {
        width: 0px;
        height: 0px;
        margin-left: 0px;
        margin-top: 0px;
        background-color: rgba(42, 53, 80, 0.2);
    }

    100% {
        width: 400px;
        height: 400px;
        margin-left: -200px;
        margin-top: -200px;
        background-color: rgba(20, 180, 87, 0.8);
    }
}

@keyframes desplode {
    0% {
        width: 400px;
        height: 400px;
        margin-left: -200px;
        margin-top: -200px;
        background-color: rgba(20, 180, 87, 0.8);
    }

    100% {
        width: 0px;
        height: 0px;
        margin-left: 0px;
        margin-top: 0px;
        background-color: rgba(129, 80, 108, 0.6);
    }
}

.mobile-nav-toggler {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    line-height: 40px;
    font-size: 25px;
    cursor: pointer;
    position: relative;
    /* transition: all .5s; */
    background: var(--main-color);
}

.mobile-nav-toggler i {
    /* line-height: 35px; */
}

.lang:hover {
    /* background: #fff; */
    color: var(--sec-color);
}

.mobile-menu .navigation ul li>a::after {
    display: none;
}

.mobile-menu .navigation li:first-child a {
    padding-top: 0;
}

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

.head-inner .nav-menu ul {
    display: flex;
}

.head-inner .nav-menu ul li {
    position: relative;
    margin: 0 10px;
    color: #fff;
}

.head-inner .nav-menu ul li a {
    color: #262526;
    position: relative;
    font-style: normal;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    /* padding-bottom: 17px; */
    display: block;
}

.head-inner .nav-menu ul li .sub-menu {
    position: absolute;
    top: 100%;
    right: 0;
    display: block;
    min-width: 188px;
    background: #fff;
    border-radius: 6px;
    padding: 20px 0;
    transition: all .3s;
    visibility: hidden;
    opacity: 0;
    display: none;
    box-shadow: -5px 5px 7px 1px rgb(0 0 0 / 12%);
    z-index: 4;
}

.head-inner .nav-menu ul li .sub-menu li {
    margin: 0;
}

.head-inner .nav-menu ul li .sub-menu li a {
    padding: 10px 30px;
    display: block;
    font-size: 16px;
    color: var(--dark-color);
    border-bottom: 1px #f1f1f1 solid;
}

.head-inner .nav-menu ul li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    display: block;
}

.head-inner .nav-menu ul li.menu-item-has-children::after {
    content: "\f107";
    font-family: 'Font Awesome 6 Pro';
    position: relative;
    left: 0;
    top: 0;
    font-size: 14px;
    margin-inline-start: 6px;
}

.head-inner .nav-menu ul li.mega-menu .sub-menu.sub-mega-menu {
    width: 552px;
    display: flex;
    flex-wrap: wrap;
}

.head-inner .nav-menu ul li.mega-menu .sub-menu.sub-mega-menu li {
    padding: 10px 30px;
    max-width: 50%;
    flex: 0 0 50%;
}

.head-inner .nav-menu ul li.mega-menu .sub-menu.sub-mega-menu li ul {
    display: block;
}

.head-inner .nav-menu ul li.mega-menu .sub-menu.sub-mega-menu li ul li {
    max-width: 100%;
    padding: 0;
}

.head-inner .nav-menu ul li.mega-menu .sub-menu.sub-mega-menu li ul li a {
    padding: 6px 0;
}

.head-inner .nav-menu ul li.mega-menu .sub-menu.sub-mega-menu li h3 {
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 14px;

    margin: 0 0 26px;
}

.head-inner .nav-menu ul li .sub-menu li a:hover {
    color: var(--main-color);
}

.head-inner .nav-menu ul li.menu-item-has-children.mega-menu .sub-menu {
    width: 544px;
    display: flex;
    flex-wrap: wrap;
}

.head-inner .nav-menu ul li.menu-item-has-children.mega-menu .sub-menu li {
    max-width: 50%;
    flex: 0 0 50%;
}

.head-inner .nav-menu ul li.current-menu-item a::after,
.head-inner .nav-menu ul li a:hover::after {
    transform: none;
    opacity: 1;
}

.head-inner .nav-menu ul li .sub-menu li a::after {
    display: none;
}



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

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

.menu-right .btn {
    min-width: 129px;
    min-height: 45px;
    padding: 10px;
    font-family: 'bahij';
}

.menu-right .btn i {
    margin: 0;
    margin-inline-end: 6px;
    font-size: 14px;
    transform: none;
}

.menu-right .btn:hover {
    background: #fff;
    color: var(--main-color);
}

.head-inner .menu-right {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.head-inner .nav-menu ul li a:hover,
.head-inner .nav-menu ul li:hover {
    color: var(--sec-color);
}

.head-inner .nav-menu ul li.current-menu-item a {
    color: var(--sec-color);
}

/*.head-inner .nav-menu ul li a::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    bottom: -17px;*/
/*    right: 0;*/
/*    left: 0;*/
/*    margin: 0 auto;*/
/*    width: 16px;*/
/*    height: 16px;*/
/*    background: url(../images/link.svg);*/
/*    background-repeat: no-repeat;*/
/*    background-position: center;*/
/*    transform: scale(0);*/
/*    transition: all .5s;*/
/*    background-size: contain;*/
/*}*/

/*.head-inner .nav-menu ul li a.active::before {*/
/*    transform: none;*/
/*}*/

.head-inner .nav-menu ul li a.active {
    color: #e971f7 !important;
}

.lang i {
    font-size: 21px;
    margin-inline-start: 8px;
}

header.sticky.active {
    position: fixed;
    padding: 15px 0;
    box-shadow: 0 0 20px rgb(127 82 131 / 41%);
    background: var(--dark-color);
}

header.sticky.active .logo img {
    max-height: 55px;
    filter: brightness(0) invert(1);
}

header.sticky.active .head-inner .nav-menu ul li a {
    font-size: 15px;
    color: #fff;
}

header.sticky.active .head-inner .nav-menu ul li a::before {
    width: 12px;
    height: 12px;
    bottom: -13px;
}

header.sticky.active .lang {
    font-size: 15px;
    color: #fff;
}

header.sticky.active .lang i {
    font-size: 17px;
}

/* End Header */

/* Start Banner-h */

.overlay-img {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.banner-h .row {
    min-height: 654px;
    align-items: center;
    -webkit-align-items: center;
    padding: 239px 0;
}

.home-slider .overlay-img::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: var(--sec-color);
    opacity: .85;
}

.home-slider .overlay-img img {
    transition: 2s all;
    transform: scale(1.2);
}

.home-slider .text-banner {
    max-width: 530px;
    /* margin: 0 auto; */
    /* text-align: center; */
}

.home-slider .text-banner h2 {

    /* or 160% */
    margin: 0 0 26px;
    transform: translateY(-100%);
    transition: all .6s cubic-bezier(0.54, 0.69, 0.91, 0.68);
    transform-origin: top;
    opacity: 0;
    color: #fff;
    font-weight: 700;
    font-size: 48px;
    line-height: 70px;
}

.readMore {
    color: var(--main-color);
    font-size: 24px;
    line-height: 24px;
    /* identical to box height */
    text-decoration-line: underline;

    display: inline-block;
    text-decoration-skip-ink: none;
}

.banner-h .nav-slider {
    position: absolute;
    bottom: 97px;
    right: 0;
    left: 0;
    align-items: center;
    display: flex;
    -webkit-align-items: center;
    justify-content: center;
    top: auto;
}

.banner-h .nav-slider .swiper-button-next.home-nav,
.banner-h .nav-slider .swiper-button-prev.home-nav {
    position: relative;
    color: #fff;
    border: 3px solid #FFFFFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 18px;
    transition: all .3s;
    /* margin: 0 11px; */
    padding: 0;
    margin-inline-start: 0;
}

.banner-h .nav-slider .swiper-pagination.home-pagination {
    position: relative;
    width: auto;
    margin: 0 29px;
    font-weight: 420;
    font-size: 20px;
    line-height: 20px;
    color: #fff;
    /* direction: ltr; */
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-align-items: center;
}

.banner-h .nav-slider .swiper-pagination.home-pagination .swiper-pagination-current {
    color: rgba(255, 255, 255, 0.43);
}

.nav-slider .swiper-button-next::after,
.nav-slider .swiper-button-prev::after {
    content: "\f061";
    font-family: 'Font Awesome 6 Pro';
    font-weight: 300;
    color: inherit;
    font-size: inherit;
}

.nav-slider .swiper-button-prev::after {
    content: "\f060";
}

.home-slider .swiper-slide {
    overflow: hidden;
    height: auto;
}

.swiper-slide-active .text-banner h2,
.home-slider .swiper-slide-active .text-banner .readMore {
    transform-origin: bottom;
    opacity: 1;
    transform: none;
}

.home-slider .swiper-slide-active .overlay-img img {
    animation: scale-h 10s ease forwards;
}

@keyframes scale-h {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

.home-slider .text-banner .readMore {
    transform: translateY(100%);
    transition: all .6s cubic-bezier(0.54, 0.69, 0.91, 0.68);
    transform-origin: top;
    opacity: 0;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.banner-h .nav-slider .row {
    min-height: auto;
    justify-content: end;
    flex-direction: row-reverse;
    padding: 0;
    margin: 0;
}

.text-banner .btn {
    /* font-size: 14px; */
    /* min-width: 152px; */
}

.banner-h .nav-slider .swiper-button-next.home-nav:hover,
.banner-h .nav-slider .swiper-button-prev.home-nav:hover {
    background: var(--sec-color);
    border-color: var(--sec-color);
    color: var(--dark-color);
}

.home-slider .text-banner p {
    margin: 15px 0 0;

    /* number of lines to show */
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    text-transform: capitalize;
    color: #FFFFFF;
}

.nav-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #FAF2FF;
    border-radius: 0;
    opacity: 1;
    margin: 0 4px !important;
    opacity: 0.4;
    border-radius: 50%;
    transition: all .5s;
}

.nav-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    width: 18px;
    height: 18px;
}

.text-banner h1 {
    font-weight: 800;
    font-size: 40px;
    line-height: 64px;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

/* End Banner-h */

/* Start About-h */

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

.img-about {
    position: relative;
    /* border-radius: 272.5px 0px; */
    /* overflow: hidden; */
    height: 500px;
}

.img-about .img {
    width: 100%;
    height: 100%;
    border-start-start-radius: 272.5px;
    border-end-end-radius: 272.5px;
    overflow: hidden;
}

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

.img-about .text-img {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 33px;
    background: rgb(109 64 137 / 80%);
    border-radius: 78.3396px;
    border-end-start-radius: 0;
    width: 175.47px;
    min-height: 156.68px;
    text-align: center;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    padding: 16px;
    padding-inline-end: 24px;
}

.img-about .text-img h3 {
    margin: 0;
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    /* or 138% */
    text-transform: capitalize;
}

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

.text-about {
    padding-inline-start: 30px;
}

.title {
    margin: 0 0 32px;
}

.title h3 {
    font-weight: 800;
    font-size: 40px;
    line-height: 64px;
    /* identical to box height, or 160% */
    text-transform: capitalize;
    color: var(--dark-color);
    /* padding-inline-start: 45px; */
    position: relative;
    margin: 0;
}

.title h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: -5px;
    right: 0;
    width: 31px;
    height: 40px;
    background: url(../images/title.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0;
}

.text-about p {
    font-size: 18px;
    line-height: 26px;
    color: #000;
    margin: 0 0 45px;
    font-weight: 300;
}

.text-about p:last-child {
    margin: 0;
}

.text-about p strong {
    font-weight: 600;
}

.img-about::before {
    content: "";
    width: 31px;
    height: 198px;
    position: absolute;
    left: -23px;
    background: url(../images/before-about-img.svg);
    background-size: contain;
    background-position: center;
    bottom: 0;
    z-index: -1;
}

/* End About-h */

/* Start Leadership */

.leadership-h {
    padding: 83px 0;
}

.leadership-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--sec-color);
    opacity: 0.9;
}

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

.img-leadership .img {
    width: 332.89px;
    height: 332.89px;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 50%;
}

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

.img-leadership {
    position: relative;
    width: 388px;
    height: 388px;
    border-radius: 50%;


    /* secondary/100 */
    border: 1px solid #FFF;
    margin-inline-start: auto;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.img-leadership .circel::after {
    content: "";
    position: absolute;
    /* transition: transform 0.7s linear; */
    /* animation: rotate 7s infinite linear; */
    width: 26.45px;
    height: 26.45px;
    background: #fff;
    border-radius: 50%;
    left: 0;
    top: 0;
    margin: auto;
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}

.img-leadership .circel {
    transition: transform 15s linear;
    animation: rotate 15s infinite linear;
    position: absolute;
    inset: 0;
    width: 297px;
    height: 297px;
    margin: auto;
}

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

.title.title-white h3::before {
    background-image: url(../images/title-white.svg);
}

.text-leadership h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    text-transform: capitalize;
    color: #FFF;
    margin: 0 0 19px;
}

.text-leadership p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #FFF;
    margin: 0 0 19px;
}

.text-leadership p:last-child {
    margin: 0;
}

.leadership-h::after {
    content: "";
    position: absolute;
    right: -33px;
    top: 0;
    bottom: 0;
    width: 62.94px;
    background: url(../images/after-leadership.svg);
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
}


/* End Leadership */

/* Start Approach-h */

.approach-h {
    padding: 85px 0;
}

.title.title-center {
    margin: 0 auto 25px;
    display: table;
}

.title.title-sec h3::before {
    background-image: url(../images/title-sec.svg);
    height: 35.1px;
    width: 37.29px;
    top: -3px;
}

.title.title-sec h3 {
    /* padding-inline-start: 41px; */
}

.approach-block {
    overflow: hidden;
    margin: 15px 0;
    height: calc(100% - 30px);
    border: 1px solid var(--main-color);
    border-radius: 24px;
    transition: all .5s;
    padding: 33px 38px;
    position: relative;
}

.approach-block .title-block {
    display: flex;
    margin: 0 0 40px;
    align-items: center;
    -webkit-align-items: center;
}

.approach-block .title-block .icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
}

.approach-block .title-block .icon img {
    max-height: 70px;
    max-width: 70px;
    transition: all .5s;
}

.approach-block .title-block h3 {
    width: calc(100% - 70px);
    margin: 0;
    padding-inline-start: 8px;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    text-transform: capitalize;
    color: var(--dark-color);
    transition: all .5s;
}

.approach-block .details p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #262526;
    transition: all .5s;
    max-width: 505px;
}

.approach-block:hover::after {
    opacity: 1;
}

.approach-block::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--bg-grad);
    transition: all .5s;
    z-index: -1;
    opacity: 0;
}

.approach-block:hover .title-block .icon img {
    filter: brightness(0) invert(1);
}

.approach-block:hover .title-block h3,
.approach-block:hover .details p {
    color: #E9E8E8;
}


.approach-block::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 29px;
    background: url(../images/after-app.svg);
    /* background-repeat: no-repeat; */
    background-size: contain;
    background-position: center;
    margin: 0 4px;
    transition: all .5s;
    opacity: 0;
}

.approach-block:hover::before {
    opacity: .4;
}

/* End Approach-h */

/* Start Social */

.social {
    padding: 63px 0;
    background: var(--bg-color);
    position: relative;
}

.social .row {
    align-items: center;
    -webkit-align-items: center;
}

.social-text {
    max-width: 562.67px;
}

.social-text p {
    margin: 20px 0 0;
    /* padding-inline-start: 45px; */
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #000;
}

.social-img .img {
    border: 1px solid #FAF2FF;
    border-start-start-radius: 240.378px;
    border-start-end-radius: 240.378px;
    border-end-start-radius: 240.378px;
    overflow: hidden;
    max-width: 473.92px;
    height: 449px;
    margin-inline-start: auto;
}

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

.social-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 130.94px;
    height: 174.05px;
    background: url(../images/after-social.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    margin: -64px -115px;
}

/* End Social */

/* Start Partners-h */

.partners-h {
    padding: 66px 0 86px;
    background: var(--bg-grad);
    position: relative;
}

.client-block {
    background: #FFFFFF;
    border-radius: 10px;
    height: 106px;
    overflow: hidden;
    margin-bottom: 40px;
}

.client-block .img {
    line-height: 106px;
    text-align: center;
    width: 100%;
}

.client-block .img img {
    max-width: 177.6px;
    max-height: 58.55px;
}

.nav-slider .swiper-button-next, .nav-slider .swiper-button-prev {
    width: 58.94px;
    height: 58.94px;
    background: #FFFFFF;
    box-shadow: 0px 4px 44px rgba(3, 23, 48, 0.16);
    border-radius: 50%;
    top: 57%;
    color: var(--dark-color);
    font-size: 17.08px;
    transition: all .5s;
}

.nav-slider .swiper-button-next {
    right: -10px;
}

.nav-slider .swiper-button-prev {
    left: -10px;
}

.partners-h .nav-slider .swiper-button-next:hover,
.partners-h .nav-slider .swiper-button-prev:hover {
    background: #D3AFE9;
    box-shadow: 0px 4px 44px rgba(3, 23, 48, 0.16);
}

/* End Partners-h */

/* Start Portfolio-h */
.portfolio-h {
    padding: 100px 0;
}

.nav.nav-tabs {
    border: none;
    margin: 0 0 40px;
    border-bottom: 1px solid #D3AFE9;
    display: inline-flex;
}

.nav.nav-tabs .nav-item {
    margin: 0 13px;
}

.nav.nav-tabs .nav-item:first-child {
    margin-inline-start: 0;
}

.nav.nav-tabs .nav-item:last-child {
    margin-inline-end: 0;
}

.nav.nav-tabs .nav-item .nav-link {
    border: none;
    padding: 0 0 6px;
    /* border-bottom: 1px solid #D3AFE9; */
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #000;
    margin: 0;
    position: relative;
    text-transform: capitalize;
}

.nav.nav-tabs .nav-item .nav-link::after {
    border-radius: 10px;
    content: "";
    position: absolute;
    bottom: -2px;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--main-color);
    transition: all .5s;
    width: 0;
}

.nav.nav-tabs .nav-item .nav-link.active::after {
    width: 100%;
}

.nav.nav-tabs .nav-item .nav-link.active {
    /* font-size: 16px; */
    color: var(--main-color);
    /* line-height: 26px; */
}

.port-block {
    margin: 10px 0;
    border: 1px solid #D3AFE9;
    border-radius: 24px;
    padding: 56px 30px 32px;
    position: relative;
    height: calc(100% - 20px);
    overflow: hidden;
    max-height: 550px;
    min-height: 511px;
}

.port-block h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    text-transform: capitalize;
    color: var(--dark-color);
    margin: 0 0 24px;
}

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

.port-block.img-block {
    padding: 0;
    border: none;
}

.port-block.img-block .img {
    width: 100%;
    height: 100%;
}

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

.port-block.img-block .hover-block {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* text-align: center; */
    padding: 32px;
    background: rgb(127 82 131 / 60%);
    transition: all .4s;
}

.port-block.img-block .hover-block h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    text-transform: capitalize;
    color: #fff;
    /* text-align: start; */
}

.port-block.img-block:hover .hover-block {
    background: rgb(127 82 131 / 80%);
}

/* Start Portfolio-h */

/* Start Gallery-h */

.gallery-block {
    height: 345px;
    overflow: hidden;
    border-radius: 24px;
}

.gallery-block .img-block {
    width: 100%;
    height: 100%;
}

.gallery-block .img-block .img {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

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

.gallery-block .img-block .img::before {
    background: var(--sec-color);
    content: "";
    position: absolute;
    inset: 0;
    transition: all .5s;
    opacity: 0;
}

.gallery-block .img-block .img:hover::before {
    opacity: 0.7;
}

.gallery-block .img-block .img::after {
    content: "\f00e";
    position: absolute;
    width: 46.69px;
    height: 46.69px;
    inset: 0;
    margin: auto;
    text-align: center;
    line-height: 46.69px;
    font-family: 'Font Awesome 6 Pro';
    font-weight: 400;
    color: #fff;
    font-size: 36.69px;
    transition: all .5s;
    transform: scale(.5);
    opacity: 0;
    z-index: 7;
}

.gallery-block .img-block .img:hover::after {
    opacity: 1;
    transform: none;
}

.gallery-h {
    padding: 80px 0;
    background: var(--bg-color);
}

/* End Gallery-h */

/* Start Contact-h */

.contact-h {
    padding: 100px 0;
}

.contact-tabs {
    text-align: center;
    margin: 0 0 50px;
}

.contact-tabs .nav.nav-tabs {
    margin: 0;
}

.contact-h .tab-content {
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-color);
}

.img-contact {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

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

.img-contact::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../images/before-contact-img.svg);
    width: 377.06px;
    height: 501.19px;
    margin: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.contact-form {
    padding: 54px 76px;
    padding-inline-end: 96px;
}

form {
    direction: ltr;
}

.title-contact {
    margin: 0 0 32px;
}

.title-contact h3 {
    margin: 0;
    font-weight: 800;
    font-size: 40px;
    line-height: 64px;
    text-transform: capitalize;
    color: var(--main-color);
}

.title-contact h3 span {
    color: #000;
}

.contact-form .form-group {
    margin: 0 0 16px;
}

.contact-form .form-group:last-child {
    margin: 0;
}

.contact-form .form-group .form-control {
    height: 48px;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(235, 235, 235, 0.25);
    border-radius: 8px;
    border: 1px transparent solid;
    transition: all .5s;
    padding: 0 20px !important;
}

.iti {
    display: block;
}

.iti--separate-dial-code .iti__selected-flag {
    background: transparent;
    direction: ltr;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    display: flex;
    align-items: center;
    text-transform: lowercase;
    color: #262526;
}

.contact-form .form-group textarea.form-control {
    height: 123px;
    padding: 20px !important;
}

button.btn.btn-form {
    box-shadow: 0px 4px 4px rgba(109, 64, 137, 0.3);
    border-radius: 8px;
    min-width: 146px;
    min-height: 48px;
    margin-top: 16px;
    font-size: 24px;
    padding: 4px 0 0;
    font-weight: 700;
    display: inline-block;
}

/* End Contact-h */

/* Start Footer */

.footer-top {
    padding: 100px 0;
    background: var(--dark-color);
    position: relative;
}

.footer-top::after {
    content: "";
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
    width: 15%;
    background: url(../images/after-footer.svg);
    background-size: contain;
    background-position: 100% center;
    background-repeat: no-repeat;
}

.logo-f {
    display: block;
    max-width: 216.63px;
    filter: brightness(0) invert(1);
    margin: 0 0 32px;
}

.foot-item p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
}

.foot-item h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    /* identical to box height, or 138% */
    text-transform: capitalize;

    /* secondary/100 */
    color: #FFF;
    padding-inline-start: 25px;
    position: relative;
    margin: 0 0 32px;
}

.foot-item h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 21px;
    height: 21px;
    background: url(../images/title-footer.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.foot-item .links-f {
    display: flex;
    flex-wrap: wrap;
}

.foot-item .links-f li {
    max-width: 50%;
    flex: 0 0 50%;
    padding-inline-end: 15px;
    margin: 0 0 16px;
}

.foot-item .links-f li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    /* identical to box height */
    text-transform: capitalize;
    color: #fff;
}

.foot-item .links-f li a:hover,
.foot-item .info-h li a:hover {
    color: #b58fb9;
}

.foot-item .info-h li {
    margin: 0 0 20px;
}

.foot-item .info-h li a {
    display: flex;
    align-items: start;
    -webkit-align-items: start;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    /* identical to box height */
    text-transform: capitalize;
    color: #fff;
}

.foot-item .info-h li a i {
    font-size: 18px;
    width: 18px;
    margin-inline-end: 15px;
}

.foot-item .info-h li a span u {
    text-decoration: none;
    direction: ltr;
    display: inline-block;
    text-transform: lowercase;
}

.ryad-logo {
    display: inline-block;
    float: right;
}

.footer-bottom .row {
    align-items: center;
    -webkit-align-items: center;
}

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

.copyRight p span {
    color: var(--dark-color);
}

.partners-inner .nav-slider .swiper-button-next {right: 10px;}

.partners-inner .nav-slider .swiper-button-prev {
    left: 10px;
}

.nav-slider {
    position: absolute;
    width: 108%;
    right: -4%;
    left: 0;
    top: 58%;
}

section .container {
    position: relative;
    z-index: 1;
}

.partners-h .nav-slider {
    top: 68%;
}

.contact-form .form-group .form-control.phone {
    padding-inline-start: 90px !important;
}

.iti__country {
    direction: ltr;
}

.swiper-pagination.partners-pagination {
    display: none;
    position: relative;
    bottom: 0;
    top: 0;
    margin: 0 auto;
}

.partners-h .nav-slider {
    right: 0;
    left: -4%;
}

p, p * {
    text-transform: inherit;
}


.form-group .file-upload-group.form-control {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    color: rgb(0 0 0 / 50%);
    padding-inline-end: 45px;
}

.form-group .file-upload-group.form-control label {
    margin: 0;
    line-height: normal;
    font-size: 18px;
    color: #353535;
}

.form-group .file-upload-group.form-control .file-uploadH {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
}

.file-upload-group.form-control {
    position: relative;
}

.form-group .file-upload-group.form-control label i {
    font-weight: bold;
}

.contact-form.apply-block .form-group .btn-form {
    margin: 4px 0 0;
}

.nav-slider {
    right: 0;
    left: -4%;
}

.form-group .file-upload-group.form-control span.wpcf7-form-control-wrap {
    position: absolute;
    inset: 0;
}

.nav-slider .swiper-button-next:hover, .nav-slider .swiper-button-prev:hover {
    background: var(--main-color);
    color: #fff;
}

/* End Footer */
@media (min-width: 1300px){
.partners-h .nav-slider{
    width: 110%;
    left: -5%;
    right: 0;
}
}

.text-about .title h3 {
    font-size: 50px;
}

.text-about .title {
    margin: 0 0 50px;
}

.social-text ul li {
    display: list-item;
    list-style: disc;
    margin: 16px 0 0;
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
}

.social-text ul {
    padding-inline-start: 20px;
}
.port-block2{border:0!important;}
    .partners-inner2{margin-top:25px;}
    
        .partners-inner2 img{height:55px;margin:0 auto;display:table;margin-bottom:15px;}
    
.partners-slider22 .client-block .img img {
    max-width: 90%;
    margin: 0 auto;
    display: inline-block;
}

.partners-slider22 .client-block .img {
    line-height: 106px;
    text-align: center;
}

.swiper-pagination.slider22.partners-pagination {
    display: flex;
    justify-content: center;
    /* margin: 30px 0 0; */
    opacity: 1;
}

.swiper-pagination.slider22.partners-pagination .swiper-pagination-bullet {
    background: #000 !important;
    opacity: 1;
    width: 16px;
    height: 16px;
    display: block;
}

.swiper-pagination.partners-pagination22 {
    margin: 0;
}

.row.partners-inner2 .swiper-slide, .row.partners-inner2  swiper-slide {height: auto;}

.swiper-pagination.partners-pagination22 .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: .13;
}

.swiper-pagination.partners-pagination22 .swiper-pagination-bullet-active {
    background: var(--main-color);
    opacity: 1;
}
    