:root {
  --main-color: #0B6172;
  --yellow-light: hsl(44, 95%, 83%);
  --green-light: hsl(158, 68%, 75%);
  --red-light: hsl(0, 84%, 80%);
  --orange-light: hsl(22, 85%, 80%);
}

/* page loader */
.page-loader {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1001;
  display: flex;
  background-color: var(--white);
}
.page-loader.fade-out {
  opacity: 0;
  transition: all 0.6s ease;
}
.page-loader div {
  margin: auto;
  height: 32px;
  width: 32px;
  border: 4px solid var(--main-color);
  position: relative;
  animation: loader 2s linear infinite;
}
.page-loader div::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: var(--main-color);
  left: 0;
  top: 0;
  animation: loaderIn 2s linear infinite;
}

body {
  margin: 0;
  font-size: 14px;
  font-family: 'cairo', sans-serif;
  font-weight: 400;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
}

@font-face {
  font-family: Cairo;
  src: url('../fonts/Cairo.ttf')
}

@font-face {
  font-family: ElMessiri;
  src: url('../fonts/ElMessiri.ttf')
}

a {
  text-decoration: none !important;
}

.section-title {
  margin-bottom: 60px;
  text-align: center;
}
.section-padding {
  padding: 60px 0;
}
/* bubble animation */
.bubble-animation-item {
  position: absolute;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 2px solid transparent;
  z-index: -1;
}
.bubble-animation-item:nth-child(1) {
  border-color: var(--yellow-light);
  top: 55%;
  left: 12%;
  animation: bubble 30s linear infinite;
}
.bubble-animation-item:nth-child(2) {
  border-color: var(--green-light);
  top: 60%;
  left: 50%;
  animation: bubble 40s linear infinite;
}
.bubble-animation-item:nth-child(3) {
  border-color: var(--red-light);
  top: 90%;
  left: 90%;
  animation: bubble 50s linear infinite;
}
.bubble-animation-item:nth-child(4) {
  border-color: var(--yellow-light);
  top: 120%;
  left: 45%;
  animation: bubble 60s linear infinite;
}
.bubble-animation-item:nth-child(5) {
  border-color: var(--green-light);
  top: 30%;
  left: 10%;
  animation: bubble 70s linear infinite;
}
.bubble-animation-item:nth-child(6) {
  border-color: var(--red-light);
  top: 120%;
  right: 30%;
  animation: bubble 80s linear infinite;
}
.bubble-animation-item:nth-child(7) {
  border-color: var(--red-light);
  top: 40%;
  left: 5%;
  animation: bubble 60s linear infinite;
}
.bubble-animation-item:nth-child(8) {
  border-color: var(--green-light);
  top: 90%;
  right: 33%;
  animation: bubble 70s linear infinite;
}
.bubble-animation-item:nth-child(9) {
  border-color: var(--yellow-light);
  top: 85%;
  left: 55%;
  animation: bubble 80s linear infinite;
}
/* anemation keyframes */
@keyframes bubble {
  0% {
    transform: translateY(0vh);
    opacity: 0;
  }

  5%,
  95% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100vh);
    opacity: 0;
  }
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }

  25%,
  50% {
    transform: rotate(180deg);
  }

  75%,
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loaderIn {

  0%,
  25%,
  100% {
    height: 0%;
  }

  50%,
  75% {
    height: 100%;
  }
}
/* header section */
.header {
  padding: 0 1rem;
  top: 0;
  transition: top .4s ease-in-out;
  width: 100%;
  background-color: #f1f5f9;
  box-shadow: -2px 2px 10px 0 #06011b75
}
.header .navbar {
  padding: 0;
}
.header .navbar #collapsibleNavbar .nav-item .nav-link {
  color: var(--main-color);
  font-size: 16px;
  font-weight: 600;
  padding: 20px 15px 20px;
  line-height: 26px;
  opacity: 0.6;
}
.header .navbar #collapsibleNavbar .nav-item .nav-link.active {
  opacity: 1;
}
.header .navbar #collapsibleNavbar .nav-item .nav-link:hover {
  opacity: 1;
}
.logo img {
  width: 50px;
  display: inline-block;
  margin-bottom: -2px;
  position: relative;
  left: 0px;
}
/* banner section */
.banner-section {
  padding: 80px 0;
  min-height: 680px;
}
.services-section h3,
.banner-text h2 {
  font-size: 22px;
  color: var(--main-color);
}
.banner-text h1 {
  font-size: 45px;
  font-weight: 700;
}
.banner-section .banner-text {
  text-align: right;
  direction: rtl;
}
/* circular image */
.circular-img {
  max-width: 360px;
  margin: auto;
  position: relative;
  z-index: 1;
}
.circular-img-inner {
  text-align: center;
  border-radius: 0 0 180px 180px;
  overflow: hidden;
}
.circular-img-circle {
  height: 360px;
  width: 360px;
  background-color: var(--main-color);
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 50%;
}
.circular-img img {
  position: relative;
  z-index: 1;
}

/* coming soon page */
.home-section {
  padding: 250px 0 300px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-image: url(../img/under\ construction.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.home-section .home-contant h1 {
  font-family: 'Cairo', sans-serif;
  text-align: center;
  font-size: 45px;
  color: #0d6ca3;
  font-weight: 300;
  line-height: 60px;
  margin: 0;
}
.home-section .home-contant p {
  text-align: center;
  color: #0B6172;
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 40px;
  line-height: 35px;
}
/* vision section*/
#vision-section {
  background: rgba(32, 33, 36, 0.1);
  position: relative;
  height: 75vh;
}
.blockvision {
  padding: 20px;
  background: white;
  width: 100%;
}
.blockvision-inner {
  padding: 30px;
  border: 1px solid rgba(32, 33, 36, 0.1);
}
h3 {
  color: var(--main-color);
}
.photovision img {
  height: 75vh;
  width: 50vw;
}
.hover-underline-animation {
  display: inline-block;
  position: relative;
}
.hover-underline-animation::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #EAAC19;
  transition: transform 0.25s ease-out;
}
.hover-underline-animation:hover::after {
  transform: scaleX(1);
}
.hover-underline-animation.center::after {
  transform-origin: bottom center;
}
.hover-underline-animation.center:hover::after {
  transform-origin: bottom center;
}
/*services section*/
.services-text h4,
.services-text p {
  text-align: right;
}
.tab-content .about-title::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 2px;
  right: 0;
  direction: rtl;
  background: #EAAC19;
  bottom: -18px;
  transition: all 0.7s ease;
}
.tab-content .about-title::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  right: 0;
  direction: rtl;
  background: #EAAC19;
  bottom: -8px;
  transition: all 0.7s ease;
}
.tab-content .about-title {
  position: relative;
  right: 0;
  direction: rtl;
}
/*our work section*/
.work-content {
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  background-position: center;
  color: #fff;
  border-radius: 10px;
  position: relative;
  z-index: 2;
  height: 400px
}
.work-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, #340a3100, #16001b);
  z-index: -1;
  border-radius: 10px
}
.work-content .content {
  position: absolute;
  bottom: 20px;
  padding: 0 2rem 1rem
}
.work-content .title-work {
  font-size: 23px;
  font-family: Cairo;
  text-transform: capitalize;
  margin-bottom: 10px
}
.work-content .description {
  font-size: 16px;
  font-family: Cairo;
  margin-bottom: 2rem
}
#work_carousel .owl-nav {
  position: relative;
  bottom: 14rem
}
#work_carousel .owl-nav .owl-prev {
  position: absolute;
  right: -15px
}
#work_carousel .owl-nav .owl-next {
  position: absolute;
  left: -15px
}
#work_carousel .owl-nav button i {
  background: #fdfcfc;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  text-align: center;
  padding: 9px;
  box-shadow: 1px 1px 5px var(--main-color);
}
.centerTest {
  width: 100%;
  text-align: center;
}
/* about page */
.about-banner {
  position: relative;
  z-index: 1;
  padding: 70px 0;
  margin: 0 50px;
}
.bg-img {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat; }


.about-banner::before {
  position: absolute;
  width: 20%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #ffffff;
  content: '';
}
.about-banner .banner-content h2 {
  color: #0B6172;
}
.about-banner .banner-content {
  padding: 80px 10px 80px 10px;
  position: relative;
  z-index: 1;
  left: -15px;
  box-shadow: -10px 10px 40px rgba(0, 0, 0, 0.15);
}
.about-section {
  background-color: #0B6172;
  padding: 80px 0 30px;
}
.about-section .about-img {
  margin: auto;
}
.about-section .about-img img {
  max-width: 600px;
  width: 50vw;
  height: 500px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.about-section .section-title {
  font-family: 'ElMessiri', sans-serif;
  color: #EAAC19;
  text-align: right;
  margin-bottom: 30px;
}
.about-section .about-content p {
  text-align: right;
  font-size: 18px;
  line-height: 24px;
  color: whitesmoke;
  margin: 0;
  font-weight: 600;
}
.about-section .about-content ul li {
  color: whitesmoke;
  text-align: right;
  margin-bottom: 5px;
  line-height: 1.8;
  right: 0;
}
.about-section .about-content ul {
  padding-right: 3%;
}
/* contact section and page*/
.contact-section {
  background-color: #ffffff;
  padding: 80px 0 80px;
}
.contact-section .contact-form .form-control .form-group {
  margin-bottom: 20px;

}
.contact-section .contact-form .form-control {
  height: 50px;
  text-align: right;
  color: #555555;
  border: none;
  border-bottom: 2px solid #d9d9d9;
  border-radius: 0px;
  transition: all 0.5s ease;
}
.contact-section .contact-form textarea.form-control {
  height: 120px;
}
.contact-section .contact-form .form-control:focus {
  box-shadow: none;
}
.contact-section .contact-item {
  position: relative;
  padding-left: 65px;
  margin-bottom: 35px;
  text-align: right;
}
.contact-section .contact-item .icon {
  right: 0;
  height: 50px;
  width: 50px;
  background-color: #F1F5F9;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  top: 0;
  margin: auto;
}
.contact-section .contact-item .icon i {
  line-height: 50px;
  font-size: 20px;
  color: #003B75;
}

.contact-section .contact-item h5 {
  padding-right: 70px;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  margin: 0 0 2px;
  color: #003B75;
}

.contact-section .contact-item p {
  padding-right: 70px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin: 0;
  color: #555555;
}

.mybtn {
  color: white;
  background-color: var(--main-color);
  font-size: 16px;
  font-weight: 600;
  border-radius: 20px;
  padding: 12px 36px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.mybtn:hover {
  background-color: #F1F5F9;
  color: #003B75;
}

.mybtn:focus {
  box-shadow: none;
}

.mybtn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  background-color: rgba(0, 0, 0, 0.1);
  height: 100%;
  z-index: -1;
  transition: all 0.8s ease;
}

.mybtn:hover::before {
  width: 100%;
}
/*footer section*/
footer {
  background: var(--main-color);
  padding: 2rem 0 1rem
}

footer p {
  font-family: 'cairo', sans-serif;
  color: #fff;
  text-align: center
}

footer .social a {
  padding-right: 15px
}

footer .social a i {
  color: #003B75;
  background: #fff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 18px;
  padding: 9px 0;
  text-align: center;
  transform: rotate(0);
  -webkit-transition: all .5s ease;
  transition: all .5s ease
}

footer .social a:hover i {
  transform: rotate(360deg);
  background: #003B75;
  color: #fff
}

/*services page*/
.about-image {
  height: 400px;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.color-bg {
  background: #0B6172;
}

.color-bg h6,
.color-bg p {
  color: white;
}

.color-bg .about-text .weight-outline-btn {
  color: #0B6172;
  background: white;
}

.color-bg .about-text .weight-outline-btn:hover,
.color-bg .about-text .weight-outline-btn:focus {
  background: #0B6172;
  color: white;
}

.about-text .weight-outline-btn {
  color: white;
  background: #0B6172;
}

.about-text .weight-outline-btn:hover,
.about-text .weight-outline-btn:focus {
  background: white;
  color: #0B6172;
}

.about-text {
  padding: 20px 50px 25px 50px;
  text-align: right;
  height: 400px;
  color: #0B6172;
}

.about-text p {
  line-height: 1.8;
}

.about-text ul li {
  line-height: 1.6;
}

.color-bg ul li {
  color: #e0dfdf;
  line-height: 1.6;
}

.weight-outline-btn {
  display: inline-block;
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  border-radius: 5px;
}

h6 {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: bold;
}

h6::after {
  content: " ";
  border: solid 1px #EAAC19;
  display: block;
  width: 95px;
  margin-top: 20px;
}

.nopadding {
  padding: 0;
}

.text {
  overflow: hidden;
  height: 50vh;
}

/* client page*/
.arrow{
  margin: 0 auto;
}
h1.arrow {
	font-size: 2rem;
	text-transform:uppercase;
	color: #0B6172;
	letter-spacing: 4px;
	background:url('../img/h1-bg.png') no-repeat center bottom;
	padding-bottom:30px;
	font-weight: bold;
}
h1.arrow span {
  color: #E04343;
}
.swag {
	padding: 10% 0 70px;
  margin: auto;
}
.swag h1 {
	text-transform:uppercase;
	letter-spacing:0px;
}
.swag h1 span {
	display:block;
	font-size:25px;
	margin-top:20px;
}
.portfolio img {
	height:300px;
	width:100%;
}
img.grayscale {
	/* Firefox 3.5+,IE10 */ filter:gray;
	/* IE6-9 */ -webkit-filter:grayscale(100%);
	/* Chrome 19+& Safari 6+*/ -webkit-transition:all .6s ease;
	/* Fade to color for Chrome and Safari */ -webkit-backface-visibility:hidden;
	/* Fix for transition flickering */
}
img.grayscale:hover {
	filter:none;
	-webkit-filter:grayscale(0%);
}
.row-offset-0 {
	margin-left:0;
	margin-right:0;
}
.row-offset-0>* {
	padding-left:0;
	padding-right:0;
}
.effects {
	padding-left:15px;
}
.effects .img {
	position:relative;
	position:relative;
	z-index:1;
	overflow:hidden;
}
.effects .img:nth-child(n) {
	margin-right:5px;
}
.effects .img:first-child {
	margin-left:-15px;
}
.effects .img:last-child {
	margin-right:0;
}
.effects .img img {
	display:block;
	margin:0;
	padding:0;
	height:auto;
}
.overlay {
	display:block;
	position:absolute;
	z-index:20;
	filter:none!important;
	-webkit-filter:grayscale(0%);
	overflow:hidden;
	transition:all 0.5s;
	-webkit-transition:all 0.5s;
	-moz-transition:all 0.5s;
	-o-transition:all 0.5s;
}
.overlay-effect .img i {
	font-size:30px;
}
.overlay-effect .overlay {
	bottom:0;
	left:0;
	right:0;
	width:100%;
	height:100%;
	opacity:0;
}
.overlay-effect .overlay a.expand {
	left:0;
	right:0;
	bottom:47%;
	margin:0 auto -30px auto;
}
.overlay-effect .img.hover .overlay {
	height:100%;
	opacity:1;
}
.img img {
	width:-webkit-calc(100%+40px) !important;
	width:calc(100%+40px) !important;
	-webkit-transition:opacity 0.35s,-webkit-transform 0.35s;
	transition:opacity 0.35s,transform 0.35s;
	-moz-transition:opacity 0.35s,-moz-transform 0.35s;
	-o-transition:opacity 0.35s,-o-transform 0.35s;
	-webkit-transform:translate3d(-40px,0,0);
	transform:translate3d(-40px,0,0);
	-ms-transform:translate3d(-40px,0,0);
}
.img:hover img {
	-webkit-transform:translate3d(0,0,0);
	transform:translate3d(0,0,0);
	-ms-transform:translate3d(-40px,0,0);
}
