@import url(styles.css);

/* Start Fonts */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');

@font-face {
    font-family: 'brando';
    src: url(../fonts/brando.otf);
}

@font-face {
    font-family: 'brandoLight';
    src: url(../fonts/brando-Light.otf);
}

@font-face {
    font-family: 'brandoMed';
    src: url(../fonts/brando-SemiBold.otf);
}

@font-face {
    font-family: 'brandoBold';
    src: url(../fonts/brando-Bold.otf);
}

/* End Fonts */

:root {
    --main-color: #2F5897;
    --sec-color: #153667;
    --dark-color: #070E27;
    --bg-color: #0B1434;
    --white-color: #fff;
}

* {
    box-sizing: border-box;
}

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

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

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

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

body {
    padding: 0;
    margin: 0;
    font-family: 'brando';
    background: var(--dark-color);
    color: var(--white-color);
    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: 0;
    /* padding-top: 30.1px; */
    /* padding-bottom: 53.1px; */
    z-index: -1;
    opacity: 0;
    transition: all .3s;
    background: var(--dark-color);
    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 30px; */
    /* text-align: center; */
}

.mobile-menu .menu-box .navigation li a {
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: var(--white-color);
    border-bottom: 1px var(--bg-color) solid;
    display: block;
    padding: 15px 20px;
}

.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;
    right: 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: 56px;
}

header.sticky {
    position: relative;
    z-index: 9;
    left: 0;
    right: 0;
    padding: 5px 0;
    /* background: var(--bg-color); */
    /* 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;
    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;
    position: absolute;
    right: 0;
    margin: 13px;
    top: 0;
    z-index: 23;
}

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

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

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

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

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

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

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

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

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

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

.lang-h {
    color: var(--white-color);
    position: relative;
    font-family: 'brandoMed';
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.16px;
}

.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 {
    /* padding: 20px; */
    /* 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: var(--white-color);
    font-family: 'brandoMed';
    font-size: 18px;
    line-height: 25.7px;
}


.head-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    padding: 14px 31px 21px;
    background: var(--bg-color);
    border-radius: 0 0 49px 49px;
}

.logo-h {
    max-width: 163.2px;
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

.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: 12px 24px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    min-width: 143px;
    background: var(--main-color);
    min-height: 48.19px;
    border-radius: 40px;
    text-transform: capitalize;
    box-shadow: none !important;
    z-index: 1;
    font-family: 'brandoMed';
    color: var(--white-color);
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.16px;
    gap: 12px;
}

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

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

.show-hide {
    display: none;
}

.sub-lang,
.sub-currency {
    display: none;
    position: absolute;
    min-width: 100%;
    background: #f0f0f0;
    border-radius: 8px;
    margin-top: 4px !important;
}

.menu-left button {
    width: 74px;
    display: inline-flex;
    height: 40px;
    border-radius: 8px;
    border: none !important;
    box-shadow: none !important;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    padding: 4px 9px;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
}

.menu-left button .icon {
    width: 32px;
    height: 32px;
    line-height: 32px;
}

.menu-left button::after {
    content: "\f0dd";
    font-family: 'Font Awesome 6 Pro';
    font-size: 12.69px;
    line-height: 12.69px;
    position: relative;
    top: -2px;
}

.btn-req {
    margin-inline-start: 16px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 16px;
}

.currency-h {
    position: relative;
}

.sub-lang li a,
.sub-currency li a {
    padding: 9px;
    display: block;
    font-size: 16px;
    padding: 4px 9px;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
}

.sub-lang li a img,
.sub-currency li a img {
    max-width: 34px;
}

.btn-req a {
    margin: 0;
    min-width: 91px;
    display: inline-flex;
    height: 42px;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    padding: 8px 24px;
    border-radius: 8px;
    color: #222;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-transform: capitalize;
}

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

.btn-req .btn-req:hover {
    background: var(--sec-color);
    color: #fff;
}

.header-med .head-inner .sub-lang,
.header-med .head-inner .sub-currency {
    display: none;
}

.btn:hover {
    color: #fff;
}

/* End Header */

/* Start Banner-h */

.banner-h {
    text-align: center;
    padding: 110px 0 53px;
}

.banner-text {
    max-width: 809.57px;
    margin: 0 auto;
}

.banner-text h1 {
    font-family: 'brandoBold';
    font-size: 58px;
    line-height: 87px;
    letter-spacing: -2px;
    text-align: center;
    color: var(--white-color);
    margin-bottom: 28px;
}

.banner-text h1 span {
    color: var(--sec-color);
}

path {}

.banner-img svg,
.banner-img img {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 2s infinite alternate;
    max-width: 100%;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-15px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-15px);
    }
}


/* End Banner-h */

/* Start Services-h */

.services-h {
    padding: 46px 0 0;
}

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

.services-slider .item {
    padding: 12.5px;
}

.serv-block {
    border-radius: 20px;
    background: var(--bg-color);
    padding: 93px 22px 41px;
    position: relative;
    margin-top: 50px;
    transition: all .4s;
}

.serv-block .icon {
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    top: 0;
    width: 98.32px;
    height: 98.32px;
    margin-top: -45px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-color);
    border: 5.9px solid var(--dark-color);
    font-size: 27.21px;
    transition: all .4s;
}

.serv-block .details h3 {
    font-family: 'brandoMed';
    font-weight: 600;
    font-size: 22px;
    line-height: 29.5px;
    margin-bottom: 25px;
    max-width: 325px;
}

.serv-block .details p {
    font-family: 'brandoMed';
    font-weight: 600;
    font-size: 17.7px;
    line-height: 29.5px;
    max-width: 325px;
}

.serv-block:hover {
    background: var(--sec-color);
}

.serv-block:hover .icon {
    background: var(--sec-color);
}

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

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

ul.slick-dots li button {
    width: 14.24px;
    height: 14.24px;
    background: #D9D9D9;
    border-radius: 50%;
}

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

ul.slick-dots li.slick-active button {
    background: var(--sec-color);
}

.services-slider {
    margin: 0 !important;
}

/* End Services-h */

/* Start About-h */

.progress {
    width: 100%;
    height: 4.53px;
}

.skill-wrapper {
    margin-bottom: 17px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
}

.skill-wrapper span {
    margin-bottom: 6px;
    font-size: 10.58px;
    line-height: 11.34px;
    letter-spacing: 0px;
}

.progress-bar {
    background: #6d56c1;
}

.progressbar-active {
    animation-name: progress;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-delay: 0.4s;
}

@keyframes progress {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

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

.about-img .img {
    max-width: 708.86px;
    margin-inline-end: auto;
    height: 622.9px;
    border-start-end-radius: 10px;
    border-end-end-radius: 10px;
    overflow: hidden;
    position: absolute;
    right: 0;
    z-index: -1;
    top: 100px;
}

.about-img {
    display: flex;
    height: 622.9px;
    justify-content: end;
    align-items: end;
    -webkit-align-items: end;
}

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

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

.progressbar-h {
    margin-bottom: 83px;
    background: var(--bg-color);
    border-radius: 10px;
    padding: 17px;
    min-width: 254px;
    margin-inline-end: 30px;
}

.progressbar-h h3 {
    font-family: 'brandoMed';
    font-size: 12.93px;
    line-height: 15.87px;
    margin-bottom: 21px;
}

.progressbar-h .skill-wrapper:nth-child(2) .progress {
    background: #F55B5D1A;
}

.progressbar-h .skill-wrapper:nth-child(2) .progress .progress-bar {
    background: #F23936;
}

.skill-wrapper span.d-block.float-right {
    opacity: .7;
}

.progressbar-h .skill-wrapper:nth-child(3) .progress {
    background: #27B3AA1A;
}

.progressbar-h .skill-wrapper:nth-child(3) .progress .progress-bar {
    background: #14B082;
}

.progressbar-h .skill-wrapper:nth-child(4) .progress {
    background: #FFC83E1A;
}

.progressbar-h .skill-wrapper:nth-child(4) .progress .progress-bar {
    background: #FABB18;
}

.about-text h2 {
    font-family: 'brandoBold';
    font-weight: 700;
    font-size: 54px;
    line-height: 72px;
    letter-spacing: 0px;
    margin-bottom: 21px;
}

.about-text h2 span {
    position: relative;
}

.about-text h2 span::after {
    content: "";
    position: absolute;
    bottom: 14px;
    z-index: -1;
    background: var(--sec-color);
    width: 100%;
    height: 13.06px;
    right: 0;
    left: 0;
}

.about-text p {
    max-width: 397px;
    opacity: .7;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
}

.counter-h {
    margin-top: 51px;
}

.count-block {
    text-align: center;
    max-width: 114px;
}

.counter-item {
    direction: ltr;
}

.count-block .counter-item {
    font-family: sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 52px;
    letter-spacing: -2px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    color: var(--sec-color);
    margin-bottom: 8px;
}

.count-block h3+span {
    opacity: .8;
    font-family: 'brandoMed';
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0px;
}

/* End About-h */

/* Start Clients-h */

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

.title {
    margin-bottom: 30px;
}

.title h3 {
    font-family: 'brandoBold';
    font-size: 54px;
    line-height: 72px;
    margin: 0;
}

.client-block {
    border: 1px solid #153667;
    height: 96.89px;
    overflow: hidden;
    border-radius: 24px;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
}

.all-clients .slick-list {
    margin-right: -6px;
    margin-left: -6px;
}

.all-clients .item {
    padding: 0 6px;
}

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

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

/* End Clients-h */

/* Start Why-h */

.why-h {
    padding: 203px 0 100px;
    background: linear-gradient(180deg, #070E27 0%, #0B1434 100%);
}

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

.why-title {
    max-width: 523.53px;
}

.why-title>span {
    display: inline-flex;
    margin-bottom: 16px;
    min-width: 79px;
    min-height: 30px;
    background: var(--bg-color);
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    font-family: 'brandoMed';
    font-size: 12px;
    line-height: 16px;
}

.why-title h3 {
    font-family: 'brandoBold';
    font-size: 54px;
    line-height: 72px;
    margin-bottom: 20px;
}

.btn.btn-border {
    border: 1px solid #2F5897 !important;
    background: transparent;
    border-radius: 16px;
    min-width: 144.97px;
}

.accordion-item {
    box-shadow: 0px 0px 14px 0px #00000012;
    margin-bottom: 13px;
    overflow: hidden;
    background: var(--bg-color);
    border: none;
    border-radius: 24px !important;
}

.accordion-item * {
    background: transparent;
}

.accordion-item .accordion-button {
    padding: 20px 29px;
    color: #fff;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    font-family: 'brandoMed';
    font-size: 18px;
    line-height: 24px;
    background: transparent;
    box-shadow: none !important;
    text-align: start;
}

.accordion-item .accordion-button::after {
    margin: 0;
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 14px 29px 25px;
}

/* End Why-h */

/* Start Footer */

.footer-top {
    padding: 75px 0 45px;
}

.logo-f {
    display: block;
    max-width: 186.46px;
    margin-bottom: 25px;
}

.info-f {
    background: var(--bg-color);
    padding: 25px 35px;
    border-radius: 50px;
    display: flex;
    flex: 0 1;
    margin-bottom: 25px;
}

.info-f .item {
    flex: auto;
    padding-inline-end: 15px;
}

.info-f .item a {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 11px;
}

.info-f .item a i {
    width: 44.35px;
    height: 44.35px;
    border: 1px solid var(--white-color);
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    transition: all .4s;
}

.info-f .item a:hover i {
    background: var(--sec-color);
    color: var(--white-color);
    border-color: var(--sec-color);
}

.info-f .item a span {
    max-width: calc(100% - 55.3479px);
    font-weight: 400;
    font-size: 18px;
    line-height: 25.7px;
}

.info-f .item a span u {
    display: inline-block;
    direction: ltr;
    text-decoration: none;
    font-family: sans-serif;
}

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

.links-f ul {
    display: flex;
    gap: 56px;
    flex-wrap: wrap;
}

.links-f ul li a {
    font-family: 'brandoMed';
    font-size: 18px;
    line-height: 25.7px;
}

.subscribe-f {
    max-width: 344px;
    margin-inline-start: auto;
}

.subscribe-f form {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.subscribe-f form input {
    max-width: calc(100% - 110px);
    height: 46px;
    border: 1px solid var(--bg-color);
    background: var(--bg-color);
    border-radius: 8px;
    padding: 11px 14px;
    font-weight: 400;
    font-size: 16px;
    line-height: 22.85px;
    text-align: right;
    color: #fff;
}

form {
    direction: rtl;
}

.subscribe-f form input::placeholder {
    color: #C2C2C2;
}

.subscribe-f form .btn.btn-form {
    min-width: 97px;
    min-height: 46px;
    padding: 10px;
    font-family: 'brando';
    font-size: 16px;
    line-height: 24px;
}

.footer-bottom {
    padding: 15px 0;
    background: var(--bg-color);
}

.copy-right p {
    font-size: 16px;
    line-height: 24px;
}

.s-h {
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
    gap: 34px;
}

.s-h a {
    font-size: 18px;
    color: #FEFBFB;
}

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

/* End Footer */

/* Start Breadcrumb-h */

.breadcrumb-h {
    padding: 75px 0 64px;
}

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

.bread-text h1 {
    font-family: 'brandoBold';
    font-size: 58px;
    line-height: 87px;
    letter-spacing: -2px;
    margin: 0;
}

.bread-text ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.bread-text ul li a,
.bread-text ul li span {
    font-family: 'brandoLight';
    font-weight: 300;
    font-size: 27px;
    line-height: 87px;
    letter-spacing: -2px;
    text-align: center;
}

.bread-text ul li a::after {
    content: "|";
    margin: 0 15px;
}

/* End Breadcrumb-h */

/* Start About-page */



.about-h.about-page {
    padding-top: 0;
}

.about-h.about-page .about-img .img {
    top: 0;
    max-width: 708.86px;
}

.about-h.about-page .about-text p {
    max-width: 605.4px;
}

.counter-in-h .col-md-3 {
    width: 20%;
}

.counter-in-h .count-block {
    max-width: 100%;
}

.why-in-h {
    padding: 161px 0 100px;
    background: linear-gradient(180deg, #070E27 0%, #0B1434 100%);
}

.why-block {
    margin: 15px 0;
    height: calc(100% - 30px);
    padding: 32px;
    background: var(--bg-color);
    border-radius: 24px;
    transition: all .4s;
    overflow: hidden;
}

.why-block .icon {
    width: 51px;
    height: 51px;
    transition: all .4s;
}

.why-block .icon img {
    max-width: 51px;
    max-height: 51px;
    object-fit: contain;
    object-position: center;
}

.why-block .details {
    padding-top: 33px;
}

.why-block .details h3 {
    font-family: 'brandoMed';
    font-size: 32px;
    line-height: 42.1px;
}

.why-block .details p {
    font-family: 'brandoLight';
    font-size: 16px;
    line-height: 28px;
}

.why-block:hover {
    background: var(--main-color);
}

/* End About-page */

/* Start Services-page */

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

.body-inner .serv-block {
    margin-bottom: 33px;
    height: calc(100% - 83px);
}

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

.all-pages .pagination {
    display: inline-flex;
    direction: ltr;
    border: 1px solid rgb(103 103 103 / 40%);
    padding: 21px 22px;
    border-radius: 16px;
}

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

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

.all-pages .pagination .page-link {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 8px;
    border: none;
    font-family: sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #E7E7E7;
    opacity: .2;
}

.all-pages .pagination .active .page-link {
    opacity: 1;
    background: var(--main-color);
}

.all-pages .pagination .page-link.prev-page,
.all-pages .pagination .page-link.next-page {
    min-width: 86px;
    border: 1px solid var(--main-color);
    min-height: 32px;
    gap: 7px;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    font-family:
        'brando';
    color: var(--main-color);
    opacity: .3;
}

.all-pages .pagination .page-link.prev-page:hover,
.all-pages .pagination .page-link.next-page:hover {
    opacity: 1;
}

.whatsappIcon {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 4;
    margin: 40px;
    width: 51px;
    height: 51px;
    border-radius: 10.55px;
    background: #75A334;
    box-shadow: 0px 3.71px 3.71px 0px #0000000D;
    font-size: 26.86px;
    line-height: 37.6px;
    letter-spacing: 0px;
}

.whatsappIcon i {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* End Services-page */

/* Start Single-service */


.single-project-inner .img-big {
    height: 447.89px;
    overflow: hidden;
    border-radius: 18.48px;
}

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

.single-project-inner .slider-single-for {
    margin-bottom: 25px;
}

.imgs-single-project .slider-single-nav {
    margin-left: -10px;
    margin-right: -10px;
}

.imgs-single-project .slider-single-nav .item {
    padding: 0 10px;
}

.imgs-single-project .img-small {
    height: 124.53px;
    border-radius: 18.48px;
    overflow: hidden;
}

.imgs-single-project .img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all .4s;
    filter: grayscale(1);
}

.imgs-single-project .item.slick-slide.slick-current .img-small img {
    filter: none;
}

.single-project-inner .single-project-text {
    padding-top: 93px;
    text-align: center;
}

.single-project-inner .single-project-text p {
    font-family: 'brandoLight';
    font-size: 16px;
    color: #fff;
    line-height: 1.75;
    opacity: .7;
    margin: 0 auto 30px;
    max-width: 959.99px;
}

.single-project-inner .single-project-video {
    height: 450px;
    border-radius: 18.48px;
    overflow: hidden;
    margin-top: 41px;
}

.single-project-inner .single-project-video a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.single-project-inner .single-project-video a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.single-project-inner .single-project-video a::before,
.single-project-inner .single-project-video a::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
}

.single-project-inner .single-project-video a::before {
    background: #141346;
    opacity: .9;
}

.single-project-inner .single-project-video a::after {
    content: "\f04b";
    font-family: 'Font Awesome 6 Pro';
    font-weight: bold;
    width: 91.55px;
    height: 91.55px;
    margin: auto;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    font-size: 33.13px;
    color: #000;
}

.rel-h .title {
    margin-bottom: 24px;
}

.rel-h .title h3 {
    font-size: 44.89px;
    line-height: 1.219;
}

.rel-h .title h3 span {
    font-size: 40.91px;
    /* line-height: 49.87px; */
}

.projects-slider2 .item {
    padding: 0 12px;
}

.projects-slider2 .project-block {
    height: 453.61px;
    transform: none;
}

.projects-slider2 .project-block .img {
    height: 309.83px;
}

.projects-slider2 .project-block .details {
    padding: 20px 14px;
}

.projects-slider2 .project-block .details h3 {
    font-size: 21.85px;
    line-height: 33.1px;
    margin-bottom: 14px;
    line-height: 1.5152;
}

.projects-slider2 .project-block .details p {
    font-size: 18.54px;
    line-height: 1.591;
}

.projects-slider2 .project-block .hover-box h3 {
    font-size: 32.77px;
    line-height: 1.3507;
    margin-bottom: 26px;
}

.projects-slider2 .project-block .hover-box p {
    font-size: 14.39px;
    line-height: 1.75;
}

.projects-slider2 ul.slick-dots {
    bottom: -40px;
}

.rel-h {
    padding: 50px 0;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'Font Awesome 6 Pro';
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    border: 1.18px solid #DFDFDF1F;
    border-radius: 50%;
    opacity: 1;
    font-size: 23.58px;
    color: #fff;
    z-index: 4;
    transition: all .4s;
}

.slick-prev:hover:before,
.slick-next:hover:before {
    background: #fff;
    color: var(--main-color);
}

.slick-prev,
.slick-next {
    z-index: 4;
    width: 56.6px;
    height: 56.6px;
}

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

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


/* End Single-service */

/* Start Clients-page */

.clients-page .col-md-2 {
    width: 14.28%;
}

.clients-page .client-block {
    margin: 20px 0;
    border: none;
    background: transparent;
    border-radius: 0;
    padding: 0;
}

/* End Clients-page */

/* Start Contact-page */

.contact-block {
    background: var(--bg-color);
    padding: 42px;
    border-radius: 20px;
}

.form-contact.contact-block {
    padding-inline-end: 52px;
}

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

.form-group label {
    font-family: 'brandoBold';
    font-size: 17.29px;
    line-height: 36.76px;
    margin-bottom: 11px;
    text-transform: capitalize;
}

.form-group .form-control {
    border: 1.08px solid #1B2A5E;
    background: #101A3E;
    border-radius: 120px;
    height: 48.64px;
    padding: 0 20px;
    font-family: 'brandoLight';
    font-weight: 300;
    font-size: 16px;
    line-height: 36.76px;
    box-shadow: none !important;
    text-align: right;
    color: #fff;
}

.form-group .form-control::placeholder {
    transition: all .4s;
}

.form-group .form-control:focus::placeholder {
    transform: translateX(-20px);
    opacity: 0;
}

.iti {
    display: block;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
    left: auto;
    right: 0;
}

.form-group .form-control.phone {
    padding: 0 10px !important;
    padding-inline-end: 75px !important;
}

.iti__flag {
    display: none;
}

.iti__selected-flag {
    direction: ltr;
    font-family: sans-serif;
}

.iti__country-list {
    background: var(--dark-color);
}

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

.form-group .file-upload-group.form-control {
    position: relative;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
}

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

.form-group .file-upload-group.form-control .for-sm-input-file {
    margin: 0;
}

.form-group textarea.form-control {
    height: 94.04px;
    border-radius: 20px;
    padding: 10px 20px;
}

.form-group button.btn.btn-form {
    width: 100%;
    margin-top: 4px;
    height: 50.8px;
}

.info-contact.contact-block,
.map-con {
    margin-inline-start: 30px;
}

.info-contact.contact-block .info-f {
    display: block;
    padding: 0;
}

.contact-title {
    margin-bottom: 37px;
}

.contact-title h3 {
    font-family: 'brandoBold';
    font-size: 30.64px;
    line-height: 48.14px;
    margin: 0;
}

.info-contact.contact-block .info-f .item a {
    margin-bottom: 20px;
    align-items: start;
    -webkit-align-items: start;
    gap: 0 21px;
}

.info-contact.contact-block .info-f .item:nth-child(1) a {
    margin-bottom: 50px;
}

.info-contact.contact-block .info-f .item a i {
    border: none;
    width: auto;
    height: auto;
    border-radius: 0;
}

.info-contact.contact-block {
    margin-bottom: 38px;
}

.map-con {
    height: 272.79px;
    border-radius: 20px;
    overflow: hidden;
}

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

/* End Contact-page */

/* Start Req-page */

.form-group .form-control.niceSelect {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
}

.form-group .form-control.niceSelect::after {
    display: flex;
    top: 0;
    bottom: 0;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    color: #fff;
}

.req-page .form-contact.contact-block {
    max-width: 580.44px;
    margin: 0 auto;
    box-shadow: 0px 4.32px 25.94px 10.81px #0000001C;
}

.nice-select .option {
    background-color: var(--bg-color);
    color: #fff;
}

/* End Req-page */