@import url(bootstrap.min.css);
@import url(bootstrap-grid.min.css);
@import url(fonts.css);
@import url(animate.css);
@import url(all.css);
@import url(line-awesome.min.css);
@import url(owl.carousel.css);
@import url(jquery.mCustomScrollbar.min.css);
@import url(jquery.fancybox.css);
@import url(intlTelInput.css);
@import url(slick.css);
@import url(slick-theme.css);
@import url(odometer.css);

/* Start Fonts */

@font-face {
    font-family: 'bahij';
    src: url(../fonts/Bahij_TheSansArabic-Plain.ttf);
}

@font-face {
    font-family: 'bahijLight';
    src: url(../fonts/Bahij_TheSansArabic-Light.ttf);
}

@font-face {
    font-family: 'bahijBold';
    src: url(../fonts/Bahij_TheSansArabic-Bold.ttf);
}

@font-face {
    font-family: 'bahijSemiBold';
    src: url(../fonts/Bahij_TheSansArabic-SemiBold.ttf);
}


/* End Fonts */

:root {
    --main-color: #133E44;
    --sec-color: #40b7c1;
    --bg-color: #E8E1CE;
    --bg-btn: linear-gradient(106deg, #5cccd7, #2CA6B1 100%);
    --grid-color: linear-gradient(140deg, #2CA6B1 0%, #063B43 100%);
    --dark-color: #1D252C;
    --thr-color: #2CA6B1;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    font-family: 'bahij';
    color: #000;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    transition: all 0.5s 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 {
    scroll-behavior: smooth;
    padding: 0;
    margin: 0;
    font-family: 'bahij';
    background: #fff;
    text-align: start;
    direction: rtl;
}

body::-webkit-scrollbar {
    width: 6px;
}

body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    outline: 1px solid var(--main-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    font-family: 'bahij';
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

section {
    position: relative;
}

p {
    margin: 0;
    color: #626262;
    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;
}

.owl-carousel {
    direction: ltr;
}

#cursor {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--main-color);
    border-radius: 50%;
    mix-blend-mode: difference;
    pointer-events: none;
    transition: transform .15s ease-in-out;
    z-index: 9;
    color: #fff;
}


/*** 

====================================================================
	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: 0 0 10px rgba(0, 0, 0, 0.05);
    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: 14px;
    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;
}

.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: 300px;
    padding-inline-end: 30px;
    max-width: 100%;
    height: 100%;
    visibility: hidden;
    z-index: 999999;
}

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

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

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

.mobile-menu-visible .mobile-menu {
    visibility: visible;
}

.mobile-menu .menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 0%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.90);
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
    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-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}

.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: absolute;
    right: -400px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: #fff;
    padding: 0px 0px;
    z-index: 5;
    border-radius: 0px;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

.mobile-menu-visible .mobile-menu .menu-box {
    right: 0px;
    -webkit-transition-delay: 600ms;
    -moz-transition-delay: 600ms;
    -ms-transition-delay: 600ms;
    -o-transition-delay: 600ms;
    transition-delay: 600ms;
}

.mobile-menu .close-btn {
    position: absolute;
    left: 15px;
    top: 32px;
    line-height: 30px;
    width: 30px;
    text-align: center;
    font-size: 20px;
    color: #202020;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
}

.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition-delay: 900ms;
    -moz-transition-delay: 900ms;
    -ms-transition-delay: 900ms;
    -o-transition-delay: 900ms;
    transition-delay: 900ms;
}

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

.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

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

.mobile-menu .navigation li>ul>li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu .navigation li>a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 20px;
    font-size: 15px;
    color: var(--dark-color);
    text-transform: capitalize;
}

.mobile-menu .navigation li:hover>a,
.mobile-menu .navigation li.current>a {
    color: #111111;
}

.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: var(--bg-color);
    height: 0;
    transition: all .5s;
    overflow: hidden;
}

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

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

.mobile-menu2 {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    padding-inline-end: 30px;
    max-width: 100%;
    height: 100%;
    visibility: hidden;
    z-index: 999999;
}

.mobile-menu2 .nav-logo2 {
    position: relative;
    padding: 20px 20px;
    /* text-align: left; */
}

.mobile-menu2 .nav-logo2 img {
    max-width: 200px;
    max-height: 55px;
}

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

.mobile-menu-visible2 .mobile-menu2 {
    visibility: visible;
}

.mobile-menu2 .menu-backdrop2 {
    position: fixed;
    right: 0;
    top: 0;
    width: 0%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.90);
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
    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-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}

.mobile-menu-visible2 .mobile-menu2 .menu-backdrop2 {
    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-menu2 .menu-box2 {
    position: absolute;
    right: -400px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: #ffffff;
    padding: 0px 0px;
    z-index: 5;
    border-radius: 0px;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

.mobile-menu-visible2 .mobile-menu2 .menu-box2 {
    right: 0px;
    -webkit-transition-delay: 600ms;
    -moz-transition-delay: 600ms;
    -ms-transition-delay: 600ms;
    -o-transition-delay: 600ms;
    transition-delay: 600ms;
}

.mobile-menu2 .close-btn2 {
    position: absolute;
    left: 15px;
    top: 32px;
    line-height: 30px;
    width: 30px;
    text-align: center;
    font-size: 20px;
    color: #202020;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
}

.mobile-menu-visible2 .mobile-menu2 .close-btn2 {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition-delay: 900ms;
    -moz-transition-delay: 900ms;
    -ms-transition-delay: 900ms;
    -o-transition-delay: 900ms;
    transition-delay: 900ms;
}

.mobile-menu2 .close-btn2:hover {
    opacity: 0.50;
}

.mobile-menu2 .navigation2 {
    position: relative;
    display: block;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu2 .navigation2 li {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu2 .navigation2 li>ul>li:last-child {
    border-bottom: none;
}

.mobile-menu2 .navigation2 li>ul>li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu2 .navigation2 li>a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 20px;
    font-size: 15px;
    color: #404040;
    text-transform: capitalize;
}

.mobile-menu2 .navigation2 li:hover>a,
.mobile-menu2 .navigation2 li.current>a {
    color: #111111;
}

.mobile-menu2 .navigation2 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-menu2 .navigation2 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-menu2 .navigation2 li>ul,
.mobile-menu2 .navigation2 li>ul>li>ul {
    display: block;
    background: var(--bg-color);
    height: 0;
    transition: all .5s;
    overflow: hidden;
}

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

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

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

.sticky-header2 .outer-box2 .search-box-btn2 {
    color: #000000;
}

.sticky-header2 .outer-box2 {
    padding: 22px 0px;
}


/*** 

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

***/


/* Start Header */

.header-top {
    background: var(--main-color);
    padding: 14px 0;
}

.header-top p {
    color: #FFFFFF;
    text-transform: capitalize;
    font-family: 'bahijLight';
}

.social-h {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.social-h a {
    width: 28px;
    height: 28px;
    border: 1px solid #EFEFEF;
    text-align: center;
    line-height: 28px;
    border-radius: 50%;
    margin-inline-start: 8px;
    font-size: 12px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-inner {
    display: flex;
    align-items: center;
}

.header-inner .logo a {
    display: flex;
    align-items: center;
}

.header-inner .logo a .icon {
    width: 71px;
    height: 72px;
    line-height: 72px;
}

.header-inner .logo a .text-logo {
    width: calc(100% - 72px);
    padding-inline-start: 10px;
}

.header-inner .logo a .icon img {
    /* max-width: 71px; */
    max-height: 72px;
}

.header-inner .logo a .text-logo h3 {
    font-size: 14px;
    color: var(--main-color);
    font-family: 'bahijBold';
}

.header-inner .logo a .text-logo h4 {
    color: #818286;
    text-transform: capitalize;
    font-size: 14px;
    font-family: 'bahijBold';
    margin: 0;
}

.header-inner .logo {
    max-width: 20%;
    flex: 0 0 20%;
}

.header-inner .nav-menu {
    max-width: 65%;
    flex: 0 0 65%;
}

.header-inner .menu-left {
    max-width: 15%;
    flex: 0 0 15%;
    justify-content: flex-end;
    display: flex;
    align-items: center;
}

.header-inner .nav-menu ul {
    display: flex;
    align-items: center;
}

.header-inner .nav-menu ul ul {
    position: absolute;
    top: 100%;
    display: block;
    z-index: 8;
    width: 248px;
    box-shadow: 0px 3px 16px #AFABAB29;
    border: 1px solid #FBFBFB;
    background: #fff;
    right: 0;
    /* transition: all .5s; */
    height: 0;
    opacity: 0;
    visibility: hidden;
    display: none;
    margin: 0;
}

.header-inner .nav-menu ul li {
    margin: 0 14px;
    position: relative;
    padding: 25px 0;
}

.header-inner .nav-menu ul li a {
    color: #363636;
    text-transform: capitalize;
    font-size: 15px;
    font-family: 'bahijSemiBold';
    position: relative;
    padding: 0 0 10px;
}

.header-inner .nav-menu ul li a::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: var(--sec-color);
    margin: auto;
    border-radius: 2px;
    transition: all .5s;
}

.header-inner .nav-menu ul li.current-menu-item a::after,
.header-inner .nav-menu ul li a:hover::after {
    width: 18px;
}

.header-inner .nav-menu ul ul li {
    margin: 0;
    padding: 0;
}

.header-inner .nav-menu ul ul li a {
    padding: 13px 28px;
    display: block;
    border-bottom: 1px solid #EBEBEB;
    color: var(--main-color);
}

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

.header-inner .nav-menu ul ul li a:hover {
    background: var(--main-color);
    color: #fff;
}

.header-inner .nav-menu ul ul ul {
    right: 100%;
    top: 0;
    opacity: 0 !important;
    height: 0 !important;
    visibility: hidden !important;
    display: block;
}

.header-inner .nav-menu ul .menu-item-has-children:hover ul {
    opacity: 1;
    height: auto;
    visibility: visible;
    display: block;
}

.header-inner .nav-menu ul ul .menu-item-has-children:hover ul {
    opacity: 1 !important;
    height: auto !important;
    visibility: visible !important;
}

.header-inner .nav-menu ul li.menu-item-has-children::after {
    content: "\f107";
    font-family: 'Line Awesome Free';
    font-weight: 600;
    position: absolute;
    left: -18px;
    font-size: 14px;
    color: var(--sec-color);
    transition: all .5s;
    top: 35%;
}

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

.mobile-nav-toggler {
    background: var(--main-color);
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 23px;
    color: #fff;
    border-radius: 5px;
    display: none;
    align-items: center;
}

.header-inner .menu-left .lang {
    color: #000000;
    text-transform: capitalize;
    font-size: 16px;
    font-family: 'bahijBold';
    margin-inline-start: 30px;
}

.header-inner .menu-left .search-box-btn.search-box-outer {
    font-size: 24px;
    color: #000;
    transform: scaleX(-1);
}

.header-bottom {
    padding: 18px 0;
}

.header-inner .nav-menu ul ul li::after {
    display: none;
}

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


/* End Header */


/* Start Banner-home */

.banner-home,
.banner-home .row {
    min-height: 606px;
}

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

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

.banner-home .overlay-img::after {
    content: "";
    right: 0;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #0B7686B3 0%, #0B76860F 100%);
    opacity: 0.93;
}

.text-banner {
    max-width: 714px;
    padding-top: 115px;
}

.text-banner h1 {
    color: #fff;
    font-family: 'bahijBold';
    font-size: 53px;
    line-height: 87px;
    margin: 0 0 30px;
}

.text-banner p {
    font-size: 18px;
    color: #fff;
    line-height: 31px;
    margin: 30px 0;
    max-height: 60px;
    overflow: hidden;
}

.btn {
    padding: 17px 10px 10px;
    min-width: 177px;
    min-height: 57px;
    background: var(--bg-btn);
    box-shadow: 0px 3px 16px #00000029;
    border-radius: 50px;
    color: #fff !important;
    border: none !important;
    font-size: 16px;
    font-family: 'bahijBold';
}

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


/* End Banner-home */


/* Start Services-h */

.services-h {
    margin-top: -150px;
    margin-bottom: 38px;
}

.serv-block {
    min-height: 105px;
    display: flex;
    align-items: center;
    padding: 25px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.serv-block .icon {
    width: 40px;
    height: 50px;
    line-height: 50px;
    font-size: 31px;
    color: #FCB040;
    transition: all .5s;
}

.serv-block .details {
    width: calc(100% - 40px);
    padding-inline-start: 16px;
}

.serv-block::before {
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(13px);
    position: absolute;
    z-index: -1;
    right: 0;
    transition: all .5s;
}

.serv-block::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    /* filter: blur(13px); */
    opacity: 0.2;
    transition: all .5s;
}

.services-all .col-md-4.col-sm-12:nth-child(2) .serv-block .icon {
    color: var(--sec-color);
}

.serv-block:hover .icon {
    color: #fff !important;
}

.serv-block .details p {
    color: #FFF;
    font-size: 16px;
    font-family: 'bahijSemiBold';
    line-height: 31px;
}

.serv-block:hover::before {
    opacity: 0;
}

.serv-block:hover::after {
    background: #2CA6B1;
    opacity: 1;
}


/* End Services-h */


/* Start Marquee  */

.flex-maq {
    display: flex;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid #F1F1F1;
    width: 100%;
}

.flex-maq .maq-title {
    min-width: 140px;
    min-height: 60px;
    background: #2CA6B1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    color: #fff;
    font-size: 23px;
    font-family: 'bahijBold';
}

.flex-maq marquee ul {
    display: flex;
    margin: 0 15px;
    transition: none;
}

.flex-maq marquee {
    height: 100%;
    transition: none;
}

.flex-maq marquee ul li {
    margin: 15px 0;
    transition: none;
}

.marquee {
    overflow: hidden;
    direction: ltr;
}

.marquee-inner {
    width: calc(100% - 140px);
    overflow: hidden;
}

.marquee .js-marquee-wrapper {
    height: 60px;
    display: flex;
}

.js-marquee {
    display: flex;
    height: 100%;
    align-items: center;
}

.marquee p {
    color: #363636;
    font-size: 18px;
    font-family: 'bahijSemiBold';
}

.maq-h {
    overflow: hidden;
}


/* End Marquee */


/* Start Links-h */

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

.links-all {
    max-width: 980px;
    margin: auto;
}

.link-block {
    min-height: 197px;
    background: #fff;
    box-shadow: 25px 30px 26px #D4D4D429;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 30px;
    margin: 15px 0;
}

.link-block .img {
    height: 75px;
    margin: 0 0 10px;
}

.link-block .img img {
    max-height: 100%;
}

.link-block .details h3 {
    font-size: 16px;
    font-family: 'bahijBold';
    color: #363636;
    line-height: 31px;
    margin: 0;
}

.link-block .details a {
    display: block;
    margin: 12px 0 0;
    color: var(--thr-color);
    font-family: 'bahijBold';
    line-height: 31px;
}

.link-block:hover .img img {
    animation: 1s swing;
}

.link-block:hover .details a {
    animation: 1s pulse;
}


/* End Links-h */

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

.title {
    margin: 0 0 30px;
}

.title h3 {
    font-size: 23px;
    font-family: 'bahijBold';
    color: var(--main-color);
    position: relative;
    padding-inline-start: 15px;
}

.title h3::before {
    content: "";
    position: absolute;
    right: 0;
    top: 3px;
    width: 3px;
    height: 18px;
    background: var(--sec-color);
    border-radius: 2px;
}

.text-about h4 {
    font-size: 18px;
    color: var(--main-color);
    font-family: 'bahijSemiBold';
    max-width: 396px;
    line-height: 31px;
    margin: 0 0 20px;
}

.text-about p {
    margin: 20px 0 32px;
    color: #363636;
    font-size: 16px;
    line-height: 28px;
    font-family: 'bahijLight';
    max-height: 110px;
    overflow: hidden;
}

.btn.btn-sec {
    background: linear-gradient(106deg, #5cccd7, #2CA6B1, #5cccd7, #2CA6B1);
    background-size: 300% 100%;
    color: #fff;
}

.btn.btn-sec:hover {
    background-position: 100% 0;
}

.img-about {
    height: 400px;
    position: relative;
}

.img-about .img {
    height: 100%;
    overflow: hidden;
    border-radius: 5px;
}

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

.img-about::after {
    content: "";
    position: absolute;
    width: 198px;
    height: 321px;
    border: 10px solid var(--sec-color);
    border-radius: 5px;
    left: 0;
    bottom: 0;
    z-index: -1;
    margin: -30px;
}


/* Start News-h */

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

.title.title-center {
    display: table;
    margin: 0 auto 50px;
    text-align: center;
}

.news-slider .item {
    padding: 0 15px;
}

.news-block {
    direction: rtl;
    background: #fff;
    box-shadow: 0px 3px 16px #77737329;
    border-radius: 10px;
    padding: 16px;
    transition: all .5s;
    margin: 15px 0;
    min-height: 521px;
}

.news-slider .owl-stage-outer {
    overflow: visible;
}

.owl-carousel .owl-item {
    overflow: hidden;
    opacity: 0.44;
    transition: all .5s;
}

.owl-carousel .owl-item.active {
    opacity: 1;
}

.news-block .img {
    height: 312px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.news-block .img a {
    display: block;
    width: 100%;
    height: 100%;
}

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

.news-block .details {
    padding: 30px 10px 0;
}

.news-block .details .name {
    font-size: 17px;
    color: var(--thr-color);
    line-height: 31px;
    font-family: 'bahijSemiBold';
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0 0 16px;
    display: block;
    overflow: hidden;
}

.news-block .details p {
    margin: 16px 0;
    color: #363636;
    font-size: 16px;
    line-height: 28px;
    font-family: 'bahijLight';
    overflow: hidden;
    max-height: 53px;
}

.news-block .details .btn-more {
    letter-spacing: 0px;
    color: #000000;
    font-size: 18px;
    display: flex;
    align-items: center;
    font-family: 'bahijBold';
}

.news-block .details .btn-more i {
    font-size: 33px;
    margin-inline-start: 5px;
}

.news-block:hover {
    background: var(--thr-color);
}

.news-block:hover .details .name,
.news-block:hover .details p,
.news-block:hover .details .btn-more {
    color: #fff;
}

.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    margin: 0;
    right: 0;
    left: 0;
}

.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
    margin: 0;
    width: 52px;
    height: 52px;
    color: #fff;
    background: var(--thr-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    opacity: 0.79;
    font-size: 25px;
    position: absolute;
    transition: all .5s;
}

.owl-carousel .owl-nav .owl-next:hover,
.owl-carousel .owl-nav .owl-prev:hover {
    background: var(--sec-color);
}

.owl-carousel .owl-nav .owl-next {
    right: -12px;
}

.owl-carousel .owl-nav .owl-prev {
    left: -12px;
}

.btn-center {
    margin: 50px auto 0;
    display: table;
}


/* End News-h */


/* Start Stages-h */

.stages-h {
    padding: 70px 0;
}

.stage-block {
    min-height: 326px;
    background: #fff;
    box-shadow: 0px 3px 16px #77737329;
    border-radius: 10px;
    overflow: hidden;
    margin: 15px 0;
    padding: 16px;
    display: block;
    text-align: center;
}

.stage-block .img {
    height: 231px;
    overflow: hidden;
    border-radius: 10px 10px 0px 0px;
}

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

.stage-block .details {
    padding: 25px 0 0;
}

.stage-block .details h3 {
    font-size: 18px;
    color: #000;
    font-family: 'bahijBold';
    margin: 0;
    line-height: 31px;
}

.stage-block:hover {
    background: var(--thr-color);
}

.stage-block:hover .details h3 {
    color: #fff;
}


/* End Stages-h */


/* Start Courses-h */

.courses-h {
    padding: 80px 0;
    overflow: hidden;
}

.courses-h .overlay-img::after {
    content: "";
    left: 0;
    top: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: var(--grid-color);
    opacity: 0.91;
}

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

.courses-slider .owl-stage-outer {
    overflow: visible;
}

.courses-slider .item {
    padding: 0 15px;
}

.cous-block {
    direction: rtl;
    background: #fff;
    display: block;
    box-shadow: 0px 3px 16px #77737329;
    border-radius: 10px;
    padding: 17px;
    min-height: 493px;
    text-align: center;
    margin: 15px 0;
}

.cous-block .img-block .img {
    border-radius: 10px 10px 0px 0px;
    height: 377px;
    overflow: hidden;
}

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

.cous-block .img-block .details {
    padding: 36px 0 0;
}

.cous-block .img-block .details h3 {
    margin: 0;
    color: #000000;
    font-size: 18px;
    font-family: 'bahijBold';
}


/* End Courses-h */


/* Start Team-h */

.team-h {
    padding: 70px 0;
    overflow: hidden;
    background: var(--bg-color);
}

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

.title p {
    color: #363636;
    font-family: 'bahijBold';
    font-size: 16px;
    line-height: 26px;
    margin: 30px 0 0;
}

.team-slider .owl-stage-outer {
    overflow: visible;
}

.team-slider .item {
    padding: 0 15px;
}

.team-block {
    text-align: center;
    padding-bottom: 15px;
    position: relative;
    margin: 15px 0;
    direction: rtl;
}

.team-block .img {
    width: 188px;
    height: 188px;
    margin: auto;
    overflow: hidden;
    border-radius: 50%;
}

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

.team-block .details {
    position: relative;
    min-height: 74px;
    background: #fff;
    box-shadow: 0px 3px 6px #9E9E9E29;
    border-radius: 5px;
    margin-top: -25px;
    padding: 12px;
}

.team-block .details h3 {
    color: #000;
    font-size: 16px;
    font-family: 'bahijBold';
    margin: 0 0 3px;
    line-height: 31px;
}

.team-block .details span {
    color: #979595;
    font-size: 15px;
    line-height: 31px;
    font-family: 'bahijLight';
}

.team-block .details::after {
    transition: all .5s;
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    bottom: -7px;
    width: 87px;
    height: 7px;
    background: var(--sec-color);
}



.team-block.block-2 .details::after {
    background: #FCB040;
}
.team-block.block-3 .details::after {
    background: var(--thr-color);
}
.team-block.block-4 .details::after {
    background: #F6EE31;
}

.team-block.block-5 .details::after {
    background: var(--sec-color);
}
.team-block.block-6 .details::after {
    background: #FCB040;
}
.team-block.block-7 .details::after {
    background: var(--thr-color);
}
.team-block.block-8 .details::after {
    background: #F6EE31;
}
.team-block.block-9 .details::after {
    background: var(--sec-color);
}
.team-block.block-10 .details::after {
    background: #FCB040;
}
.team-block.block-11 .details::after {
    background: var(--thr-color);
}
.team-block.block-12 .details::after {
    background: #F6EE31;
}
/* End Team-h */


/* Start Counter-h */

.counter-h {
    padding: 60px 0;
    background: var(--grid-color);
}

.counter-h::before,
.counter-h::after {
    content: "";
    position: absolute;
    width: 14%;
    height: 100%;
    background-image: url(../images/after.png);
    top: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.counter-h::before {
    right: 0;
    background-position: left top;
}

.counter-h::after {
    left: 0;
    background-position: right top;
}

.count-block {
    margin: 15px 0;
    text-align: center;
}

.count-block .icon {
    width: 98px;
    height: 106px;
    margin: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.count-block .icon::after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/bg-1.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.counter-h .col-md-3.col-sm-6:nth-child(3) .count-block .icon::after {
    background-image: url(../images/bg-2.svg);
}

.counter-h .col-md-3.col-sm-6:nth-child(4) .count-block .icon::after {
    background-image: url(../images/bg-3.svg);
}

.counter-h .col-md-3.col-sm-6:nth-child(5) .count-block .icon::after {
    background-image: url(../images/bg-4.svg);
}

.count-block .details {
    padding: 8px 0 0;
}

.count-block .details .counter-item {
    direction: ltr;
    color: #fff;
    font-size: 40px;
    font-family: 'bahijBold';
    line-height: 80px;
    margin: 0;
}

.count-block .details p {
    color: #FFFFFF;
    font-size: 17px;
    font-family: 'bahijBold';
}


/* End Counter-h */


/* Start Gallery-h */

.gallery-h {
    position: relative;
    overflow: hidden;
    padding: 200px 0 0;
}

.gallery-h::after {
    content: attr(data-text);
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    color: #818286;
    text-transform: capitalize;
    opacity: 0.03;
    font-size: 221px;
    text-align: center;
    font-family: 'bahijBold';
    line-height: 183px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: -1;
    white-space: nowrap;
}

.title-thr {
    margin: 0 0 30px;
}

.title-thr h3 {
    font-size: 23px;
    color: var(--main-color);
    font-family: 'bahijBold';
}

.gallery-slider .owl-stage-outer {
    overflow: visible;
}

.gallery-slider .item {
    padding: 0 10px;
}

.gallery-block {
    display: block;
    margin: 15px 0;
    height: 185px;
    overflow: hidden;
    border-radius: 5px;
    position: relative;
}

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

.gallery-slider .owl-nav {
    top: 40%;
}


/* End Gallery-h */


/* Start Club-h */

.clubs-h {
    padding: 60px 0;
    overflow: hidden;
}

.cous-block:hover {
    background: var(--thr-color);
}

.cous-block:hover .img-block .details h3 {
    color: #fff;
}


/* End Club-h */


/* Start Partners-h */

.partners-h {
    overflow: hidden;
    padding: 0 0 60px;
}

.part-slider .owl-stage-outer {
    overflow: visible;
}

.part-slider .item {
    padding: 0 15px;
}

.part-block {
    margin: 15px 0;
    height: 115px;
    background: #fff;
    box-shadow: 0px 3px 16px #C5C2C229;
    line-height: 115px;
    overflow: hidden;
}

.part-block .img {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.part-block .img img {
    width: auto !important;
    max-height: 100%;
    margin: auto;
}


/* End Partners-h */


/* Start Footer */

footer {
    background: var(--main-color);
}

.footer-top {
    padding: 70px 0;
    text-align: center;
}

.footer-top .logo-f {
    max-width: 330px;
    /* max-height: 120px; */
    margin: 0 auto 35px;
}

.footer-top .logo-f a {
    display: block;
    width: 100%;
    height: 100%;
}

.footer-top .menu-f {
    margin: 0 0 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.footer-top .menu-f ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.footer-top .menu-f ul li {
    margin: 8px 11px;
}

.footer-top .menu-f ul li a {
    color: #FFF;
    font-size: 16px;
    line-height: 17px;
    display: block;
}

.footer-top .menu-f ul li a:hover {
    color: var(--sec-color);
    animation: 1s jello;
}

.footer-top .info-f {
    margin: 25px 0;
}

.footer-top .info-f ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 25px auto;
}

.footer-top .info-f ul li {
    margin: 8px 10px;
}

.footer-top .info-f ul li,
.footer-top .info-f ul li a {
    font-size: 16px;
    color: #fff;
}

.footer-top .info-f ul li a i {
    font-size: 16px;
    width: 18px;
    margin-inline-end: 5px;
}

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

.footer-top .social-f {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.footer-top .social-f a {
    font-size: 13px;
    color: #fff;
    margin: 0 4px;
    width: 28px;
    height: 28px;
    border: 1px solid #FFFFFF;
    line-height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-top .social-f a:hover {
    color: var(--sec-color);
}

.footer-botto {
    border-top: 1px solid rgb(255 255 255 / 30%);
}

.footer-botto .row {
    align-items: center;
}

.copy-right p {
    color: #FFF;
    font-size: 14px;
}

.ryad-logo {
    display: flex !important;
    direction: ltr;
    margin-inline-start: auto;
}

.logo-f .icon {
    width: 85px;
    max-height: 114px;
    margin: 0 auto;
}

.logo-f .text-logo h3 {
    color: #FFF;
    font-size: 16px;
    font-family: 'bahijBold';
    line-height: 26px;
    margin: 0;
}

.logo-f .text-logo h4 {
    color: #FFF;
    font-size: 14px;
    font-family: 'bahijSemiBold';
    line-height: 22px;
}


/* End Footer */


/* Start Animation */

.animation-h {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.animation-h .icon {
    position: absolute;
}

.animation-h .icon.icon-1 {
    top: 50%;
    right: 5%;
}

.animation-h .icon.icon-2 {
    left: 20%;
    top: 22%;
}

.animation-h .icon.icon-3 {
    left: 5%;
    top: 31%;
}

.about-h .animation-h {
    width: 54%;
}

.about-h .animation-h .icon.icon-1 {
    top: 32%;
    right: 25%;
}

.about-h .animation-h .icon.icon-2 {
    left: 10%;
}

.about-h .animation-h .icon.icon-3 {
    top: 60%;
    left: 25%;
}

.animation-h .icon.icon-4 {
    left: 0;
    top: 70%;
}

.animation-h .icon.icon-5 {
    left: 40%;
    top: 73%;
}

.stages-h .animation-h .icon.icon-1 {
    right: auto;
    left: 10%;
    top: auto;
    bottom: 2%;
}

.stages-h .animation-h .icon.icon-2 {
    right: 15%;
    left: auto;
    top: auto;
    bottom: -25px;
}

.courses-h .animation-h .icon.icon-5 {
    top: 90%;
    left: 25%;
}

.counter-h .animation-h .icon.icon-1 {
    top: 30%;
}

.counter-h .animation-h .icon.icon-2 {
    left: auto;
    right: 35%;
    top: 18%;
}

.counter-h .animation-h .icon.icon-3 {
    left: 25%;
    top: 36%;
}

.counter-h .animation-h .icon.icon-4 {
    left: auto;
    right: 5%;
    top: 83%;
}

.counter-h .animation-h .icon.icon-5 {
    left: 50%;
    top: 85%;
}

.gallery-h .animation-h .icon.icon-1 {
    right: 35%;
    top: 35%;
}


/* End Animation */


/* Start About-page */

.breadcrumb {
    padding: 0;
    margin: 0;
    background: transparent;
    min-height: 177px;
}

.breadcrumb .overlay-img::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #0B7686B3, #0B76860F);
}

.breadcrumb .text-banner {
    padding: 0;
}

.breadcrumb .row {
    align-items: center;
    height: 100%;
}

.breadcrumb .text-banner h3 {
    color: #FFFFFF;
    text-transform: capitalize;
    font-size: 20px;
    font-family: 'bahijBold';
    line-height: 31px;
    margin: 0 0 8px;
}

.breadcrumb .text-banner ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb .text-banner ul li {
    padding: 0 15px;
    position: relative;
}

.breadcrumb .text-banner ul li:first-child {
    padding-inline-start: 0;
}

.breadcrumb .text-banner ul li span,
.breadcrumb .text-banner ul li a {
    color: #fff;
    font-size: 18px;
    font-family: 'bahijLight';
}

.breadcrumb .text-banner ul li span {
    color: #eee;
}

.breadcrumb .text-banner ul li a::after {
    content: "/";
    position: absolute;
    left: -5px;
    top: 2px;
}

.body-inner {
    padding: 80px 0;
}

.body-inner .text-about p {
    max-height: fit-content;
}

.body-inner .img-about .img-small {
    box-shadow: 0px 3px 26px #D8D8D8;
    border: 11px solid #FFFFFF;
    border-radius: 5px;
    width: 216px;
    height: 211px;
    position: absolute;
    bottom: -100px;
    right: 0;
    left: 0;
    margin: 0 30px;
}

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

.body-inner .img-about::after {
    left: 0;
    width: 278px;
    height: 462px;
    right: 90px;
    margin: auto;
    bottom: -140px;
}

.about-page.body-inner {
    padding-bottom: 180px;
}

.manger-word {
    padding: 65px 0;
}

.manger-word .overlay-img::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(124deg, #4A371C, #063B43);
    opacity: 0.91;
}

.manger-word .row {
    align-items: center;
}

.text-manger h3 {
    color: #fff;
}

.text-manger p {
    color: #CCF8FF;
    font-size: 16px;
    font-family: 'bahijLight';
    line-height: 33px;
}

.img-manger {
    position: relative;
    height: 326px;
}

.img-manger a {
    display: block !important;
    width: 100%;
    height: 100%;
}

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

.img-manger .icon {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 12px #45B6C1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: var(--main-color);
}

.more-about {
    padding: 90px 0;
}

.ab-block {
    border-radius: 2px;
    padding: 25px 30px;
    background: var(--main-color);
    min-height: 260px;
    border: 2px solid transparent;
    transition: all .5s;
    height: 100%;
}

.more-about .col-md-4.col-sm-12:nth-child(1) .ab-block {
    /* box-shadow: 0px 21px 40px #FEE2BA; */
    border-radius: 2px;
    background: #FCB040;
}

.more-about .col-md-4.col-sm-12:nth-child(3) .ab-block {
    background: var(--thr-color);
}

.ab-block:hover {
    border-color: #fff;
    box-shadow: 0px 21px 40px #c9f8ff;
    transform: translateY(-10px);
}

.more-about .col-md-4.col-sm-12:nth-child(1) .ab-block:hover {
    box-shadow: 0px 21px 40px #fee2ba;
}

.more-about .col-md-4.col-sm-12:nth-child(3) .ab-block:hover {
    box-shadow: 0px 21px 40px #c8e6e9;
}

.ab-block .title-block {
    display: flex;
    align-items: center;
}

.ab-block .title-block .icon {
    width: 55px;
    height: 55px;
}

.ab-block .title-block .icon img {
    max-height: 55px;
    max-width: 55px;
}

.ab-block .title-block h3 {
    margin: 0;
    width: calc(100% - 55px);
    color: #FFFFFF;
    font-size: 20px;
    padding-inline-start: 20px;
}

.ab-block .details {
    padding: 30px 0 0;
}

.ab-block .details p {
    font-size: 16px;
    color: #E3FDFF;
    line-height: 26px;
    font-family: 'bahijLight';
}

.ab-block .details ul li {
    color: #FFF7EC;
    font-size: 16px;
    line-height: 26px;
    font-family: 'bahijLight';
    position: relative;
    padding-inline-start: 15px;
    margin: 3px 0;
}

.ab-block .details ul li::before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: #FCD69F;
    border-radius: 50%;
}

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

.coals-h::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 60%;
    background: url(../images/mask2.svg);
    background-size: cover;
    background-position: top right;
}

.text-coal ul li {
    color: #363636;
    font-size: 16px;
    font-family: 'bahijBold';
    line-height: 26px;
    position: relative;
    margin: 16px 0;
    padding-inline-start: 18px;
}

.text-coal ul li::before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--thr-color);
}

.our-motto {
    padding: 65px 0;
}

.text-motto {
    padding-inline-start: 65px;
    min-height: 175px;
    display: flex;
    align-items: center;
    position: relative;
}

.text-motto::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    background-image: url(../images/mask.png);
    width: 40%;
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    opacity: .1;
}

.text-motto h1 {
    font-size: 63px;
    font-family: 'bahijBold';
    line-height: 103px;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, #FCB040 58.3%, #fff 42.7%);
    -webkit-text-fill-color: transparent;
    color: #464646;
}

.partners-h.partners-inner {
    padding: 60px 0;
}

.text-motto::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 40%;
    left: 0;
    background: linear-gradient(90deg, #FFDBA7, #FCB040);
    z-index: -1;
}

.courses-page .cous-block:hover {
    background: #86E20A 0% 0% no-repeat padding-box;
}

.title-page {
    margin: 0 0 50px;
    text-align: center;
}

.title-page h3 {
    font-size: 24px;
    color: var(--main-color);
    font-family: 'bahijBold';
    margin: 0;
    line-height: 47px;
}

.title-page p {
    color: #363636;
    margin: 16px 0 0;
    font-size: 18px;
    line-height: 31px;
    font-family: 'bahijLight';
}


/* End About-page */


/* Start Single-page */

.slider-single-pro {
    direction: ltr;
}

.slick-slider {
    direction: ltr;
}

.slider-single-pro {
    display: flex;
    position: relative;
    flex-direction: row-reverse;
}

.slider.slider-for {
    width: calc(100% - 107px);
    padding-inline-start: 5px;
}

.slider.slider-nav.thumb-image {
    width: 107px;
}

.blokc-single-g {
    height: 444px;
    overflow: hidden;
    position: relative;
}

.blokc-single-g img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.thumbnail-image {
    height: 103px;
    overflow: hidden;
}

.thumbnail-image .thumbImg {
    height: 100%;
    width: 100%;
}

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

.slick-prev.slick-arrow,
.slick-next.slick-arrow {
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background: var(--main-color);
    height: 25px;
    z-index: 3;
    opacity: .5;
    transform: none;
}

.slick-next.slick-arrow {
    top: auto;
    bottom: 9px;
}

.text-single h3 {
    font-size: 17px;
    color: var(--thr-color);
    font-family: 'bahijBold';
}

.text-single p {
    margin: 22px 0 0;
    color: #363636;
    font-size: 16px;
    font-family: 'bahijLight';
    line-height: 28px;
}

.single-page .row {
    align-items: center;
}


/* End Single-page */


/* Start Services-page */

.serv-inner {
    max-width: 907px;
    margin: auto;
    position: relative;
    min-height: 529px;
}

.serv-inner .bg-ser {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    text-align: center;
}

.serv-inner .bg-ser .circel {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
}

.serv-inner .bg-ser .circel svg {
    width: 100%;
    height: 100%;
}

.serv-inner .bg-ser .title-serv {
    width: 234px;
    height: 234px;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: linear-gradient(90deg, #FFFFFF 0%, #F4F4F4 49%, #E5E5E5 100%);
    box-shadow: 6px 6px 7px #00000073;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 20px;
}

.serv-inner .bg-ser .circel::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 276px;
    height: 276px;
    margin: auto;
    border: 5px #FCB040 solid;
    border-radius: 50%;
}

.serv-inner .bg-ser .title-serv h3 {
    margin: 0;
    text-shadow: 0px 12px 40px #FEE2BA;
    color: var(--main-color);
    font-family: 'bahijBold';
    font-size: 24px;
}

.serv-inner .all-serv {
    position: relative;
    height: 100%;
    min-height: 529px;
}

.serv-inner .all-serv .item {
    position: absolute;
}

.serv-inner .all-serv .item .serv-block-in {
    width: 300px;
    height: 112px;
    background: var(--thr-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    padding: 10px;
    transition: all .5s;
}

.serv-inner .all-serv .item .serv-block-in .text-inner h3 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-family: 'bahijBold';
    line-height: 26px;
}

.serv-inner .all-serv .item .serv-block-in:hover {
    background: #FCB040;
    box-shadow: 7px 7px 8px #FCB0401A;
}

.serv-inner .all-serv .item:nth-child(1) {
    right: 0;
}

.serv-inner .all-serv .item:nth-child(2) {
    top: -20px;
    left: 65px;
}

.serv-inner .all-serv .item:nth-child(3),
.serv-inner .all-serv .item:nth-child(4) {
    top: 32%;
}

.serv-inner .all-serv .item:nth-child(3),
.serv-inner .all-serv .item:nth-child(5) {
    right: 0;
}

.serv-inner .all-serv .item:nth-child(4),
.serv-inner .all-serv .item:nth-child(6) {
    left: 0;
}

.serv-inner .all-serv .item:nth-child(5),
.serv-inner .all-serv .item:nth-child(6) {
    bottom: 66px;
}

.serv-inner .all-serv .item:nth-child(3) {
    right: -30px;
}

.serv-inner .all-serv .item:nth-child(4) {
    left: -30px;
}

.serv-inner .all-serv .item:nth-child(1) {
    right: 65px;
    top: -20px;
}

.serv-inner .all-serv .item:nth-child(1),
.serv-inner .all-serv .item:nth-child(2) {
    /* top: 30px; */
}

.serv-inner .all-serv .item:nth-child(5) {
    right: -5px;
}

.serv-inner .all-serv .item:nth-child(6) {
    left: -5px;
}

.serv-inner .all-serv .item::after {
    content: "";
    position: absolute;
    height: 60px;
    border-right: 1px #142A3F solid;
    z-index: -1;
}

.serv-inner .all-serv .item:nth-child(1)::after {
    left: 0;
    transform: rotate(45deg);
    bottom: -55px;
    height: 90px;
}

.serv-inner .all-serv .item:nth-child(2)::after {
    right: 0;
    transform: rotate( -45deg);
    bottom: -55px;
    height: 90px;
}

.serv-inner .all-serv .item:nth-child(3)::after {
    transform: rotate(90deg);
    top: 0;
    bottom: 0;
    margin: auto;
    left: -20px;
}

.serv-inner .all-serv .item:nth-child(4)::after {
    transform: rotate( 90deg);
    top: 0;
    bottom: 0;
    margin: auto;
    right: -20px;
}

.serv-inner .all-serv .item:nth-child(6)::after {
    right: 0;
    transform: rotate( 45deg);
    bottom: 55px;
    height: 105px;
}

.serv-inner .all-serv .item:nth-child(5)::after {
    left: 0;
    transform: rotate( -45deg);
    bottom: 55px;
    height: 105px;
}


/* End Services-page */


/* Start Partners-page */

.all-part .item {
    max-width: 20%;
    flex: 0 0 20%;
    padding: 0 15px;
}

.part-in {
    text-align: center;
    margin: 18px 0;
}

.part-in .part-block {
    margin: 0;
    border: 1px solid #B8F5FB;
    box-shadow: none;
    transition: all .5s;
}

.part-in:hover .part-block {
    box-shadow: 0px 3px 26px #2CA6B126;
    border: transparent;
}

.part-in .details {
    padding: 15px 0 0;
}

.part-in .details h3 {
    margin: 0;
    color: #363636;
    font-size: 16px;
    font-family: 'bahijLight';
}

.part-in:hover .details h3 {
    color: var(--thr-color);
}


/* End Partners-page */


/* Start Gallery-page */

.gallery-block::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    opacity: 0;
    transition: all .5s;
}

.gallery-block:hover::after {
    opacity: 0.38;
}

.gallery-block::before {
    content: "\f067";
    font-family: 'Line Awesome Free';
    font-weight: bold;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 4;
    transition: all .5s;
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--main-color);
    transform: scale(0);
}

.gallery-block:hover::before {
    transform: none;
}

.gallery-block-video {
    display: block;
    text-align: center;
    margin: 15px 0;
}

.gallery-block-video .gallery-block {
    margin: 0;
    border-radius: 3px;
}

.gallery-block-video .gallery-block::after {
    opacity: 0;
}

.gallery-block-video .gallery-block::before {
    width: 40px;
    height: 40px;
    background: rgb(255 255 255 / 71%);
    box-shadow: 0px 2px 11px #45B6C1D6;
    content: "\f04b";
    font-weight: bold;
    font-family: 'Font Awesome 5 Pro';
    font-size: 10px;
}

.gallery-block-video .details {
    padding: 12px 0 0;
}

.gallery-block-video .details h3 {
    margin: 0;
    color: #363636;
    font-size: 16px;
    font-family: 'bahijSemiBold';
    line-height: 25px;
}


/* End Gallery-page */


/* Start Help-page */

.help-inner {
    max-width: 766px;
    margin: auto;
}

.card {
    border: none;
    margin: 20px 0;
}

.card-header {
    min-height: 68px;
    border: 1px solid rgb(11 42 65 / 17%);
    border-radius: 5px !important;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
}

.card-header .btn-link {
    width: 100%;
    height: 100%;
    text-align: start;
    border: none;
    padding: 20px;
    font-size: 16px;
    color: var(--main-color);
    text-transform: none;
    padding-inline-end: 50px;
    position: relative;
    text-decoration: none;
}

.card-header .btn-link::after {
    content: "\f068";
    position: absolute;
    left: 0;
    font-family: 'Font Awesome 5 Pro';
    font-size: 14px;
    margin: 20px;
    top: 3px;
    transition: all .5s;
}

.card-header .btn-link.collapsed::after {
    content: "\f067";
}

.card-body {
    max-height: 80px;
    overflow: hidden;
    overflow-y: auto;
    direction: ltr;
    text-align: right;
    color: #363636;
    padding: 20px 13px;
    font-family: 'bahijLight';
    line-height: 28px;
}

.card-body::-webkit-scrollbar {
    width: 3px;
}

.card-body::-webkit-scrollbar-track {
    box-shadow: none;
}

.card-body::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    outline: none;
    border-radius: 50px;
}


/* End Help-page */


/* Start Newsletter-page */

.newsletter-inner {
    max-width: 887px;
    margin: auto;
    display: flex;
    align-items: center;
    padding: 50px;
    box-shadow: 15px 30px 26px #EFFFD9;
    border: 1px solid #C5F684;
    border-radius: 10px;
    background: #fff;
}

.newsletter-inner .letter-img {
    width: 282px;
    margin-inline-start: auto;
}

.letter-email {
    text-align: center;
    width: 64%;
    flex: 0 0 64%;
}

.letter-email h3 {
    font-size: 23px;
    font-family: 'bahijBold';
    color: var(--main-color);
    line-height: 81px;
}

.letter-email input {
    width: 100%;
    max-width: 398px;
    border: 1px solid #DEDEDE;
    border-radius: 5px;
    height: 54px;
    margin: 15px 0 32px;
}

.letter-email .btn {
    margin-top: 0;
    min-width: 226px;
    min-height: 54px;
    padding: 12px;
}


/* End Newletterpage */


/* Start Terms-page */

.body-inner::before,
.body-inner::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/before-inner.png);
    width: 60%;
    height: 25%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    z-index: -1;
}

.body-inner::after {
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
    transform: scaleX(-1);
}

.terms-text {
    max-width: 720px;
    margin: auto;
}

.terms-text h3 {
    text-transform: uppercase;
    color: var(--thr-color);
    font-family: 'bahijBold';
    margin: 0;
    font-size: 24px;
    line-height: 35px;
}

.terms-text p {
    color: #363636;
    font-size: 16px;
    line-height: 28px;
    font-family: 'bahijLight';
    margin: 20px 0;
}


/* End Terms-page */


/* Start Books-page */

.news-block .details .head-h {
    display: flex;
    align-items: center;
}

.news-block .details .head-h .name {
    width: 55%;
    margin: 0;
    margin-inline-end: 10px;
}

.news-block .details .head-h .date-h {
    display: flex;
    align-items: center;
    margin-inline-start: auto;
    color: #828080;
    font-size: 14px;
    font-family: 'bahijLight';
    transition: all .5s;
}

.news-block .details .head-h .date-h i {
    position: relative;
    height: 19px;
    margin-inline-end: 8px;
}

.news-block:hover .details .head-h .date-h {
    color: #fff;
}


/* End Books-page */


/* Start Single-book */

.single-book-inner {
    max-width: 816px;
    margin: auto;
}

.single-book-inner h3 {
    font-size: 20px;
    color: var(--main-color);
    font-family: 'bahijBold';
    line-height: 33px;
}

.single-book-inner .img {
    margin: 21px 0 30px;
}

.single-book-inner .img img {
    max-height: 471px;
}

.single-book-inner .info-b {
    display: flex;
    align-items: center;
    margin: 0 0 16px;
}

.single-book-inner .info-b span {
    color: #828080;
    font-size: 14px;
    font-family: 'bahijLight';
    line-height: 24px;
    margin-inline-end: 30px;
}

.single-book-inner .info-b span i {
    margin-inline-end: 8px;
}

.single-book-inner .info-b span:last-child {
    margin: 0;
}

.single-book-inner p {
    color: #303030;
    font-size: 16px;
    line-height: 28px;
    font-family: 'bahijLight';
}

.part-gallery-page {
    padding: 0 0 80px;
}


/* End Single-book */


/* Start Forum-page */

.forum-page.body-inner::before,
.forum-page.body-inner::after {
    display: none;
}

.side-forum {
    box-shadow: 0px 3px 6px #A4A4A429;
    border: 1px solid #D9D9D9;
    border-radius: 5px;
    overflow: hidden;
}

.side-forum h3 {
    height: 69px;
    display: flex;
    align-items: center;
    background: var(--thr-color);
    color: #fff;
    padding: 10px 30px;
    font-size: 23px;
    font-family: 'bahijBold';
    margin: 0;
}

.side-forum ul li {
    display: block;
    border-bottom: 1px solid #D9D9D9;
    padding: 16px 30px;
}

.side-forum ul li:last-child {
    border: none;
}

.side-forum ul li a {
    color: #363636;
    text-transform: capitalize;
    font-size: 16px;
    font-family: 'bahijSemiBold';
    padding-inline-start: 20px;
    position: relative;
}

.side-forum ul li.active a,
.side-forum ul li a:hover {
    color: var(--thr-color);
}

.forum-block {
    direction: rtl;
    text-align: center;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    height: 533px;
}

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

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

.forum-block .img::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #0B7686, #0B76860F);
    opacity: 0.93;
}

.forum-block .details {
    bottom: 0;
    position: absolute;
    z-index: 5;
    right: 0;
    left: 0;
    width: 90%;
    margin: 0 auto 70px;
}

.forum-block .details p {
    color: #FFF;
    font-size: 15px;
    line-height: 31px;
    font-family: 'bahijSemiBold';
}

.owl-dots {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #fff;
    display: block;
    border-radius: 50%;
    transition: all .5s;
    margin: 0 7px;
}

.owl-dots .owl-dot.active span {
    width: 18px;
    height: 18px;
    background: var(--thr-color);
}

.team-h.stud-in {
    padding-top: 0;
    background: transparent;
}

.team-h.stud-in .title h3 {
    padding: 0;
}

.team-h.stud-in .title h3::before {
    display: none;
}

.side-forum ul li a::before {
    content: "\f0d9";
    position: absolute;
    right: 0;
    top: 1px;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 100;
}


/* End Forum-page */


/* Start Contact-page */

.contact-page::before {
    /* content: ""; */
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 80%;
    width: 25%;
    background: var(--sec-color);
    opacity: 0;
}

.contact-inner {
    position: relative;
    z-index: 3;
}

.contact-inner .contact-form {
    background: #fff;
    box-shadow: 0px 3px 26px #B2ADAD29;
    border-radius: 5px;
    padding: 55px;
}

.contact-page.body-inner {
    padding: 190px 0;
}

.contact-inner::before {
    content: "";
    height: 105%;
    width: 26%;
    position: absolute;
    right: -2%;
    top: -2.5%;
    background: linear-gradient(164deg, #86E20A 0%, #2CA6B1 100%);
    z-index: -1;
    border-radius: 5px 0 0 5px;
}

.contact-page .row {
    align-items: center;
}

.contact-inner .contact-form h3 {
    color: var(--dark-color);
    text-transform: uppercase;
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 30px;
}

.form-group {
    margin: 18px 0;
}

.form-group label {
    color: #000000;
    text-transform: capitalize;
    font-size: 16px;
}

.form-group .form-control {
    height: 50px;
    color: #767891;
    font-size: 15px;
    box-shadow: none;
    transition: all .5s;
    padding: 0 16px;
    background: #fff;
    border: 1px solid rgb(11 42 65 / 19%);
    border-radius: 3px;
}

.form-group .form-control:focus {
    background: #fff;
    border-color: var(--sec-color);
}

.form-group textarea.form-control {
    padding: 16px;
    height: 114px;
}

.btn-form {
    min-width: 144px;
    min-height: 50px;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin: 15px 0 0;
    padding: 10px;
}

.btn-form:hover,
.btn-form:focus {
    /* background: var(--main-color); */
    /* color: #fff; */
}

.info-contact {
    padding-inline-start: 30px;
}

.info-contact h3 {
    color: var(--dark-color);
    text-transform: uppercase;
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 37px;
}

.info-contact ul {
    margin: 30px 0;
}

.info-contact ul li a {
    font-size: 16px;
    color: #767891;
    display: flex;
}

.info-contact ul li i {
    font-size: 20px;
    width: 20px;
    position: relative;
    top: 2px;
}

.info-contact ul li span {
    width: calc(100% - 20px);
    padding-inline-start: 10px;
}

.info-contact ul li {
    line-height: 26px;
    margin: 16px 0;
}

.social-c {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.social-c a {
    width: 30px;
    height: 30px;
    border: 1px solid rgb(35 39 90 / 19%);
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    margin-inline-end: 9px;
    margin-bottom: 5px;
    font-size: 16px;
    color: #727272;
}

.social-c a:hover {
    color: var(--thr-color);
}

.info-contact ul li span u {
    display: inline-block;
    text-decoration: none;
}

.contact-page .overlay-img {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    height: 133%;
    width: 34%;
    margin-inline-start: -10%;
    right: 0;
}

.contact-page .overlay-img::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(180deg, #76789100, var(--main-color));
}

.contact-page.body-inner .container {
    position: relative;
}

.map-in {
    height: 564px;
}

.contact-page.body-inner::before,
.contact-page.body-inner::after {
    display: none;
}

form {
    direction: rtl;
}


/* End Contact-page */
[dir=rtl] .slick-slide {
    float: left;
}

/*****************************************************************************/
/*********************************** 404 ***********************************/
.error-layout {
	padding: 80px 0;

}
.error-layout .inner_ro,
.error-layout .outer {
	text-align: center;
}
.error-layout .m-section-head {
	margin-bottom: 20px;
	text-align: right;
}
.error-layout .m-section-head h3 {
	font-size: 18px;
	padding-bottom: 0;
}
.error-layout .inner_ro {
	position: relative;
}
.error-layout .inner_ro span {
	color: var(--main-color);
	font-size: 150px;
	font-weight: bold;
	line-height:1;
}

.error-layout .inner_ro img.sc {
  bottom: 0;
  left: 0;
  height: 42px;
  margin: auto;
  position: absolute;
  right: 0;
  top: -90px;
  width: 381px;
  opacity: .5;
}
.error-layout .outer h4 {
    margin: 15px 0 10px;
  font-size: 20px;
  font-weight: bold;
}
.error-layout .outer p{
    font-size: 17px;
}
.error-layout .outer a {
  height: 35px;
  line-height: 35px;
  padding: 0 7px;
	display: inline-block;
	color: var(--main-color);
}
@media(max-width: 600px){
  .error-layout {
    padding: 50px 0;
  }
  .error-layout .inner_ro span {
    font-size: 80px;
  }
  .error-layout .outer h4 {
    font-size: 18px;
    margin-bottom: 12px
  }
  .outer p{
    line-height: 20px;
  }
}

.post, .page {
    margin: 0;
}
/*********************************************************************************/
/*******************************************************************/

.mobile-menu .navigation li.menu-item-has-children::after {content: "";position: absolute;left: 0;top: 15px;width: 8px;height: 8px;border-top: 1px var(--sec-color) solid;border-right: 1px var(--sec-color) solid;transform: rotate(130deg);margin: 0 25px;}

.mobile-menu .navigation li.menu-item-has-children.open .sub-menu {
    height: auto;
    margin: 0;
}

.single-book-inner.row {
    max-width: 100%;
}

.single-book-inner.row .img {
    margin-top: 0;
}

.footer-top .menu-f h3 {
    font-size: 20px;
    font-family: 'bahijBold';
    color: var(--sec-color);
    margin: 0 0 20px;
}

.help-page.con-h .help-inner {
    margin: 0;
}

.clock {
    display: flex;
    align-items: center;
}

.clock ul {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    direction: ltr;
}

.clock #Date {
    margin-inline-end: 10px;
    color: #fff;
}

.newsletter-page .btn.btn-sec.btn-center br{
    display: none;
}

.under-inner {
    text-align: center;
}

.under-inner h3 {
    margin: 40px auto 0;
    display: table;
    padding: 15px 35px;
    background: rgb(11 118 134 / 15%);
    font-size: 35px;
    color: var(--main-color);
    font-family: 'bahijBold';
    min-width: 500px;
}

.serv-inner .all-serv .item:nth-child(7) {
    bottom: -80px;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}

.serv-inner .all-serv .item:nth-child(7) .serv-block-in {
    margin: auto;
}

.serv-inner .all-serv .item:nth-child(7)::after {
    top: -98px;
    height: 98px;
}

.services-page.body-inner {
    padding-bottom: 160px;
}

.services-page.body-inner .container {
    position: relative;
    z-index: 2;
}

.icon-whats {
    position: fixed;
    z-index: 4;
    left: 0;
    bottom: 0;
    margin: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #3fc53f;
    font-size: 30px;
    color: #fff !important;
    border-radius: 50%;
    box-shadow: 0 0 20px rgb(0 0 0 / 16%);
    animation: upDown 3s infinite linear;
}

@keyframes upDown {
    0%, 100% {
        transform: translateY(-10px)
    }
    50% {
        transform: translateY(0px)
    }
}

.text-about ul li {
    margin: 12px 0;
    font-size: 14px;
    padding-inline-start: 20px;
    position: relative;
}

.text-about ul li::before {
    content: "";
    position: absolute;
    right: 0;
    top: 5px;
    width: 10px;
    height: 10px;
    background: var(--main-color);
    border-radius: 50%;
}

.trans-page .row:nth-child(even) {
    margin-top: 80px;
    margin-bottom: 80px;
    flex-direction: row-reverse;
}

.trans-page .img-about::after {
    display: none;
}

.trans-page.trans-more {
    background: var(--bg-color);
}

.table-h {
    max-width: 700px;
    margin: auto;
}

.table-h tr th {
    text-align: center;
    padding: 15px;
    background: var(--main-color);
    color: #fff;
}

.table-h tr td {
    padding: 15px;
    text-align: center;
    background: #fff;
    border: 1px #f8f8f8 solid;
    font-size: 16px;
    color: #444;
}

.table-h tr:nth-child(even) td {
    background: #f0fdff;
    border-color: #d7f1f5;
}

.req-page.body-inner .contact-form {
    max-width: 900px;
    margin: auto;
    padding: 50px 30px;
    box-shadow: 0 0 40px rgb(0 0 0 / 8%);
    background: #fff;
    border-radius: 8px;
    position: relative;
    z-index: 3;
}

.req-page.body-inner .contact-form .title.title-center {
    margin: 0 auto 20px;
}

textarea.form-control.small-text {
    height: 90px;
}

.alert-f {
    margin: 30px 0 15px;
}

.alert-f p {
    font-size: 16px;
    font-weight: bold;
    color: var(--sec-color);
}

.req-page.body-inner .contact-form  form .title.title-center {
    margin: 30px auto 20px;
}

.req-page.body-inner .contact-form .form-group {
    margin: 10px 0;
}

.req-page.body-inner .contact-form .form-group .btn.btn-sec.btn-form {
    min-width: 250px;
    min-height: 55px;
    margin: 20px auto 0;
    display: table;
}

.req-page .alert-form {
    max-width: 900px;
    margin: 50px auto 0;
    padding: 50px 30px;
    box-shadow: 0 0 40px rgb(0 0 0 / 8%);
    background: #fff;
    border-radius: 8px;
    position: relative;
    z-index: 3;
}

.req-page .alert-form h3 {
    font-size: 23px;
    font-family: 'bahijBold';
    color: var(--main-color);
    margin: 0 0 20px;
}

.req-page .alert-form h4 {
    font-size: 16px;
    color: var(--main-color);
}

.req-page .alert-form ul {
    margin: 20px 0;
}

.req-page .alert-form ul li {
    font-size: 14px;
    margin: 12px 0;
    position: relative;
    padding-inline-start: 20px;
}

.req-page .alert-form ul li::before {
    content: "";
    position: absolute;
    right: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    background: var(--main-color);
    border-radius: 50%;
}

.req-page .alert-form .alert-ee {
    max-width: 700px;
    margin: 30px auto 20px;
    text-align: center;
    border: 1px #ccc solid;
    padding: 15px;
    border-radius: 5px;
}

.req-page .alert-form .alert-ee p {
    color: #333;
    font-size: 18px;
    font-family: 'bahijBold';
}

.req-page .alert-form .alert-error {
    margin: 0;
    color: #f00;
    font-size: 12px;
    text-align: center;
}

.trans-page.trans-more.body-inner.more-details-form .table-h {
    margin: 0 0 30px;
}

.trans-page.trans-more.body-inner.more-details-form .terms-text {
    margin: 0;
    max-width: 900px;
}

.graduates-logo-img{
   margin-top: 30px; 
}

.graduates-logo-img img {
    max-width: 100px;
}

.req-page.body-inner .contact-form .form-group br {
    display: none;
}
@media only screen and (min-width: 600px){
	.contact-form input[type=email], .contact-form input[type=tel], .contact-form input[type=text], .contact-form input[type=url] {
		width: 100% !important;
	}
}