@import url(styles.css);

/* Start Fonts */
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&family=Vazirmatn:wght@100..900&display=swap');

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

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

@font-face {
    font-family: 'lamaSansMed';
    src: url(../fonts/lamaSans-Medium.ttf);
}

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

/* End Fonts */

:root {
    --main-color: #143554;
    --sec-color: #124267;
    --gray-color: #939598;
    --bg-color: rgba(20, 53, 84, 0.07);
    --bg-color2: #E3F1FF;
    --font-body: "lamaSans", sans-serif;
    --font-light: "lamaSansLight", sans-serif;
    --font-med: "lamaSansMed", sans-serif;
    --font-bold: "lamaSansBold", sans-serif;
}

* {
    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: initial;
    -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: var(--font-body);
    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;
}

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 */

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

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

.mobile-menu .menu-box .navigation li a {
    text-transform: capitalize;
    font-weight: 500;
    line-height: 27px;
    text-align: start;
    text-transform: capitalize;
    display: block;
    padding: 10px 0;
    position: relative;
    font-size: 16px;
    transition: all 0.6s;
    border-bottom: 1px #0000001a solid;
    color: #333;
    line-height: 26px;
}

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

body.mobile-menu-visible .mobile-menu {
    left: 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: color-mix(in srgb, var(--main-color) 90%, transparent);
    -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(--gray-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: transparent;
    -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;
    border-radius: 10px;
    text-transform: capitalize;
    border: none !important;
    box-shadow: none !important;
    outline-offset: 0 !important;
}

.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 circular-menu */

#circularMenu {
    position: relative;
    z-index: 9;
}

.circular-menu .floating-btn {
    display: block;
    width: 58px;
    height: 58px;
    border-radius: 10px;
    background-color: var(--main-color);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: 0;
    color: #fff !important;
}

.circular-menu .floating-btn i {
    font-size: 1.3em;
    transition: transform 0.2s;
}

.circular-menu.active .floating-btn i {
    transform: rotate(-45deg);
}

.circular-menu:after {
    display: block;
    content: " ";
    width: 3.5em;
    height: 3.5em;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -2;
    background-color: rgba(27, 133, 190, 0);
    transition: all 0.3s ease;
}

.circular-menu.active:after {
    transform: scale3d(5.5, 5.5, 1);
    transition-timing-function: cubic-bezier(0.68, 1.55, 0.265, 1);
}

.circular-menu .items-wrapper {
    padding: 0;
    margin: 0;
}

.circular-menu .menu-item {
    position: absolute;
    top: 0.2em;
    right: 0.2em;
    z-index: -1;
    display: block;
    text-decoration: none;
    color: rgb(50 74 113);
    font-size: 1em;
    width: 2.5em;
    height: 2.5em;
    border-radius: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-color);
    transition: transform 0.3s ease, background-color 0.2s ease;
    transition-timing-function: ease, ease;
    /* box-shadow: 0 0 22px 5px #f5f9fc6b; */
}

.circular-menu.active .menu-item {
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.circular-menu.active .menu-item:nth-child(1) {
    transform: translate3d(-1em, -4.2em, 0);
}

.circular-menu.active .menu-item:nth-child(2) {
    transform: translate3d(-4em, -2em, 0);
}

.circular-menu.active .menu-item:nth-child(3) {
    transform: translate3d(-4em, 1.5em, 0);
}

.circular-menu .menu-item svg path {
    fill: var(--main-color);
}

.circular-menu .menu-item svg #envelope path {
    fill: transparent;
    stroke: var(--main-color);
}

.circular-menu .menu-item svg {
    width: 21px;
    height: 21px;
    line-height: 21px;
}

/* End circular-menu */

/* Start Header */

.header-med .head-inner ul {
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    gap: 30px;
}

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

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

.close-btn {
    position: relative;
    left: 0px;
    right: 0px;
    top: 0px;
    color: var(--main-color);
    margin: 0px;
    padding: 0px;
    width: 38px;
    height: 38px;
    font-size: 25px;
    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 a {
    text-transform: capitalize;
    display: inline-block;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 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: calc(100vh - 252px); */
    overflow: hidden;
    overflow-y: auto;
    margin-top: 20px;
}

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

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

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

.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;
    font-weight: 400;
    font-size: 16px;
    color: #000;
    line-height: 16px;
}


.head-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    /* background: color-mix(in srgb, var(--main-color) 50%, transparent); */
    gap: 32px;
}

.logo-h {
    /* height: 182px; */
    width: 290.37px;
    /* margin-inline-end: 47px; */
}

.logo-h a {
    display: block;
    height: 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(--sec-color) !important;
}

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

.header-med .head-inner ul li .sub-menu {
    min-width: 243.01px;
    position: absolute;
    top: 100%;
    right: 0;
    display: block;
    background: #E8E8E8;
    border: 1px solid #f4f4f4;
    /* box-shadow: 0px 8px 8px 0px #00000014; */
    border-radius: 0;
    padding: 25px 11px;
    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 {
    color: #103857;
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid #CACACA;
    font-size: 16px;
    line-height: 16px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 6px;
}

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

.mobile-nav-toggler .lines {
    display: block;
    width: 35px;
    overflow: hidden;
    height: 35px;
    align-content: center;
    text-align: center;
    background: var(--main-color);
    border-radius: 4px;
}

.mobile-nav-toggler .lines i {
    display: block;
    width: 22px;
    height: 2px;
    margin: 3.5px auto;
    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: #fff;
    transition: all .5s;
    top: 0;
    right: 0;
    left: 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) {
    margin: 0 auto;
}

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

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

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

.btn {
    outline: none;
    position: relative;
    padding: 10px 15px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    min-width: 123px;
    background: var(--main-color);
    min-height: 46.36px;
    border-radius: 0;
    color: #fff;
    text-transform: capitalize;
    box-shadow: none !important;
    border: 1px transparent solid;
    z-index: 1;
    gap: 10px;
    font-family: var(--font-bold);
    font-size: 14px;
    line-height: 14px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.search-box-btn.search-box-outer {
    color: #000000;
    font-size: 18px;
    font-weight: 900;
    line-height: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    transition: all .4s;
}

.header-med .head-inner ul li.current-menu-item a,
.header-med .head-inner ul li.active a {
    color: var(--sec-color) !important;
}

.lang-menu {
    position: relative;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 20px;
}

.lang-menu>a {
    min-width: 130px;
    min-height: 48px;
    padding: 9px 13px;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--main-color);
    background: #fff;
    gap: 12px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: var(--main-color);
    cursor: pointer;
}

.contact-menu>a {
    background: var(--main-color);
    color: #fff;
}

.lang-menu ul {
    display: block;
    position: absolute;
    top: 100%;
    background: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    min-width: 130px;
    padding-inline-end: 6px;
}

.lang-menu ul li a {
    display: flex;
    padding: 8px 0;
    border-bottom: 1px solid #E5EEFF;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    gap: 6px;
    align-items: center;
    -webkit-align-items: center;
}

.lang-menu ul li:first-child a {
    padding-top: 0;
}

.lang-menu ul li:last-child a {
    border: none;
    padding-bottom: 0;
}

.btn:hover {
    color: #fff;
}

.logo-h a img {
    max-height: 100%;
}

.btn.btn-white {
    background: #fff;
    color: var(--main-color);
    border: 2px solid var(--main-color);
}

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

.orderModal .modal-content {
    border-radius: 17.54px;
    overflow: visible;
    border: 6px solid #CAE0F1;
    box-shadow: 0px 4.39px 39.47px 0px #4F4F4F1F;
    background: #FBFCFF;
}

.orderModal .modal-content .modal-body {
    padding: 20px 30px;
}

.orderModal .btn-close {
    background: color-mix(in srgb, var(--main-color) 90%, transparent);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    position: absolute;
    left: 0;
    top: 0;
    margin: -11px;
    color: #fff;
    font-size: 15px;
    padding: 0;
}

.title.title-modal {
    margin-bottom: 32px;
    text-align: center;
}

.title.title-modal h3 {
    font-family: var(--font-bold);
    color: var(--title-color);
    font-size: 32px;
    line-height: 51px;
    letter-spacing: 0px;
    text-align: center;
}

.form-modal .form-group {
    margin-bottom: 16px;
}

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

.form-modal .form-group .form-control {
    background: #FCFEFF;
    height: 48px;
    border-radius: 4px;
    padding: 0 16px !important;
    font-family: var(--font-light);
    color: #2D2B2B;
    font-size: 16px;
    border: none;
    line-height: 26px;
    align-content: center;
    transition: all .4s;
    border: 1px solid #E2F1FC;
    text-align: left;
}

.form-modal .form-group .form-control::placeholder {
    color: #2D2B2B;
}

.iti {
    display: block;
}

.iti--separate-dial-code .iti__selected-flag,
.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background: transparent;
    direction: ltr;
    align-items: center;
}

.iti__arrow {
    border-left: 3px solid transparent;
    border-right: 3px solid #06234D;
    border: none;
    width: 16px;
    height: 14px;
    position: relative;
    line-height: 14px;
    /* display: none; */
}

.iti__arrow::after {
    content: "\f107";
    font-family: 'Font Awesome 6 Pro';
    font-size: 22px;
    color: #06234D;
    font-weight: 300;
    line-height: 16px;
}

.iti--separate-dial-code .iti__selected-dial-code {
    font-size: 16px;
    line-height: 21px;
    color: #030303;
    direction: ltr;
    height: 16px;
    font-family: 'Vazirmatn';
    font-weight: 700;
}

.nice-select:after {
    top: 0;
    bottom: 0;
    align-content: center;
    font-weight: 300;
    font-size: 22px;
    left: 17px;
    color: #06234D;
}

.form-modal .form-group .btn {
    width: 100%;
    margin-top: 16px;
    border-radius: 8px;
    min-height: 44px;
    font-size: 18px;
    line-height: 20px;
    padding-top: 12px;
}

html[dir="rtl"] .iti__country {
    direction: ltr;
    text-align: right;
}

html[dir="rtl"] .iti__country-list {
    left: 0;
}

html[dir="ltr"] .iti__country-list {
    right: 0;
}

.nav-inner {
    /* display: flex; */
    /* gap: 37px; */
    /* align-items: center; */
    /* -webkit-align-items: center; */
}

.btn .icon svg path {
    /* fill: #fff; */
}

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

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

form {
    direction: rtl;
}

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

.iti__flag {
    /* display: none; */
}

.req-btn {
    font-family: var(--font-bold);
    color: #fff;
    font-size: 18px;
    line-height: 26px;
    display: inline-block;
}

/* End Header */

/* Start Banner-h */

.banner-h {
    padding-block: 85px 113px;
}

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

.banner-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #000000;
    opacity: .6;
}

.banner-text h1 {
    font-family: var(--font-bold);
    color: var(--main-color);
    margin: 0;
    font-size: 40.98px;
}

.banner-img {
    height: 739.24px;
    margin-bottom: calc(-246px + -113px);
}

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

.banner-text {
    padding-top: 104px;
    padding-inline-end: 100px;
}

.banner-text .btn {
    margin-top: 40px;
}

.btn.btn-border {
    border: 1px var(--main-color) solid;
    background: transparent;
    color: var(--main-color);
    min-width: 207.92px;
    min-height: 54.76px;
    justify-content: space-between;
}

.banner-img .img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--main-color);
    opacity: 0.34;
}

/* End Banner-h */

/* Start About-h */

.about-h {
    background: var(--bg-color);
    padding-block: 81px 110px;
}

.sub-title {
    font-family: var(--font-bold);
    color: #363535;
    display: inline-block;
    font-size: 10px;
    margin-bottom: 6px;
    line-height: 20px;
}

.about-text h3 {
    font-family: var(--font-bold);
    color: #000;
    font-size: 36.77px;
    line-height: 53px;
    margin-bottom: 19px;
}

.about-text {
    /* max-width: 618px; */
}

.about-text p {
    color: #4A4A4A;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
}

.about-text .btn {
    margin-top: 31px;
}

/* End About-h */

/* Start Services-h */

.services-h {
    padding-block: 100px;
}

.title {
    margin-bottom: 37px;
}

.title h3 {
    font-family: var(--font-bold);
    color: #000;
    font-size: 37px;
    line-height: 51.48px;
    letter-spacing: -0.88px;
    margin: 0;
}

.serv-block {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 20px);
}

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

.serv-block>.icon {
    position: relative;
    width: 84px;
    height: 89.65px;
    margin-bottom: 37px;
    line-height: 89.65px;
    text-align: center;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
     background: var(--bg-color2); 
    border-radius: 42px;
    border-end-start-radius: 0;
    padding: 21px 22px;
    padding-inline-start: 12px;
    transition: all .4s;
}

.serv-block .icon img {
    max-width: 48.71px;
    max-height: 48.71px;
    object-fit: contain;
    object-position: center;
    transition: all .4s;
}

.serv-block>.icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    border: 1px solid var(--bg-color2);
    border-radius: 43px;
    border-end-start-radius: 0;
    margin: -11px;
    z-index: -1;
}

.serv-block .details h3 {
    color: #000;
    font-weight: 400;
    font-size: 22px;
    line-height: 33px;
    margin-bottom: 17px;
}

.serv-block .details p {
    color: #535353;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 22px;
}

.all-services .item {
    padding: 0 20px;
    height: auto;
}

.serv-block .details .readMore {
    /* margin-top: 22px; */
}

.readMore {
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 25px;
    font-family: var(--font-bold);
    color: var(--main-color);
    font-size: 14px;
    line-height: 14px;
}

.slick-dots {
    position: relative;
    bottom: 0;
    margin-top: 49px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
}

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

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

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

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

.all-services .slick-list {
    margin-left: -20px;
    margin-right: -20px;
}

/* End Services-h */

/* Start Partners-h */

.partners-h {
    padding-block: 100px;
    background: var(--bg-color);
}

.all-partners .item {
    padding: 0 15px;
}

.all-partners .slick-list {
    margin-left: -15px;
    margin-right: -15px;
}

.part-block {
    height: 129.76px;
    line-height: 129.76px;
    text-align: center;
    display: flex;background: #fff;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    border: 1.02px solid #C5C5C5;
}

.part-block img {
    max-height: 105px;
    max-width: 160px;
    object-fit: contain;
    object-position: center;
    /* filter: brightness(0) invert(1); */
}

/* End Partners-h */

/* Start Clients-h */

.clients-h {
    padding-block: 113px 77px;
}

.clients-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--main-color);
    opacity: 0.44;
}

.clients-h .title h3 {
    color: #fff;
}

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

.all-clients .part-block {
    border: none;
}

.all-clients .slick-dots li.slick-active button {
    border: 2px solid #FFFFFF;
    background: transparent;
}

/* End Clients-h */

/* Start News-h */

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

.news-block {
    margin-top: 3px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 3px);
}

.news-block h3 {
    font-family: var(--font-med);
    color: #000;
    margin-bottom: 17px;
    font-size: 22px;
    line-height: 35px;
}

.news-block p {
    color: #535353;
    font-size: 16px;
    line-height: 28px;
    max-width: 321px;
    margin-bottom: 20px;
}

.news-block .readMore {
    margin-top: 20px;
    margin-top: auto;
}

/* End News-h */

/* Start Footer */

footer {
    background: var(--main-color);
    padding-block: 105px;
}

.logo-f a {
    display: block;
    max-width: 217.65px;
    width: 100%;
    margin-bottom: 36px;
}

.s-h {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 11.51px;
    flex-wrap: wrap;
}

.s-h a {
    width: 37.42px;
    display: flex;
    height: 37.42px;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.s-h a::before,
.s-h a::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    transition: all .4s;
}

.s-h a::before {
    background: linear-gradient(94.51deg, rgba(255, 255, 255, 0.4) 0.79%, rgba(153, 153, 153, 0.3) 99.21%);
    border-radius: 50%;
}

.s-h a::after {
    margin: 0.72px;
    background: var(--main-color);
    border-radius: 50%;
    z-index: -1;
}

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

.links-f ul li {
    width: 50%;
    flex: 0 0 auto;
    padding-inline-end: 10px;
}

.links-f ul li a {
    margin-bottom: 16px;
    display: inline-block;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
}

.info-f ul li a {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    margin-bottom: 16px;
    color: #fff;
    gap: 9px;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
}

.info-f ul li a .icon {
    width: 14px;
    height: 14px;
    font-size: 14px;
}

.info-f ul li a .icon svg {
    width: 14px;
    height: 14px;
}

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

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

.copyRight-companyName {
    margin-top: 20px;
}

.copyRight p {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.icons-fixed {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 5;
    flex-direction: column;
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 18px;
    gap: 13px;
}

.icons-fixed a {
    width: 48.95px;
    height: 48.95px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    color: #fff;
    border-radius: 50%;
    justify-content: center;
    font-size: 22.63px;
}

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

.icons-fixed .btn-whatsapp {
    background: #4A9844;
}

.icons-fixed .upTop {
    font-size: 21.5px;
    background: var(--main-color);
    transform: scale(.5);
    opacity: 0;
}

.icons-fixed .upTop.active {
    transform: none;
    opacity: 1;
}

/* End Footer */

/* Start Breadcrumb-h */

.breadcrumb-h {
    padding-block: 56px;
}

.bread-text h1 {
    font-family: var(--font-bold);
    color: var(--main-color);
    font-size: 40.98px;
    line-height: 55px;
    margin-bottom: 4px;
}

.bread-text ul {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    flex-wrap: wrap;
}

.bread-text ul li a,
.bread-text ul li span {
    color: #4A4A4A;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
}

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

/* End Breadcrumb-h */

/* Start About-page */

.about-img {
    height: 739.24px;
    margin-top: calc(-165px - 81px);
    position: relative;
}

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

.about-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--main-color);
    opacity: 0.34;
}

.about-more-h {
    padding-block: 90px;
}

.about-block h3 {
    font-weight: 400;
    font-size: 22px;
    line-height: 33px;
    margin-bottom: 17px;
}

.about-block {
    margin: 10px 0;
}

.about-block p {
    color: #4A4A4A;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
}

/* End About-page */

/* Start Services-page */

.body-inner {
    padding-block: 123px 100px;
}

.body-inner .col-md-9::after {
    content: "";
    position: absolute;
    top: 0;
    left: -301%;
    width: 400%;
    background: var(--bg-color);
    height: calc(100% + 100px);
    z-index: -1;
}

.body-inner .col-md-9 {
    position: relative;
}

.services-innwe {
    padding-top: 361.84px;
}

.services-innwe>.img {
    position: absolute;
    top: 0;
    width: 71vw;
    height: 361.84px;
    overflow: hidden;
}

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

.services-inner-content {
    padding: 55px 60px 0;
    padding-inline-end: 0;
}

.services-inner-content p {
    max-width: 618px;
    color: #4A4A4A;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
}

.services-inner-content .all-services {
    margin-top: 11px;
}

.services-inner-content .all-services .serv-block>.icon {
    background: #ffffff;
    /* z-index: 2; */
}

.services-inner-content .all-services .serv-block {
    margin-top: 39px;
    z-index: 3;
    height: calc(100% - 39px);
}

/* End Services-page */

/* Start Single-service */

.sidebar-single-inner {
    margin-top: 93px;
}

.body-inner .bread-text {
    padding-top: 46px;
}

.sidebar-single-inner ul {
    padding-inline-start: 20px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.sidebar-single-inner ul li {
    display: list-item;
    list-style: inherit;
}

.sidebar-single-inner ul li a {
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
}

.sidebar-single-inner ul li::marker {
    font-size: 11px;
}

.services-inner-content .text-inner {
    max-width: 675px;
    margin: 49px 0;
    margin-inline-start: 25px;
    position: relative;
    padding-inline-start: 20px;
}

.services-inner-content .text-inner::before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6.084717px;
    background: #103857;
    border-radius: 90px;
}

.single-service .services-inner-content .text-inner p {
    max-width: 100%;
}

.single-service .services-inner-content p {
    max-width: 756px;
}

/* End Single-service */

/* Start Team-page */

.team-page {
    background: var(--bg-color);
    padding-bottom: 100px;
}

.breadcrumb-team-h {
    padding-bottom: 316px;
}

.team-page .container>.row .col-md-4:nth-child(1) {
    width: 100%;
    margin-top: -222.5px;
}

.team-page .container>.row .col-md-4:nth-child(1) .team-block {
    display: flex;
    border: none;
    padding: 0;
}

.team-page .container>.row .col-md-4:nth-child(1) .team-block .img {
    width: 384.26px;
    border: 0.93px solid #C4C4C4;
    padding: 13px 22px;
    height: 445px;
}

.team-page .container>.row .col-md-4:nth-child(1) .team-block .details {
    max-width: calc(100% - 384.26px);
    padding: 60px 0 0;
    padding-inline-start: 69px;
}

.team-block .img {
    height: 394.03px;
}

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

.team-block .details h3 {
    font-family: var(--font-bold);
    color: #222222;
    font-size: 22px;
    line-height: 27.79px;
    margin-bottom: 14px;
}

.team-block .details p {
    max-width: 658.61px;
    color: #222222;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
}

.team-block {
    margin-bottom: 32px;
    border: 0.93px solid #C4C4C4;
    padding: 22px 11px 38px;
    height: calc(100% - 32px);
}

.team-block .details {
    padding: 40px 0 0;
}

.team-page .container>.row .col-md-4:nth-child(1) .team-block .details h3 {
    margin-bottom: 33px;
}

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

/* End Team-page */

/* Start Career-page */

.services-inner-content.career-inner {
    padding: 61px 48px 79px;
}

.form-career .form-group {
    max-width: 769.56px;
    margin-bottom: 16px;
}

.form-career .form-group label {
    font-family: var(--font-med);
    margin-bottom: 16px;
    font-size: 19px;
    line-height: 19px;
    color: #000;
    text-transform: capitalize;
}

.form-career .form-group .form-control {
    border: 1px solid #D7D7D7;
    height: 56px;
    background: transparent !important;
    padding: 20px 33px;
    font-family: var(--font-med);
    font-size: 16px;
    line-height: 16px;
    border-radius: 0;
    text-align: right;
    color: #000;
}

.form-career .form-group .form-control::placeholder {
    color: #A09C9C;
}

.form-career .form-group .form-control:focus {
    box-shadow: none;
}

.form-career .form-group .form-control::after {
    color: #707070;
    font-weight: 900;
    font-size: 18.72px;
    line-height: 22.63px;
}

.nice-select .current {
    color: #A09C9C;
}

.form-career .form-group textarea.form-control {
    height: 192.07px;
}

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

.form-career .form-group .btn {
    margin-top: 36px;
}

/* End Career-page */

/* Start Blogs-page */

.services-inner-content.blogs-inner {
    padding: 100px 54px 0;
}

.services-inner-content.blogs-inner .row {
    max-width: 632.83px;
}

.blogs-inner .news-block {
    margin-bottom: 75px;
}

.blogs-inner div:nth-last-child(2) .news-block,
.blogs-inner div:nth-last-child(3) .news-block {
    margin-bottom: 0;
}

.blogs-inner .news-block .date-h {
    margin-bottom: 13px;
    font-family: var(--font-med);
    color: #103857;
    font-size: 14px;
    line-height: 27px;
}

.blogs-inner .news-block h3 {
    font-family: var(--font-bold);
    color: #383838;
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 24px;
}

.blogs-inner .news-block p {
    color: #383838;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
}

.blogs-inner .news-block .readMore {
    display: none;
}

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

.all-pages .pagination {
    display: inline-flex;
    direction: ltr;
    gap: 5px;
}

.all-pages .pagination .page-item .page-link {
    width: 29px;
    height: 27px;
    padding: 0;
    border: 1px solid #E8E8E8;
    background: transparent !important;
    /* font-family: 'Line Awesome Free'; */
    color: #131313;
    font-size: 12.82px;
    line-height: 15.74px;
    letter-spacing: -2%;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    border-radius: 0 !important;
}

.all-pages .pagination .page-item.active .page-link {
    border-color: #103857;
    color: #103857;
}

/* End Blogs-page */

/* Start Single-blog */

.single-blog .services-inner-content {
    padding: 45px 31px 0;
}

.services-inner-content .date-h {
    display: flex;
    align-items: center;
    gap: 6px;
    -webkit-align-items: center;
    margin-bottom: 23px;
    font-family: var(--font-med);
    color: #103857;
    font-size: 14px;
    line-height: 27px;
}

/* End Single-blog */

/* Start Gallery-page */

.services-innwe.gallery-inner {
    padding: 50px 39px 0;
}

.galley-block {
    margin-bottom: 51px;
}

.services-innwe.gallery-inner>.row .col-md-4:nth-last-child(2) .galley-block,
.services-innwe.gallery-inner>.row .col-md-4:nth-last-child(3) .galley-block,
.services-innwe.gallery-inner>.row .col-md-4:nth-last-child(4) .galley-block {
    margin-bottom: 0;
}

.galley-block .img {
    height: 267.67px;
    overflow: hidden;
}

.galley-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all .4s;
}

.galley-block h3 {
    font-family: var(--font-med);
    color: #103857;
    margin: 15px 0 0;
    font-size: 16px;
    line-height: 27px;
    transition: all .4s;
}

.services-innwe.gallery-inner .btn-center {
    margin-top: 47px;
}

/* End Gallery-page */

/* Start Single-gallrey */

.services-innwe.gallrey-inner {
    padding: 50px 36px 0;
}

.gallrey-inner .single-img {
    height: 267.67px;
    overflow: hidden;
    /* margin-bottom: 43px; */
}

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

.gallrey-inner .gallrey-text {
    margin: 43px 0;
}

.gallrey-inner .gallrey-text h3 {
    font-family: var(--font-med);
    color: #103857;
    margin-bottom: 32px;
    font-size: 24px;
    line-height: 27px;
}

.gallrey-inner .gallrey-text p {
    color: #4A4A4A;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
}

.all-gallery .galley-block {
    margin-bottom: 32px;
}

.video-gallery-block .img {
    position: relative;
}

.video-gallery-block .img::after {
    content: "\f04b";
    font-family: 'Font Awesome 6 Sharp';
    position: absolute;
    inset: 0;
    z-index: 2;
    margin: auto;
    font-weight: bold;
    width: 78.57px;
    height: 78.57px;
    line-height: 78.57px;
    text-align: center;
    border-radius: 50%;
    background: #9A3535;
    color: #fff;
    font-size: 26px;
}

.single-video {
    height: 442.1px;
}

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

.single-video-gallery .gallrey-text {
    margin-bottom: 0;
}

/* End Single-gallrey */

/* Start Awords-page */

.services-innwe.awards-inner .row {
    margin-top: 71px;
    padding-inline-start: 39px;
}

.galley-block.award-block {
    margin-bottom: 32px;
}

.galley-block.award-block .img {
    height: 362.5px;
}

.galley-block.award-block h3 {
    margin-top: 18px;
    color: #222222;
    font-weight: 500;
    font-size: 18px;
    line-height: 21.12px;
}

.galley-block .date-h {
    display: flex;
    margin-top: 6px;
    align-items: center;
    -webkit-align-items: center;
    gap: 5px;
    color: #103857;
    font-weight: 400;
    font-size: 9.85px;
    line-height: 15.84px;
}

.galley-block .date-h .icon {
    width: 10.34px;
    height: 10.34px;
    line-height: 10.34px;
}

.galley-block .date-h .icon svg {
    width: 100%;
    height: 100%;
}

.services-innwe.awards-inner .row div:nth-last-child(2) .galley-block.award-block,
.services-innwe.awards-inner .row div:nth-last-child(3) .galley-block.award-block,
.services-innwe.awards-inner .row div:nth-last-child(4) .galley-block.award-block {
    margin-bottom: 0;
}

/* End Awords-page */

/* Start Contact-page */

.img.map-contact {
    overflow: hidden;
}

.img.map-contact .map-con {
    width: 100%;
    height: 100%;
}

.contact-info {
    max-width: 438.41px;
    margin-inline-start: auto;
    margin-top: -260px;
    z-index: 2;
    position: relative;
    padding: 41px 24px 100px;
    margin-bottom: -96px;
}

.contact-info::before,
.contact-info::after {
    content: "";
    position: absolute;
    inset: 0;
}

.contact-info::before {
    background: #EFF1F3;
    border-radius: 30px;
    z-index: -1;
}

.contact-info::after {
    background: #000000;
    filter: blur(54px);
    opacity: .20;
    z-index: -2;
    margin-top: -35px;
    max-height: 73%;
    border-radius: 30px;
    width: 108%;
    margin-inline-start: -4%;
}

.services-inner-content.career-inner {
    position: relative;
    z-index: 2;
    background: #eef1f3;
}

.contact-info .item {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-info .item .icon {
    width: 55.67px;
    height: 55.67px;
    line-height: 55.67px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
}

.contact-info .item .details {
    width: calc(100% - 55.67px - 12px);
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 18px;
}

.contact-info .item .details h4 {
    width: 115px;
    font-family: var(--font-med);
    color: #103857;
    font-size: 16.7px;
    line-height: 17px;
    margin: 0;
}

.contact-info .item .details .details-inner {
    max-width: calc(100% - 115px - 18px);
}

.contact-info .item .details .details-inner a {
    color: #2D2D2D;
    font-weight: 400;
    font-size: 13.92px;
    line-height: 23.4px;
}

.contact-info .item .details .details-inner a u {
    display: block;
    text-decoration: none;
    direction: ltr;
}

.contact-page .services-inner-content.career-inner {
    padding-bottom: 0;
}

/* End Contact-page */

/* Start Req-page */

.services-innwe.req-inner .img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    opacity: .3;
}

.services-innwe.req-inner .services-inner-content.career-inner {
    padding-bottom: 0;
}

.header-med .head-inner ul li .sub-menu li a::before {
    content: "\f0d9";
    font-family: 'Font Awesome 5 Pro';
    font-weight: bold;
}

/* End Req-page */

/* Start Partners-page */

.partners-page {
    padding-block: 30px 100px;
}

.partners-page .col-md-3 {
    width: 20%;
}

.partners-page .part-block {
    margin-bottom: 50px;
}

.partners-page .col-md-3:nth-last-child(2) .part-block,
.partners-page .col-md-3:nth-last-child(3) .part-block,
.partners-page .col-md-3:nth-last-child(4) .part-block,
.partners-page .col-md-3:nth-last-child(5) .part-block,
.partners-page .col-md-3:nth-last-child(6) .part-block {
    margin-bottom: 0;
}

.serv-block .details {
    height: calc(100% - 84px - 37px);
    display: flex;
    flex-direction: column;
}

.services-slider .slick-list .slick-track {
    display: flex;
}

.serv-block .details .readMore {
    margin-top: auto;
}

.services-inner-content .all-services .serv-block .icon::after {
    border-color: #fff;
}

.form-career .form-group .form-control .current {
    /*color: #000;*/
}

.all-clients .part-block img {
    /*filter: brightness(0) invert(1);*/
    transition: all .4s;
}

.all-clients .part-block:hover img {
    filter: none;
}

.form-career .form-group .file-upload-group.form-control {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    color: #A09C9C;
    /* margin-bottom: 34px; */
}

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

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

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

.form-career .form-group .file-upload-group.form-control  .wpcf7-not-valid-tip {
    position: relative;
    top: 62px;
}

.form-career  .wpcf7-not-valid-tip {
    font-size: 13px;
    position: relative;
    top: 10px;
    line-height: 0;
}

.form-career .form-group {
    margin-bottom: 23px;
}

.all-pages .pagination .page-item .page-link i {
    transform: scaleX(-1);
}


/* End Partners-page */

/* Start Hover */

@media (min-width: 991px) {

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

    .btn:hover .icon svg path {
        fill: #fff;
    }

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

    .s-h a:hover::before,
    .s-h a:hover::after {
        background: var(--sec-color);
    }

    .info-f ul li a:hover {
        color: var(--gray-color);
    }

    .serv-block:hover>.icon,
    .services-inner-content .all-services .serv-block:hover>.icon {
        background: var(--main-color);
    }

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

    .contact-info .item .details .details-inner a:hover {
        color: var(--sec-color);
    }

    .sidebar-single-inner ul li a:hover {
        color: var(--main-color);
    }

    .form-career .form-group .form-control:focus {
        border-color: var(--main-color);
        background: #fff !important;
    }

    .galley-block:hover .img img {
        transform: scale(1.1);
    }

    .galley-block:hover h3 {
        color: var(--main-color);
    }
}

/* End Hover */
.frame-video iframe{
	height: 442px;
}