/********** Template CSS **********/
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
	--black: #000000;
	--white: #fff;
}

@font-face {
  font-family: 'Noto Kufi Arabic';
  font-style: normal;
  font-weight: normal;
  src: url(fonts/NotoKufiArabic-Regular.ttf) format('truetype');
		}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: normal;
  src: url(fonts/PlayfairDisplay-Regular.ttf) format('truetype');
		}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: normal;
  src: url(fonts/Barlow-Regular.ttf) format('truetype');
		}
@font-face {
    font-family: 'twt-x';
    src: url(fonts/twt-x.woff) format('woff');
    font-weight: normal;
    font-style: normal;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*body {
	margin:0;
	font-family:'Barlow','Noto Kufi Arabic',sans-serif;
	font-size:1rem;
	font-weight:500;
	line-height:1.5;*/
}
/*** Heading ***/

h1,
h2,
.fw-bold {
    font-weight: 800 !important;
	font-family: 'Playfair Display','Noto Kufi Arabic', sans-serif;
}

/***h1 {text-shadow: 2px 2px #3A454B;
}***/

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
	font-family: 'Playfair Display','Noto Kufi Arabic', sans-serif;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
	font-family: 'Playfair Display','Noto Kufi Arabic', sans-serif;
}
h7,
.fw-little {
    font-weight: 400 !important;
	font-family: 'Playfair Display','Noto Kufi Arabic', sans-serif;
	color:#000000; !important;
}

/*** Button ***/
.btn {
    font-family: 'Barlow','Noto Kufi Arabic', sans-serif;
    font-weight: 500;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
	/*margin:0 0 0 10px;*/
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-fb {
    background: linear-gradient(45deg, #1877F2, #0027DC);
    transition: background 0.3s ease;

}

.btn-fb:hover {
    background: linear-gradient(45deg, #0027DC, #1877F2);
}

.btn-x {
    background: linear-gradient(45deg, #515151, #000000);
    transition: background 0.3s ease;
}

.btn-x:hover {
    background: linear-gradient(45deg, #0C0C0C, #515151);
}

.btn-wt {
    background: linear-gradient(45deg, #25D366, #128C7E);
    transition: background 0.3s ease;
}
 
.btn-wt:hover {
    background: linear-gradient(45deg, #128C7E, #25D366);
}

.btn-li {
    background: linear-gradient(45deg, #2198D7, #1581E2);
    transition: background 0.3s ease;
}

.btn-li:hover {
    background: linear-gradient(45deg, #0067CB, #2198D7);
}

.btn-inst {
    border: solid #f77737 1px;
    background: linear-gradient(-80deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d, #f56040, #f77737, #fcaf45, #ffdc80);
	background: -webkit-linear-gradient(-80deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d, #f56040, #f77737, #fcaf45, #ffdc80);
	background: -moz-linear-gradient(-80deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d, #f56040, #f77737, #fcaf45, #ffdc80);
	background: -o-linear-gradient(-80deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d, #f56040, #f77737, #fcaf45, #ffdc80);
}

.btn-inst:hover {
    background: linear-gradient(-80deg, #833ab4, #5851db, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d, #f56040, #fcaf45);
	background: -webkit-linear-gradient(-80deg, #833ab4, #5851db, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d, #f56040, #fcaf45);
	background: -moz-linear-gradient(-80deg, #833ab4, #5851db, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d, #f56040, #fcaf45);
	background: -o-linear-gradient(-80deg, #833ab4, #5851db, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d, #f56040, #fcaf45);
}

.btn-prt {
    background: linear-gradient(45deg, #F00000, #700000);
    transition: background 0.3s ease;
}

.btn-prt:hover {
    background: linear-gradient(45deg, #700000, #F00000);
}

.btn-tlg {
    background: linear-gradient(45deg, #00D5FF, #0088CC);
    transition: background 0.3s ease;
}

.btn-tlg:hover {
    background: linear-gradient(45deg, #0088CC, #00D5FF);
}


.last:hover {
    color: #06A3DA;
}


.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-group {
    /*width: 90px;*/
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.img-log {
	width:60px;
	margin-right:10px;
}

.img-log:hover {
	opacity:60%;
    transform: rotate(-360deg);
    transition: .3s;
}

.img-logf {
	width:100px;
}

.img-logf:hover {
	opacity:60%;
    transform: rotate(-360deg);
    transition: .3s;
}

.shadow {
	--tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
	box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

.a-sb {
	border-bottom: dotted 1px #60B5FC;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Barlow','Noto Kufi Arabic', sans-serif;
    position: relative;
    margin-right: 15px;
    padding: 30px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.navbar-dark .navbar-nav .nav-link a {
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }
    
	.nav-item {
		padding-right: 10px;
		width: 100%;
    }
    
	.nav-item:hover {
        background: #EAF4FF;
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
	
	.dropdown-menu {
        margin-top: 2px;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -5px;
        /*right: 50%;*/
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        right: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    width: 100%;
    right: 5px;
    /*margin-right: -75px;*/
}

.section-title.section-title-sm::before {
    width: 100%;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 2%; } 50% { left : 98%; } 100% { left: 2%; }
}

@-webkit-keyframes section-title-run-center {
    0% {left: 5%; } 50% { left : 95%; } 100% { left: 5%; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 100%; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}

.icont {
    transform: rotate(-45deg);
	width: 60px;
	height: 60px;
	border:solid #06A3DA 1px;
}
.icont i {
    transform: rotate(45deg);
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
    opacity: 60%;
}

.band {
    opacity: 0;
	/*border:solid #fff 5px;*/
	/*border-top:0;*/
	/*border-bottom:0;*/
    transition: .3s;
}

.blog-item:hover .band {
    opacity: 1;
    transition: .3s .1s;
}

.dropdown-item:hover,.dropdown-item:focus {
/*color:#000000;
background-color:#EAF4FF;*/
color:#fff;
background-color:#06A3DA;
}

/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 25px;
    bottom: 25px;
	border:solid #00CDCD 4px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../images/bg-head.jpg) center center no-repeat;
    background-size: cover;
	background-attachment: fixed;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}
.link-animated2 a {
    transition: .5s;
}

.link-animated2 a:hover {
    padding-left: 30px;
    /*padding-right: 30px;*/
}

.link-foot {
color: #60B5FC;
border-bottom: dotted 1px #60B5FC;
}
.link-foot:hover {
color: #FFFFFF;
border-bottom: dotted 1px #FFFFFF;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

@media (min-width: 991.98px) {
	.carousel-indicators .indic {
		margin-bottom:10%;
		}
    }

.carousel-indicators .indic {
        height: 10px;
		width:10px;
		background-color: #06A3DA;
		border: solid 0;
		opacity: 1;
    }

.carousel-indicators .indic.active {
		background-color: #fff;
		opacity: 1;
    }
	
#deb {
	position:absolute;
	height:0;
	margin-top:-140px;
    }
	
@media (max-width: 991.98px) {
    #deb, .deb1, .bi.bi-chevron-double-down {
        display: none;
		}
    }
	
#contactForm .btn {
	border-radius: 3px;
    }

#contactForm .form-control {
	width: 100%;
	padding: 4px;
	box-sizing: border-box;
	border-radius: 3px;
	border:solid #06A3DA;
}

.input-group input.form-control {
	border:solid #06A3DA;
}

.success {
	background-color: #007D3F;
	color: #fff;
	padding: 5px;
	text-align: center;
	border-radius: 5px;
}
.error {
	background-color: #ff0000;
	color: #fff;
	padding: 5px;
	text-align: center;
	border-radius: 5px;
}

textarea.form-control::placeholder, input.form-control::placeholder {
    font-style: italic;
    color: #DCDCDC;
}
textarea.form-control::placeholder, input.form-control::-webkit-input-placeholder { /* Chrome, Safari, Edge */
    font-style: italic;
    color: #DCDCDC;
}

textarea.form-control::placeholder, input.form-control:-moz-placeholder { /* Firefox 18- */
    color: #DCDCDC;
}

textarea.form-control::placeholder, input.form-control::-moz-placeholder { /* Firefox 19+ */
    color: #DCDCDC;
}

textarea.form-control::placeholder, input.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #DCDCDC;
}

.rounded-top-1 {
	border-top-left-radius:.2rem !important;
	border-top-right-radius:.2rem !important;
	}
.rounded-end-1 {
	border-top-right-radius:.2rem !important;
	border-bottom-right-radius:.2rem !important;
	}
.rounded-bottom-1 {
	border-bottom-right-radius:.2rem !important;
	border-bottom-left-radius:.2rem !important;
	}
.rounded-start-1 {
	border-bottom-left-radius:.2rem !important;
	border-top-left-radius:.2rem !important;
	}
.rounded-top-3 {
	border-top-left-radius:.3rem !important;
	border-top-right-radius:.3rem !important;
	}
.rounded-end-3 {
	border-top-right-radius:.3rem !important;
	border-bottom-right-radius:.3rem !important;
	}
.rounded-bottom-3 {
	border-bottom-right-radius:.3rem !important;
	border-bottom-left-radius:.3rem !important
	}
.rounded-start-3 {
	border-bottom-left-radius:.3rem !important;
	border-top-left-radius:.3rem !important;
	}
	
.rounded-top-start-3 {
	border-top-left-radius:.3rem !important;
	}
.rounded-top-end-3 {
	border-top-right-radius:.3rem !important;
	}
.rounded-bottom-start-3 {
	border-bottom-left-radius:.3rem !important
	}
.rounded-bottom-end-3 {
	border-bottom-right-radius:.3rem !important;
	}
.rounded-top-50 {
	border-top-left-radius:50% !important;
	border-top-right-radius:50% !important;
	}
.rounded-top-5 {
	border-top-left-radius:.6rem !important;
	border-top-right-radius:.6rem !important;
	}
.rounded-bottom-5 {
	border-bottom-left-radius:.6rem !important;
	border-bottom-right-radius:.6rem !important;
	}
.rounded-5 {
	border-radius:.6rem !important;
	}
.rounded-50 {
	border-radius:50% !important;
	}
	
/* Masquer tout par défaut lors de l'impression */
@media print {
  body * {
    visibility: hidden;
  }
  /* Afficher uniquement le bloc cible et ses enfants */
  #bloc-imp, #bloc-imp * {
    visibility: visible;
  }
  /* Positionner le bloc en haut de la page imprimée */
  #bloc-imp {
    position: absolute;
    left: 0;
    top: 0;
  }
}




