@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,700,800');

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  outline: none;
}

body {
  direction: ltr;
  font-family: 'Tajawal', 'Montserrat', sans-serif;
  font-weight: normal;
  color: #585858;
  background-color: #2f2f2f;
  font-size: 1.6em;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

a {
  color: #15478f;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

a:hover, a:focus, a:active {
  color: #1161d3;
  text-decoration: none;
}

.wrap-load {
  background-color: #fff;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  position: fixed;
  z-index: 99999;
}

.wrap-load .loadicon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
  right: 0;
  left: 0;
}

.cssload-thecube {
  width: 34px;
  height: 34px;
  margin: 0 auto;
  margin-top: 22px;
  position: relative;
  transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
}

.cssload-thecube .cssload-cube {
  position: relative;
  transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
}

.cssload-thecube .cssload-cube {
  float: right;
  width: 50%;
  height: 50%;
  position: relative;
  transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
}

.cssload-thecube .cssload-cube:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(208,233,245);
  animation: cssload-fold-thecube 1.68s infinite linear both;
  -o-animation: cssload-fold-thecube 1.68s infinite linear both;
  -ms-animation: cssload-fold-thecube 1.68s infinite linear both;
  -webkit-animation: cssload-fold-thecube 1.68s infinite linear both;
  -moz-animation: cssload-fold-thecube 1.68s infinite linear both;
  transform-origin: 100% 100%;
  -o-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  -webkit-transform-origin: 100% 100%;
  -moz-transform-origin: 100% 100%;
}

.cssload-thecube .cssload-c2 {
  transform: scale(1.1) rotateZ(90deg);
  -o-transform: scale(1.1) rotateZ(90deg);
  -ms-transform: scale(1.1) rotateZ(90deg);
  -webkit-transform: scale(1.1) rotateZ(90deg);
  -moz-transform: scale(1.1) rotateZ(90deg);
}

.cssload-thecube .cssload-c3 {
  transform: scale(1.1) rotateZ(180deg);
  -o-transform: scale(1.1) rotateZ(180deg);
  -ms-transform: scale(1.1) rotateZ(180deg);
  -webkit-transform: scale(1.1) rotateZ(180deg);
  -moz-transform: scale(1.1) rotateZ(180deg);
}

.cssload-thecube .cssload-c4 {
  transform: scale(1.1) rotateZ(270deg);
  -o-transform: scale(1.1) rotateZ(270deg);
  -ms-transform: scale(1.1) rotateZ(270deg);
  -webkit-transform: scale(1.1) rotateZ(270deg);
  -moz-transform: scale(1.1) rotateZ(270deg);
}

.cssload-thecube .cssload-c2:before {
  animation-delay: 0.205s;
  -o-animation-delay: 0.205s;
  -ms-animation-delay: 0.205s;
  -webkit-animation-delay: 0.205s;
  -moz-animation-delay: 0.205s;
}

.cssload-thecube .cssload-c3:before {
  animation-delay: 0.42s;
  -o-animation-delay: 0.42s;
  -ms-animation-delay: 0.42s;
  -webkit-animation-delay: 0.42s;
  -moz-animation-delay: 0.42s;
}

.cssload-thecube .cssload-c4:before {
  animation-delay: 0.625s;
  -o-animation-delay: 0.625s;
  -ms-animation-delay: 0.625s;
  -webkit-animation-delay: 0.625s;
  -moz-animation-delay: 0.625s;
}

@keyframes cssload-fold-thecube {
  0%, 10% {
    transform: perspective(63px) rotateX(-180deg);
    opacity: 0;
  }

  25%,
				75% {
    transform: perspective(63px) rotateX(0deg);
    opacity: 1;
  }

  90%,
				100% {
    transform: perspective(63px) rotateY(180deg);
    opacity: 0;
  }
}

@-o-keyframes cssload-fold-thecube {
  0%, 10% {
    -o-transform: perspective(63px) rotateX(-180deg);
    opacity: 0;
  }

  25%,
				75% {
    -o-transform: perspective(63px) rotateX(0deg);
    opacity: 1;
  }

  90%,
				100% {
    -o-transform: perspective(63px) rotateY(180deg);
    opacity: 0;
  }
}

@-ms-keyframes cssload-fold-thecube {
  0%, 10% {
    -ms-transform: perspective(63px) rotateX(-180deg);
    opacity: 0;
  }

  25%,
				75% {
    -ms-transform: perspective(63px) rotateX(0deg);
    opacity: 1;
  }

  90%,
				100% {
    -ms-transform: perspective(63px) rotateY(180deg);
    opacity: 0;
  }
}

@-webkit-keyframes cssload-fold-thecube {
  0%, 10% {
    -webkit-transform: perspective(63px) rotateX(-180deg);
    opacity: 0;
  }

  25%,
				75% {
    -webkit-transform: perspective(63px) rotateX(0deg);
    opacity: 1;
  }

  90%,
				100% {
    -webkit-transform: perspective(63px) rotateY(180deg);
    opacity: 0;
  }
}

@-moz-keyframes cssload-fold-thecube {
  0%, 10% {
    -moz-transform: perspective(63px) rotateX(-180deg);
    opacity: 0;
  }

  25%,
				75% {
    -moz-transform: perspective(63px) rotateX(0deg);
    opacity: 1;
  }

  90%,
				100% {
    -moz-transform: perspective(63px) rotateY(180deg);
    opacity: 0;
  }
}

.container-fluid {
  padding-right: 0;
  padding-left: 0;
}

@media (min-width: 1900px) {
  .container {
    width: 1470px;
  }
}

.wrap-all {
  position: relative;
  z-index: 90;
  background-color: #fff;
  background-image: url("images/home-bg.png");
  background-size: 100%;
  background-repeat: no-repeat;
  box-shadow: 0px 20px 60px rgba(0,0,0,0.08);
}

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

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

::-webkit-scrollbar-thumb {
  background: #15478f;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}

.header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.header.fixed {
  position: fixed;
  background-color: #fff;
  animation: fadeInDown 0.3s;
  box-shadow: 0px 0px 30px rgba(0,0,0,0.06);
}

.header .logo {
  padding: 45px 30px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.header .logo img {
  height: 75px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.header.fixed .logo {
  padding: 15px 30px;
}

.header.fixed .logo img {
  height: 40px;
}

.header .menu-head {
}

.header .menu-head .wrapmenu-head {
  display: inline-block;
  float: right;
}

.header .menu-head .change-lang {
  display: inline-block;
  float: right;
  font-size: 0.7em;
  direction: rtl;
}

.header .menu-head .change-lang *[data-lang*="ar"] {
  direction: rtl;
}

.header .menu-head .change-lang .active {
  display: none;
}

.header .menu-head .change-lang .active {
  display: none;
}

.slicknav_menu {
  display: none;
}

.header .menu-head ul {
  margin: 0;
  padding: 0;
  list-style: none;
  float: right;
}

.header .menu-head ul li {
  display: inline-block;
  float: left;
  position: relative;
}

.header .menu-head ul li::after {
  content: "";
  position: absolute;
  bottom: 55px;
  left: 20px;
  width: 0%;
  height: 2px;
  background-color: rgba(255,255,255,0);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.header.fixed .menu-head ul li::after {
  bottom: 15px;
}

.header .menu-head ul li:hover::after {
  width: 20%;
  background-color: #86c2de;
}

.header .menu-head ul li a {
  display: block;
  position: relative;
  color: #fff;
  line-height: 60px;
  padding: 52px 20px;
  font-size: 1.15em;
}

.header.fixed .menu-head ul li a {
  line-height: 70px;
  padding: 0 20px;
  font-size: 1em;
  color: #15478f;
}

.header .menu-head ul ul {
  position: absolute;
  left: 0;
  width: 220px;
  background-color: #fff;
  box-shadow: -15px 15px 20px 0 rgba(0,0,0,0.04);
  top: 120px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  display: none;
  animation: fadeInUp 0.2s;
  padding: 15px 0;
  z-index: 99999;
}

.header .menu-head ul ul::after {
  content: "";
  position: absolute;
  top: -16px;
  border: 8px solid rgba(0,0,0,0);
  border-bottom-color: rgba(255,255,255,1);
  left: 11%;
}

.header .menu-head ul ul ul {
  left: 100%;
  top: 0;
}

.header .menu-head ul ul ul::after {
  top: 10%;
  left: -16px;
  border-bottom-color: rgba(255,255,255,0);
  border-right-color: rgba(255,255,255,1);
}

.header.fixed .menu-head ul ul {
  top: 100%;
}

.header.fixed .menu-head ul ul ul {
  top: 0;
}

.header .menu-head li li {
  display: block;
  float: none;
  position: relative;
}

.header .menu-head li li::after {
  display: none;
}

.header.fixed .menu-head li li::after {
  display: none;
}

.header .menu-head li li a {
  display: block;
  position: relative;
  color: #86c2de;
  line-height: 40px;
  padding: 0px 20px;
  font-size: 1em;
}

.header .menu-head li li:hover > a {
  color: #15478f;
}

.header.fixed .menu-head li li a {
  line-height: 40px;
  padding: 0 20px;
  font-size: 1em;
  color: #86c2de;
}

.header .menu-head li:hover > ul {
  display: block;
}

.header .menu-head .fa-bars {
  font-size: 0.6em;
  float: right;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  opacity: 0.5;
}

.header .menu-head li li  .fa-bars {
  right: 15px;
}

.slider {
  height: 90vh;
  overflow: hidden;
  max-width: 100%;
}

.slider .owl-stage-outer {
  overflow: visible;
}

.slider .owl-nav {
  position: absolute;
  bottom: 10vh;
  left: 15px;
  font-size: 3em;
}

.slider .owl-nav div {
  display: inline-block;
  float: right;
  margin: 0 15px;
  opacity: 0.3;
}

.slider .one-slide {
  position: relative;
  height: 90vh;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -ms-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

.slider .active .one-slide {
  opacity: 1;
}

.slider .one-slide .slide-cntn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.slider .one-slide .slide-cntn h1 {
  margin: 0 0 15px;
  padding: 0 0 15px;
  font-size: 1em;
  color: #86c2de;
  font-weight: 500;
}

.slider .one-slide .slide-cntn h2 {
  margin: 0 0 15px;
  padding: 0 0 15px;
  font-size: 2.6em;
  color: #15478f;
}

.slider .one-slide .slide-cntn .slidebtn {
  display: inline-block;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
  -webkit-border-radius: 50px;
  border-radius: 50px;
  padding: 18px 35px;
  margin-right: 15px;
  font-size: 1em;
  color: #86c2de;
  line-height: 1;
  position: relative;
  top: 0;
  background-color: #fff;
}

.slider .one-slide .slide-cntn .slidebtn:hover {
  box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.08);
  top: -2px;
}

.slider .one-slide .slide-img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.slider .one-slide .slide-img img {
  min-width: none;
  width: auto;
  max-width: 100%;
  height: auto;
}

.slider .active .one-slide .slide-img img {
  animation: fadeInRight 2s;
}

.welcomebox {
  text-align: center;
  padding: 0 0 150px;
  background-image: url("images/r-bg.png");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-image: -moz-linear-gradient( 99deg, rgb(247,247,247) 50%, rgba(255,255,255,0) 50%);
  background-image: -webkit-linear-gradient( 99deg, rgb(247,247,247) 50%, rgba(255,255,255,0) 50%);
  background-image: -ms-linear-gradient( 99deg, rgb(247,247,247) 50%, rgba(255,255,255,0) 50%);
  position: relative;
}

.welcomebox::after {
  content: "";
  background-image: url("images/r-bg.png");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  width: 317px;
  height: 631px;
  position: absolute;
  top: 0;
  right: 0;
}

.box-title {
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}

.box-title h1 {
  margin: 0 0 20px;
  padding: 0 0 30px;
  position: relative;
  font-size: 1.6em;
  color: #15478f;
}

.box-title h1::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0 auto;
  width: 12px;
  height: 12px;
  background-color: #d0e9f5;
  -webkit-border-radius: 50px;
  border-radius: 50px;
}

.box-title p {
  margin: 0 0 0;
  padding: 0 0 0;
  font-size: 1em;
  color: #86c2de;
  font-weight: 500;
}

.welcomebox-cntn {
  position: relative;
  z-index: 99;
}

.welcomebox-cntn p {
  max-width: 60%;
  margin: 0 auto 30px;
  line-height: 1.8;
  font-weight: 300;
  font-size: 1.1em;
  color: #585858;
}

.welcomebox-cntn p {
  max-width: 60%;
  margin: 0 auto 15px;
  line-height: 1.8;
  font-weight: 300;
  font-size: 1.1em;
  color: #585858;
}

.welcomebox-cntn .aboutbtn {
  display: inline-block;
  margin-bottom: 30px;
  font-weight: 500;
  font-weight: 1.1em;
  padding: 18px 22px 16px 22px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  line-height: 1;
  background-color: #fff;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.02);
}

.welcomebox-cntn .aboutbtn .fa {
  display: inline-block;
  margin-right: 5px;
}

.servicesbox {
  background-color: rgb(247,247,247);
  padding: 80px 0 150px;
}

.services-timeline {
  position: relative;
}

.services-timeline {
  position: relative;
}

.services-timeline::after {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  width: 4px;
  margin: 0 auto;
  background-color: rgba(0,0,0,0.06);
  -webkit-border-radius: 50px;
  border-radius: 50px;
}

.services-timeline .one-service-timeline .one-ft-box {
  float: left;
}

.services-timeline .one-service-timeline:nth-child(even)  .one-ft-box {
  float: right;
}

.services-timeline .one-service-timeline .one-ft-box::after , .services-timeline .one-service-timeline .one-ft-box::before {
  content: "";
  position: absolute;
  right: -6px;
  top: 30px;
  width: 12px;
  height: 12px;
  background-color: #174b94;
  -webkit-border-radius: 50px;
  border-radius: 50px;
}

.services-timeline .one-service-timeline .one-ft-box::before {
  background-color: #86c2de;
  animation: blurMe 1s infinite;
  filter: blur(0px);
}

.services-timeline .one-service-timeline:nth-child(even) .one-ft-box::before {
  animation: blurMe 1.5s infinite;
}

.services-timeline .one-service-timeline:nth-child(even) .one-ft-box::after, .services-timeline .one-service-timeline:nth-child(even) .one-ft-box::before {
  right: auto;
  left: -6px;
}

@-webkit-keyframes blurMe {
  0% {
    box-shadow: 0px 0px 0px 0 #86c2de;
    opacity: 0.2;
    filter: blur(1px);
  }

  20% {
    box-shadow: 0px 0px 0px 15px #86c2de;
    opacity: 0.2;
  }

  100% {
    box-shadow: 0px 0px 0px 0 #86c2de;
    opacity: 0;
  }
}

@keyframes blurMe {
  0% {
    box-shadow: 0px 0px 0px 0 #86c2de;
    opacity: 0.2;
    filter: blur(1px);
  }

  20% {
    box-shadow: 0px 0px 0px 15px #86c2de;
    opacity: 0.2;
  }

  100% {
    box-shadow: 0px 0px 0px 0 #86c2de;
    opacity: 0;
  }
}

.clearfix::after, .clearfix::before {
  clear: both;
  display: table;
  content: " ";
}

.services-timeline .one-service-timeline {
  margin-bottom: 40px;
}

.services-timeline .one-service-timeline .one-ft-box {
  position: relative;
  padding-right: 100px;
  padding-top: 15px;
}

.services-timeline .one-service-timeline:nth-child(even) .one-ft-box {
  position: relative;
  padding-right: 0;
  padding-left: 100px;
}

.services-timeline .one-service-timeline .one-ft-box .one-ft-icon {
  float: right;
  position: absolute;
  right: 30px;
  top: 15px;
}

.services-timeline .one-service-timeline:nth-child(even) .one-ft-box .one-ft-icon {
  float: left;
  right: left;
  left: 30px;
}

.services-timeline .one-service-timeline .one-ft-box h2 {
  margin: 0 0 15px;
  padding: 0;
  font-size: 1.2em;
  color: #15478f;
}

.services-timeline .one-service-timeline .one-ft-box p {
  margin: 0;
  color: #585858;
  font-weight: 300;
  font-size: 1.1em;
}

.box-more-btn {
  text-align: center;
  padding: 30px 0 0;
}

.box-more-btn a {
  text-align: center;
  display: inline-block;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
  -webkit-border-radius: 50px;
  border-radius: 50px;
  padding: 18px 45px;
  margin-right: 15px;
  font-size: 1.1em;
  color: #86c2de;
  line-height: 1;
  position: relative;
  top: 0;
  background-color: #fff;
}

.box-more-btn a:hover {
  box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.08);
  top: -2px;
}

.partnersbox {
  padding: 80px 0;
  background-color: #fff;
}

.s-box-title {
  position: relative;
  margin: 0 0 60px;
  display: run-in;
  color: #15478f;
  padding-left: 20px;
  font-size: 1.3em;
}

.s-box-title::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 0 15px;
  height: 10px;
  width: 10px;
  background-color: #d1eaf5;
  -webkit-border-radius: 50px;
  border-radius: 50px;
}

.partners-caros {
  padding: 0;
}

.partners-caros .owl-dots {
  position: absolute;
  bottom: -30px;
  right: 0;
  left: 0;
  text-align: center;
}

.partners-caros .owl-dots div {
  display: inline-block;
  margin: 0 8px;
  width: 10px;
  height: 10px;
  background-color: #d1eaf5;
  -webkit-border-radius: 12px;
  border-radius: 12px;
}

.partners-caros .owl-dots div.active {
  background-color: #15478f;
}

.partners-caros .one-partner-c {
  text-align: center;
}

.partners-caros .one-partner-c img {
  width: auto;
  min-width: none;
  height: 80px;
  max-width: 100%;
  margin: 0 auto;
}

.contactus {
  background-color: #fbfbfb;
  background-image: url("images/map-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  padding: 120px 0;
}

.contactus .box-contact-info {
  background-color: #c7e2ef;
  -webkit-border-radius: 18px;
  border-radius: 18px;
  background-image: -moz-linear-gradient( 32deg, rgb(199,226,239) 0%, rgb(170,210,230) 100%);
  background-image: -webkit-linear-gradient( 32deg, rgb(199,226,239) 0%, rgb(170,210,230) 100%);
  background-image: -ms-linear-gradient( 32deg, rgb(199,226,239) 0%, rgb(170,210,230) 100%);
  overflow: hidden;
}

.contactus .box-contact-info > div {
  padding: 30px;
  position: relative;
  padding-right: 80px;
}

.contactus .box-contact-info > div > .fa {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.8em;
  color: #fff;
}

.contactus .box-contact-info > div > p {
  padding: 0;
  margin: 0 0 5px;
  font-size: 1.1em;
  color: #fff;
}

.contactus .box-contact-info > div > span {
  color: #124388;
  font-family: 'Montserrat';
  font-weight: 600;
  font-size: 1em;
  direction: rtl;
  display: block;
  margin-bottom: 10px;
}

.btn-contact-send {
  text-align: center;
  margin-top: 30px;
}

.btn-contact-send a {
  display: inline-block;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
  -webkit-border-radius: 50px;
  border-radius: 50px;
  padding: 18px 35px;
  margin-right: 15px;
  font-size: 1em;
  color: #86c2de;
  line-height: 1;
  position: relative;
  top: 0;
  background-color: #fff;
}

.btn-contact-send a:hover {
  box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.08);
  top: -2px;
}

.foot-bar {
  background-color: #333333;
  color: #fff;
}

.foot-bar .menu-foot {
  float: left;
  display: inline-block;
  clear: left;
}

.foot-bar .menu-foot ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.foot-bar .menu-foot ul ul {
  display: none !important;
}

.foot-bar .menu-foot ul li {
  display: inline-block;
}

.foot-bar .menu-foot ul li a {
  display: inline-block;
  padding: 0 18px;
  line-height: 80px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  font-size: 1em;
}

.foot-bar .menu-foot ul li:hover > a {
  color: rgba(255,255,255,1);
}

.foot-bar .foot-social {
  display: inline-block;
  float: right;
  clear: right;
}

.foot-bar .foot-social a {
  display: inline-block;
  float: right;
  font-size: 1.6em;
  color: rgba(255,255,255,0.5);
  line-height: 80px;
  margin: 0 8px;
}

.foot-wrap {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 10;
}

.footer {
  background-color: #2f2f2f;
  padding: 60px;
}

.footer p {
  display: inline-block;
  float: left;
  color: rgba(255,255,255,0.2);
  font-size: 0.8em;
}

.footer a.toot {
  display: inline-block;
  float: right;
  width: 71px;
  height: 34px;
  text-indent: -9999px;
  background-image: url("images/toot.png");
  opacity: 0.3;
}

.footer a.toot:hover {
  opacity: 1;
}

.content-area {
  margin: 170px 0 80px;
  background-color: #fff;
  box-shadow: -5px 5px 20px 0 rgba(0,0,0,0.08);
  -webkit-border-radius: 16px;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  background-image: url("images/bg-c-ltr.png");
  background-repeat: no-repeat;
  background-position: top right;
}

.content-area::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  height: 150px;
  width: 3px;
  background-color: #d1eaf5;
}

.content-area-services {
  margin: 170px 0 80px;
  background-color: #fff;
  -webkit-border-radius: 16px;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  background-image: url("images/bg-c-ltr.png");
  background-repeat: no-repeat;
  background-position: top right;
}

.page-header {
  position: relative;
  margin: 0 0 60px;
  padding: 0;
  border: 0;
  text-align: center;
}

.page-header .page-title {
  margin: 0 0 30px;
  padding: 0 0 30px;
  font-size: 1.8em;
  color: #15478f;
  position: relative;
  padding-left: 30px;
}

.page-header .page-title span {
  color: #191919;
}

.page-header .page-title::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  height: 11px;
  width: 11px;
  background-color: #d1eaf5;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  margin: 0 auto;
}

.archive-description {
}

.archive-description p {
  font-weight: 300;
  opacity: 0.8;
}

.one-arch-post {
  border-bottom: 1px solid rgba(0,0,0,0.04);
  padding: 0 0 30px;
  margin: 0 0 30px;
  position: relative;
  padding-left: 260px;
  min-height: 180px;
}

.one-arch-post .img-arch-post {
  position: absolute;
  left: 0;
  top: 0;
  width: 220px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  overflow: hidden;
  background-color: rgba(0,0,0,0.05);
  min-height: 140px;
}

.one-arch-post .img-arch-post img {
  width: 100%;
  height: auto;
  -webkit-border-radius: 12px;
  border-radius: 12px;
}

.one-arch-post .cntn-arch-post {
}

.one-arch-post .cntn-arch-post h2 {
  font-size: 1.6em;
  padding: 0 0 8px;
  margin: 0;
}

.one-arch-post .cntn-arch-post span {
  display: block;
  font-size: 0.9em;
  font-weight: 300;
  color: #191919;
  margin-bottom: 15px;
  opacity: 0.5;
}

.one-arch-post .cntn-arch-post span .fa {
  margin-right: 2px;
}

.one-arch-post .cntn-arch-post p {
  display: block;
  font-size: 1em;
  font-weight: 300;
  color: #191919;
  line-height: 1.8;
}

.thepagination {
  padding: 15px 0;
  text-align: center;
  font-family: 'Montserrat';
}

.thepagination a, .thepagination span {
  display: inline-block;
  margin: 0 2px;
  font-size: 1.2em;
  font-weight: 600;
  background-color: rgba(0,0,0,0.04);
  color: #adadad;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
}

.thepagination span.current {
  background-color: #86c2de;
  color: #fff;
}

.thepagination span.current , .thepagination a:hover {
  background-color: #86c2de;
  color: #fff;
}

.thepagination span.dots {
  opacity: 0.5;
}

.entry-meta, .entry-footer {
  display: block;
  color: #585858;
}

.entry-meta span, .entry-footer span {
  display: inline-block;
  margin-right: 25px;
}

.entry-meta a, .entry-footer a {
  color: #585858;
}

.entry-content {
  margin-bottom: 60px;
  font-weight: 300;
  font-size: 1.2em;
  line-height: 1.8;
}

.entry-content p {
  text-align: justify;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  margin: 40px 0 15px;
  color: #86c2de;
  font-size: 1.4em;
  font-weight: 400;
}

.comments-area {
  margin: 40px 0 0 0;
  padding: 40px 0 0 0;
}

.comments-area .comments-title, .comments-area .comment-reply-title {
  padding: 0;
  margin: 0 0 15px;
  font-size: 1.2em;
  color: #585858;
  background-image: none;
  -webkit-text-fill-color: #585858;
}

.comments-area {
  list-style: none;
}

.comments-area ol {
  list-style: none;
  margin-bottom: 30px;
}

.comments-area .comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 30px;
}

.comments-area .comment-list .comment-body {
  border-left: 1px solid rgba(0,0,0,0.06);
  padding: 15px;
  margin-bottom: 15px;
  position: relative;
  padding-top: 20px;
  padding-left: 30px;
}

.comments-area .comment-list .comment-body .comment-meta {
}

.comments-area .comment-list .comment-body .comment-meta .avatar {
  -webkit-border-radius: 50px;
  border-radius: 50px;
  margin-right: 5px;
  position: absolute;
  left: -15px;
  top: 15px;
}

.comments-area .comment-list .comment-body .comment-meta .says {
  display: none;
}

.comments-area .comment-list .comment-body .comment-meta .comment-metadata {
  font-size: 0.8em;
  opacity: 0.5;
  color: #333333;
  text-align: right;
  margin: 0 0 5px;
}

.comments-area .comment-list .comment-body .comment-meta .comment-metadata a {
  color: #333333;
}

.comments-area .comment-list .comment-body .comment-content {
  padding: 5px;
  font-size: 1em;
}

.comments-area .comment-list .comment-body .comment-content p {
  line-height: 1.8;
  color: #999999;
}

.comments-area .comment-list .comment-body .reply {
}

.comments-area .comment-list .comment-body .reply a {
  padding: 0px 20px 3px;
  background-color: rgba(0,0,0,0.1);
  color: #858585;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  font-size: 0.8em;
  display: inline-block;
}

.one-service-arch {
  margin: 0 0 30px;
}

.one-service-arch .wrap-service-arch {
  border: 1px solid rgba(0,0,0,0.04);
  padding: 30px 18px;
  text-align: center;
  background-color: #fff;
  -webkit-border-radius: 18px;
  border-radius: 18px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  top: 0;
  box-shadow: 0;
}

.one-service-arch:hover .wrap-service-arch {
  top: -5px;
  box-shadow: 5px 5px 20px rgba(0,0,0,0.04);
}

.one-service-arch .wrap-service-arch span {
  display: block;
  margin: 0 0 30px;
}

.one-service-arch .wrap-service-arch h2 {
  padding: 0;
  margin: 0 0 20px;
  font-size: 1.4em;
}

.one-service-arch .wrap-service-arch p {
  margin: 0;
  padding: 0;
  font-size: 0.9em;
  line-height: 1.8;
  color: rgba(0,0,0,0.4);
}
