@import url(styles.css);

/* Start Fonts */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* End Fonts */

:root {
    --main-color: #1E508C;
    --sec-color: #46A0E2;
    --thr-color: #0E86C8;
    --bg-color: #E4F4FC;
    --dark-color: #113358;
    --gray-color: #1F1919;
    --bg-grad: linear-gradient(178.13deg, #1E508C 1.5%, #91CEF0 113.62%);
    --font-body: "IBM Plex Sans Arabic", 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: 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: 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;
    -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: #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: 16px;
    font-weight: 500;
    line-height: 27px;
    color: #333;
    padding: 7px 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;
    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: 20px;
}

header.sticky {
    position: absolute;
    z-index: 9;
    left: 0;
    right: 0;
    padding: 44px 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;
    position: absolute;
    left: 0;
    top: 0;
    margin: 20px;
    z-index: 8;
}

.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 {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #393838;
    font-family: 'somar';
}

.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;
    padding: 0 20px;
}

.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: 20px;
    line-height: 30px;
    padding: 8px 12px;
    border: 1px transparent solid;
    border-radius: 6px;
}


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

.logo-h {
    max-width: 261.95px;
    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(--sec-color);
    border-color: var(--sec-color);
    background: #FFFFFF;
}

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

.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: 1px solid var(--main-color);
    padding: 13px 12px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    min-width: 152px;
    background: #46A0E21A;
    min-height: 54px;
    border-radius: 10px;
    color: var(--main-color);
    text-transform: uppercase;
    box-shadow: none !important;
    z-index: 1;
    gap: 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
}

header .btn {
    font-size: 15px;
    line-height: 18.23px;
    background: var(--thr-color);
}

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

.btn::before {
    left: 0;
}

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

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

.header-med .head-inner ul li.current-menu-item a {
    color: var(--sec-color);
    border-color: var(--sec-color);
    font-weight: 500;
}

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

/* End Header */

/* Start Banner-h */

.banner-h {
    padding-top: 219px;
    z-index: 1;
}

.banner-h .overlay-img {
    transform: scaleX(-1);
    opacity: 0.45;
}

.banner-text .sub-title {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 9px;
    margin-bottom: 24px;
}

.banner-text .sub-title .icon {
    width: 24px;
    height: 24px;
    line-height: 24px;
}

.banner-text .sub-title h5 {
    margin: 0;
    color: #1F1919;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
}

.banner-text .sub-title h5 span {
    color: var(--sec-color);
}

.banner-text .sub-title h5 img {
    max-width: 24px;
    max-height: 24px;
    object-fit: contain;
    object-position: center;
    margin-inline-start: 8px;
}

.banner-text h1 {
    color: #1F1919;
    font-weight: 700;
    font-size: 42px;
    line-height: 63px;
    margin-bottom: 24px;
}

.banner-text {
    max-width: 710px;
}

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

.banner-text p {
    color: #1F1919;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
}

.banner-form {
    margin-top: 32px;
    background: #FFFFFF;
    backdrop-filter: blur(25px);
    padding: 16px;
    border-radius: 12px;
}

.banner-form .form-group .form-control {
    border: 1px solid #83909E4D;
    padding: 6px 16px;
    color: #83909E;
    font-weight: 400;
    font-size: 16px;
    line-height: 40px;
}

.banner-form .form-group .form-control::after {
    font-weight: 300;
    top: 0;
    bottom: 0;
    align-content: center;
    font-size: 18px;
}

.banner-form .form-group .btn-icon {
    padding: 0;
    width: 54px;
    height: 54px;
    border-radius: 8px;
    border: none !important;
    box-shadow: none !important;
    background: var(--main-color);
    line-height: 54px;
}

.banner-img {
    height: 100%;
    align-content: end;
    text-align: center;
    max-height: 459px;
    overflow: hidden;
}

.banner-img img {
    max-height: 100%;
}

/* End Banner-h */

/* Start Services-h */

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

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

.title-flex .title {
    margin: 0;
    max-width: 900px;
}

.title h3 {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 46px;
    line-height: 55px;
    margin: 0;
}

.title p {
    color: #333333;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    margin-top: 12px;
}

.btn:hover {
    color: var(--main-color);
}

.btn .icon {
    transition: all .4s;
}

.serv-block {
    height: 143px;
    line-height: 143px;
    /* margin: 10px 0; */
    padding: 8px 12px;
    box-shadow: 0px 20px 60px 0px #1F19190D;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    background: #fff;
}

.serv-block .img {
    width: 100%;
    text-align: center;
    height: 100%;
    align-content: center;
}

.serv-block .img img {
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: inline-block;
}

.link-block {
    position: absolute;
    inset: 0;
    z-index: 4;
    cursor: pointer;
}

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

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

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

ul.slick-dots li button {
    width: 24px;
    height: 7px;
    margin: 0 5px;
    background: var(--color-2u4uS, #D2D5DB);
    border-radius: 5px;
    padding: 0;
    transition: all .4s;
}

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

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

/* End Services-h */

/* Start About-h */

.overlay-bg {
    position: absolute;
    inset: 0;
    background: var(--bg-color);
    z-index: -2;
    max-height: 73%;
    clip-path: polygon(0 24%, 100% 0%, 100% 79%, 0% 100%);
}

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

.title {
    margin-bottom: 48px;
}

.title .icon {
    max-width: 66.29px;
    margin: 0 auto 18px;
    height: 60.13px;
    line-height: 60.13px;
}

.about-video {
    height: 421px;
    overflow: hidden;
    border-radius: 16px;
}

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

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

.about-video a::before,
.about-video a::after {
    content: "";
    position: absolute;
    inset: 0;
}

.about-video a::before {
    background: linear-gradient(180.23deg, rgba(255, 255, 255, 0) 11.77%, rgba(31, 25, 25, 0.8) 99.8%);
}

.about-video a::after {
    background: url(../images/play.svg);
    width: 71.67px;
    height: 71.67px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin: auto;
}

.about-text {
    margin-inline-start: 20px;
    background: #fff;
    padding: 33px;
    box-shadow: 0px 20px 60px 0px #34255E1F;
    border-radius: 16px;
}

.about-text h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    color: #1F1919;
    margin-bottom: 16px;
    max-width: 559px;
}

.about-text h3 span {
    color: var(--sec-color);
}

.about-text p {
    color: #1F1919;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    max-width: 517px;
}

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

.about-h::before,
.about-h::after {
    content: "";
    position: absolute;
}

.about-h::after {
    clip-path: polygon(0 25%, 0 100%, 100% 0);
    background: var(--main-color);
    bottom: 22%;
    left: -2%;
    height: 84px;
    max-width: 567px;
    width: 100%;
    z-index: -1;
    transform: rotate(-5deg);
}

.about-h::before {
    content: "";
    left: 0;
    bottom: 45%;
    background: url(../images/after.svg);
    width: 244px;
    height: 244px;
    background-repeat: no-repeat;
    background-position: center left;
    z-index: -1;
    opacity: .24;
}

/* End About-h */

/* Start Counter-h */

::before {}

.counter-h {
    padding-bottom: 100px;
}

.counter-text h3 {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 41px;
    line-height: 64px;
    letter-spacing: 0px;
    margin-bottom: 16px;
}

.counter-text p {
    color: #1F1919;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
}

.counter-block {
    text-align: center;
    border: 1px solid #E8EBF3;
    padding: 14px 16px;
    border-radius: 12px;
    height: 100%;
}

.counter-block .icon {
    width: 58px;
    height: 58px;
    line-height: 58px;
    margin: 0 auto 16px;
}

.counter-item {
    direction: ltr;
}

.counter-block .details .counter-item {
    color: var(--main-color);
    font-weight: 600;
    font-size: 42px;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.counter-block .details h5 {
    margin: 0;
    color: var(--main-color);
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
}

.counter-h .row {
    align-items: center;
}

/* End Counter-h */

/* Start Best-services-h */

.best-services-h {
    clip-path: polygon(0 10%, 100% 0%, 100% 90%, 0% 100%);
    padding: 130px 0;
    background: #F9F9F9;
}

.services-sidebar ul li a {
    display: flex;
    border: 1px solid var(--color-2u4uS, #D2D5DB);
    background: var(--Color, #FFFFFF);
    margin-bottom: 24px;
    border-radius: 50px;
    padding: 12px 20px;
    align-items: center;
    cursor: pointer;
}

.services-sidebar ul li a .img {
    width: 52px;
    height: 52px;
    border-radius: 0;
    overflow: hidden;
    background: #fff;
    align-content: center;
    padding: 2px;
}

.services-sidebar {
    max-width: 408px;
}

.services-sidebar ul li a .details {
    width: calc(100% - 52px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline-start: 12px;
}

.services-sidebar ul li a .details h3 {
    margin: 0;
    color: #737679;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0px;
    /* text-align: center; */
    vertical-align: middle;
    transition: all .4s;
    max-width: calc(100% - 50px);
}

.services-sidebar ul li a .details .icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    border: 2px solid #A0ABB6;
    border-radius: 50%;
    background: rgb(160 171 182 / 40%);
    color: #A0ABB6;
    transition: all .4s;
}

.services-sidebar ul li a:hover {
    background: var(--dark-color);
    border-color: var(--main-color);
}

.services-sidebar ul li a:hover .details h3 {
    color: #fff;
}

.services-sidebar ul li a:hover .details .icon {
    background: #91CEF0;
    border-color: #91CEF0;
    color: var(--dark-color);
    transform: rotate(45deg);
}

.best-services-h .row {
    justify-content: space-between;
}

.banner-big {
    height: 496px;
    overflow: hidden;
    border-radius: 16px;
    /* background: var(--dark-color); */
}

.banner-big .banner-img-in {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: calc(100% - 50px);
}

.banner-big .banner-text-in {
    padding: 20px 20px 304px;
}

.banner-big .banner-text-in h3 {
    color: #fff;
    font-weight: 600;
    font-size: 24px;
    line-height: 41px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.banner-small {
    margin-bottom: 20px;
    height: 238px;
    overflow: hidden;
    border-radius: 16px;
}

.banner-small .banner-text-in {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 32px;
}

.banner-small .banner-text-in h3 {
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0px;
    max-width: 232px;
    vertical-align: middle;
}

.btn-link {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    text-decoration: none;
    justify-content: space-between;
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0px;
    color: #fff;
}

.btn-link .icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    /* background: #fff; */
    /* border-radius: 50%; */
    /* color: var(--sec-color); */
    font-size: 38px;
    line-height: 38px;
}

.modal-dialog {
    max-width: 540px;
    padding: 24px;
    background: #fff;
    border-radius: 9px;
}

.modal-dialog .modal-content {
    border: none;
}

.modal-dialog .modal-content .modal-header,
.modal-dialog .modal-content .modal-body {
    border: none;
    padding: 0;
}

.modal-header .btn-close {
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    margin: -11px;
}

.modal-logo {
    height: 266px;
    text-align: center;
    line-height: 266px;
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

.modal-logo img {
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.modal-title-inner {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #E8EBF3;
    padding-bottom: 16px;
}

.modal-title-inner .title-inner {
    max-width: calc(100% - 40px);
}

.modal-title-inner .title-inner h3 {
    color: #333;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 8px;
}

.modal-title-inner .title-inner span {
    color: var(--sec-color);
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
}

.btn-share {
    width: 30px;
    text-align: end;
}

.modal-text {
    padding-top: 20px;
}

.modal-title-icon {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    margin-bottom: 12px;
    gap: 8px;
}

.modal-title-icon .icon {
    width: 20px;
    height: 20px;
    line-height: 20px;
}

.modal-title-icon h3 {
    margin: 0;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
}

.modal-list ul li {
    display: list-item;
    list-style: inside;
    width: 50%;
    color: #333;
    font-weight: 400;
    font-size: 16px;
    line-height: 31px;
}

.modal-list ul {
    display: flex;
    flex-wrap: wrap;
}

.modal-info {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    margin: 20px 0;
    gap: 8px;
}

.modal-info .icon {
    width: 22px;
    height: 22px;
    line-height: 22px;
}

.modal-info p {
    max-width: calc(100% - 30px);
    color: #FF3B30;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
}

.modal-btn .btn {
    width: 100%;
    background: var(--main-color);
    color: #fff;
}

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

.pack-block {
    background: var(--bg-color);
    border-radius: 10px;
    padding: 24px;
    height: 100%;
}

.pack-block .pack-title {
    margin-bottom: 16px;
}

.pack-block .pack-title h3 {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    margin: 0;
}

.pack-block .pack-price {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.pack-block .pack-price h3 {
    color: var(--main-color);
    font-weight: 700;
    font-size: 40px;
    line-height: 60px;
    margin: 0;
    text-transform: uppercase;
}

.pack-block .pack-price h3 span {
    font-size: 16px;
    color: var(--sec-color);
}

.alert-h {
    padding: 7px 20px;
    background: var(--sec-color);
    border-radius: 50px;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    line-height: 21px;
}

.pack-block .pack-des {
    border-bottom: 1px solid #C6D3EE;
    padding-bottom: 16px;
}

.pack-block .pack-des p {
    color: #22272C;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.pack-block .pack-list {
    margin-block: 20px 24px;
}

.pack-block .pack-list ul li {
    color: #22272C;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
    position: relative;
    padding-inline-start: 30px;
}

.pack-block .pack-list ul li::before {
    content: "\f14a";
    font-family: 'Font Awesome 6 Pro';
    font-weight: bold;
    color: #83909E;
    font-size: 20px;
    position: absolute;
    right: 0;
    left: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
    top: 2px;
}

.pack-block .pack-btn .btn {
    width: 100%;
    max-width: 306px;
    margin: 0 auto;
    border-radius: 50px;
    background: var(--main-color);
    color: #fff;
}

.pack-block .pack-btn {
    text-align: center;
}

/* End Best-services-h */

/* Start Download-h */

.download-block {
    position: relative;
    background: linear-gradient(178.13deg, #1E508C 1.5%, #91CEF0 113.62%);
    border-radius: 30px;
    padding: 110px 74px 0;
}

.down-img {
    /* border: 0.54px solid #46A0E2; */
    max-width: 270px;
    margin: 0 auto;
}

.down-text h3 {
    color: #fff;
    font-weight: 700;
    font-size: 46px;
    line-height: 69px;
    margin-bottom: 16px;
}

.down-text p {
    max-width: 517px;
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    line-height: 31px;
}

.btns-flex {
    display: flex;
    max-width: 376px;
    margin-top: 24px;
    gap: 40px;
}

.down-text {
    margin-top: 17px;
}

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

.download-inner.row {
    position: relative;
    z-index: 2;
}

.download-h {
    padding-bottom: 100px;
}

/* End Download-h */

/* Start Footer */

.footer-top {
    background: var(--main-color);
    padding-block: 32px;
}

.logo-f {
    max-width: 245.76px;
    display: block;
    margin-bottom: 12px;
}

.des-f p {
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    line-height: 37px;
    max-width: 374px;
}

.s-h {
    display: flex;
    flex-wrap: wrap;
    margin-top: 12px;
    max-width: 291px;
    gap: 8px;
}

.s-h>span {
    width: 100%;
    margin-bottom: 4px;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #fff;
}

.s-h a {
    max-width: 128px;
    width: 100%;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    background: #46A0E24D;
    padding: 8px 21px;
    border-radius: 6px;
    gap: 6px;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.25px;
    color: #FFFFFF;
    text-transform: capitalize;
}

.s-h a span {
    width: auto;
}

.foot-block h3 {
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 24px;
}

.info-f ul li {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    margin-bottom: 16px;
}

.info-f ul li .icon {
    width: 24px;
    height: 24px;
    line-height: 24px;
}

.info-f ul li .details {
    max-width: calc(100% - 24px);
    padding-inline-start: 12px;
}

.info-f ul li .details h4 {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 8px;
}

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

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

.map-f {
    height: 222px;
    border-radius: 10px;
    overflow: hidden;
}

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

.ryad-logo {
    float: left;
}

.copy-right p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #1E1E1E;
}

.fixed-icons {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 6;
    margin: 90px 30px;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
}

.upPage {
    opacity: 0;
}

.upPage.active {
    opacity: 1;
}

.s-h a .icon {
    position: relative;
    top: -2px;
}

/* End Footer */

/* Start Breadcrumb-h */

.breadcrumb-h {
    padding-block: 210px 110px;
}

.breadcrumb-h .overlay-img {
    background: var(--bg-color);
}

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

.text-bread h1 {
    color: var(--main-color);
    font-weight: 700;
    font-size: 46px;
    line-height: 69px;
    margin-bottom: 12px;
}

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

.text-bread ul li a, .text-bread ul li span {
    color: #333;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    display: inline-block;
}

.text-bread ul li a::after {
    content: "\f100";
    font-family: 'Font Awesome 6 Pro';
    margin: 0 16px;
}

/* End Breadcrumb-h */

/* Start About-page */


.about-page .about-text {
    padding: 0;
    box-shadow: none;
    border-radius: 0;
}

.about-page .about-text .title {
    margin-bottom: 10px;
    margin-top: 20px;
}

.about-page .about-text .title h3 {
    color: var(--main-color);
    font-weight: 700;
    font-size: 46px;
    line-height: 69px;
    margin: 0;
}

.about-text ul {
    margin-top: 16px;
}

.about-text ul li {
    display: list-item;
    list-style: inside;
    color: #1F1919;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    margin: 2px 0;
}

.about-h.about-page::after, .about-h.about-page::before {
    display: none;
}

/* End About-page */

/* Start Services-page */

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

.services-page .serv-block {
    margin: 10px 0;
}

.sub-serv-block {
    display: flex;
    border: 1px solid #E5EEFF;
    border-radius: 9px;
    padding: 12px;
    margin: 10px 0;
    height: calc(100% - 20px);
    align-items: start;
}

.sub-serv-block .img {
    width: 89px;
    height: 85px;
    line-height: 69px;
    box-shadow: 0px 20px 60px 0px #1F19190D;
    border-radius: 8px;
    padding: 8px 12px;
}

.sub-serv-block .img img {
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.sub-serv-block .details {
    width: calc(100% - 89px);
    padding-inline-start: 12px;
}

.sub-serv-block .details h3 {
    color: #333;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sub-serv-block .details h4 {
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--sec-color);
}

.sub-serv-block .details span {
    color: #333;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
}

/* End Services-page */

/* Start Why-page */

.why-text {
    padding-top: 85px;
}

.why-text .title h3 {
    color: var(--main-color);
}

.why-text ul li {
    display: flex;
    margin-bottom: 48px;
}

.why-text ul li .icon {width: 72px;height: 72px;line-height: 72px;border-radius: 50%;background: var(--main-color);text-align: center;}

.why-text ul li .details {
    width: calc(100% - 72px);
    padding-inline-start: 20px;
}

.why-text ul li .details h3 {
    color: var(--main-color);
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 12px;
}

.why-text ul li .details p {
    color: #333;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
}

.why-text ul li:nth-child(2) .icon {
    background: var(--color-Eqpwi, #05A457);
}

.why-text ul li:nth-child(3) .icon {
    background: #E3B40A;
}

.why-text ul li:nth-child(4) .icon {
    background: #BA5004;
}

.why-img {
    max-width: 560px;
    margin-inline-start: auto;
}

.head-inner .menu-left .lang-menu .sub-menu {
    width: 100%;
    display: none;
    min-width: 160px;
}

.head-inner .menu-left .lang-menu .sub-menu li a {
    display: flex;
    border: none;
    border-bottom: 1px solid #E5EEFF;
    border-radius: 0;
    font-size: 16px;
}

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

.nice-select .list {
    max-height: 150px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 9999;
}

.counter-h .all-counters.row {
    align-items: inherit;
}

.mobile-menu .menu-box .navigation li.current-menu-item a {
    color: var(--sec-color);
}

.price-h {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-h span.old-p {
    text-decoration: line-through;
    font-size: 14px;
    opacity: .5;
    color: #332 !important;
}

.mobile-menu .menu-box .navigation li.menu-item-has-children a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}.mobile-menu .menu-box .navigation li.menu-item-has-children>a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-left: 1px #535353 solid;
    border-top: 1px #535353 solid;
    transform: rotate(-135deg);
}

.contact-inner {
    box-shadow: 5.57px 0px 24.13px 0px #00000017;
    padding: 30px;
    border-radius: 11.86px;
    max-width: 550px;
    margin: 0 auto;
}

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

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

.contact-inner .form-group label {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    font-weight: 500;
}

.contact-inner .form-group .form-control {
    height: 50px;
    border: 1px solid #D8D6DE;
    border-radius: 5px;
    padding: 0 20px;
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    text-align: right;
}

.contact-inner .form-group textarea.form-control {
    height: 100px;
    padding: 15px 20px;
}



.whatsappIcon {
    width: 45px;
    height: 45px;
    background-color: #25d366;
    color: #fff !important;
    border-radius: 50px;
    text-align: center;
    font-size: 25px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    animation: 2s infinite bounceIn;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* End Why-page */

/* Start Hover */


    .container {
    width: calc(100% - 15px);
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
}

.logos-foooter-h {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 28px;
}

.logos-foooter-h a {
    display: block;
    max-width: 120px;
    width: 100%;
}

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

.logos-foooter-h a:nth-child(1) {
    /* max-width: 150px; */
}

@media (min-width: 991px) {
    .container {
    width: calc(100% - 122px);
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
}
    .btn:hover {
        background: var(--main-color);
        color: #fff;
    }

    .btn:hover .icon {
        filter: brightness(0) invert(1);
    }

    .banner-form .form-group .btn-icon:hover {
        background: var(--sec-color);
    }

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

    .info-f ul li .details a:hover {
        color: var(--sec-color);
    }
    
    .pack-block:hover .pack-btn .btn {
        background: var(--sec-color);
        color: #fff;
        border-color: var(--sec-color);
    }
}

/* End Hover */





/* Start Mobile Style */


@media (max-width: 991px){
    
.head-res-inner {
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 15px;
    justify-content: space-between;
}

.header-res {padding: 20px 0;}

.head-res-inner .logo-h {
    max-width: 50px;
    width: 100%;
}

.head-res-inner  .search-res {
    width: calc(100% - 100px);
}

.head-res-inner .search-res form {
    position: relative;
}

.head-res-inner .search-res form input {
    width: 100%;
    padding: 5px 20px;
    height: 45px;
    border-radius: 8px;
    border: 1px #eee solid;
    padding-inline-end: 40px;
}

.head-res-inner .search-res form i {
    position: absolute;
    left: 0;
    top: 0;
    margin: 14px 20px;
    color: #ddd;
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
}

.res-menu-bottom {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    background: #fff;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    flex: 0 1;
    box-shadow: 0 0 20px rgb(0 0 0 / 20%);
}

.res-menu-bottom .item {
    display: inline-flex;
    flex: 0 0 auto;
    width: 33.33%;
    justify-content: center;
}

.res-menu-bottom .item a {
    padding: 15px;
    display: block;
    text-align: center;
    font-size: 12px;
    text-transform: capitalize;
}

.res-menu-bottom .item a i {
    display: table;
    margin: 0 auto;
    /* width: 35px; */
    /* height: 35px; */
    /* line-height: 35px; */
    text-align: center;
    /* background: #f2f2f2; */
    /* background: var(--main-color); */
    border-radius: 50%;
    font-size: 15px;
    color: var(--main-color);
    margin-bottom: 6px;
}

.fixed-icons {
    display: none;
}

main.main-content {
    padding-bottom: 100px;
}

main.main-content.main-res {
    display: block;
    padding-bottom: 130px;
}

.banner-res-h {
    padding: 15px 0 20px;
    overflow: hidden;
}

.banner-res-h p {
    color: #000;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    margin-bottom: 20px;
}

.banner-res-h .banner-res-slider {}

.banner-res-h .banner-res-slider .slick-list {
    /* overflow: visible; */
}

.banner-res-slider .item {
    /* padding: 0 8px; */
    /* opacity: .3; */
    /* transition: all .4s; */
    /* filter: grayscale(1); */
}

.banner-res-slider .img {
    height: 105px;
    overflow: hidden;
}

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

.banner-res-slider .item.slick-slide.slick-current.slick-active.slick-center {
    opacity: 1;
    filter: none;
}

.title-flex {
    margin-bottom: 22px;
}

.title-flex .title h3 {
    font-size: 18px;
    line-height: 28px;
}

.title-flex .showMore {
    color: var(--sec-color);
    font-weight: bold;
    text-decoration: underline;
    font-size: 15px;
    line-height: 25px;
}

.services-res-h .col-md-4 {
    width: 33.33%;
    padding: 5px 5px;
}

.services-res-slider .item {
    padding: 5px 5px;
}

.services-res-h .img {
    height: 90px;
    overflow: hidden;
    padding: 8px 12px;
    box-shadow: 0px 20px 60px 0px #1F19190D;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    background: #fff;
    align-content: center;
}

.services-res-h .img img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    object-position: center;
}

.best-services-res-h {
    padding: 20px 0 ;
}

.packages-res-h .title h3 {
    font-size: 20px;
    line-height: 30px;
}

.title {
    margin: 0 0 5px;
}


    footer {
        display: none;
    }
    
    .pack-block {
    animation-duration: 1s;
    animation-delay: 1s;
}

.mobile-menu .menu-box .navigation li .sub-menu {
    padding: 0 20px;
}

.mobile-menu .menu-box .navigation li .sub-menu li a {
    color: #535353;
}

.best-services-in.row {
    display: none;
}
}

/* End Mobile Style */
















