html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ddd;
}

::-webkit-scrollbar-thumb:hover {
    background: #000000;
}

/*------------ any link to read --------*/
a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: inherit;
}

.sec-color {
    color: #000000;
}

/*------------ buttons ----------------*/
.btn {
    padding: 10px 50px;
    border: none;
    color: #fff;
    background-color: #0babe4;
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 0;
}

.btn::before {
    position: absolute;
    content: "";
    z-index: -1;
    left: -1px;
    right: -1px;
    top: -1px;
    height: 100%;
    width: 100%;
    bottom: -1px;
    background: #000;
    transform: skewX(45deg) scale(0, 1);
    transition: all 0.5s ease 0s;
}

.btn:hover::before {
    transform: skewX(45deg) scale(1, 1);
}

.btn:hover {
    border: 1px solid #000;
    background-color: black;
    color: #fff;
}

.btn-check:focus + .btn,
.btn:focus {
    outline: 0;
    box-shadow: 0px 3px 6px #00000029;
}

.whatsapp {
    position: fixed;
    bottom: 5rem;
    right: 0.5rem;
    box-shadow: 0 0 16px #e9511d29;
    z-index: 4;
    color: #fff;
    border-radius: 50%;
    font-size: 2.7rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    text-align: center;
}

a.whatsapp:hover {
    color: #fff;

}

.btn.pro {
    padding: 0.375rem 0.75rem;

}

/*------------ title -----------------*/
.main-title {
    font-size: 1.8rem;
    text-align: center;
    font-weight: bold;
    /*color: #000;*/
}

.main-title span {
    color: #0babe4;
}

.sec-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 25px;
}

.sec-title span {
    color: #0babe4;
}

.main-img img {
    width: 100%;
    object-fit: contain;
    height: 415px;
    background: #f2f3f4;
}

/*---------Toolbar-----------*/
.toolbar {
    border-bottom: 1px solid rgba(112, 112, 112, 0.3);
}

.toolbar-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.toolbar_box_list {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.toolbar_box_list .menu-item .nav-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    transition: all 0.3s ease-in-out;
    color: white;
    margin-left: 20px;
	cursor:pointer;
}

.toolbar_box_list li {
    position: relative;
}

.toolbar_box_list li#menu-item-18-ar .nav-link::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    background: url("../images/arabic.png") center no-repeat;
    width: 25px;
    height: 25px;
    margin: auto;

}

.toolbar_box_list li#menu-item-18-en .nav-link::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    background: url("../images/united-kingdom.png") center no-repeat;
    width: 25px;
    height: 25px;
    margin: auto;

}

.toolbar_box_list li#menu-item-18-fr .nav-link::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    background: url("../images/french.png") center no-repeat;
    width: 25px;
    height: 25px;
    margin: auto;
}


.toolbar_box_list .menu-item .nav-link:hover {
    color: #164194;
}

.toolbar_box_list .menu-item .nav-link img {
    margin-right: 0.25rem;
}

.toolbar_box_webList {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.toolbar form {
    display: block;
}

.toolbar .search-form {
    background-color: #0babe4;
    display: flex;
    border: 2px solid #f2f3f4;
    margin-left: auto;
    justify-content: space-between;
    align-items: center;
    border-radius: 50rem;
    overflow: hidden;
    margin: 5px 0 5px auto;
}

#s::placeholder {
  color: white;
  opacity: 1; 
}

.toolbar .search-buttons {
    border-radius: 0;
    padding: 5px 10px;
    border: 0;
}

.toolbar button.search-buttons {
    background-color: #0babe4;
    color: white;
}

.toolbar_box_webList_item {
    margin: 0 10px;
	color: white;
	font-weight: bold;
}

.toolbar_box_webList .menu-item a.nav-link {
    font-size: 0.9rem;
    position: relative;
    transition: all 0.3s ease-in-out;
    padding: 0;
    padding-bottom: 5px;
    margin: 0 10px;
    color: white;
}

.toolbar_box_webList .menu-item a.nav-link::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #0babe4;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.toolbar_box_webList .menu-item a.nav-link:hover {
    color: #164194; !important;
}

.toolbar_box_webList .menu-item a.nav-link:hover::before {
    width: 100%;
}

.toolbar_box_webList .menu-item a.nav-link.active {
    color: #000;
}

.toolbar_box_webList .menu-item a.nav-link.active::before {
    width: 100%;
}

/*---------Navbar-----------*/
header .navbar {
    background-color: #0babe4;
    box-shadow: 0px 5px 10px #00000029;
    transition: all 0.3s ease-in-out;
}

header .navbar-toggler {
    border-radius: 0;
}

header .navbar-toggler:focus {
    box-shadow: none;
}

header .navbar .navbar-brand {
    margin: 0;
}

header .navbar .navbar-brand img {
    width: 150px;
    transition: all 0.3s ease-in-out;
    /* filter: drop-shadow(3px 3px 1px #222); */
}

header .navbar.fixed-top .navbar-brand img {
    width: 125px;
}

header .navbar-light .navbar-nav .nav-link {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 0.65rem;
    transition: all .3s ease-in-out;
    position: relative;
    padding: 0.5rem 0;
    color: white;
}

header .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: #0babe4;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

header .navbar-light .navbar-nav .nav-link:hover::before {
    width: 100%;
}

header .navbar.navbar-light .navbar-nav .active .nav-link::before {
    width: 100%;
}

header .navbar.navbar-light .navbar-nav .active .nav-link {
    color: #0babe4;
}

header .navbar-light .navbar-nav .nav-link:focus,
header .navbar-light .navbar-nav .nav-link:hover {
    color: #0babe4;
}

/*header .dropdown:hover .dropdown-menu {*/
/*    display: block;*/
/*}*/

/*header .dropdown-item {*/
/*    color: #fff;*/
/*    transition: all .3s ease-in-out;*/
/*}*/

/*header .dropdown-item:focus, .dropdown-item:hover,*/
/*.dropdown-item.active {*/
/*    color: white !important;*/
/*    background-color: #0babe4;*/
/*    padding-left: 30px;*/
/*}*/

.dropdown-menu {
    border-radius: 0;
    display: none;
    position: absolute;
    top: -9999px;
    left: -20px;
    background: #fff;
    min-width: 15rem;
    transform: translate3d(0, -5px, 0);
    opacity: 0;
    transition: .2s ease-in-out;
    box-shadow: 0 3px 5px 0 rgb(0 0 0 / 20%);
    padding: 10px 0;
    border: none;
}


.dropdown-menu li {
    position: relative;
}

header .dropdown:hover .dropdown-menu {
    display: block;
    top: 100%;
    transform: translate3d(0, 0, 0);
    opacity: 1;

}

header .dropdown-item:focus, .dropdown-item:hover,
.dropdown-item.active {
    color: #fff !important;
    background-color: #0babe4;
}


/*#menu-item-51 > ul{*/
/*    display: none;*/
/*    position: absolute;*/
/*    left: 100%;*/
/*     right: 0; */
/*     top: 0;*/
/*    list-style: none;*/
/*    z-index: 1000;*/
/*    padding: 0.5rem 0;*/
/*    margin: 0;*/
/*    font-size: 1rem;*/
/*    color: #fff;*/
/*    text-align: left;*/
/*    list-style: none;*/
/*    background-color: #fff; */
/*    background-clip: padding-box;*/
/*    border: none; */
/*    visibility: hidden;*/
/*}*/

header nav.navbar ul.navbar-nav li ul li ul {
    display: none;
    position: absolute;
    left: 100%;
    right: 0;
    top: 0;
    list-style: none;
    z-index: 1000;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #fff;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    visibility: hidden;
}

/*#menu-item-51:hover ul{*/
/*    display: block;*/
/*    left: 100%;*/
/*    visibility: visible;*/
/*}*/
header nav.navbar ul.navbar-nav li ul.dropdown-menu .dropdown:hover ul.dropdown-menu {
    display: block;
    left: 100%;
    visibility: visible;
    top: 0;

}

/*#mega-menu-wrap-primary_menu #mega-menu-primary_menu {*/
/*    position: initial !important;*/
/*}*/

/*#mega-menu-wrap-primary_menu #mega-menu-primary_menu > li.mega-menu-megamenu > ul.mega-sub-menu {*/
/*    background: #010203ad !important;*/
/*    top: 100% !important;*/
/*    box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);*/
/*    height: 90vh;*/
/*}*/

/*#mega-menu-wrap-primary_menu,*/
/*#mega-menu-wrap-primary_menu_tex {*/
/*    background-color: transparent !important;*/
/*    margin-left: auto !important;*/
/*    position: initial !important;;*/
/*}*/

/*.menu .nav-link,*/
/*#mega-menu-wrap-primary_menu #mega-menu-primary_menu > li.mega-menu-item > a.mega-menu-link,*/
/*#mega-menu-wrap-primary_menu_tex #mega-menu-primary_menu_tex > li.mega-menu-item > a.mega-menu-link {*/
/*    text-transform: uppercase;*/
/*    letter-spacing: .08em;*/
/*    font-size: 0.9rem;*/
/*    font-weight: 500;*/
/*    margin: 0 1.25rem;*/
/*    transition: all .3s ease-in-out;*/
/*    position: relative;*/
/*    padding: 0 !important;*/
/*    color: #000;*/
/*}*/


/*#mega-menu-wrap-primary_menu #mega-menu-primary_menu > li.mega-menu-item > a.mega-menu-link:before,*/
/*#mega-menu-wrap-primary_menu_tex #mega-menu-primary_menu_tex > li.mega-menu-item > a.mega-menu-link::before{*/
/*    position: absolute !important;*/
/*    content: "";*/
/*    left: 0;*/
/*    bottom: 0;*/
/*    width: 0 !important;*/
/*    height: 3px !important;*/
/*    background: #0babe4 !important;*/
/*    transition: all 0.3s ease-in-out;*/
/*    z-index: 1;*/
/*}*/

/*header #mega-menu-wrap-primary_menu #mega-menu-primary_menu > li.mega-menu-item > a.mega-menu-link:hover:after,*/
/*header #mega-menu-wrap-primary_menu #mega-menu-primary_menu > li.mega-menu-item > a.mega-menu-link:hover:before,*/
/*header #mega-menu-wrap-primary_menu #mega-menu-primary_menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link:after,*/
/*header #mega-menu-wrap-primary_menu #mega-menu-primary_menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link:before,*/
/*header #mega-menu-wrap-primary_menu_tex #mega-menu-primary_menu_tex > li.mega-menu-item > a.mega-menu-link:hover:after,*/
/*header #mega-menu-wrap-primary_menu_tex #mega-menu-primary_menu_tex > li.mega-menu-item > a.mega-menu-link:hover:before,*/
/*header #mega-menu-wrap-primary_menu_tex #mega-menu-primary_menu_tex > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link:after,*/
/*header #mega-menu-wrap-primary_menu_tex #mega-menu-primary_menu_tex > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link:before {*/
/*    width: 100% !important;*/
/*}*/
/*#mega-menu-wrap-primary_menu #mega-menu-primary_menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-primary_menu #mega-menu-primary_menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {*/
/*    color: #fff;*/
/*    font-family: inherit;*/
/*    font-size: 16px;*/
/*    text-transform: uppercase;*/
/*    text-decoration: none;*/
/*    font-weight: bold;*/
/*    text-align: center;*/
/*    margin: 0px 0px 0px 0px;*/
/*    padding: 5px;*/
/*    vertical-align: top;*/
/*    display: block;*/
/*    border: 0;*/
/*    background: #000000;*/
/*}*/
/*.mega-menu-item-object-products-categories.mega-menu-item-has-children > a.mega-menu-link {*/
/*    font-size: 17px!important;*/
/*    font-weight: 500!important;*/
/*}*/
/*.mega-menu-item-object-products-categories.mega-menu-item-has-children .mega-menu-item-type-taxonomy.mega-menu-item-object-products-categories > a.mega-menu-link{*/
/*    padding: 0 0 0 15px !important;*/
/*    position: relative    */
/*}*/
/*.mega-menu-item-object-products-categories.mega-menu-item-has-children .mega-menu-item-type-taxonomy.mega-menu-item-object-products-categories > a.mega-menu-link::before {*/
/*    position: absolute !important;*/
/*    content: "";*/
/*    background: #000000!important;*/
/*    left: 0;*/
/*    width: 10px!important;*/
/*    height: 3px !important;*/
/*    top: 0 !important;*/
/*    bottom: 0;*/
/*    margin: auto !important;*/
/*}*/


/*------------ inner header ----------*/
.inner-header figure {
    margin: 0;
    position: relative;
}

.inner-header figure img {
    height: 43vh;
    width: 100%;
    object-fit: cover;
}

.inner-header figure figcaption {
    position: absolute;
    top: 10%;
    bottom: 10%;
    left: 10%;
    right: 10%;
    padding: 50px;
    text-align: center;
    /* border-radius: 25px; */
    color: white;
    background: #22222245;
    box-shadow: 0 10px 150px 30px #0000002e;
    /* box-shadow: 0 10px 150px 30px #00000063; */
}

.inner-header figure figcaption .breadcrumb-item {
    display: flex;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.51);

}

.inner-header figure figcaption .breadcrumb-item a {
    padding: 0 5px;
    transition: all 0.4s ease-in-out;
}

.inner-header figure figcaption .breadcrumb-item a:hover {
    background: #0babe4;
    color: #fff;
}

.inner-header figure figcaption .breadcrumb-item.active {
    color: #fff;
}

.inner-header figure figcaption .breadcrumb-item + .breadcrumb-item::before {
    color: #0babe4;

}

.inner-header figure figcaption .breadcrumb-item.slash::before {
    display: none;
}

/*------------- HOME PAGE STYLE -------------*/

.slider .item figure {
    width: 100%;
    overflow: hidden;
    margin: 0;
    position: relative;
}

/* .slider .item figure::after {
    position: absolute;
    background: #19191b80;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    content: "";
} */

.slider .item figure img {
    height: 75vh;
    object-fit: cover;
}

/* @keyframes zoomEffect {
    from {
        transform: scale(1, 1)
    }

    to {
        transform: scale(2)
    }
} */

/* .slider .active img {
    animation: 45s ease normal none infinite zoomEffect;
} */

.slider .item figcaption {
    position: absolute;
    top: 30%;
    left: 11%;
    width: 40%;
    text-transform: capitalize;
    color: #fff;
    overflow: hidden;
    z-index: 3;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px;
}

.slider .owl-item.active .slide-title-1 {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: slideInLeft;
    animation-delay: 0.3s;
}

.slider .item figcaption .slide-title-2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.slider .owl-item.active .slide-title-2 {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: slideInLeft;
    animation-delay: 0.5s;
}

.slider .owl-item.active .slider-btn {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: slideInUp;
    animation-delay: 0.3s;
}

.owl-theme .owl-dots .owl-dot span {
    width: 15px !important;
    height: 15px !important;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #0babe4 !important;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
    position: absolute;
    transition: all 0.4s ease-out;
    background-color: transparent !important;
    bottom: 0;
    top: 0;
    margin: auto;
}

.owl-nav .owl-prev {
    left: -2%;
}

.owl-nav .owl-next {
    right: -2%;
}

.slider .owl-nav .owl-prev {
    left: 2%;
}

.slider .owl-nav .owl-next {
    right: 2%;
}

.owl-nav span {
    background: #0babe4;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 2rem;
    margin: 10px;
    color: #fff;
    opacity: 0.7;
    transition: 0.2s ease-in-out;
}

.owl-nav span:hover {
    opacity: 1;
}

.owl-nav:focus {
    outline: 0;
}

.owl-theme .owl-dots {
    position: absolute;
    bottom: -2%;
    right: 0;
    left: 0;
    margin: auto;
}

.owl-slider.owl-theme .owl-dots {
    bottom: 2%;

}

/*-------- products section one --------------*/
.products-one figure {
    border-radius: 6px;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.products-one .left img {
    border-radius: 6px;
    height: 100%;
    width: 100%;
    object-fit: cover;

}

.products-one .right img {
    border-radius: 6px;
    height: 300px;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
}

.products-one figure figcaption {
    position: absolute;
    top: calc(100% - 50px);
    left: 0;
    width: 100%;
    height: auto;
    padding: 15px;
    background-color: rgba(86, 86, 86, 0.7);
    color: #fff;
    border-radius: 0 0 6px 6px;
    text-align: center;
    z-index: 2;
    transition: all 0.3s ease-in-out;
}

.products-one figure:hover figcaption {
    top: 50%;
    transform: translateY(-50%) scaleX(0.9) scaleY(0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-flow: column;
    height: 100%;
    border-radius: 6px;
}

.products-one figure figcaption h5 {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0;
}

.section_link a {
    font-size: 1.2rem;
    font-weight: 400;
    color: #0babe4;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    position: relative;
    padding-bottom: 3px;
}

.section_link a::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #0babe4;
    transition: all 0.3s ease-in-out;
}

.section_link a img {
    max-width: 25px;
    margin-bottom: 0;
    transition: all 0.3s ease-in-out;
}

.section_link a:hover::before {
    width: 100%;
}

.section_link a:hover img {
    transform: rotate(360deg);
}

.section_link a span {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 0;
}

/*---------- about section ---------*/
.about {
    background-color: #f7f7f7;
}

.about-text {
    font-size: 1.1rem;
    color: #000;
    margin: 16px;
    text-align: center;
}

/*--------- products-two section -----------*/

.products-two .nav-pills .nav-link {
    background-color: transparent;
    color: #707070;
    border: none;
    padding: 0 30px;
    position: relative;
}

.products-two .nav-pills .nav-link:focus, .nav-link:hover {
    color: #0babe4;
    background-color: transparent;

}

.products-two .nav-pills .nav-link::after {
    position: absolute;
    content: "/";
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.products-two #pills-tab > li:nth-child(4) .nav-link::after {
    display: none;
}

.products-two .nav-pills .nav-link.active,
.products-two .nav-pills .show > .nav-link {
    color: #0babe4;
    background-color: transparent;

}

.products-two .tab-pane {
    min-height: 430px;
}

.products-two .item {
    /* border: 3px solid #d7d6e14a; */
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 95%;
    width: 260px;
    height: 260px;
    margin: 0 auto;
    text-align: center;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 5%;
}

.products-two .item:hover img {
    transform: scale(1.15);
}

.products-two .item small {
    font-weight: bold;
    margin-bottom: 0px;
    max-width: 75%;
}

.products-two .item img {
    object-fit: contain;
    height: 150px;
    max-width: 160px;
    margin-bottom: 10px;
    filter: drop-shadow(0 18px 7px rgba(0, 0, 0, 0.35));
    transition: all 0.3s ease-in-out;
}

/*---------- features section ----------*/
/* .features{
    background-image: url(../images/features-bg.png);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;

}
.features::before{
    position: absolute;
    content: "";
    right: 0;
    top: 60px;
    width: 75%;
    height: calc(100% - 140px);
    background-color: rgba(157, 29, 150, 0.8);
} */
/* .features .image img{
    width: 100%;
    height: auto;
}
.features .content p{
    color: #fff;
    font-size: 1.4rem;
    position: relative;
}
.features .content .btn{
    border: 4px solid #fff;
} */

.counters {
    position: relative;
    background-color: rgba(57, 4, 55, 0.6);
    color: white;
}

.counters::before {
    content: "";
    position: absolute;
    background: url("../images/counter-bg.png") center no-repeat fixed;
    background-size: cover;
    height: 100%;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.counter {
    text-align: center;
    font-weight: bold;
    color: #fff;
}

.counters .counter-no {
    color: #fff;
    font-size: 50px;
    font-weight: bold;
}

.counters .counter-no span {
    color: #fff;
}

.counter-box {
    background: #792b6a;
    position: absolute;
    width: 35%;
    top: 0;
    left: 5%;
    right: 0;
    text-align: center;
    bottom: 0;
    padding: 25px;
}

/* ------- Map section ---------*/
.map-section {
    position: relative;
}

.map-section .map-img img {
    height: calc(100vh - 90px);
    object-fit: contain;
    width: 100%;
}

.map_markers_marker {
    position: absolute;
    cursor: pointer;
}

.map_markers {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.map_markers_marker_pin img {
    width: 1.5em;
    max-width: 2em;
}

.map_markers_marker_flag {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%) scale(0);
    transition: all 1s ease-in-out;
    transform-style: preserve-3d;
    margin-top: 50%;
    margin-left: 50%;
    background-color: #fff;
    padding: 10px 15px;
    width: auto;
    color: #0babe4;
    border-radius: 10px;
    background-image: url(../images/map.png);
    background-size: cover;
    background-position: center;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%) !important;
    z-index: 1;
}

.map_markers_marker:hover .map_markers_marker_flag {
    opacity: 1;
    transform: translateX(-50%) translateY(-50%) scale(1);
}

.map_markers_marker:hover .map_markers_marker_pin {
    opacity: 0;
    transform: scale(0);
}

.map_markers_marker_pin {
    transition: all 0.3s ease-in-out;
}

.map_markers_marker_flag img {
    animation: flag 2s infinite ease-in-out;
    height: auto;
    width: 100%;
    object-fit: contain;
}

/*------------ contact section -----------*/
/*.contact {*/
/*    background-image: url(../images/contact-bg.png);*/
/*    background-position: center;*/
/*    background-size: cover;*/
/*    background-attachment: fixed;*/
/*    position: relative;*/
/*    text-align: center;*/
/*    color: #fff;*/
/*    font-size: 1.1rem;*/
/*}*/

/*--------- Events -----------*/
.events.home {
    /*background-image: url(../images/contact-bg.png);*/
    /*background-position: center;*/
    /*background-size: cover;*/
    /*background-attachment: fixed;*/
    background: #f7f7f7;
}

.event {
    background: #fff;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
    border-radius: 15px;
    min-height: 550px;

}

.events figure {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin: 0;
}

.events .date {
    position: absolute;
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    background-image: linear-gradient(120deg, #0babe4 0%, #000000 100%);
    color: #fff;
    font-size: 14px;
    line-height: 18px;
    border-radius: 5px;
    top: -25%;
    right: 8%;

}

.events .date span {
    font-size: 28px;
    line-height: 18px;
    font-weight: 500;
    line-height: 30px;

}

.events figure img {
    object-fit: cover;
    width: 100%;
    height: 330px;
    object-position: center;
    transition: all 0.3s linear;
}

.events .content li {
    list-style-type: circle;
}

.events .content li::marker {
    color: #0babe4;
    font-size: 25px;

}

.events .figcaption {
    position: relative;
    background-color: #fff;
    min-height: 230px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 0 0 15px 15px;
}

.events .event-content {
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 20px;
}

.events .event-title {
    transition: 0.3s ease-in-out;
}

.events .see {
    display: block;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

.events .see .fa-angle-double-right {
    margin-bottom: -2px;
}

.events .event:hover figure img {
    transform: scale(1.07);
}

.events .event:hover .see {
    color: #0babe4;
}

.subscribe .form-submit {
    width: 100%;
    display: block;
    padding: 10px 20px;
    border: none;
    margin-bottom: 25px;
    background: #0babe4;
    text-align: center;
    color: #fff;
}

.subscribe .form {
    border: 20px solid #0babe4;
}

.subscribe .form input {
    box-shadow: 0px 0px 3px 1px rgb(0 0 0 / 16%) !important;
}

.blog {
    /* background: #fff; */
    /* box-shadow: 0 3px 6px rgb(0 0 0 / 16%); */
    /* border-radius: 15px; */
    /* min-height: 550px; */
}

.blogs figure {
    /* position: relative; */
    /* overflow: hidden; */
    /* border-top-left-radius: 15px; */
    /* border-top-right-radius: 15px; */
    /* margin: 0; */
}

.blogs .date {
    font-size: 14px;
    line-height: 20px;
    color: darkgrey;
}


.blogs figure img {
    object-fit: cover;
    width: 100%;
    height: 330px;
    object-position: center;
    transition: all 0.3s linear;
}

.blogs .content li {
    list-style-type: circle;
}

.blogs .content li::marker {
    color: #0babe4;
    font-size: 25px;

}

.blogs .figcaption {
    position: relative;
    background-color: #fff;
    min-height: 150px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 0 0 15px 15px;
}

.blogs .event-content {
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 20px;
}

.blogs .event-title {
    transition: 0.3s ease-in-out;
}

.blogs .see {
    display: block;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

.blogs .see .fa-angle-double-right {
    margin-bottom: -2px;
}


.events .event:hover .see {
    color: #0babe4;
}

/*----- footer -----*/
footer {
    position: relative;
    background-color: black;
    color: white;
}

footer::before {
    content: "";
    position: absolute;
    background: url("../images/footer2-bg.png") center no-repeat fixed;
    background-size: cover;
    height: 100%;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: -1;
}

footer figure img {
    height: 75px;
}

/* footer::before {
    content: "";
    position: absolute;
    background-color: #080a14db;
    height: 100%;
    width: 100%;
    bottom: 0;
    left: 0;

} */

.footer-title {
    margin: 0;
}

/* footer .footer-title::before {
    position: absolute;
    content: "";
    left: 0;
    height: 3px;
    width: 30px;
    background: linear-gradient(90deg, rgba(199, 199, 197, 1) 0%, rgba(95, 32, 87, 1) 100%);
    top: 0;
    bottom: 0;
    margin: auto;

} */
footer .share-icons {
    position: absolute;
    right: 0;
    bottom: 40%;
    margin: auto;
}

footer .share-icons li {
    padding: 6px 10px;
    background: #0babe4;
    color: #FFF;
    margin: 10px 0;
}

footer li {
    padding-bottom: 15px;
}

footer .social-media a i, footer .social-media a svg {
    color: black;
}

footer .container li i, footer .container li svg {
    color: #0babe4;
}

footer .social-media a {
    background-color: #0babe4;
    padding: 15px;
    height: 40px;
    width: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0;
}

footer .copy {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

footer .nav-link {
    color: #fff;
    padding: 0;
    position: relative;
    margin-left: 25px;
}

footer .nav-link::before {
    position: absolute;
    content: "";
    background: url("assets/images/arrow-right-circle.svg") center no-repeat;
    width: 16px;
    height: 100%;
    left: -25px;
    top: 0;
    bottom: 0;
    margin: auto;
    filter: brightness(0) invert(1);
}

footer * a:hover {
    color: #fff;
}

/*--------------- about-history -----------*/
.about-history .circle {
    border-radius: 50%;
    object-fit: cover;
    width: 400px;
    height: 400px;
}

.about-history figure {
    width: 100%;
    overflow: hidden;
}

.grey-sec {
    background: #efefef;
}

.grey-sec img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.content p {
    font-size: 17px;
    line-height: 1.7;
}

.timeline {
    height: 140vh;
    position: relative;
}

@media (max-width: 767px) {
    .timeline {
        height: auto;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .timeline {
        height: 125vh;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .timeline {
        height: 110vh;
    }
}

.timeline .center_line {
    position: absolute;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 6;
    align-items: center;
    background: #000000;
    width: 2px;
}

.timeline .swiper-slide {
    padding-top: 40px;
    height: auto !important;
}

.swiper-container .swiper-slide:nth-child(even) .timeline_swiper_slide {
    text-align: right;
    width: 50%;
}

.swiper-container .swiper-slide:nth-child(odd) .timeline_swiper_slide {
    margin-left: auto;
    width: 50%;
}

/* .timeline .center_line span{
  position: absolute;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #000000;
  z-index: 5;
  width: 1px;
} */
.timeline .center_line svg {
    transition: all 0.3s ease-in-out;
}

.timeline .center_line svg path {
    transition: all 0.3s ease-in-out;
}

.timeline .center_line svg circle {
    transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
    .timeline .center_line {
        display: none;
    }
}

.timeline_swiper {
    height: 100%;
}

@media (max-width: 767px) {
    .timeline_swiper {
        padding: 25px 0;
    }
}

.timeline_swiper .swiper-wrapper {
    height: 100%;
}

/* .timeline_swiper_slide {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.timeline_swiper_slide.swiper-slide-next {
  padding-top: 50px;
} */
@media (max-width: 767px) {
    .timeline_swiper_slide.swiper-slide-next {
        padding-top: 0;
    }
}

.timeline_swiper_slide.swiper-slide-active {
    padding-top: 40px;
    margin-top: 0;
}

@media (max-width: 767px) {
    .timeline_swiper_slide.swiper-slide-active {
        padding-top: 0;
    }
}


.timeline_swiper_slide .one_story {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .timeline_swiper_slide .one_story {
        margin-bottom: 30px;
        text-align: center;
        align-items: center;
    }
}


.timeline_swiper_slide .one_story p {
    color: #000;
    opacity: 0.8;
    font-size: 14px;
}


.timeline_swiper_slide .one_story .date {
    background: #000000;
    color: #fff;
    width: fit-content;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 3px;
}

@media (max-width: 767px) {
    .timeline_swiper_slide .one_story .date {
        font-size: 20px;
    }
}

.timeline_swiper_slide .one_story .title {
    background: #dbdbdb;
    color: #000000;
    width: 300px;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .timeline_swiper_slide .one_story .title {
        font-size: 18px;
    }
}

.timeline_swiper_slide .one_story p {
    margin-bottom: 0;
}

.timeline_swiper_slide .one_story::before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f6f6f6;
    border: 1px solid #707070;
    position: absolute;
}

@media (max-width: 767px) {
    .timeline_swiper_slide .one_story::before {
        content: none;
    }
}

/*.timeline_swiper_slide_right {*/
/*    width: 50%;*/
/*    margin-left: auto;*/
/*}*/

@media (max-width: 767px) {
    .swiper-container .swiper-slide:nth-child(odd) .timeline_swiper_slide {
        width: 100%;
        padding-top: 0;
    }
}

.swiper-container .swiper-slide:nth-child(odd) .timeline_swiper_slide .one_story {
    padding: 0 40px;
}

.swiper-container .swiper-slide:nth-child(odd) .timeline_swiper_slide .one_story::before {
    left: -10px;
}

@media (max-width: 767px) {
    .swiper-container .swiper-slide:nth-child(odd) .timeline_swiper_slide .one_story {
        padding-left: 0;
        text-align: center;
        align-items: center;
    }
}


@media (max-width: 767px) {
    .swiper-container .swiper-slide:nth-child(even) .timeline_swiper_slide {
        width: 100%;
    }
}

.swiper-container .swiper-slide:nth-child(even) .timeline_swiper_slide .one_story {
    padding: 0 40px;
    align-items: flex-end;
}

.swiper-container .swiper-slide:nth-child(even) .timeline_swiper_slide .one_story::before {
    right: -10px;
}

@media (max-width: 767px) {
    .swiper-container .swiper-slide:nth-child(even) .timeline_swiper_slide .one_story {
        padding-right: 0;
        text-align: center;
        align-items: center;
    }
}

.timeline_swiper .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border: 1px solid #0babe4;
    background-color: transparent;
    opacity: 1;
}

.timeline_swiper
.swiper-pagination-bullets
.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #0babe4;
}

/*---------- about-mission ------------*/
.about-mission .services-rows .row {
    background-color: #F4F4F4;
    margin: 0;
}

.missions-rows .row {
    overflow: hidden;
}

.missions-rows .row:nth-child(2) {
    direction: rtl;
    overflow: hidden;
}

.missions-rows .row:nth-child(2) .mission-content {
    direction: ltr;
    padding-left: 0;
    padding-right: 30px;
    padding-top: 30px;
}

.about-mission img {
    height: 350px;
    width: 100%;
    object-fit: cover;
}

.mission-content {
    padding-right: 30px;
    padding-left: 0;
    width: 90%;
    line-height: 1.7;
    margin: auto;
}

@media (max-width: 1024px) {
}

@media (max-width: 768px) {
}

@media (max-width: 640px) {
}

@media (max-width: 480px) {
    .slider .item figcaption {
        position: absolute;
        width: 80%;
        left: 10%;
        right: 10%;
    }

    .slider .item figcaption .slide-title-2 {
        font-size: 20px;
    }


    .about-history .circle {
        width: 100%;
    }
}

@media (max-width: 360px) {
}

.awardsPage .inner_banner {
    background-image: url("../img/awardsPage/banner.html");
}

.awardsPage .awardsSlider .swiper-slide img {
    width: 100%;
}

.awardsPage .awardsSlider .swiper-slide .text {
    background: #efefef;
    border: 1px solid #707070;
    padding: 12px 0;
    color: #000;
}

.accordion-body {
    overflow: scroll;

}

.accordion-body .table tbody td {
    text-align: center;
    vertical-align: middle;
    border-top: none;
    border-bottom: 0.5px solid rgba(112, 112, 112, 0.4);
    border-right: 0.5px solid rgba(112, 112, 112, 0.4);
}

.accordion-body .table thead th {
    color: #0babe4;
    text-align: center;
    border-top: 0;
    border-bottom: 0.5px solid rgba(112, 112, 112, 0.4);
    border-right: 0.5px solid rgba(112, 112, 112, 0.4);
}

.accordion {
    overflow: hidden;
    clear: both;
    /*  display: grid;*/
    /*grid-template-columns: repeat(2,1fr);*/
}

.accordion-item {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, .125);

}

.accordion-button:not(.collapsed) {
    background: none;
    color: black;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button {
    padding: 1rem 2.25rem;
    font-size: 1.25rem;
    color: #0babe4;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../images/svg.png);
    transform: rotate(0deg);
}

.accordion-button::after {
    position: absolute;
    left: 0;
    transform: rotate(-90deg);
}

.videos .video {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.videos .video-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.video .video-icon {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 70px;
    object-fit: contain;
    margin: auto;
    height: auto;
    z-index: 444;
}

.video .video-title {
    position: absolute;
    left: 0;
    top: 0;
    padding: 8px 15px;
    background-color: #0babe4;
    color: #fff;
    font-weight: 400;
}

.videos iframe {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.modal-content {
    border: 1px solid transparent;
    background-color: #f6f6f6;
}

.features .item:nth-child(2) .feature {
    position: relative;
    z-index: 5;
    background-color: #0babe4;
}

/*----- single product --------*/
.category-title {
    background: #000000;
    color: #fff;
    padding: 5px 20px;
    display: inline-block;
    margin-bottom: 25px;
}

.product-gallery {
    background: #f6f6f6;
}

.product-gallery .prev, .next {
    cursor: pointer;
    position: absolute;
    bottom: 0;
    color: #e8e8e8;
    font-weight: 700;
    font-size: 40px;
    margin: 0 -30px;
    text-decoration: none;
    user-select: none;
}

.overlay-logo {
    position: absolute;
    top: 55%;
    left: 0;
    right: 0;
    margin: auto;
}

.product-gallery .next {
    right: 0;
}

.product-gallery .prev {
    left: 0;
}

.product-gallery .prev:hover,
.product-gallery .next:hover {
    color: #0babe4;
}

.product-gallery .mySlides {
    height: 415px;
    overflow: hidden;
}

.product-gallery .column {
    display: flex;
    justify-content: space-around;
    width: 20%;
    margin: 0;
    padding: 0 5px;
}

.product-gallery .row:after {
    content: "";
    display: table;
    clear: both;
}

.product-gallery .mySlides .slide {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;

}

.product-gallery .demo {
    width: 100%;
    height: 100px;
    object-fit: contain;
    opacity: 0.6;
    border: 3px solid #0babe4;
}

.product-gallery .active,
.demo:hover {
    opacity: 1;
}

/* technical-support */
.form {
    background: #f6f6f6;
    padding: 20px;
    height: 100%;
}

.form input {
    width: 100%;
    display: block;
    padding: 10px 20px;
    border: none;
    margin-bottom: 25px;
    background: #fff;
}

.form textarea {
    width: 100%;
    display: block;
    padding: 10px 20px;
    border: none;
    margin-bottom: 25px;
}

input:focus-visible {
    outline: none;
}

textarea:focus-visible {
    outline: none;
}

/* products page */
.products .item {
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
    height: 100%;
}

.products .item a {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.products .item figure img {
    height: 200px;
    width: 100%;
    object-fit: contain;
    transition: 0.3s ease-in-out;
}

.products .item figure:hover img {
    transform: scale(1.15);
}

.btn.product-btn {
    width: 100%;
    margin: 15px 0;
    color: #fff;
}

.products .nav-pills {
    background: #f2f3f4;
}

.products .nav-pills .nav-link {
    background: transparent;
    border: 1px solid transparent;
    border-bottom: 1px solid #fff;
    margin: 10px 5px;
    padding: 10px;
    font-weight: 500;
    text-align: inherit;
    color: #0babe4;
}

.products .nav-pills .nav-link.all {
    background: transparent;
    color: #000;
    font-size: 1.15rem;
    font-weight: 700;
    text-align: center;
}

.products .nav-pills .nav-link.all:hover {
    color: #fff;
}

.products .nav-pills .nav-link svg {
    /*background: #fff;*/
    /*color: #0babe4;*/
    font-size: 0.5rem;
}

.products .sub-title {
    background: #f2f3f4;
    color: #0babe4;
    text-align: center;
    padding: 5px;
    /*border-radius: 1.5rem;*/
    margin-top: 0.5rem;
}

.cat-button h5 {
    background: #0babe4;
    padding: 10px;
    color: #fff;
}

.products ul.collapse {
    background: #f2f3f4;
}

.products ul.collapse li {
    padding: 10px 0;
    border-bottom: solid 2px rgba(255, 255, 255, 0.7);
    list-style: inside square;
    transition: transform 0.4s ease-in-out;

}

.products ul.collapse li:hover {
    transform: translateX(10px);
    color: #0babe4;
}

/* careers page */
.products .nav-pills .nav-link:hover {
    color: #fff;
    background-color: #0babe4;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #0babe4;
}

.nav-pills .nav-link {
    background: #fff;
    border: 1px solid #0babe4;
    margin: 7px;
    color: #000;
    border-radius: 0;

}

.jobs {
    overflow: scroll;
    height: 550px;
}

.job {
    box-shadow: 0 0 6px #00000029;
    padding: 30px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.job .apply {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.job .department-name {
    font-size: 12px;
    color: #0babe4;
}

.job a svg {
    margin-left: 5px;
}

.job .department-date {
    font-size: 11px;
    color: #6c757d;
    margin-bottom: 0;
}

.job-titles {
    color: #565656;
}

.job-details {
    padding: 30px 20px;
    background-color: #f5f5f5;
}

/* csr page */
.card figure img {
    height: 235px;
    object-fit: cover;
    width: 100%;
    transition: 0.3s ease-in-out;
}

.card figure:hover img {
    transform: scale(1.15);
}

.card figure {
    overflow: hidden;
}

.csr-title {
    text-align: center;
}

.single-news-image img {
    height: 385px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

/*------------ contact page -----------*/
.location-info {
    display: flex;
    align-items: center;
}

.text {
    margin: 25px;
}

.text .title {
    color: #5f2057;
}

.phone-info {
    display: flex;
    align-items: center;
}

.branches-sec iframe {
    width: 100%;
    height: 700px;
}

.branches-side {
    background-color: #efefef;
    padding: 20px 15px;
    height: 700px;
    overflow: scroll;
}

.direction-btn {
    display: flex;
    justify-content: end;
    align-items: center;
}

.direction-btn svg {
    margin: 0 10px;
}

span.location {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.nav-link.location {
    background: transparent;
    border: none;
    color: #000;
}

.nav-link.location.active {
    background: transparent;
    color: #000;
}

.location svg {
    color: #0babe4;
}

.branches-side .details {
    padding: 15px 0;
    border-bottom: 0.5px solid rgba(112, 112, 112, 0.4);
    display: flex;
    flex-direction: column;
    text-align: left;
}

.company {
    overflow: hidden;
}


.company figure img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

.company-page figure img {
    height: 400px;
}

.company-contacts .icon {
    width: 90px;
    height: 90px;
    border: dotted 2px #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.company-contacts .icon svg {
    font-size: 2rem;
    color: #0babe4;
}

.company-contacts .map iframe {
    width: 100%;
    height: 350px;
    backdrop-filter: #f2f3f4;
}

.search-form {
    position: relative;
}

#suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    max-height: 150px;
    overflow-y: auto;
    z-index: 1000;
    display: none; /* Hide initially */
}

#suggestions div {
    padding: 10px;
    cursor: pointer;
}