@import url(styles.css);

/* Start Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

@font-face {
    font-family: 'codecPro';
    src: url('../fonts/codecPro-Regular.ttf');
}

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

@font-face {
    font-family: 'codecProMed';
    src: url('../fonts/codecPro-Med.ttf');
}

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

/* End Fonts */

:root {
    --main-color: #41A6FA;
    --sec-color: #6c6c6c;
    --dark-color: #020202;
    --bg-color: #F4FAFF;
    --bg-grad: linear-gradient(270deg, #1686F4 0%, #5BB9FE 100%);
    --bg-dark: #001D38;
    --thr-color: #1787F4;
}

* {
    box-sizing: border-box;
}

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

a:hover {
    text-decoration: none;
    color: var(--thr-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: 'codecPro';
    background: #fff;
    text-align: start;
    direction: rtl;
}

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

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

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

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

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

.padding {
    padding: 0 !important;
}

img {
    max-width: 100%;
}

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

textarea {
    resize: none;
}

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

.owl-carousel {
    direction: ltr;
}

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

/* Start Sidebar */

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

.mobile-menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    padding: 30px;
    padding-top: 30.1px;
    padding-bottom: 53.1px;
    z-index: -1;
    opacity: 0;
    transition: all .3s;
    background: #fff;
    visibility: hidden;
    /* transform: scaleY(0) translateY(-100%); */
    right: -100%;
}

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

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

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

.mobile-menu .menu-box .navigation li a {
    text-transform: capitalize;
    font-size: 17px;
    font-weight: 500;
    line-height: 27px;
    color: #333;
    padding: 10px 0;
    display: block;
    border-bottom: 1px #eee solid;
    text-align: start;
    text-transform: capitalize;
}

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

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

/* End Sidebar */

/*** 

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

***/

.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    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;
}


/*** 

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

***/

/* Start Header */

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

header.sticky {
    position: relative;
    z-index: 9;
    left: 0;
    right: 0;
    padding: 8px 0;
    /* overflow: hidden; */
    top: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.lang-h {
    padding: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 14px;
    text-align: center;
    color: #393838;
    border-bottom: 1px solid #393838;
}

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

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

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

.navbar-collapse .navigation {
    /* width: 50%; */
    flex: 0 0 auto;
}

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

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

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

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

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

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

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

.header-med .head-inner ul li a {
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
}


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

.logo-h {
    max-width: 189.34px;
    width: 100%;
    /* margin-inline-end: 47px; */
}

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

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

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

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

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

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

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

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

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

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

.head-inner .menu-left {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn {
    outline: none;
    position: relative;
    border: none !important;
    padding: 8px 24px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    min-width: 174px;
    background: var(--bg-grad);
    min-height: 40px;
    border-radius: 8px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'codecProBold';
    font-size: 16px;
    line-height: 24px;
    box-shadow: none !important;
    z-index: 1;
}

header .btn {
    font-size: 15px;
    line-height: 18.23px;
}

.btn::before,
.btn::after,
.btn span::before,
.btn span::after {
    content: "";
    position: absolute;
    top: 0;
    width: 25.25%;
    height: 0;
    background-color: var(--sec-color);
    transition: 0.5s ease-in-out;
    z-index: -1;
}

.btn::before {
    left: 0;
}

.btn::after {
    left: 50%;
}

.btn:hover::before,
.btn:hover::after,
.btn:hover span::before,
.btn:hover span::after {
    height: 80px;
}

.btn span::before,
.btn span::after {
    top: auto;
    bottom: 0;
}

.btn span::before {
    left: 25%;
}

.btn span::after {
    left: 75%;
}

.nav-inner {
    /* margin-inline-start: auto; */
}

.search-box-btn.search-box-outer {
    color: #000;
    font-size: 16px;
    font-weight: 900;
    line-height: 16px;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
}

.lang-h u {
    /* text-decoration: none; */
}

/* End Header */

/* Start Banner-h */
.banner-h,
.banner-h .row {
    height: calc(100vh - 91px);
}

video#video-h {
    object-fit: cover;
    object-position: center;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.banner-h .row {
    align-items: end;
    -webkit-align-items: end;
}

.video-controls {
    display: flex;
    justify-content: end;
    margin-bottom: 65px;
    gap: 16px;
    flex-direction: row-reverse;
}

.video-controls button {
    font-size: 24px;
    color: #fff;
    padding: 0;
    border: none !important;
    box-shadow: none !important;
    background: none !important;
}

.banner-h::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #011C37;
    opacity: .10;
    z-index: -1;
}

/* End Banner-h */

/* Start About-h */

.about-h {
    padding: 127px 0 227px;
}

.about-h .row {
    margin: 0;
    border: 1px solid #DADADA;
    box-shadow: 0px 46.71px 58.07px 0px #98989829;
    border-radius: 24px;
    padding: 39px 24px;
}

.about-text {
    padding-top: 32px;
    max-width: 506px;
}

.about-text h3 {
    font-family: 'codecProBold';
    color: var(--dark-color);
    font-size: 32px;
    line-height: 67.2px;
    margin-bottom: 32px;
    transform: rotate(-7deg) translateY(-36px);
    transition: all .4s;
    transition-duration: .7s;
    transition-delay: .5s;
    opacity: 0;
}

.about-text h4 {
    color: #000;
    font-family: 'codecProMed';
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 20px;
    transform: rotate(-7deg) translateY(-30px);
    transition: all .4s;
    transition-duration: .7s;
    transition-delay: .5s;
    opacity: 0;
}

.about-text p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #000;
    margin: 20px 0;
    transform: rotate(-7deg) translateY(36px);
    transition: all .4s;
    transition-duration: .7s;
    transition-delay: .5s;
    opacity: 0;
}

.btn:hover {
    color: #fff;
}

.about-img {
    position: relative;
    height: 425px;
    align-content: end;
}

.about-img .img {
    width: 100%;
    height: 347px;
    mask-image: url(../images/about-mask.png);
    -webkit-mask-box-image: url(../images/about-mask.png);
    overflow: hidden;
    -webkit-mask-box-image-width: 100% 100%;
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
    transform: rotate(7deg) translateY(-30px);
    transition: all .4s;
    transition-duration: .7s;
    transition-delay: .5s;
    opacity: 0;
}

.about-img .about-shape {
    position: absolute;
    left: 0;
    top: 0;
    max-width: 403.46px;
    transform: rotate(-7deg) translateY(36px);
    transition: all .4s;
    transition-duration: .7s;
    transition-delay: .5s;
    opacity: 0;
}

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

/* End About-h */

/* Start Services-h */

.services-h {
    padding-bottom: 155px;
}

.title-flex {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.title-flex .title {
    margin: 0;
}

.title h3 {
    font-family: 'codecProBold';
    font-size: 32px;
    line-height: 67.2px;
    color: var(--dark-color);
    margin: 0;
}

.title-flex .btn {}

.slick-slider .slick-list {
    margin-left: -10px;
    margin-right: -10px;
}

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

.service-block {
    height: 513px;
    border-radius: 296px;
    overflow: hidden;
}

.link-block {
    position: absolute;
    inset: 0;
    z-index: 3;
}

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

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

.service-block .details {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    text-align: center;
    z-index: 2;
    padding: 40px 68px;
    transition: all .4s;
}

.service-block .img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--bg-dark);
    opacity: .8;
    transition: all .4s;
}

.service-block .details h3 {
    font-family: 'codecProMed';
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    margin: 0;
    transition: all .4s;
    /* transition-delay: .1s; */
}

.service-block .details .readMore {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    margin: 8px auto 0;
    background: var(--bg-grad);
    color: #fff;
    border-radius: 50%;
    font-family: 'codecProMed';
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    position: absolute;
    right: 0;
    left: 0;
    bottom: -50px;
    transition: all .4s;
    opacity: 0;
    /* transition-delay: .2s; */
}

.service-block:hover .img::after {
    opacity: .20;
}

.service-block:hover .details {
    padding-bottom: 144px;
}

.service-block:hover .details .readMore {
    opacity: 1;
    bottom: 80px;
}

.btn-center {
    text-align: center;
    margin-top: 50px;
}

.btn-res {
    display: none;
}

.slick-prev,
.slick-next {
    width: 63.39px;
    height: 64px;
    border: 1px var(--thr-color) solid;
    z-index: 2;
    border-radius: 50%;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'Font Awesome 6 Pro';
    font-size: 24px;
    color: var(--thr-color);
    opacity: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    transition: all .4s;
}

[dir='rtl'] .slick-next {
    right: auto;
    left: -90px;
}

.slick-next {
    right: -90px;
}

[dir='rtl'] .slick-prev {
    left: auto;
    right: -90px;
}

.slick-prev {
    left: -90px;
}

.slick-prev:hover,
.slick-next:hover {
    background: var(--thr-color);
}

.slick-prev:hover::before,
.slick-next:hover::before {
    color: #fff;
}

/* End Services-h */

/* Start Projects-h */

.projects-h {
    padding: 36px 0 144px;
    background: var(--bg-color);
}

.project-block {
    display: flex;
    margin-top: 73px;
    align-items: center;
    -webkit-align-items: center;
    z-index: 2;
}

.project-block .img {
    width: 720px;
    height: 465px;
    border-radius: 24px;
    overflow: hidden;
    width: 55.556%;
    position: relative;
    z-index: -1;
}

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

.project-block .details {
    width: 481px;
    width: 37.115%;
    margin-inline-start: -77px;
    box-shadow: 0px 28px 28px 8px #0000000A;
    background: #fff;
    padding: 31px 38px;
    border-radius: 21.27px;
    /* position: relative; */
    /* z-index: 1; */
}

.project-block .details h3 {
    font-family: 'codecProMed';
    margin-bottom: 22px;
    font-size: 24px;
    line-height: 34px;
    color: #2C2C2C;
}

.project-block .details p {
    color: #000;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* number of lines to show */
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.project-block .details .btn {
    margin-top: 22px;
    position: relative;
    z-index: 5;
}

.btn.btn-border {
    border: 1px solid #1686F4 !important;
    background: transparent;
    color: #1686F4;
}

.btn.btn-border:hover {
    color: #fff;
    border-color: var(--sec-color) !important;
}

.all.projects .col-md-12:nth-child(even) .project-block {
    flex-direction: row-reverse;
}

.all.projects .col-md-12:nth-child(even) .project-block .details {
    margin: 0;
    margin-inline-end: -77px;
}

/* End Projects-h */

/* Start Clients-h */

.clients-h {
    padding: 133px 0 123px;
}

.partners-slider {
    direction: ltr;
    margin-top: 20px;
}

.client-block {
    height: 98px;
    overflow: hidden;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #EEEEEE;
    box-shadow: 0px 12.71px 24.07px 0px #9898980F;
    border-radius: 24px;
}

.client-block img {
    max-width: 128.87px;
    max-height: 73.76px;
    object-fit: contain;
    object-position: center;
}

.clients-h::before,
.clients-h::after {
    content: "";
    position: absolute;
    background: linear-gradient(270deg, #FFFFFF 51.5%, rgba(255, 255, 255, 0.2) 100%);
    width: 96px;
    top: 0;
    bottom: 0;
    z-index: 2;
}

.clients-h::before {
    right: 0;
}

.clients-h::after {
    left: 0;
    transform: scaleX(-1);
}

/* End Clients-h */

/* Start Order-h */

.order-h {
    padding-bottom: 79px;
}

.order-block {
    max-width: 1251px;
    margin: 0 auto;
    padding: 64px;
    text-align: center;
    background: #F4FAFF;
}

.order-block .order-text h3 {
    max-width: 435px;
    margin: 0 auto;
    font-family: 'codecProMed';
    color: #000;
    font-size: 24px;
    line-height: 34px;
}

.order-block .order-text .btn {
    margin-top: 22px;
    min-width: 139px;
}

.order-block .overlay-img {
    z-index: auto;
}

.order-block .order-text {
    z-index: 2;
    position: relative;
}

/* End Order-h */

/* Start Footer */

.footer-top {
    border-bottom: 1px solid #F1F1F1;
    border-top: 1px solid #F1F1F1;
    padding: 84px 0 41px;
}

.logo-f {
    display: block;
}

.s-h {
    display: flex;
    max-width: 305.83px;
    flex-wrap: wrap;
    margin: 35px auto 0;
    border: 1.04px solid #E8E8E8;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    padding: 9px 20px;
    gap: 20px;
    border-radius: 8.35px;
}

.foot-block-s {
    max-width: 378.71px;
}

.s-h span {
    color: #000;
    font-size: 16.71px;
    line-height: 27.15px;
}

.s-h a {
    margin: 0 2px;
    font-size: 22.26px;
    color: #818181;
}

.s-h a:hover {
    color: var(--main-color);
}

.foot-block h3 {
    font-family: 'codecProBold';
    margin-bottom: 32px;
    font-size: 24px;
    line-height: 44px;
}

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

.foot-block .links-f ul li {
    width: 100%;
    flex: 0 0 auto;
}

.foot-block .links-f ul li:nth-child(1),
.foot-block .links-f ul li:nth-child(2),
.foot-block .links-f ul li:nth-child(3),
.foot-block .links-f ul li:nth-child(4) {
    width: 50%;
}

.foot-block .links-f ul li a {
    margin-bottom: 24px;
    display: block;
    color: #000;
    font-size: 16px;
    line-height: 26px;
}

.foot-block .links-f ul li a:hover {
    color: var(--main-color);
}

.info-f ul li a {
    display: flex;
    margin-bottom: 19px;
    align-items: baseline;
    -webkit-align-items: baseline;
    color: #3C3C3C;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
}

.info-f ul li a i {
    color: #000;
    font-weight: 900;
    font-size: 16px;
    line-height: 16px;
    margin-inline-end: 8px;
    width: 16px;
    transition: all .3s;
}

.info-f ul li a span {
    max-width: calc(100% - 24px);
}

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

.info-f ul li a:hover, .info-f ul li a:hover i, a:not([href]):not([class]):hover {
    color: var(--main-color);
}

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

.ryad-logo {
    float: left;
}

.copy-right p {
    color: #05284A;
    font-size: 16px;
    line-height: 26px;
}

.copy-right p span {
    color: var(--thr-color);
}

/* End Footer */

/* Start Animation-h */

.about-text h3.wow.animated.animH,
.about-text h4.wow.animated.animH,
.about-text p.wow.animated.animH,
.about-text .btn.wow.animated.animH,
.about-img .img.wow.animated.animH,
.about-img .about-shape.wow.animated.animH {
    transform: none;
    opacity: 1;
}

.about-text .btn {
    transform: rotate(-7deg) translateY(40px);
    transition: all .4s;
    transition-duration: .7s;
    transition-delay: .5s;
    opacity: 0;
}

.all-services {
    /* transition: all .7s; */
    /* transition-delay: .5s; */
    /* transform: skewX(10deg) scaleX(1.12); */
}

.all-services .item.slick-slide.slick-active {
    transform: rotate(-29deg);
    transition: all .7s;
    transition-delay: .5s;
    opacity: 0;
}

.all-services .item.slick-slide.slick-current.slick-active {
    transform: rotate(-29deg) translateX(73%) translateY(22%);
}

.all-services .item.slick-slide.slick-current.slick-active+.item.slick-slide.slick-active {
    transform: rotate(-29deg) translateX(26%) translateY(7%);
}

.all-services .item.slick-slide.slick-current.slick-active+.item.slick-slide.slick-active+.item.slick-slide.slick-active {
    transform: rotate(-29deg) translateX(-26%) translateY(-7%);
}

.all-services .item.slick-slide.slick-current.slick-active+.item.slick-slide.slick-active+.item.slick-slide.slick-active+.item.slick-slide.slick-active {
    transform: rotate(-29deg) translateX(-73%) translateY(-22%);
}

.all-services.wow.animated.animH .item.slick-slide.slick-active {
    transform: none !important;
    opacity: 1;
}

.all.projects .col-md-12:nth-child(odd) .project-block .img,
.all.projects .col-md-12:nth-child(odd) .project-block .details {
    transition: all .5s;
    transition-delay: .2s;
    transform: rotate(-45deg);
    opacity: 0;
}

.all.projects .col-md-12:nth-child(odd) .project-block.wow.animated.animH .img,
.all.projects .col-md-12:nth-child(odd) .project-block.wow.animated.animH .details {
    opacity: 1;
    transform: none;
}

.all.projects .col-md-12:nth-child(even) .project-block .img {
    transform: translateX(100%) rotate(30deg);
    transition: all .5s;
    transition-delay: .2s;
    opacity: 0;
}

.all.projects .col-md-12:nth-child(even) .project-block .details {
    transform: translateX(-100%) rotate(-180deg);
    transition: all .5s;
    transition-delay: .2s;
    opacity: 0;
}

.all.projects .col-md-12:nth-child(even) .project-block.wow.animated.animH .img,
.all.projects .col-md-12:nth-child(even) .project-block.wow.animated.animH .details {
    opacity: 1;
    transform: none;
}

.all.projects .col-md-12:nth-child(odd) .project-block .details {
    transform: rotate(-180deg);
}

/* End Animation-h */

/* Start Breadcrumb-h */

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

.breadcrumb-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #011C37;
    opacity: .5;
}

.text-bread {
    text-align: center;
}

.text-bread h1 {
    font-family: 'codecProBold';
    color: #fff;
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.text-bread ul {
    display: inline-flex;
}

.text-bread ul li a,
.text-bread ul li span {
    font-family: 'codecProMed';
    color: #fff;
    font-size: 20px;
    line-height: 34px;
    text-transform: uppercase;
}

.text-bread ul li span {
    opacity: 0.7;
}

.text-bread ul li a::after {
    content: "/";
    margin: 0 2px;
    margin-inline-end: 5px;
}

/* End Breadcrumb-h */

/* Start About-h */

.about-page .about-img {
    height: 538px;
}

.about-page .about-img .img {
    height: 457px;
}

.about-page .about-text {
    max-width: 100%;
    padding-inline-end: 20px;
}

.vision-h {
    background: linear-gradient(270deg, #0D4F8E 15%, #41A6FA 100%);
    padding: 100px 0;
}

.vision-block {
    margin-bottom: 57px;
}

.col-md-12 .vision-block:last-child {
    margin: 0;
}

.vision-block .inner-block {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.vision-block .inner-block .icon-block {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    border: 2px solid #FFFFFF;
    min-width: 297px;
    border-radius: 8px;
    justify-content: center;
    min-height: 157px;
    gap: 16px;
    opacity: .40;
    transition: all .4s;
}

.vision-block .inner-block .icon-block .icon {
    max-width: 100px;
}

.vision-block .inner-block .icon-block h3 {
    margin: 0;
    font-family: 'codecProBold';
    color: #fff;
    font-size: 32px;
    line-height: 44px;
    max-width: calc(100% - 116px);
}

.vision-block .inner-block .details {
    max-width: calc(100% - 297px);
    padding-inline-start: 50px;
    position: relative;
}

.vision-block .inner-block .details::before,
.vision-block .inner-block .details::after {
    content: "";
    position: absolute;
    transition: all .4s;
    opacity: 0;
}

.vision-block .inner-block .details::before {
    width: 24px;
    right: 0;
    top: 0;
    bottom: 0;
    height: 2px;
    background: #fff;
    margin: auto 0;
}

.vision-block .inner-block .details::after {
    width: 20px;
    height: 20px;
    margin: auto 0;
    right: 15px;
    background: #fff;
    border-radius: 50%;
    top: 0;
    bottom: 0;
}

.vision-block .inner-block .details .details-inner {
    transition: all .4s;
    max-width: 596px;
    transform: rotate(9deg);
    opacity: 0;
}

.vision-block .inner-block .details .details-inner p {
    color: #fff;
    font-size: 18px;
    line-height: 28px;
}

.vision-block .inner-block .details .details-inner ul li {
    display: list-item;
    list-style: auto;
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    margin: 2px 0;
}

.vision-block .inner-block .details .details-inner ul {
    padding-inline-start: 20px;
}

.vision-block:hover .inner-block .icon-block,
.vision-block:hover .inner-block .details::before,
.vision-block:hover .inner-block .details::after {
    opacity: 1;
}

.vision-block:hover .inner-block .details .details-inner {
    opacity: 1;
    transform: none;
}

.spcials-h {
    padding-top: 124px;
}

.spcials-h .title {
    margin-bottom: 20px;
}

.spcial-block {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    box-shadow: 0px 12.71px 24.07px 0px #9898980F;
    border-radius: 16px;
    margin: 10px 0;
    border-radius: 16px;
    padding: 12px 29px;
    transition: all .4s;
}

.spcial-block .icon {
    width: 64px;
    height: 64px;
    line-height: 64px;
    transition: all .4s;
}

.spcial-block .details {
    max-width: calc(100% - 64px);
    padding-inline-start: 13px;
}

.spcial-block .details h3 {
    font-family: 'codecProMed';
    margin: 0;
    font-size: 20px;
    line-height: 34px;
    color: #2C2C2C;
    transition: all .4s;
}

.spcial-block:hover {
    background: var(--thr-color);
    border-start-end-radius: 40px;
}

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

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

/* End About-h */

/* Start Services-page */

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

.body-inner .service-block {
    margin: 16px 0;
}

.all-pages {
    text-align: center;
    margin-top: 66px;
}

.all-pages .pagination {
    display: inline-flex;
    box-shadow: 0px 12px 28px 0px #00000014;
    border-radius: 16px;
    overflow: hidden;
    padding: 6px 15px;
    align-items: center;
    -webkit-align-items: center;
}

.all-pages .pagination .page-link {}

.all-pages .pagination .page-link.prev-btn,
.all-pages .pagination .page-link.next-btn {
    width: 40.47px;
    height: 40.47px;
    border: 1px var(--thr-color) solid;
    border-radius: 12px;
    font-size: 14.45px;
    color: var(--thr-color);
    opacity: 1;
}

.all-pages .pagination .page-link.prev-btn i,
.all-pages .pagination .page-link.next-btn i {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.all-pages .pagination .page-link.prev-btn {
    margin-inline-end: 17px;
}

.all-pages .pagination .page-link.next-btn {
    margin-inline-start: 17px;
}

.all-pages .pagination .page-link {
    border: none;
    box-shadow: none;
    padding: 0;
    background: transparent;
    margin: 0 3px;
    font-size: 18px;
    line-height: 28px;
    opacity: .30;
    color: #464646;
}

.all-pages .pagination .active .page-link {
    opacity: 1;
    font-family: 'codecProMed';
    font-size: 24px;
    line-height: 34px;
    color: #232323;
}

.all-pages .pagination li.page-item.disabled {
    opacity: .20;
}
.all-pages .pagination li.page-item{
    margin: 0 5px;
}
/* End Services-page */

/* Start Single-page */

.breadcrumb-single-serv {
    padding: 56px 0 145px;
    background: #022140;
}

.service-single.single-page.body-inner {
    padding-top: 0;
}

.imgs-single {
    margin-top: -96px;
}

.big-img {
    height: 379px;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 20px;
}

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

.small-img {
    height: 135px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 16px;
    position: relative;
}

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

.small-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #011C37;
    opacity: .5;
    transition: all .4s;
}

.slick-current .small-img::after {
    opacity: 0;
}


.imgs-single .slick-prev {
    left: 0;
    right: auto;
}

.imgs-single .slick-next {
    left: auto;
    right: 0;
}

.imgs-single .slick-arrow {
    border-color: #fff;
    background: #FFFFFF33;
    margin: 0 32px;
}

[dir='rtl'] .imgs-single .slick-prev {
    right: 0;
    left: auto;
}

[dir='rtl'] .imgs-single .slick-next {
    left: 0;
    right: auto;
}


.imgs-single .slick-arrow::before {
    color: #fff;
    opacity: 1;
}

.text-single {
    max-width: 874px;
    margin-top: 40px;
}

.text-single h3 {
    font-family: 'codecProBold';
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 44px;
}

.text-single p {
    color: #000;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 28px;
}

.text-single ul {
    padding-inline-start: 20px;
}

.text-single ul li {
    display: list-item;
    list-style: auto;
    color: #000;
    font-size: 18px;
    line-height: 28px;
    margin: 2px 0;
}

.text-single .btn {
    width: 100%;
    margin-top: 20px;
}

@media (min-width: 576px) {
    .orderModal .modal-dialog {
        max-width: 553px;
    }
}

.orderModal .modal-dialog {
    border: 1px solid #C7EAFE;
    box-shadow: 0px 36px 20px 0px #0000000A;
    border-radius: 16px;
    /* overflow: hidden; */
}

.orderModal .modal-dialog .modal-content {
    border: none;
    border-radius: 16px;
}

.orderModal .modal-dialog .modal-content .modal-body {
    padding: 26px 37px 39px;
}

button.btn-close {
    box-shadow: none !important;
    outline: none !important;
    position: absolute;
    left: 0;
    top: 0;
    margin: 13px;
}

.modal .title {
    margin-bottom: 28px;
}

.modal .title h3 {
    font-family: 'codecProMed';
    font-size: 24px;
    line-height: 34px;
    color: #090909;
}

.form-modal .form-group {
    margin-top: 12px;
}

.form-modal .form-group .form-control {
    height: 56px;
    border-radius: 8px;
    border: 1px solid #DEF1FC;
    background: #F4FBFF;
    padding: 0 19px !important;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: right;
    outline: none !important;
    box-shadow: none !important;
}

.form-modal .form-group .form-control::placeholder {
    color: #AEACAC;
    text-transform: capitalize;
}

form {
    direction: rtl;
}

.form-modal .form-group .form-control::after {
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    border: 1px solid var(--thr-color) !important;
    width: 40px;
    height: 40px;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    margin: auto 0;
    border-radius: 8px;
    color: var(--thr-color);
    text-shadow: 0px 1px 4px #00000040;
    font-size: 14.42px;
}

.form-modal .form-group .form-control.niceSelect {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.form-modal .form-group .form-control.niceSelect .current {
    color: #AEACAC;
}

.form-modal .form-group textarea.form-control {
    height: 126px;
    padding: 19px !important;
}

.form-modal .form-group .btn {
    width: 100%;
    margin-top: 9px;
    min-height: 48px;
}

.iti {
    width: 100%;
}

.iti__selected-flag {
    background: transparent !important;
    direction: ltr;
    color: var(--thr-color);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.iti__flag {
    display: none;
}

.iti__arrow {
    display: none;
}

.iti__country-list {
    left: 0;
    right: auto;
}

.iti__country {
    direction: ltr;
    text-align: right;
}

/* End Single-page */

/* Start Careers-page */

.career-inner {
    max-width: 595px;
    margin: 0 auto;
    box-shadow: 0px 36px 20px 0px #0000000A;
    border: 1px solid #C7EAFE;
    padding: 26px 58px 53px;
    border-radius: 16px;
    background: #fff;
}

.career-inner h3 {
    text-align: center;
    font-family: 'codecProMed';
    color: #090909;
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 28px;
}

.form-modal .form-group .file-upload-group.form-control {
    position: relative;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #AEACAC;
}

.file-uploadH {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0;
    cursor: pointer;
}

.form-modal .form-group .file-upload-group.form-control .for-sm-input-file {
    display: flex;
    align-items: center;
    border: 1px solid var(--thr-color) !important;
    width: 40px;
    height: 40px;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    margin: auto 0;
    border-radius: 8px;
    color: var(--thr-color);
    font-size: 19px;
}

/* End Careers-page */

/* Start Contact-page */

.contact-page.body-inner {
    padding: 94px 0 0;
    z-index: 2;
}

.map-contact {
    margin-top: -256px;
    height: 620px;
}

.imgs-single .slick-slider {
    direction: ltr;
}

.imgs-single .slick-slider .item.slick-slide {
    float: left;
}

.wpcf7 form .wpcf7-response-output {
    margin: 0;
}

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

.body-inner .client-block {
    margin: 10px 0;
}


@media (min-width: 992px){
.form-modal .form-group input.btn:hover {
    background: var(--sec-color);
}
}
/* End Contact-page */