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

/* Start Fonts */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;600;700;900&display=swap');
@font-face {
    font-family: "etab";
    src: url(../fonts/etab.otf);
}


/* End Fonts */

:root {
    --main-color: #2CAAE2;
    --bg-color: #F7F7F7;
    --dark-color: #3D3D3D;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    font-family: 'Cairo', sans-serif;
    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(--main-color);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

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

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

body {
    padding: 0;
    margin: 0;
    font-family: 'Cairo', sans-serif;
    background: #fff;
    text-align: start;
    /* overflow-x: hidden; */
    /* overflow-y: auto; */
    direction: rtl;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: 'Cairo', sans-serif;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

section {
    position: relative;
}

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

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

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

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

.padding {
    padding: 0 !important;
}

img {
    max-width: 100%;
}

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

textarea {
    resize: none;
}

.owl-carousel {
    direction: ltr;
}


/*** 

====================================================================
	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(--sec-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: 18px;
    line-height: 50px;
    color: #000000;
    height: 70px;
    width: 100%;
    padding: 10px 30px;
    background-color: #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 500;
    text-transform: capitalize;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
    position: absolute;
    left: 30px;
    top: 0px;
    height: 70px;
    line-height: 70px;
    background: transparent;
    text-align: center;
    font-size: 24px;
    color: #000000;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
    color: #000000;
}

.search-popup input::placeholder,
.search-popup textarea::placeholder {
    color: #000000;
}

.search-popup .close-search.style-two {
    position: absolute;
    right: 25px;
    left: auto;
    color: #ffffff;
    width: auto;
    height: auto;
    top: 25px;
    margin: 0px;
    border: none;
    background: none !important;
    box-shadow: none !important;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.search-popup .close-search.style-two span {
    font-size: 20px;
    color: #ffffff;
}


/*** 

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

***/


/*** 

====================================================================
	Start Mobile Menu
====================================================================

***/

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

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

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

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

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

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

.mobile-menu .menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 0%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.90);
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 1;
    width: 100%;
    visibility: visible;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .menu-box {
    position: absolute;
    right: -400px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: #ffffff;
    padding: 0px 0px;
    z-index: 5;
    border-radius: 0px;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

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

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

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

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

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

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

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

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

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

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

.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 44px;
    height: 44px;
    text-align: center;
    font-size: 16px;
    line-height: 44px;
    color: #404040;
    cursor: pointer;
    z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 10px;
    width: 1px;
    height: 24px;
    border-left: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul {
    display: block;
    background: var(--bg-color);
    height: 0;
    transition: all .5s;
    overflow: hidden;
}

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

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

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

.sticky-header .outer-box .search-box-btn {
    color: #000000;
}

.sticky-header .outer-box {
    padding: 22px 0px;
}

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

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

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

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

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

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

.mobile-menu2 .menu-backdrop2 {
    position: fixed;
    right: 0;
    top: 0;
    width: 0%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.90);
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}

.mobile-menu-visible2 .mobile-menu2 .menu-backdrop2 {
    opacity: 1;
    width: 100%;
    visibility: visible;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

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

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

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

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

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

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

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

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

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

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

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

.mobile-menu2 .navigation2 li.dropdown .dropdown-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 44px;
    height: 44px;
    text-align: center;
    font-size: 16px;
    line-height: 44px;
    color: #404040;
    cursor: pointer;
    z-index: 5;
}

.mobile-menu2 .navigation2 li.dropdown .dropdown-btn:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 10px;
    width: 1px;
    height: 24px;
    border-left: 1px solid rgba(0, 0, 0, 0.10);
}

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

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

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

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

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

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


/*** 

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

***/


/* Start Header-res */

.menu-res {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.menu-res .item .mobile-nav-toggler img {
    max-width: 35px;
    max-height: 35px;
}

.menu-res .item {
    margin-inline-start: 10px;
}

.header-res {
    background: var(--main-color);
    padding: 15px 0;
    display: none;
}

.header-res .row {
    align-items: center;
}

.menu-res .item .search-box-btn.search-box-outer {
    width: 35px;
    height: 35px;
    background: var(--sec-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
}


/* End Header-res */


/* Start Header */

header {
    position: absolute;
    padding: 15px 0;
    z-index: 9;
    width: 100%;
    right: 0;
    left: 0;
    top: 0;
}

.header-inner {
    display: flex;
    align-items: center;
    margin-inline-start: auto;
}

.header-inner .info-head {
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    margin-inline-start: 80px;
}

.header-inner .menu-site ul {
    display: flex;
    justify-content: center;
}

.header-inner .menu-site ul li {
    display: inline-flex;
    padding: 0 4px;
}

.header-inner .menu-site ul li a {
    color: #fff;
    font-size: 22px;
    padding: 0 20px;
    line-height: 24px;
    display: block;
    font-family: 'etab';
}

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

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

.header-inner .info-head .info-inner .lang {
    color: #fff;
    margin-inline-start: 20px;
    font-size: 22px;
    font-family: 'etab';
}

.header-inner .info-head .search-box-btn.search-box-outer {
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}

.logo {
    display: block;
    max-width: 370px;
}

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

.mobile-nav-toggler {
    width: 40px;
    height: 40px;
    background: var(--main-color);
    display: none;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    margin-inline-start: 15px;
}

.header-inner .menu-site ul li a:hover {
    color: var(--main-color);
    animation: 1s swing;
}

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

.btn-border {
    min-width: 143px;
    line-height: 40px;
    min-height: 40px;
    border: 1px solid #FFFFFF;
    border-radius: 2px;
    display: inline-block;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #fff;
    font-family: 'etab';
    text-align: center;
}

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

.header-inner .info-head .info-inner .lang img {
    max-width: 20px;
    max-height: 20px;
    margin-inline-start: 6px;
}

.header-inner .info-head .info-inner .lang:hover {
    color: var(--main-color);
}

.header-inner .info-head .info-inner .lang:hover img {
    animation: 1s swing;
}


/* End Header */


/* Start Home-slider */

.home-slider,
.home-slider .owl-stage-outer .owl-item,
.home-slider .item,
.home-slider .item .container,
.home-slider .item .container .row {
    min-height: 764px;
}

.img-overlay {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.home-slider .item {
    position: relative;
    /* margin: 0 20px; */
    /* opacity: 0.11; */
    transition: all .5s;
}

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

.home-slider .item .container {
    /* opacity: 0; */
    transition: all .5s;
    direction: rtl;
    height: 100%;
    position: relative;
    z-index: 2;
}

.home-slider .active.center .item .container {
    opacity: 1;
}

.home-slider {
    background: #fff;
    /* padding: 25px 0; */
}

.home-slider .item .container .row {
    height: 100%;
    align-items: center;
}

.home-slider .active.center .item {
    opacity: 1;
}

.home-slider .item .img-overlay::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    background: #000;
    opacity: 0.63;
}

.home-slider .text-banner {
    max-width: 580px;
    margin: 0 auto;
    text-align: center;
}

.home-slider .text-banner h1 {
    font-size: 45px;
    color: #fff;
    font-weight: bold;
    line-height: 70px;
    margin: 0;
}

.home-slider .text-banner p {
    font-size: 19px;
    color: #fff;
    font-weight: 300;
    line-height: 32px;
    margin: 30px 0;
    max-height: 65px;
    overflow: hidden;
}

.btn {
    min-width: 136px;
    min-height: 40px;
    background: var(--main-color);
    border-radius: 2px;
    line-height: 3.3;
    font-size: 22px;
    color: #fff;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    line-height: 40px;
    padding: 0 10px;
    font-family: 'etab';
}

.btn::after,
.btn::before {
    content: "";
    position: absolute;
    right: -18%;
    top: 0;
    bottom: 0;
    width: 75%;
    height: 131%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background: var(--dark-color);
    margin-top: -4%;
    transform: rotate(40deg) scale(0);
    transition: all .5s;
}

.btn::after {
    right: auto;
    left: -18%;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn:hover::after,
.btn:hover::before {
    transform: none;
    clip-path: none;
}

.btn:hover,
.btn:focus {
    color: #fff;
}

.home-slider .owl-nav,
.home-slider .owl-dots {
    position: absolute;
    right: 0;
    margin: auto;
    display: flex;
    justify-content: flex-end;
    bottom: 0;
    top: auto;
    width: auto;
    left: auto;
}

.home-slider.owl-carousel .owl-nav .owl-prev,
.home-slider.owl-carousel .owl-nav .owl-next {
    width: 72px;
    height: 72px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 44px;
    padding: 0;
    background: rgb(255 255 255 / 25%);
    font-size: 27px;
    color: #fff;
    transition: all .5s;
    position: relative;
    right: auto;
    left: auto;
    border-radius: 0;
}

.home-slider .owl-dots {
    bottom: 40px;
}

.banner-home .slider-counter {
    position: absolute;
    bottom: 0;
    right: 145px;
    left: 0;
    max-width: 1140px;
    margin: auto;
    display: flex;
    justify-content: flex-end;
    bottom: 23px;
    z-index: 5;
    color: #fff;
    align-items: center;
    font-size: 12px;
    padding-inline-end: 450px;
    font-weight: 600;
}

.banner-home .slider-counter span.line {
    width: 18px;
    height: 0px;
    border: 1px solid #FFFFFF;
    display: inline-block;
    margin: 0 3px
}

.slide-progress {
    width: 0;
    /* max-width: 400px; */
    height: 4px;
    background: #fff;
}

.img-overlay video {
    width: 100%;
    object-fit: fill;
    height: 100%;
}

.btn.btn-white {
    min-width: 173px;
    min-height: 40px;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 2px;
    line-height: 40px;
    color: var(--dark-color);
    font-family: 'etab';
    font-size: 22px;
    margin: 33px 0 0;
}

.btn:hover,
.btn:focus {
    color: #fff;
}

.progress::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    opacity: 0.25;
}

.progress {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 30px;
    z-index: 7;
    direction: rtl;
    max-width: 400px;
    width: 100%;
    height: 4px;
    background: transparent;
}

.home-slider .owl-nav .owl-prev:hover,
.home-slider .owl-nav .owl-next:hover {
    background: #fff;
    color: var(--main-color);
}


/* End Home-slider */


/* Start Choose-h */

.choose-now {
    padding: 150px 0;
}

.img-choose {
    height: 537px;
    position: relative;
}

.img-choose .img {
    width: 100%;
    height: 100%;
    text-align: center;
}

.img-choose .img img {
    max-height: 537px;
}

.choose-now::after {
    content: "";
    position: absolute;
    left: 0;
    height: 75%;
    width: 55%;
    background: var(--bg-color);
    top: 0;
    border: 0;
    margin: auto;
    bottom: 0;
    z-index: -1;
}

.title-choose {
    margin: 0 0 40px;
}

.title-choose h3 {
    margin: 0;
    position: relative;
    font-size: 24px;
    color: var(--dark-color);
    font-weight: bold;
    display: table;
    padding-inline-end: 56px;
}

.title-choose h3::after {
    content: "";
    position: absolute;
    width: 36px;
    left: 0;
    border-bottom: 2px solid var(--dark-color);
    top: 13px;
}

.choose-block .choose-item {
    display: flex;
    margin: 27px 0;
}

.choose-block .choose-item .icon {
    width: 79px;
    height: 79px;
    background: #FFFFFF;
    border-radius: 50%;
    line-height: 79px;
    text-align: center;
}

.choose-block .choose-item .details {
    width: calc(100% - 79px);
    padding-inline-start: 10px;
}

.choose-block .choose-item .details h3 {
    font-size: 18px;
    font-weight: bold;
    color: var(--dark-color);
    margin: 0 0 16px;
}

.choose-block .choose-item .details p {
    color: #808080;
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
    max-height: 150px;
    overflow: hidden;
}

.choose-block .choose-item:last-child {
    margin-bottom: 0;
}

.choose-now .row {
    align-items: center;
}


/* End Choose-h */


/* Start Spcial-h */

.text-spcial h1 {
    font-size: 35px;
    color: var(--dark-color);
    font-weight: bold;
    line-height: 66px;
}

.showMore {
    color: var(--main-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
}

.text-spcial p {
    color: #808080;
    font-size: 22px;
    line-height: 42px;
    font-weight: 600;
    margin: 4px 0 12px;
    max-height: 40px;
    overflow: hidden;
}

.showMore i {
    font-size: 20px;
    margin-inline-start: 10px;
    position: relative;
    top: 4px;
}

.pro-block {
    display: block;
    height: 403px;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.spcial-slider {
    left: -10%;
}

.spcial-h {
    overflow: hidden;
}

.pro-block .details {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 25px 20px;
}

.pro-block .img {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}

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

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

.pro-block .img::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #00000024 0%, #000000CF 100%);
}

.pro-block .details h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    line-height: 42px;
}

.pro-block .details ul {
    margin: 10px 0;
    display: flex;
    flex-wrap: wrap;
}

.pro-block .details ul li {
    max-width: 50%;
    flex: 0 0 50%;
    padding-inline-end: 5px;
    color: #FFF;
    font-size: 16px;
    font-weight: 300;
    line-height: 37px;
    margin: 2px 0;
}

.pro-block .details ul li i {
    font-size: 18px;
    width: 22px;
    margin-inline-end: 5px;
}

.pro-block .details .more {
    margin: 0;
    color: #FFF;
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
}

.pro-block .details .more i {
    font-size: 20px;
    margin-inline-start: 10px;
    position: relative;
    top: 4px;
}

.owl-nav {
    position: absolute;
    top: 47%;
    right: 0;
    left: 0;
    width: 100%;
}

.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
    width: 57px;
    height: 57px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 5px 11px #00000029;
    border-radius: 3px;
    line-height: 57px;
    text-align: center;
    color: #808080;
    font-size: 22px;
    position: absolute;
}

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

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

.spcial-slider.owl-carousel .owl-nav .owl-prev {
    display: none;
}

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


/* End Spcial-h */


/* Start Contact-h */

.contact-h {
    padding: 100px 0;
    overflow: hidden;
}

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

.contact-h::before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    margin: auto;
    background: var(--bg-color);
}

.img-contact {
    width: 683px;
    height: 491px;
}

.img-contact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-contact h1 {
    font-size: 45px;
    color: var(--main-color);
    font-weight: 600;
    line-height: 85px;
    margin: 0 0 26px;
}

.text-contact p {
    color: #808080;
    font-size: 18px;
    line-height: 33px;
    font-weight: 600;
    overflow: hidden;
    max-height: 68px;
    margin: 26px 0;
}


/* End Contact-h */


/* Start Services-h */

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

.title h3 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    color: var(--dark-color);
    position: relative;
    line-height: 45px;
    padding-bottom: 25px;
}

.title h3::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 60px;
    height: 0px;
    border-bottom: 5px solid #2CAAE2;
}

.services-slider .item {
    padding: 0 20px;
}

.serv-block {
    min-height: 360px;
    background: #fff;
    box-shadow: 0px 7px 12px #0000001A;
    border-radius: 2px;
    margin: 15px 0;
    padding: 0 20px;
}

.serv-block .icon {
    width: 106px;
    height: 89px;
    background: var(--main-color);
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 0px 0px 5px 5px;
    line-height: 89px;
    text-align: center;
}

.serv-block .icon img {
    max-width: 65px;
    max-height: 63px;
    text-align: center;
    display: inline-block;
}

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

.serv-block .details h3 {
    font-size: 24px;
    color: var(--dark-color);
    font-weight: bold;
    line-height: 45px;
}

.serv-block .details p {
    color: #808080;
    font-size: 18px;
    line-height: 33px;
    font-weight: 600;
    overflow: hidden;
    max-height: 170px;
}

.owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0 0;
}

.owl-dots .owl-dot span {
    width: 35px;
    height: 8px;
    background: var(--main-color);
    display: block;
    margin: 0 5px;
    opacity: .5;
    transition: all .5s;
}

.owl-dots .owl-dot.active span {
    width: 60px;
    opacity: 1;
}


/* End Services-h */


/* Start CLients-h */

.client-block {
    height: 86px;
    line-height: 86px;
    text-align: center;
    margin: 15px 0;
}

.client-block img {
    display: inline-block !important;
    max-height: 100%;
    /* width: auto !important; */
    max-width: 75% !important;
}

.clients-h {
    padding: 25px 0;
}


/* End Clients-h */


/* Start Footer */

footer {
    background: var(--bg-color);
    padding: 45px 0 25px;
    text-align: center;
}

.logo-f {
    width: auto;
    height: 160px;
    margin: auto;
    max-width: 90%;
}

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

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

.menu-f {
    margin: 30px 0;
}

.menu-f ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.menu-f ul li {
    margin: 0 20px;
}

.menu-f ul li a {
    font-size: 22px;
    font-family: 'etab';
    color: var(--dark-color);
    display: block;
}

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

.info-f {
    margin: 30px 0;
}

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

.info-f ul li {
    margin: 0 12px;
}

.info-f ul li a {
    display: block;
}

.info-f ul li span {
    font-size: 16px;
    color: var(--dark-color);
    font-family: 'Open Sans', sans-serif;
    transition: all .5s;
}

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

.info-f ul li i {
    font-size: 21px;
    color: var(--dark-color);
    margin-inline-start: 10px;
    position: relative;
    top: 1px;
    display: inline-block;
}

.social-f {
    margin: 30px 0 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-f a {
    display: block;
    color: #808080;
    font-size: 26px;
    line-height: 31px;
    margin: 0 8px;
}

.copy-f {
    display: flex;
    justify-content: center;
    align-items: center;
    direction: ltr;
}

.copy-f p {
    color: #767891;
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
    margin-inline-end: 11px;
    line-height: 15px;
}

.copy-f a {
    display: flex;
    align-items: center;
    color: #767891;
    font-size: 13px;
    line-height: 15px;
    font-family: 'Roboto', sans-serif;
}

.copy-f a img {
    margin-inline-end: 8px;
    max-width: 12px;
    max-height: 12px;
}

.social-f a:hover {
    color: var(--main-color);
    animation: 1s tada;
}

.info-f ul li:hover span {
    color: var(--main-color);
}

.info-f ul li:hover i {
    animation: 1s tada;
}

.serv-block:hover .icon img {
    animation: 1s rubberBand;
}

.choose-block .choose-item .icon img {
    max-width: 50px;
    max-height: 50px;
}

.choose-block .choose-item:hover .icon img {
    animation: 1s bounceIn;
}


/* End Footer */


/* Start Select Nice */

select {
    display: none;
}

.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border: none;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    /* float: right; */
    font-family: inherit;
    font-size: 16px;
    font-weight: normal;
    line-height: 50px;
    outline: none;
    padding-right: 30px;
    padding-left: 30px;
    position: relative;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    color: #E2DDDD;
    width: 100%;
    background: transparent;
    border-bottom: 1px solid #707070;
    padding: 0 20px;
}

.nice-select:hover {
    border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
    border-color: #999;
}

.nice-select:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: "";
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    left: 20px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all 0.15s ease-in-out;
    width: 5px;
}

.nice-select.open:after {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
}

.nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none;
}

.nice-select.disabled:after {
    border-color: #cccccc;
}

.nice-select.wide {
    width: 100%;
}

.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important;
}

.nice-select.right {
    float: right;
}

.nice-select.right .list {
    left: auto;
    right: 0;
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}

.nice-select.small:after {
    height: 4px;
    width: 4px;
}

.nice-select.small .option {
    line-height: 34px;
    min-height: 34px;
}

.nice-select .list {
    background-color: var(--white-color);
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
    width: 100%;
}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    /* text-align: left; */
    transition: all 0.2s;
    color: var(--main-color);
    background: #fff;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: var(--main-color);
    color: var(--white);
}


/* End Select Nice */


/* Start Offers-page */

.breadcrumb {
    padding: 0;
    margin: 0;
    height: 356px;
    position: relative;
}

.breadcrumb .img-overlay::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.63;
}

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

.text-bread {
    text-align: center;
    padding-top: 80px;
}

.text-bread h3 {
    color: #FFF;
    font-size: 55px;
    line-height: 62px;
    font-family: 'etab';
    margin: 0 0 10px;
}

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

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

.text-bread ul li a,
.text-bread ul li span {
    font-size: 22px;
    font-family: 'etab';
    color: #FFF;
}

.text-bread ul li a {
    color: #949494;
}

.text-bread ul li a::after {
    content: "/";
    position: absolute;
    left: -2px;
    font-size: 22px;
    color: #fff;
    top: 1px;
}

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

.filter-search {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 20px;
}

.filter-search .right-row,
.filter-search .left-row {
    max-width: 50%;
    flex: 0 0 50%;
}

.filter-search .left-row {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    align-items: center;
}

.nav.nav-pills li {
    margin: 0 8px;
}

.nav.nav-pills li:first-child {
    margin-inline-start: 0;
}

.nav.nav-pills li:last-child {
    margin-inline-end: 0;
}

.nav.nav-pills li .nav-link {
    min-width: 143px;
    min-height: 40px;
    background: #fff;
    border: 1px solid var(--main-color);
    border-radius: 2px;
    text-align: center;
    color: var(--main-color);
    font-size: 22px;
    font-family: 'etab';
    display: flex;
    line-height: 40px;
    padding: 0 10px;
    justify-content: center;
}

.nav.nav-pills li .nav-link.active,
.nav.nav-pills .show .nav-link,
.nav.nav-pills li .nav-link:hover {
    background: var(--main-color);
    color: #fff;
}

.select-filter {
    display: flex;
    align-items: center;
}

.select-filter h3 {
    font-size: 18px;
    font-family: 'etab';
    color: var(--dark-color);
    min-width: 90px;
    margin-inline-end: 20px;
    margin-bottom: 0;
}

.select-filter .nice-select {
    min-width: 170px;
    min-height: 40px;
    background: #fff;
    border: 1px solid #808080;
    border-radius: 2px;
    line-height: 38px;
    font-size: 22px;
    color: var(--dark-color);
    font-family: 'etab';
}

.body-inner .pro-block {
    margin: 15px 0;
}

.pagination {
    justify-content: center;
    margin: 60px 0 0;
    direction: ltr;
}

.pagination .page-item {
    margin: 0 5px;
}

.pagination .page-item .page-link {
    width: 53px;
    height: 53px;
    background: #fff;
    border: 1px solid #B9B9B9;
    border-radius: 2px;
    padding: 0;
    line-height: 53px;
    text-align: center;
    font-size: 22px;
    color: var(--dark-color);
}

.pagination .page-item.more-pro .page-link {
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dots-page .dot {
    width: 8px;
    height: 8px;
    background: #808080;
    border-radius: 50%;
    margin: 0 2px;
}

.dots-page {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination .page-item.disabled .page-link {
    background: var(--main-color);
    color: #fff;
}


/* End Offers-page */


/* Start Services-page */

.body-inner .serv-block {
    margin: 40px 0;
    min-height: 355px;
}


/* End Services-page */


/* Start About-page */

.text-about h3 {
    font-size: 35px;
    color: var(--dark-color);
    font-weight: bold;
    line-height: 66px;
}

.text-about p {
    color: #808080;
    font-size: 18px;
    line-height: 33px;
    font-weight: 600;
    margin: 25px 0 0;
}

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

.img-about .back-img {
    height: 349px;
    box-shadow: 0px 11px 19px #00000014;
    border-radius: 2px;
    position: relative;
    z-index: 2;
    background: #fff;
}

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

.img-about::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border: 1px solid #C0C0C0;
    margin: -20px;
    z-index: -1;
}

.img-about .front-img {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    width: 197px;
    height: 189px;
    box-shadow: 0px 11px 19px #00000014;
    border-radius: 2px;
    margin: -35px;
}

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

.text-about {
    padding-inline-end: 40px;
}

.counter-h .img-overlay::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.67;
}

.counter-inner {
    display: flex;
    flex-wrap: wrap;
}

.counter-inner .item {
    max-width: 50%;
    flex: 0 0 50%;
    text-align: center;
    margin: 15px 0;
    padding: 0 15px;
}

.counter-inner .item .counter-item {
    color: #FFF;
    font-size: 45px;
    direction: ltr;
    font-weight: bold;
    line-height: 85px;
    margin: 0;
}

.counter-inner .item h2 {
    color: #FFF;
    font-size: 30px;
    margin: 0;
    line-height: 56px;
    font-weight: 600;
}

.video-block {
    height: 390px;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

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

.video-block a::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #020202;
    opacity: 0.21;
}

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

.video-block a .icon {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 22px;
    z-index: 3;
    border-radius: 50%;
    overflow: hidden;
}

.video-block a .icon::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    /* filter: blur(13px); */
    opacity: 0.3;
}

.video-block a .icon::before {
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    /* background: #fff; */
    backdrop-filter: blur(4px);
    position: absolute;
    z-index: -1;
}

.video-block:hover a .icon {
    animation: 1s bounceIn;
}

.body-inner .choose-block .choose-item {
    box-shadow: 0px 5px 14px #0000000D;
    border: 1px solid #EFEFEF;
    border-radius: 2px;
    padding: 20px;
}

.body-inner .choose-block .choose-item .icon {
    background: #F3FBFF;
}

.body-inner .title-choose h3::after {
    border-color: var(--main-color);
}

.text-manger p {
    color: #808080;
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
    margin: 17px 0;
}

.manger-words {
    background: #FAFAFA;
    padding: 70px 0;
}

.text-manger h4 {
    margin: 0;
    font-size: 18px;
    color: var(--dark-color);
    font-weight: bold;
    line-height: 33px;
}

.img-manger {
    height: 445px;
    position: relative;
    /* max-width: 307px; */
    margin-inline-start: auto;
    z-index: 2;
}

.img-manger::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 278px;
    background: var(--main-color);
    z-index: -1;
}

.img-manger .img {
    width: 307px;
    height: 365px;
    top: 40px;
    margin-inline-start: auto;
    position: relative;
}

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

.img-manger::before {
    content: "\f10d";
    position: absolute;
    right: 0;
    top: 0;
    font-family: 'Font Awesome 5 Pro';
    font-weight: bold;
    color: #fff;
    font-size: 48px;
    margin: 10px 25px;
}

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


/* End About-page */


/* Start Single-page */

.text-single h3 {
    font-size: 22px;
    line-height: 42px;
    color: var(--dark-color);
    font-weight: 600;
}

.text-single ul {
    display: flex;
    flex-wrap: wrap;
    margin: 37px 0;
}

.text-single ul li {
    max-width: 50%;
    flex: 0 0 50%;
    font-size: 22px;
    color: var(--dark-color);
    font-weight: 300;
}

.text-single ul li i {
    font-size: 23px;
    width: 23px;
    margin-inline-end: 11px;
}

.text-single p {
    color: #808080;
    font-size: 17px;
    line-height: 32px;
    font-weight: 600;
}

.single-block {
    height: 410px;
    overflow: hidden;
    position: relative;
}

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

.single-block a {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 5;
    width: 18px;
    height: 18px;
    margin: 13px;
}

.single-block a img {
    filter: brightness(0) invert(1);
}

.single-slider .owl-dots {
    margin: 0;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 20px;
    max-width: 50%;
    margin: auto;
}

.single-slider .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    position: relative;
    opacity: 1;
}

.single-slider .owl-dots .owl-dot span::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1px solid #FFFFFF;
    left: -2px;
    top: -2px;
    border-radius: 50%;
    transition: all .5s;
    transform: scale(0);
}

.single-slider .owl-dots .owl-dot.active span::after {
    transform: none;
}

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

.rel-slider .item {
    padding: 0 15px;
    direction: rtl;
}

.text-single .btn-border {
    border-color: var(--main-color);
    color: var(--main-color);
    margin: 37px 0 0;
}

.text-single .btn-border:hover {
    background: var(--main-color);
    color: #fff;
}


/* End Single-page */


/* Start Contact-page */

.breadcrumb.breadcrumb-contact {
    height: 579px;
}

.breadcrumb.breadcrumb-contact .text-bread {
    padding: 0;
}

.contact-inner {
    background: #fff;
    box-shadow: 0px 10px 16px #0000001A;
    border-radius: 2px;
    margin-top: -250px;
}

.contact-inner .col-md-6.col-sm-12 {
    padding: 40px;
}

.form-contact h3 {
    font-size: 28px;
    color: var(--dark-color);
    font-weight: bold;
    line-height: 52px;
    margin: 0 0 10px;
}

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

.form-group label {
    font-size: 18px;
    color: var(--dark-color);
    font-weight: 600;
    line-height: 33px;
    margin: 0 0 10px;
}

.form-group .form-control {
    height: 45px;
    background: #fff;
    border: 1px solid #BEBEBE;
    border-radius: 2px;
    padding: 0 20px;
    transition: all .5s;
}

.form-group .form-control:hover,
.form-group .form-control:focus {
    box-shadow: none;
    border-color: var(--main-color);
}

.form-group textarea.form-control {
    padding: 20px;
    height: 117px;
}

.info-contact {
    border: 1px solid #E4E4E4;
    padding: 25px;
}

.info-contact h3 {
    font-size: 22px;
    color: var(--dark-color);
    font-weight: 600;
    line-height: 42px;
    margin: 0 0 35px;
}

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

.info-contact ul li a {
    font-size: 18px;
    color: var(--dark-color);
    display: block;
    line-height: 24px;
    display: flex;
}

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

.info-contact ul li i {
    width: 22px;
    margin-inline-end: 5px;
    position: relative;
    top: 2px;
}

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

.info-contact .map-con {
    height: 255px;
}

.info-contact ul li a span {
    display: block;
    width: calc(100% - 30px);
}

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

.img-choose .text-img {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 265px;
    height: 116px;
    background: #fff;
    border-radius: 3px 0px 0px 3px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--dark-color);
    font-weight: bold;
    z-index: 2;
}

.img-choose .text-img strong {
    font-size: 45px;
    color: var(--main-color);
    margin-inline-end: 15px;
}

.img-choose.img-about .text-img {
    right: 0;
}

.pro-block .details ul li a {
    color: #FFF;
    font-size: 16px;
    font-weight: 300;
}

.tab-inner.row .select-filter {
    max-width: 200px;
    margin: 30px 0;
}

/* End Contact-page */

