/*General*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;600;700;800&display=swap');
body {
    font-family: 'Poppins', sans-serif;
    color: #444444;
}
body.direction-rtl{
  direction:rtl;
  font-family: 'Tajawal', sans-serif;
}
a {
  color: #1977cc;
  text-decoration: none;
}

a:hover {
  color: #3291e6;
  text-decoration: none;
}
.small-hdng{
  font-size:20px;
  text-transform: uppercase;
  color:#06A8E0;
  font-weight: 700;
}
#main{
  background-color:#051c24;
  position:relative;
}
.news-detail{
    background-color:#051c24;
}
#main:after{
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: -210px;
  width: 100%;
  height: 210px;
  background: url(../img/footer-shape.png) no-repeat;
  background-size: cover;
  z-index: 1;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1977cc;
  border-top-color: #d1e6f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@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: 25px;
  bottom: 45px;
  z-index: 996;
  transition: all 0.4s;
}
.direction-rtl .back-to-top{
  right:auto;
  left:25px;
}
.back-to-top i {
  font-size: 38px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background:#3dbae6;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 25px 0px 15px;
  background-color:transparent;
}
#header.fixed-top{
  position:absolute;
}

#header.header-scrolled {
  top: 0;
}

#header .logo {
  margin: 0;
  padding: 0;
  text-align:center;
  width:210px;
}

.footer-logo{
  width:250px;
  display:inline-block;
}

#header a.lang-btn {
  color: #ffffff;
  text-align:center;
}

#header .logo img {
  max-height: 60px;
  display:inline-block;
  margin-bottom:0px;
}
#header .logo span{
  display:block;
  font-size:20px;
  color:#ffffff;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 0px 20px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 24px;
  white-space: nowrap;
  transition: 0.3s;
  padding: 5px 2px;
  color: #FFFFFF;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #FFFFFF;
  opacity:0.8;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 20px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #082744;
  border: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #1977cc;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #ffffff;
  font-size: 26px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  margin-top:-8px;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 992px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(28, 47, 65, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 45px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  height:auto;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #2c4964;
  border: none;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #1977cc;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #1977cc;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


/*Header Section*/
.header-bnr{
  width: 100%;
  background: url("../img/top-bnr-bg.png") top center;
  background-size: cover;
  position:relative;
}
.header-bnr img.top-vector{
  margin-top:40px;
  max-width:100%;
}
.direction-rtl .header-bnr img.top-vector{
  float:left;
}
.header-bnr img.mid-vector{
  position: absolute;
  right: -120px;
  z-index: 1;
  top: 110px;
}
#slider-section {
  width: 100%;
  background-size: cover;
  padding:0px;
  position:relative;
}
.header-bnr .top-bnr-row{
  align-items:center;
  padding:100px 0px;
}
.header-bnr  .top-bnr-row .small-hdng{
  color:#ffffff;
  position:relative;
  z-index:10;
}
#slider-section .container {
  position: relative;
}
.btn-apps{
    width:150px;
    display:inline-block;
}
.btn-apps img{
    max-width:100%;
}
#slider-section h1 {
  margin: 0;
  font-size: 74px;
  font-weight: 800;
  line-height: 84px;
  color: #3B2F80;
  position:relative;
  z-index:10;
}
body.direction-rtl #slider-section h1{
    font-size:70px;
}
#slider-section h6{
  margin: 10px 0 15px;
  font-size: 25px;
  font-weight:600;
  line-height: 35px;
  color: #3B2F80;
  position:relative;
  z-index:10;
}
#slider-section h6 span{
  color:#ffffff;
}
#slider-section p {
  color: #ffffff;
  margin: 10px 0 0 0;
  font-size: 24px;
}

#slider-section .btn-contact-us {
  padding:16px 35px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.032em;
  background: #FFFFFF;
  border-radius: 32px;
  text-transform: uppercase;
  margin-top: 30px;
  transition: 0.5s;
  color: #191919;
  display: inline-block;
}

#slider-section .btn-contact-us:hover {
  opacity:0.7;
}

#slider-section .img-wrap{
  text-align: right;
}

@media (min-width: 1024px) {
  #slider-section {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #slider-section {
    margin-bottom: 0;
  }

  #slider-section .container {
    padding-bottom: 63px;
  }

  #slider-section h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #slider-section h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.hor-h2{
  font-style: normal;
  font-weight: 800;
  font-size: 48px;
  text-align: center;
  color: #ffffff;
  margin-bottom:50px;
}
.hor-h2 span{
  color:#2E77D3;
}

section {
  padding: 20px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f1f7fd;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #2c4964;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #1977cc;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about{
  padding:80px 0px 0px;
}
.about h3{
  font-weight: 700;
  font-size: 48px;
  color: #213D39;
  margin:30px 0px;
  position:relative;
}
.about h3:before{
  content: '';
  position: absolute;
  background: url("../img/about-heading-shape.png");
  width: 178px;
  height: 178px;
  left: -40px;
  top: -24px;
  z-index:-1;
}
.about .hor-h2{
  text-align:left;
  margin-bottom:30px;
  margin-top:20px;
}
.direction-rtl .about .hor-h2{
  text-align:right;
}
.about p{
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #ffffff;
  margin:25px 0px;
}
.about .icons-wrap{
  display:flex;
  justify-content: space-between;
  margin-top:30px;
}
.about .icons-wrap span{
  font-size:16px;
  font-weight: 700;
  color:#ffffff;
  margin-left:10px;
}
.direction-rtl .about .icons-wrap span{
  margin-left:0px;
  margin-right:10px;
}
.about .img-wrap img{
  position:relative;
  top:-30px;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# News-section
--------------------------------------------------------------*/
.news{
  padding:50px 0px 250px;
  position:relative;
}
.news .hor-h2{
  font-size:36px;
  font-weight:500;
  text-align:left;
}
.direction-rtl .news .hor-h2{
  text-align:right;
}
.news-vector{
  position:absolute;
  bottom:0px;
  width:100%;
}
.direction-rtl .news-vector{
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.news .news-slider .news-slide{
  width:405px !important;
}
.swiper-slide.swiper-slide-active, .swiper-slide.swiper-slide-next, .swiper-slide.swiper-slide-next + .swiper-slide, .swiper-slide.swiper-slide-prev {
  visibility: visible;
  opacity: 1;
}
.swiper-slide{
  visibility: hidden;
  opacity:1;
}
.news .news-slider .news-slide .img-wrap{
  border-radius:10px;
  overflow:hidden;
}
.news .news-slider .news-slide .img-wrap img{
  width:100%;
}
.news .news-slider .news-slide .contnt-wrap .author-detail{
  padding:20px 0px;
  display:flex;
  justify-content: space-between;
}
.news .news-slider .news-slide .contnt-wrap .author-detail span{
  color:#C8C8C8;
  font-size:12px;
  font-weight:500;
  line-height:24px;
}
.news .news-slider .news-slide .contnt-wrap .author-detail div span:last-child{
  padding-left:25px;
  position:relative;
}
.news .news-slider .news-slide .contnt-wrap .author-detail div span:last-child:after{
  content:"";
  width: 6px;
  height: 6px;
  background-color: #C8C8C8;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  bottom:8px;
}
.news .news-slider .news-slide .contnt-wrap .wrap{
  text-align:left;
}
.news .news-slider .news-slide .contnt-wrap .wrap h4{
  color:#FFFFFF;
  font-size:24px;
  font-weight:700;
  line-height:34px;
}
.news .news-slider .news-slide .contnt-wrap .wrap p{
  color:#FFFFFF;
  font-size:12px;
  font-weight:500;
  line-height:20px;
  margin:10px 0px 20px;
}
.news .news-slider .news-slide .contnt-wrap .wrap a{
  color:#06A8E0;
  font-size:12px;
  font-weight:600;
  line-height:20px;
  margin:10px 0px 20px;
}
.news .news-slider .news-slide .contnt-wrap .wrap a i{
  transform:rotate(70deg);
}
/*--------------------------------------------------------------
# community Section
--------------------------------------------------------------*/
.community{
  padding: 20px 0px;
}
.community .hor-h2{
  margin-bottom:0px;
}
.community .hdng-row{
  position:absolute;
  top:40px;
  left:0px;
  right:0px;
}
.community .planes-vector{
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  width: 70%;
  left: 0px;
  right: 0px;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding-top:440px;
  background: #3dbae6;
  position:relative;
}
#footer .footer-top {
  padding: 10px 0 20px 0;
  background: #3dbae6;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
  margin-top: 30px;
}
.direction-rtl #footer .footer-top .footer-contact, .direction-rtl #footer .footer-newsletter{
  margin-top:0px;
}
#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  color: #ffffff;
  margin-bottom: 0;
  margin-top:30px;
}

#footer .footer-top h4 {
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  text-transform: capitalize;
  color: #ffffff;
  margin-top:100px;
}
#footer .footer-links{
  margin-top:30px;
}
#footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#footer .footer-links.terms-condtn ul{
    justify-content: end;
}
#footer .news-letter-wrap{
  position: absolute;
  top: -285px;
  width: 100%;
  background-color: #3dbae6;
  z-index: 10;
  padding: 80px 70px;
  box-shadow: 0px 0px 60px 0px rgb(0 0 0 / 29%);
  border-radius: 10px;
  display:flex;
  align-items:center;
}
.direction-rtl #footer .news-letter-wrap{
  top: -310px;
}
#footer .news-letter-wrap .input-group{
  background-color:#ffffff;
  border-radius:5px;
}
#footer .news-letter-wrap .input-group .form-control{
  font-size:16px;
  font-weight:400;
  color:#2B3D51;
  border: none;
  padding:25px 20px;
  border-radius:5px;
}
#footer .news-letter-wrap .input-group .form-control:focus{
  outline:none;
  box-shadow:none;
}
#footer .news-letter-wrap .input-group .input-group-append{
  padding:10px;
}
#footer .news-letter-wrap .input-group .input-group-text{
  background-color: #3B2F80;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  box-shadow: none;
  border: none;
  padding: 15px 34px;
  justify-content: center;
}
#footer .news-letter-wrap h6{
  font-size:32px;
  font-weight:400;
  color:#ffffff;
  margin:0px;
}
#footer .footer-links ul li {
  padding: 0px 10px;
}

#footer .footer-links ul a {
  color: #ffffff;
  font-size:18px;
  transition: 0.3s;
  display: inline-block;
  font-weight:700;
}

#footer .footer-links ul a:hover {
  text-decoration: none;
  opacity:0.8;
}
#footer .footer-links.terms-condtn{
  margin-top:0px;
}
#footer .footer-links.terms-condtn ul a{
  font-weight:400;
  font-size:14px;
}
body.direction-rtl #footer .footer-links.terms-condtn ul a{
    font-weight: 600;
}
#footer .social-links{
  margin-top:30px;
}
#footer .social-links a {
  display: inline-block;
  margin-right: 10px;
  transition: 0.3s;
  width:32px;
  height:32px;
}
#footer .social-links a:last-child{
  margin-right:0px;
}
.direction-rtl #footer .social-links a:last-child{
  margin-right:10px;
}
#footer .social-links a img{
  width:100%;
}
#footer .social-links a:hover {
  opacity: 0.7;
  text-decoration: none;
}
.footer-newsletter{
  text-align:right;
  margin-top:30px;
}
.direction-rtl .footer-newsletter{
  text-align: left;
}
.footer-newsletter .vision{
    width:105px;
}
.footer-bottom{
  background-color:#3dbae6;
}
.footer-bottom .container{
  border-top:1px solid #3b90b6;
}
.footer-bottom .copyright{
  text-align:left;
  font-size: 14px;
  font-weight: 400;
  color:#ffffff;
}
.direction-rtl .footer-bottom .copyright{
  text-align:right;
}
.email-wrap{
  display: flex;
  margin-top:25px;
  justify-content: end;
}
.email-wrap .email span{
  display: inline-block;
  font-weight: 400;
  font-size: 17px;
  line-height: 15px;
  color: #ffffff;
}
.email-wrap .email a{
  font-weight: 500;
  font-size: 17px;
  margin-left:5px;
  line-height: 20px;
  display: inline-block;
  align-items: center;
  color: #3B2F80;
  text-decoration:underline;
}

/*Contact Us Modal*/
.contactUs .modal-content{
  background-color: #3dbae6;
  border-radius: 25px;
}
.contactUs .modal-body{
  padding:0px;
  height:712px;
  background-color: #3dbae6;
  border-radius: 25px;
}
.contactUs .wrap{
  display: flex;
  background-color:#3dbae6;
  height:100%;
  border-radius: 25px;
}
.contactUs .wrap .form-wrap form .input-group .error {
  position: absolute;
  bottom: -25px;
  font-size: 12px;
  color: #dc3545 !important;
  font-weight: 600;
}
.contactUs .wrap .img-wrap{
  width:48%;
  display:flex;
  align-items: center;
  position:relative;
}
.contactUs .wrap .img-wrap .album-vector{
  position:absolute;
}
.contactUs .wrap .img-wrap .album-vector.top{
  top:0px;
  right:-115px;
}
.contactUs .wrap .img-wrap .album-vector.bot{
  bottom:0px;
  left:0px;
}
.contactUs .wrap .form-wrap{
  width:52%;
  padding:70px 120px;
  background-color: #051C24;
  z-index: 1;
  border-radius: 50px 25px 25px 50px;
}
.direction-rtl .contactUs .wrap .form-wrap{
    border-radius:25px 50px 50px 25px;
}
.contactUs .wrap .form-wrap h4{
  font-weight: 700;
  font-size: 34px;
  line-height: 46px;
  color: #FFFFFF;
}
.contactUs .wrap .form-wrap p{
  font-size: 18px;
  line-height: 30px;
  color: #FFFFFF;
}
.contactUs .wrap .form-wrap form{
  margin-top:50px;
}
.contactUs .wrap .form-wrap form .input-group{
  background-color: #ffffff;
  border-radius: 8px;
  /*margin-bottom: 10px !important;*/
  border: 1px solid #E8ECF4;
  padding: 8px 10px;
}
.contactUs .wrap .form-wrap form .input-group.btn-wrap{
  background-color:transparent;
  margin-bottom:0px !important;
  border:none;
  padding:0px;
}
.contactUs .wrap .form-wrap form .form-control{
  background-color:#ffffff;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  border:0px;
  padding-left:0px;
  padding-bottom: 5px;
  border-radius:8px !important;
  color:#8391A1;
}
.contactUs .wrap .form-wrap form .form-control:focus{
  outline:none;
  box-shadow:none;
}
.contactUs .wrap .form-wrap form .input-group-text{
  background-color:transparent;
  border:0px;
}
.contactUs .wrap .form-wrap form .input-group-text{
  color:#ffffff;
  padding-left: 0px;
  font-size: 24px;
}
.contactUs .wrap .form-wrap form .form-control::placeholder {
  color:#8391A1;
  opacity:1;
}
.contactUs .wrap .form-wrap form .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color:#8391A1;
}
.contactUs .wrap .form-wrap form .form-control::-ms-input-placeholder { /* Microsoft Edge */
  color:#8391A1;
}
.contactUs .wrap .form-wrap form .input-group:last-child{
  border:none;
}
.contactUs .wrap .form-wrap form .btn-submit{
  padding: 16px;
  width: 100%;
  background: #89D3EF;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #ffffff;
  border:none;
  margin: 30px auto 0;
  transition:.3s;
}
.contactUs .wrap .form-wrap form .btn-submit:hover{
  opacity:0.7;
}
.contactUs .wrap .form-wrap button.close{
  background-color: transparent;
  border: none;
  font-size: 50px;
  position: absolute;
  top: 10px;
  line-height: 40px;
  right: 20px;
  padding: 0px;
  color: #ffffff;
}

/*News Single*/
.header-bnr.news-single{
  background: #3dbae6 none;
  height:auto;
}
.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}
.header-bnr.news-single section, .header-bnr.news-single section .container-fluid{
  padding:0px;
  position:relative;
}
.news-top-bnr{
    opacity: 60%;
  width:100%;
}
.header-bnr.news-single .news-bnr-hdng{
  position: absolute;
  top: 40%;
  width: 35%;
  left: 0px;
  right: 0px;
  margin: 0 auto;
  text-align: center;
}
.header-bnr.news-single .news-bnr-hdng h1{
  font-size:50px;
  line-height:60px;
  color:#ffffff;
  font-weight:700;
}
.header-bnr.news-single .news-bnr-hdng span{
  font-size:10px;
  text-transform:uppercase;
  line-height:20px;
  color:#ffffff;
  font-weight:700;
}
.news-detail {
  padding: 80px 0px 80px;
}
.news-detail .hor-h2 {
  text-align: left;
  margin-bottom: 10px;
  margin-top: 20px;
}
.news-detail p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #ffffff;
  margin: 20px 0px;
}
.news-detail .post-details{
  padding: 0px 100px;
}
.news-detail .post-details span{
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  color: #C8C8C8;
  position:relative;
  padding-left:30px;
}
.news-detail .post-details span:after{
  content:"";
  position: absolute;
  left: 8px;
  top: 9px;
  height: 1px;
  width: 15px;
  background-color: #C8C8C8;
}
.news-detail .post-details span:first-child{
  padding-left:20px;
}
.news-detail .post-details span:first-child:after{
  display:none;
}
.news-detail .content-wrap{
  margin-bottom:30px;
  padding: 0px 100px;
}
.news-detail .single-img-wrap{
  margin-bottom:50px;
}
.news-detail .double-img-wrap{
  display:flex;
  margin-bottom:50px;
}
.news-detail .double-img-wrap img{
  margin:0px 10px;
  width:50%;

}
.news-bot-wrap{
  display:flex;
  justify-content:space-between;
  padding:50px 100px;
}
.news-bot-wrap .tags-wrap span{
  font-size: 16px;
  line-height: 24px;
  color:#ffffff;
  border:1px solid #ffffff;
  padding:3px 15px;
  border-radius:3px;
  display:inline-block;
  margin-right:8px;
}
.news-bot-wrap .share-news span{
  font-size: 16px;
  line-height: 24px;
  color:#ffffff;
}
.news-bot-wrap .share-news span img{
  margin-right:8px;
}

/*Privacy Policy and Terms Condition*/
.header-bnr.privacy-terms{
    background: #3dbae6 none;
    height: auto;
}
.header-bnr.privacy-terms section, .header-bnr.privacy-terms section .container-fluid {
    padding: 0px;
    position: relative;
}
.header-bnr.privacy-terms section {
    height: 500px;
}
.header-bnr.privacy-terms .news-bnr-hdng {
    position: absolute;
    top: 45%;
    width: 35%;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    text-align: center;
}
.header-bnr.privacy-terms .news-bnr-hdng h1 {
    font-size: 50px;
    line-height: 60px;
    color: #ffffff;
    font-weight: 700;
}
.privacy-terms-content h1 {
    font-size: 50px;
    line-height: 60px;
    color: #ffffff;
    font-weight: 800;
}
.privacy-terms-content p a{
    color: #ffffff;
    text-decoration:underline;
}
.privacy-terms-content{
    padding-top:50px;
}
.privacy-terms-content .hor-h2 {
    text-align: left;
    margin-bottom: 30px;
    margin-top: 0px;
}
.privacy-terms-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #ffffff;
    margin: 15px 0px;
}
.privacy-terms-content h2{
    text-align:left;
    font-weight: 800;
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 10px;
    margin-top: 40px;
}
.privacy-terms-content ul{
    margin:15px 0px;
}
.privacy-terms-content ul li{
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #ffffff;
    margin:0px;
}
.privacy-terms-content ul li span{
    font-weight:800;
}
.privacy-terms-content ul.spaces li{
    margin:25px 0px;
}

/*Mobile Responsive*/
.section-404{
    height:100%;
}
#slider-section.section-404 h1{
    color:#3B2F80;
    font-size:400px;
    line-height:410px;
    font-weight:800;
    z-index: 0;
}
.section-404 a{
    color:#ffffff;
    font-size:18px;
    text-decoration:underline;
    width:100%;
    text-align:center;
    display:inline-block;
    font-weight:800;
    position: relative;
    z-index: 10;
}
.section-404 span{
    color:#ffffff;
    font-size:34px;
    width:100%;
    text-align:center;
    display:inline-block;
    font-weight:800;
    position: relative;
    top: -70px;
    z-index: 10;
}
.bottom-vector-404{
    position:absolute;
    left:0px;
    right:0px;
    bottom:0px;
    width:100%;
}

/*Side Nav Bar*/
.side-navbar{
    background-color: #3dbae6;
    position: absolute;
    top: 0px;
    bottom: 0px;
    z-index: 1000;
    height: 100%;
    width: 0;
    visibility:hidden;
    opacity:0;
    transition:.3s;
}
.side-navbar.side-nav-toggle{
    visibility:visible;
    opacity:1;
    width: 100%;
}
.side-navbar-hdr{
    display: flex;
    justify-content: space-between;
    padding: 40px 30px;
}
.side-navbar-hdr a.side-navbar-logo{
    width: 150px;
}
.close-side-navbar{
    width: 30px;
    height: 30px;
}
.side-navbar ul{
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.side-navbar ul li{
    border-bottom: 1px solid #ffffff;
    padding: 35px;
    width: 100%;
}
.side-navbar ul li:first-child{
    border-top: 1px solid #ffffff;
}
.side-navbar ul li a{
    font-size: 24px;
    color: #ffffff;
    font-weight: 600;
}
.side-navbar-ftr{
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 30px;
    transition:.3s;
}
.side-navbar-ftr .social-wrap{
    display:flex;
    justify-content: start;
    transition:.3s;
}
.side-navbar-ftr .social-wrap a{
    display: inline-block;
    margin-right: 10px;
    transition: 0.3s;
    width: 32px;
    height: 32px;
    transition:.3s;
}
.side-navbar-ftr .social-wrap a img{
    max-width:100%;
    transition:.3s;
}
.side-navbar-ftr .copyright{
    font-size: 14px;
    color: #ffffff;
    margin: 25px 0px 15px;
    transition:.3s;
}
.side-navbar-ftr ul{
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: start;
    transition:.3s;
}
.side-navbar-ftr ul li{
    font-size: 14px;
    color: #ffffff;
    line-height:24px;
    padding:0px 10px;
    border: none;
    width: auto;
    transition:.3s;
}
.side-navbar-ftr ul li:first-child{
    padding-left:0px;
    border:none;
}
body.direction-rtl .side-navbar-ftr ul li:first-child{
    padding-left:15px;
    padding-right:0px;
}
body.direction-rtl .close-side-navbar{
    transform: rotate(180deg);
}
.side-navbar .side-navbar-ftr ul li a {
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    line-height:24px;
    transition:.3s;
}

/*Mobile Responsive*/
@media (max-width: 1024px) {
  #slider-section h1 ,body.direction-rtl #slider-section h1{
    font-size: 36px;
    line-height: 46px;
  }
  .header-bnr .top-bnr-row{
    padding-top:80px;
    padding-bottom:50px;
  }
  .header-bnr img.top-vector {
    margin-top: 20px;
  }
  .contactUs .wrap .form-wrap{
    padding: 70px 50px;
  }
  .contactUs .wrap .img-wrap img{
    width:100%;
  }
  .contactUs .wrap .img-wrap .album-vector{
    width:auto;
  }
  #main:after{
    bottom: -208px;
  }
  .header-bnr.news-single .news-bnr-hdng {
    width: 65%;
  }
    .about h3 {
        font-size: 32px;
        margin: 20px 0px;
    }
    .about .row{
        align-items: center;
    }
    .hor-h2{
        font-size:36px;
    }
    .about {
        padding: 50px 0px 30px;
    }
    .about p{
        font-size:16px;
        line-height: 24px;
    }
    .direction-rtl #footer .news-letter-wrap{
        top: -330px;
    }
    #footer .news-letter-wrap h6 {
        font-size: 24px;
    }
    .about .icons-wrap .wrap{
        text-align:center;
    }
    #footer .news-letter-wrap{
        padding: 70px 50px;
    }
    .about .icons-wrap .wrap img {
        width: 28px;
    }
    .about .icons-wrap span {
        font-size: 13px;
    }
    #footer .news-letter-wrap h6{
        font-size: 22px;
        line-height:32px;
    }
    #footer .footer-links.terms-condtn ul a{
        font-size: 11px;
    }
    .email-wrap .email span{
        font-size:15px;
    }
    .footer-bottom .row .col-sm-12{
        width:25%;
    }
    .footer-bottom .row .col-sm-12:last-child{
        width:35%;
    }
    .footer-bottom .row .col-sm-12:first-child{
        width:40%;
    }
}

@media (max-width: 991px) {
  .header-bnr{
    padding:10px 0px 0px;
  }
    body.direction-rtl #header a.lang-btn{
        position: absolute;
        left: 150px;
        right: auto;
    }
    #header a.lang-btn{
        position: absolute;
        left: auto;
        right: 150px;
    }
}

@media (max-width: 768px) {
  .about .icons-wrap .wrap img{
    width:25px;
  }
  .about .img-wrap img {
    top:0px;
  }
  .about .icons-wrap span {
    font-size: 12px;
    margin-left: 4px;
  }
  #footer .news-letter-wrap{
    top: -260px;
  }
  #footer {
    padding-top: 280px;
  }
  .news-vector {
    bottom: 70px;
  }
  .contactUs .wrap, .contactUs .modal-body, .contactUs .modal-content{
    background-color: #051c24;
  }
  .contactUs .wrap .form-wrap{
    border-radius:25px 25px 25px 25px;
    width: 100%;
    padding: 40px 30px;
  }
  .contactUs .wrap .img-wrap{
    display:none;
  }
    .header-bnr{
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    #header.fixed-top{
        padding-left: 5px;
        padding-right: 5px;
    }
    #slider-section .container{
        padding-left: 0px;
        padding-right: 0px;
    }
    .header-bnr .top-bnr-row{
        margin-right:0px;
        margin-left:0px;
    }
    .header-bnr .top-bnr-row .col-md-6:first-child{
        padding-left: 30px;
        padding-right: 30px;
    }
    .header-bnr .top-bnr-row .col-md-6:last-child{
        padding: 0px;
    }
  .header-bnr.news-single .news-bnr-hdng {
    width: 65%;
  }
  .header-bnr.news-single .news-bnr-hdng h1{
    font-size: 24px;
    line-height: 30px;
  }
  .news-detail .double-img-wrap{
    flex-flow: wrap;
  }
  .news-detail .double-img-wrap img {
    margin: 10px 10px;
    width:100%;
  }
  .header-bnr.privacy-terms{
    padding: 0px !important;
  }
  .header-bnr.privacy-terms section{
      height: auto;
  }
  .privacy-terms-content h2{
      font-size: 18px;
  }
  .privacy-terms-content p, .privacy-terms-content ul li{
      font-size: 12px;
      margin: 15px 0px;
  }
  .header-bnr.privacy-terms .news-bnr-hdng h1{
      font-size: 16px;
      line-height: 22px;
  }
  .header-bnr.privacy-terms .news-bnr-hdng{
      width: 80%;
      top: auto;
      bottom: 20px;
  }
    #slider-section.section-404 h1{
        font-size: 140px;
        line-height: 180px;
        text-align: center;
    }
    #slider-section.section-404{
        height:100%;
    }
    #slider-section.section-404 .container{
        padding:0px;
    }
    .section-404 .right-404-vector{
        display:none;
    }
    .bottom-vector-404 {
        position: fixed;
        bottom: 50px;
    }
    body.direction-rtl #header a.lang-btn{
        left: 90px;
    }
    #header a.lang-btn{
        right: 90px;
    }
    .btn-apps {
        width: 140px;
    }
    .about p {
        font-size: 14px;
        line-height: 24px;
    }
    #footer .news-letter-wrap h6 {
        font-size: 16px;
        line-height: 26px;
    }
    .direction-rtl #footer .news-letter-wrap {
        top: -280px;
    }
    #footer .footer-links.terms-condtn ul{
        justify-content:center;
    }
}
@media (max-width: 650px) {
  .contactUs .wrap .form-wrap{
    padding: 40px 30px;
  }
  .contactUs .wrap .form-wrap h4{
    font-size:24px;
  }
  .contactUs .wrap .form-wrap p {
    font-size: 14px;
    line-height: 20px;
  }
  #header .logo span{
    font-size:10px;
  }
  #header .logo img {
    max-height: 40px;
    margin-bottom:0px;
  }
  .header-bnr {
    padding: 100px 20px 40px !important;
  }
  .header-bnr{
        padding-left: 0px !important;
        padding-right: 0px !important;
  }
  .header-bnr img.top-vector{
    width:100%;
  }
  .small-hdng{
    font-size: 13px;
  }
  #slider-section h6 {
    font-size: 14px;
  }
  .header-bnr img.mid-vector {
    right: -20px;
    top: 50px;
    width: 70%;
  }
  .header-bnr .top-bnr-row {
    padding: 40px 0px 50px;
  }
  #header a.lang-btn{
    position: static;
    right: 80px;
  }
  .direction-rtl #header a.lang-btn{
    left:80px;
    right: auto;
  }
  .direction-rtl .footer-bottom .copyright {
    text-align: center;
  }
  .direction-rtl #footer .news-letter-wrap {
    top: -240px;
  }
  .direction-rtl .navbar-mobile .mobile-nav-toggle{
    left:15px;
    right:auto;
  }
  .direction-rtl .news .news-slider .news-slide .contnt-wrap .wrap{
    text-align:right;
  }
  .hor-h2 {
    font-size: 22px;
  }
  .about p{
    font-size:12px;
    margin: 15px 0px;
  }
  .about .icons-wrap{
    margin-bottom:40px;
  }
  .about .icons-wrap .wrap img{
    width:24px;
  }
  .about .icons-wrap span {
      font-size: 11px;
      margin-left: 2px;
  }
  .about .img-wrap img {
    position: static;
  }
  .news .hor-h2 {
    font-size: 22px;
  }
  .community{
    padding: 50px 0px 0px;
  }
  .news .news-slider .news-slide {
    width: 100% !important;
    padding: 0px 15px;
  }
  .news .news-slider .news-slide .contnt-wrap .author-detail {
    padding: 10px 0px;
  }
  .news .news-slider .news-slide .contnt-wrap .wrap h4 {
    font-size: 20px;
    line-height: 25px;
  }
  .news .news-slider .news-slide .contnt-wrap .wrap p{
    margin: 5px 0px 5px;
  }
  .news {
    padding: 50px 0px 60px;
  }
  #footer .news-letter-wrap h6 {
    font-size: 17px;
    line-height:27px;
    margin: 0px;
    text-align: center;
    margin: 10px 0px;
  }
  #footer .news-letter-wrap .input-group{
    background-color:transparent;
  }
  #footer .news-letter-wrap .input-group .input-group-append {
    padding: 10px 0px;
    width: 100%;
  }
  #footer .news-letter-wrap .input-group .input-group-text{
    font-size: 14px;
    width:100%;
  }
  #footer .news-letter-wrap .input-group .form-control{
    width:100%;
    padding:15px;
  }
  #footer .news-letter-wrap{
    top: -230px;
    padding: 20px 0px;
  }
  .news .news-slider .news-slide .contnt-wrap .wrap {
    padding-bottom: 40px;
  }
    .footer-bottom .row .col-sm-12{
        width:100% !important;
    }
  #main{
    padding-bottom:40px;
  }
  .hor-h2{
    margin-bottom:20px;
  }
  .about .hor-h2{
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .community .hdng-row{
    position:static;
    padding: 0px 20px;
  }
  #footer{
    padding:230px 20px 20px;
  }
  #footer .footer-top h4{
    margin-top:0px;
    margin-bottom:0px;
    font-size: 15px;
  }
  #footer .footer-top .footer-contact p {
    font-size: 12px;
    margin-top: 15px;
    line-height: 18px;
  }
  #footer .footer-links {
    margin-top: 10px;
  }
  #footer .social-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
  #footer .vision{
    display:block;
    margin:0 auto;
  }
  #footer .py-5 {
      padding-top: 0rem!important;
      padding-bottom: 0rem!important;
  }
  #footer .footer-links.terms-condtn{
    margin:0 auto;
  }
  #footer .footer-links ul li{
    padding: 4px 10px;
  }
  #footer .footer-top .footer-contact {
    margin-bottom: 20px;
    margin-top: 40px;
    text-align: center;
  }
  .footer-newsletter {
    text-align: left;
    margin-top: 0px;
  }
  .email-wrap{
    margin-top:15px;
    justify-content:center;
  }
  .email-wrap .email{
    text-align:center;
  }
  .email-wrap .email span{
    font-size:14px;
  }
  .footer-bottom .copyright{
    text-align:center;
    margin-top:20px;
  }
  .navbar a, .navbar a:focus{
    opacity:1;
  }
  .header-bnr.news-single{
    padding:0px !important;
  }
  .header-bnr.news-single .news-bnr-hdng{
    width:80%;
    top:auto;
    bottom: -5px;
  }
  .header-bnr.news-single .news-bnr-hdng h1 {
    font-size: 16px;
    line-height: 22px;
  }
  .news-detail .post-details{
    margin-bottom:30px;
  }
  .news-detail .post-details, .news-detail .content-wrap, .news-bot-wrap{
    padding:0px 20px;
  }
  .news-detail .double-img-wrap{
    display:inline-block;
  }
  .news-detail .double-img-wrap img{
    margin: 10px 0px;
    width:100%;
  }
  .news-bot-wrap .tags-wrap span{
    font-size: 13px;
    line-height: 23px;
    padding: 3px 10px;
    margin-right: 5px;
  }
  .news-bot-wrap .share-news span {
    font-size: 13px;
    line-height: 23px;
  }
  .news-bot-wrap .share-news span img{
    width:13px;
    margin-right: 5px;
  }


  #slider-section .container {
    padding-bottom: 63px;
  }

  #slider-section h1, body.direction-rtl #slider-section h1 {
    font-size: 24px;
    line-height: 36px;
  }

  #slider-section h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  .news-vector {
    bottom: 0px;
  }
  .contactUs .wrap .form-wrap, .direction-rtl .contactUs .wrap .form-wrap{
    border-radius:25px 25px 25px 25px;
    width: 100%;
  }
  .contactUs .wrap .img-wrap{
    display:none;
  }
  .contactUs .modal-body, .contactUs .modal-content{
     background-color:transparent;
     border:none;
  }
    .side-navbar ul li{
        padding: 30px 30px;
    }
    .side-navbar ul li a {
        font-size: 20px;
    }
    .side-navbar-hdr a.side-navbar-logo {
        width: 120px;
    }
    .side-navbar-hdr {
        padding: 40px 25px;
    }
    .close-side-navbar {
        width: 25px;
        height: 25px;
    }
    .side-navbar .side-navbar-ftr ul li{
        padding: 0px 10px;
    }
    .side-navbar-ftr ul li:first-child {
        padding-left: 0px;
    }
}
