@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900;1000&display=swap');/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
*{
  box-sizing: border-box;
  text-decoration: none;
}
:root{
  --main-color: #3676d1;
  --second-color: white;
  --third-color: black;
  --fourth-color: #00deff;
  --fifth-color:#03446A;

}
body {
  font-family: 'Cairo', sans-serif;
}

a {
  color: var(--main-color);
  text-decoration: none;
}
ul,ol,li{
  padding:0px;
  margin:0px;
  list-style:none;
}

a:hover {
  color: var(--main-color);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cairo', sans-serif;
}
title{
  font-size: 20px !important;
  font-weight: bold !important;
}
::-webkit-scrollbar{
  background-color: var(--second-color);
  width: 6px;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb{
  background: linear-gradient(180deg, #73bde7 0%, #03446A 100%);
  border-radius: 3px;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--second-color);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--main-color);
  border-top-color: #d2f9eb;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: linear-gradient(180deg, #73bde7 0%, #03446A 100%);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: var(--second-color);
  line-height: 0;
}
.back-to-top:hover {
  background: linear-gradient(180deg, #73bde7 0%, #1574ac 100%);
  color: var(--second-color);
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
}
#header.header-transparent {
  background: transparent;
}
#header.header-scrolled {
    background: var(--second-color);
    height: 85px;
    box-shadow: 0px 0px 15px 15px rgb(0 0 0 / 10%);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
}
#header .logo h1 a, #header .logo h1 a:hover {
  color: var(--second-color);
  text-decoration: none;
}
#header .logo img {
    padding: 0;
    margin: 0;
    height: 56px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
	padding: 0;
}
.navbar ul {
	margin: 0 100px 0 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
	width: 100%;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
	  display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 10px;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Cairo', sans-serif;
    color: var(--third-color);
    white-space: nowrap;
    transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar > ul > li > a:before {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 3px;
	right: 30px;
	background-color: var(--fourth-color);
	visibility: hidden;
	width: 0px;
	transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 25px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: var(--third-color);
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
	color: var(--second-color);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}
.mobile-nav-toggle.bi-list{
	color: var(--fifth-color);
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
	.navbar ul {
		display: none;
		width: auto;
		margin: 0;
	}
	.navbar-mobile ul {
		padding: 10px 15px!important;
	}
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, #73bde7 0%, #03446A 100%);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: var(--second-color);
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile > ul > li > a:before {
  left: 20px;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--third-color);
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--third-color);
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  position: relative;
  padding: 120px 0 0 0;
}
#hero:before {
  content: "";
  background: var(--second-color);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero h1 {
  margin: 0 0 20px 0;
  font-size: 10px;
  font-weight: 700;
  line-height: 56px;
  color: var(--second-color);
}
#hero h1 span {
  color: var(--second-color);
  border-bottom: 4px solid var(--main-color);
}
#hero h2 {
    color: var(--third-color);
    font-size: 60px;
    font-weight: 800;
    font-family: 'Cairo', sans-serif;

}
#hero h2 img{
  margin-top: 10px;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
#hero .animated2 {
  animation: up-down 3s ease-in-out infinite alternate-reverse both;
}
#hero .ani_images {
    position: relative;
    min-height: 650px;
}

#hero .ani_images img {
    position: absolute;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 991px) {
  #hero {
    padding-top: 80px;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    max-width: 50%;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;
  }
  #hero h2 {
	font-size: 45px;
    line-height: initial;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
.hero-waves {
  display: block;
  margin-top: 60px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: relative;
}
.img-h{
  height: 100px;
}
.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f5ff;
}

.section-title {
  padding-bottom: 40px;
}


.dividers-header {
	position: relative;
    margin: 20px 0;
}

h2.section-title {
    display: block;
    padding-bottom: 0;
    font-size: 40px;
    font-weight: 800;
    height: 55px;
    margin: 0;
	text-align: inherit;
}
h2.section-title span {
    position: relative;
    z-index: 10;
    color: var(--third-color);
}

.listAll-wrapper {
	text-align: left;
    margin: 15px 0 0 0;
}
.listAll-wrapper .btn {
    padding: 0 0 5px 0;
    border-bottom: 1px solid var(--third-color);
    border-radius: 0;
    margin: 0 10px;
    font-weight: 800;
}



.section-title h2 {
    margin: 0 0 40px 0;
    font-size: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Cairo', sans-serif;
    color: var(--third-color);
}
.section-title h2::after {
    content: "";
    width: 250px;
    height: 5px;
    display: block;
    background: var(--fourth-color);
    margin: 4px auto;
}
.section-title p {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  text-transform: uppercase;
  color: var(--third-color);
  font-family: 'Cairo', sans-serif;
}

.works-no span {
    color: var(--fifth-color);
    font-size: 90px;
    vertical-align: middle;
    margin: 0 9px;
    font-weight: 800;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #fafaff;
  min-height: 40px;
  margin-top: 80px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 64px;
  }
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about {
  margin-top: 15px;
    padding: 40px 0 0 0;
    height: 560px;
    position: relative;
    background: linear-gradient(180deg, #73bde7 0%, #03446A 100%);
    border-top-right-radius: 80%;
    border-top-left-radius: 80%;
}
.logo-about{
  height: 60px;
}
.about h3{
  font-size: 50px;
  font-weight: 800;
  font-family: 'Cairo', sans-serif;
}
.about p{
  font-size: 17px;
  font-family: 'Cairo', sans-serif;
}
/*--------------------------------------------------------------
# About boxs
--------------------------------------------------------------*/
.about-boxs{
    margin-top: -100px;
}
.list-about {
	width: 100%;
    height: 280px;
    padding: 40px;
    margin-top: 60px;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: 0px 10px 35px rgb(0 0 0 / 12%);
    position: relative;
    top: 0;
	transition: all 0.3s ease-in-out 0s;
}
.list-about:hover {
    top: -3px;
}

.list-about h3 {
    font-size: 25px;
    color: var(--second-color);
    margin-bottom: 18px;
    font-family: 'Cairo', sans-serif;
}

.list-about p {
    color: var(--second-color);
    font-weight: 400;
    font-size: 15px;
    font-family: 'Cairo', sans-serif;
}

.list-about.list-about-1 {
    background: linear-gradient(135deg, #03446A 0%, #03446A 100%);
}

.list-about.list-about-2 {
    background: linear-gradient(314.47deg, #C49403 2.43%, #FFE288 117.63%);
}

.list-about.list-about-3 {
    background: linear-gradient(135deg, #03446A 0%, #03446A 100%);
}
/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/
.details .content + .content {
  margin-top: 100px;
}
.details .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.details .content ul {
  list-style: none;
  padding: 0;
}
.details .content ul li {
  padding-bottom: 10px;
}
.details .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--main-color);
}
.details .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--second-color);
  border-bottom: 3px solid var(--second-color);
}
.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}
.gallery .gallery-item:hover img {
  transform: scale(1.1);
}




/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0;
}
.faq .faq-list ul {
  padding: 0;
  list-style: none;
}
.faq .faq-list li + li {
  margin-top: 15px;
}
.faq .faq-list li {
  padding: 20px;
  background: var(--second-color);
  border-radius: 4px;
  position: relative;
}
.faq .faq-list a {
  display: block;
  position: relative;
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}
.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  left: 0;
  right: 20px;
  color: var(--main-color);
}
.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: auto;
  left: 0;
  top: 0;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list a.collapsed {
  color: var(--third-color);
}
.faq .faq-list a.collapsed:hover {
  color: var(--main-color);
}
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
  display: none;
}
@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
}
.contact .info i {
    font-size: 20px;
    color: var(--second-color);
    float: right;
    width: 44px;
    height: 44px;
    background: var(--fifth-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}
.contact .info h3 {
	font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--second-color);
    text-align: center;
}
.contact .info h4 {
    padding: 0 60px 0 0;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--second-color);
}
.contact .info p {
  padding: 0 60px 0 0;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--second-color);
}
.contact .info p a {
    color: var(--second-color);
}
.contact .info p a:hover {
   text-decoration:underline
}
.contact .info p.phone-no {
    direction: ltr;
    text-align: right;
}
.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}
.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
    background: var(--second-color);
    color: var(--fifth-color);
}

.contact .con-form {
    width: 100%;
    background: var(--second-color);
    border-radius: 20px;
    padding: 20px;
}
.contact .con-form .form-group {
  padding-bottom: 8px;
}
.contact .con-form .error-message {
  display: none;
  color: var(--second-color);
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .con-form .error-message br + br {
  margin-top: 25px;
}

.contact .con-form input, .contact .con-form textarea {
  border-radius: 10px;
  box-shadow: none;
  font-size: 14px;
}
.contact .con-form input {
    height: 44px;
    text-align: right;
}
.contact .con-form textarea {
  padding: 10px 12px;
}
.alertspan {
    font-size: 11px;
}
.alert {
    font-size: 13px;
}

.call_us {
    padding: 15px;
    border-radius: 20px;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/************************************************************

				Custom Control Owl Carusel

************************************************************/


.owl-custom-control {
    display: inline-block;
}
.owl-custom-control .owl-theme .owl-nav [class*=owl-] {
	margin: 0 10px 0 0;
    padding: 0;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border: 0;
    color: var(--third-color);
    background-color: var(--second-color);
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.owl-custom-control .custom-nav.owl-nav {
    margin: 0;
    direction: ltr;
}

.owl-custom-control .owl-theme .owl-nav [class*=owl-] i {
    font-size: 32px;
    vertical-align: middle;
    color: inherit;
}

.owl-custom-control .owl-theme .owl-nav [class*=owl-]:hover {
    background-color: #9d9d9d;
    border-color: #9d9d9d;
    color: var(--second-color);
}

.owl-custom-control .owl-theme .owl-controls {
    background: transparent;
    position: static;
    margin: 0;
}


/*--------------------------------------------------------------
# works
--------------------------------------------------------------*/

.list-work {
    margin: 20px 0;
    text-align: center;
}
.list-work a{
    height: 300px;
    display: block;
    border-radius: 15px;
    overflow: hidden;
    transition: all ease-in-out 0.3s;
    box-shadow: 0px 2px 35px rgb(0 0 0 / 7%);
}
.list-work h3 {
    margin: 20px 0 0 0;
    font-size: 24px;
    font-weight: 600;
}

.list-work img {
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    object-fit: cover;
    object-position: center bottom;
}
.list-work:hover img {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.list-service {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    top: 0;
    background-color: var(--second-color);
    height: 250px;
    margin-bottom: 20px;
    padding: 20px 13px;
    text-align: center;
    overflow: hidden;
    border-radius: 15px;
    transition: all ease-in-out 0.1s;
    box-shadow: 0px 2px 35px rgb(0 0 0 / 7%);
}
.list-service:hover {
	top:-2px
}
.list-service img {
    width: 150px;
}

.list-service .img-wrapper {
    margin: 10px 0 20px 0;
}

.list-service h3 {
    font-size: 21px;
    font-weight: 700;
    color: var(--third-color);
    margin: 5px 0 0 0;
}

.list-service .static {
  position:absolute;
  background: var(--second-color);
}

.list-service:hover .static {
  opacity:0;
}

/*--------------------------------------------------------------
# partners
--------------------------------------------------------------*/

.list-partner {
    text-align: center;
    margin-bottom: 25px;
}

.list-partner img {
    height: auto;
    width: auto!important;
    margin: auto;
}
/*--------------------------------------------------------------
# Adviser
--------------------------------------------------------------*/
#adviser {
  background: linear-gradient(180deg, #73bde7 0%, #03446A 100%);
    color: var(--second-color);
    padding: 75px 0;
}
#adviser .saying {
    font-size: 30px;
    font-weight: 400;
    display: flex;
    align-items: center;
}
#adviser .saying:before {
    height: 135px;
    width: 10px;
    background-color: var(--fourth-color);
    content: "";
    display: inline-block;
    float: right;
    margin-left: 20px;
    border-radius: 20px;
}

#adviser .sign-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#adviser .sign h5:nth-child(1) {
    font-size: 18px;
}

#adviser .sign h5:nth-child(2) {
    font-size: 26px;
    margin-bottom: 12px;
}

#adviser .sign h5:nth-child(3) {
    font-size: 14px;
}
/*--------------------------------------------------------------
# Bootstrap
--------------------------------------------------------------*/

.mt-5 {
    margin-top: 5rem!important;
}

.btn-primary {
    color: var(--second-color);
    background-color: var(--fifth-color);
    border-color: var(--fifth-color);
}
.btn-primary:hover {
    color: var(--second-color);
    background-color: #0a5b8a;
    border-color: #0a5b8a;
}
.btn-outline-primary {
    color: var(--third-color);
    border-color: var(--fifth-color);
}
.btn-outline-primary:hover {
    color: var(--second-color);
    background-color: #0a5b8a;
    border-color: #0a5b8a;
}
.btn-check:active+.btn-outline-primary, .btn-check:checked+.btn-outline-primary, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show, .btn-outline-primary:active {
    color: var(--second-color);
    background-color: var(--main-color);
    border-color: var(--main-color);
}
.btn {
    border-width: 3px;
    padding: 10px 25px;
    font-size: 15px;
    border-radius: 10px;
}
.btn-check:focus+.btn-outline-primary, .btn-outline-primary:focus {
    box-shadow: none;
}
.btn-check:focus+.btn-primary, .btn-primary:focus {
    box-shadow: none;
}
.btn-check:active+.btn-primary:focus, .btn-check:checked+.btn-primary:focus, .btn-primary.active:focus, .btn-primary:active:focus, .show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}
.btn-check:active+.btn-outline-primary:focus, .btn-check:checked+.btn-outline-primary:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus, .btn-outline-primary:active:focus {
    box-shadow: none;
}
a.btn.btn-ask {
	color: var(--second-color);
    background-color: var(--fifth-color);
    border: 0;
    font-size: 13px;
    text-align: center;
    display: block;
    font-family: 'Cairo', sans-serif;

}

a.btn.btn-ask:hover {
    color: var(--second-color);
    background-color: #0a5b8a;
}
.form-control:focus {
    border-color: var(--fifth-color);
}
/*--------------------------------------------------------------
# Who we are
--------------------------------------------------------------*/

.box-container {
    margin: 20px 0;
}

.box-container h2.front-title {
    margin: 50px 0 0 0;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    color: var(--fifth-color);
}

.box-container .img-wrapper {
    text-align: center;
    margin: 30px 0 0 0;
}

.box-container .img-wrapper i {
    font-size: 60px;
    color:var(--fifth-color);
    /*background: #BC78EC;
    background: linear-gradient(135deg, #BC78EC 0%, #3B2667 100%);
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;*/
}

.box-container .front-desc {
    font-size: 20px;
    color: #5b5d5f;
}

.box-container h2.back-title {
    color: var(--second-color);
    font-size: 22px;
}

.box-container .back-desc {
    font-size: 15px;
    color: var(--second-color);
    line-height: 1.7;
}



.flip-container {
	perspective: 1000px;
	transform-style: preserve-3d;
	position:relative;
}
.flip-container:hover .front {transform: rotateY(180deg);}
.flip-container:hover .back {transform: rotateY(0deg);}

.flipper {transition: 1s;transform-style: preserve-3d;position: relative;height: 300px;}


.flip-container, .front, .back {
    width: 100%;
    height: 300px;
    margin: 0;
}
.front, .back {
	backface-visibility: hidden;
	transition: 1s;
	transform-style: preserve-3d;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 20px;
	box-shadow: -13px -13px 58px -13px rgb(0 0 0 / 10%);
}
.front {
    background-color: var(--second-color);
    padding: 30px 25px;
	z-index: 2;
	transform: rotateY(0deg);
}

.back {
    background: var(--fifth-color);
    background: linear-gradient(135deg, #00deff 0%, #03446A 100%);
	color:var(--second-color);
    padding: 30px 25px;
	transform: rotateY(-180deg);
}
 
 
 .flipper .front {
	height: 100%;
	position: absolute;
	top: 0;
	z-index: 900;
	-webkit-transform: rotateX(0deg) rotateY(0deg);
	-moz-transform: rotateX(0deg) rotateY(0deg);
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}

.flipper .back {
	height: inherit;
	position: absolute;
	top: 0;
	z-index: 1000;
	-webkit-transform: rotateY(-180deg);
	-moz-transform: rotateY(-180deg);
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	 -o-transition: all .4s ease-in-out;
		transition: all .4s ease-in-out;
}
.flipper.flip .front {
	z-index: 900;
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
}
.flipper.flip .back {
	z-index: 1000;
	-webkit-transform: rotateX(0deg) rotateY(0deg);
	-moz-transform: rotateX(0deg) rotateY(0deg);
}

/*--------------------------------------------------------------
# 
--------------------------------------------------------------*/

.ed-gredient {
    background: linear-gradient(135deg, #00deff 0%, #03446A 100%);
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: linear-gradient(180deg, #73bde7 0%, #03446A 100%);
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;
    padding: 0 0 20px 0;
    color: var(--second-color);
    font-size: 14px;
    height: 230px;
}
#footer .footer-top {
  padding: 20px 0;
}

#footer .footer-top .social-links a {
  font-size: 26px;
  display: inline-block;
  color: var(--second-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
    background: var(--fifth-color);
    color: var(--second-color);
    text-decoration: none;
}
#footer .copyright {
    text-align: center;
}
#footer .copyright a {
    color: var(--second-color);
}
#footer .img-wrapper img {
    height: 50px;
}
#footer .social-links {
    text-align: left;
    direction: ltr;
}

@media (min-width:992px) and (max-width:1399px) {
	.list-about {
		height: 330px;
	}
	/*#footer .footer-top {
		padding: 0;
	}*/
}

@media (min-width: 992px) {
.navbar {
	width: 100%;
}

}
@media (max-width: 991px) {
	#hero .ani_images {
		position: relative;
		min-height: unset;
		margin-top: 50px;
	}
	#hero .hero-img img {
		width: 100%;
		max-width: 100%;
		left: 0;
		top: 0;
	}
	#hero .hero-img img.img1 {
		position: relative;
	}
	h2.section-title {
		height: auto;
		font-size: 32px;
	}
	.list-service {
		height: auto;
		min-height: 230px;
	}
	.section-title h2 {
		margin: 0 0 15px 0;
		font-size: 35px;
	}
	.list-work a {
		height: auto;
	}
}
@media screen and (max-width: 768px) {
	form.con-form {
		margin: 30px 0 0 0;
	}
	.info-wrapper {
		margin: 30px 0 0;
	}
	.call_us {
		padding: 15px 15px 50px;
	}
	#footer {
		font-size: 14px;
		height: auto;
		background-image: none;
		background: linear-gradient(180deg, #73bde7 0%, #2a739e 100%);
	}
	#footer .social-links{
		text-align: center;
	}
	.social-links {
		text-align: center;
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.img-wrapper.f-logo {
		text-align: center!important;
		margin: 20px 0 0 0;
	}
	.list-about {
		height: auto;
	}
	.list-service {
		height: auto;
		min-height: 200px;
	}
	.box-container h2.front-title {
		margin: 25px 0 0 0;
	}
	.flipper {
		height: 250px;
	}

	.flip-container, .front, .back {
		height: 250px;
	}
}

@media screen and (max-width: 550px) {
	.about-boxs {
		margin-top: -100px;
	}
}
/*  login form  */
#body-con{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.background-form{
  width: 430px;
  height: 420px;
  position: absolute;
  transform: translate(-50%,-50%);
  left: 50%;
  top: 50%;
}
.background-form .shape{
  height: 100px;
  width: 100px;
  position: absolute;
  border-radius: 50%;
}
.shape:first-child{
  background: linear-gradient(
    #4580cc,
    #23a2f6
  );
  left: -50px;
  top: -50px;
}
.shape:last-child{
  background: linear-gradient(
      to right,
      #ffc64b,
      #eca94a
  );
  right: -50px;
  bottom: -50px;
}


.logo-form{
  height: 70px;
  text-align: left;
}

.logo-form img{
  height: 55px;
}
.login-form-log{
  z-index: 1001;
  height: 420px;
  width: 470px;
  background-color: white;
  padding: 30px 60px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.login-form-log h6{
  color: #000;
  font-size: 17px;
  text-transform: uppercase;
  font-weight: bold;
}



.log .email, .pass{
  margin-top: 20px;
  margin-bottom: 10px;
  width: 100%;
  height: 50px;
  border: none;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  padding: 0 15px;
  font-size: 16px;
  outline: none;
  color: #f4f4f4;
}

.log .email, .pass:focus{
  background: #fffbfb ;
  color: black;
}


.login-btn-log{
  width: 100% ;
  height: 50px ;
  margin-top: 30px ;
  background: white ;
  color: black;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px ;
  border: none ;
  outline: none ;
  cursor: pointer ;
  text-transform: uppercase ;
  font-weight: 700 ;
  transition: .3s linear ;
  
}



/* CSS */
.button-57 {
  position: relative;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  color: #18181a;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
  padding: 18px 18px 17px;
  text-decoration: none;
  cursor: pointer;
  background: #fff;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-57 span:first-child {
  position: relative;
  transition: color 600ms cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 10;
}

.button-57 span:last-child {
  color: white;
  display: block;
  position: absolute;
  bottom: 0;
  transition: all 500ms cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 100;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translateY(225%) translateX(-50%);
  height: 14px;
  line-height: 13px;
}

.button-57:after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    #4580cc,
    #23a2f6
  );
  transform-origin: bottom center;
  transition: transform 600ms cubic-bezier(0.48, 0, 0.12, 1);
  transform: skewY(9.3deg) scaleY(0);
  z-index: 50;
}

.button-57:hover:after {
  transform-origin: bottom center;
  transform: skewY(9.3deg) scaleY(2);
}

.button-57:hover span:last-child {
  transform: translateX(-50%) translateY(-100%);
  opacity: 1;
  transition: all 900ms cubic-bezier(0.48, 0, 0.12, 1);
}
/*  dash-board  */
.btn-success {
	background-color: var(--fifth-color) !important;
}

.wrapper {
	position: relative;
	width: 100%;
	overflow: auto;
}


#sidebar {
	position: fixed;
	height: 100% !important;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 11;
	width: 260px;
	overflow: auto;
	transition: all 0.3s;
	background-color: #fff;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}


@media only screen and (min-width:992px) {
	#sidebar.active {
		right: -260px;
		height: 100% !important;
		position: absolute !important;
		overflow: visible !important;
		top: 0;
		z-index: 666;
		float: right !important;
		bottom: 0 !important;
	}

	#content {
		width: calc(100% - 260px);
		position: relative;
		float: left;
		transition: all 0.3s;
	}

		#content.active {
			width: 100%;
		}
}


#sidebar .sidebar-header {
	padding: 20px;
	background-color: #fff;
	border-bottom: 1px solid #eee;
	float: right;
}



.sidebar-header h3 img {
	width: 150px;
	margin-right: 10px;
}

#sidebar ul {
	float: right;
}

	#sidebar ul li {
		width: 100%;
		padding: 2px 0px;
		float: right;
	}

		#sidebar ul li.active > a {
			color: white;
			background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(1,82,120,1) 0%, rgba(0,212,255,1) 100%);
		}


			#sidebar ul li.active > a i {
				color: white;
			}



		#sidebar ul li a:hover {
			background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(1,82,120,1) 0%, rgba(0,212,255,1) 100%);
			color: white;
		}


.dropdown-toggle::after {
	position: absolute;
	left: 0;
	top: 18px;
}

#sidebar ul li.dropdown {
	position: sticky;
}


#sidebar ul.component {
	padding: 20px 0px;
}

#sidebar ul li a {
	width: 100%;
	padding: 5px 10px 5px 20px;
	line-height: 30px;
	font-size: 15px;
	position: relative;
	font-weight: 400;
	float: right;
	display: block;
	color: #000;
	text-transform: capitalize;
}

	#sidebar ul li a span {
		float: right;
		margin-right: 10px;
	}

	#sidebar ul li a i {
		position: relative;
		margin-right: 10px;
		top: 6px;
		float: right;
	}

.menu li a {
	text-align: right;
	margin-right: 20px;
	width: 100%;
}

#content {
	position: relative;
	transition: all 0.5s;
	background-attachment: #f9fafc;
}


.top-navbar {
	width: 100%;
	z-index: 9;
	position: relative;
	padding: 15px 30px;
	background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(1,82,120,1) 0%, rgba(0,212,255,1) 100%);
	height: 70px;
}

.main-content {
	padding: 30px 30px 0px 30px;
}



.xp-menubar {
	border-radius: 50%;
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	margin-right: 20px;
	border: none;
	color: #fff;
	cursor: pointer;
	background-color: rgba(0,0,0,0.09);
}


	.xp-menubar span {
		margin: 9px;
		padding: 0px;
		transform: rotate(90deg);
	}

.table-wrapper {
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
	background-color: #fff;
	/* padding: 20px 25px; */
	margin: 25px 0px 40px 0px;
	width: 100%;
	overflow: auto;
	border-radius: 3px;
}

.delete {
	color: red;
}

.edit {
	color: var(--main-color);
}

.table-title {
	background: linear-gradient(90deg, rgba(1,82,120,1) 0%, rgba(0,196,255,1) 93%, rgba(51,221,255,1) 100%);
	color: #fff;
	position: sticky;
	top: 0;
	width: 100%;
	right: 0;
	padding: 10px 30px;
	border-radius: 0px 0px 0 0;
}

	.table-title h2 {
		margin: 5px 0 0;
		font-size: 17px;
	}

	.table-title .btn-group {
		float: right;
	}

	.table-title .btn {
		color: #fff;
		float: right;
		font-size: 13px;
		border: none;
		min-width: 50px;
		border-radius: 2px;
		border: none;
		outline: none !important;
		margin-left: 10px;
	}

		.table-title .btn i {
			float: left;
			font-size: 21px;
			margin-right: 5px;
		}

		.table-title .btn span {
			float: left;
			margin-top: 2px;
		}

table.table tr {
	background-color: white !important;
}

	table.table tr th, table.table tr td {
		border-color: #e9e9e9;
		padding: 5px 15px;
		font-size: 15px;
		font-weight: 400;
		vertical-align: middle;
	}

		table.table tr th:first-child {
			width: 60px;
		}

		table.table tr th:last-child {
			width: 100px;
		}

.table thead tr th {
	font-size: 18px;
	font-weight: bold;
	color: #000;
}

table.table th i {
	font-size: 17px;
	margin: 6px 5px;
	cursor: pointer;
}

table.table td:last-child {
	opacity: 0.9;
	font-size: 22px;
	margin: 0px 5px;
}


table.table td i {
	font-size: 19px;
}







/-------modal-style start------/
.modal {
	justify-content: center;
}

.modal .modal-dialog {
	max-width: 400px;
}

.modal .modal-header, .modal .modal-body, .modal .modal-footer {
	padding: 20px 30px;
}

.modal .modal-content {
	border-radius: 3px;
}

.modal .modal-footer {
	background: #ecf0f1;
	border-radius: 0 0 3px 3px;
}

.modal .modal-title {
	display: inline-block;
}

.modal .form-control {
	border-radius: 2px;
	box-shadow: none;
	border-color: #dddddd;
}

.modal textarea.form-control {
	resize: vertical;
}

.modal .btn {
	border-radius: 2px;
	min-width: 100px;
	outline: none;
}

.modal form label {
	font-weight: normal;
}

.form-group label {
	float: right;
}


#sidebar.show-nav, .body-overlay.show-nav {
	transform: translateY(0%);
	opacity: 1;
	display: block;
	z-index: 15;
}



@media only screen and (max-width:992px) {
	#sidebar {
		position: fixed;
		top: 0;
		bottom: 0;
		z-index: 10;
		width: 260px;
		transform: translateX(100%);
		transition: all 150ms linear;
		box-shadow: none !important;
	}

	.body-overlay {
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
		display: none;
		visibility: hidden;
		opacity: 0;
		z-index: 3;
		transition: all 150ms linear;
		background-color: rgba(0,0,0,0.5);
	}

	.xp-topbar {
		display: flex;
		justify-content: left;
	}
}
	   
	   /*-------modal-style start------*/
       .modal{
		justify-content: center;
	   }
	   .modal .modal-dialog{
		   max-width:400px;
	   }
	   .modal .modal-header, .modal .modal-body,.modal .modal-footer{
		   padding:20px 30px;
	   }
	   .modal .modal-content{
		   border-radius:3px;
	   }
	   
	   .modal .modal-footer{
		   background:#ecf0f1;
		   border-radius:0 0 3px 3px;
		   justify-content: space-between;
	   }
   
	   .modal .modal-title{
		   display:inline-block;
	   }
	   
	   .modal .form-control{
		   border-radius:2px;
		   box-shadow:none;
		   border-color:#dddddd;
	   }
	   
	    .modal textarea.form-control{
			resize:vertical;
		}
		
		  .modal .btn{
			  border-radius:2px;
			  min-width:100px;
			  outline: none;
		  }
		  
		  .modal form label{
			  font-weight:normal;
		  }

		   
		   
		   
		   #sidebar.show-nav, .body-overlay.show-nav{
			   transform:translatex(0%);
			   opacity:1;
			   display:block;
			   visibility:visible;
			   z-index:15;
		   }

	
	
	@media only screen and (max-width:992px){
		#sidebar{
			position:fixed;
			top:0;
			 bottom:0;
			 z-index:10;
			 width:260px;
			 transform:translatex(-100%);
			 transition:all 150ms linear;
			 box-shadow:none!important;
		}
		
		.body-overlay{
			position:fixed;
			top:0;
			left:0;
			width:100%;
			height:100%;
			display:none;
			visibility:hidden;
			opacity:0;
			z-index:3;
			transition:all 150ms linear;
			background-color:rgba(0,0,0,0.5);
		}
	}