/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/

@font-face {
   font-family: "Tajawal", sans-serif;
  src: url("#{resource['assets/fonts/Almarai-Regular.ttf']}") format("truetype");
  font-weight: normal;
}

@font-face {
   font-family: "Tajawal", sans-serif;
  src: url("#{resource['assets/fonts/Almarai-Bold.ttf']}") format("truetype");
  font-weight: bold;
}

@font-face {
   font-family: "Tajawal", sans-serif;
  src: url("#{resource['assets/fonts/Almarai-ExtraBold.ttf']}") format("truetype");
  font-weight: bolder;
}

@font-face {
   font-family: "Tajawal", sans-serif;
  src: url("#{resource['assets/fonts/Almarai-Light.ttf']}") format("truetype");
  font-weight: lighter;
}

@font-face {
    font-family: "Tajawal", sans-serif;
  src: url("#{resource['assets/']}");
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@font-face {
  font-family: 'GE_SS_Two_Medium';
  src: url('../fonts/GE_SS_Two_Medium.eot');
  src: url('../fonts/GE_SS_Two_Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/GE_SS_Two_Medium.woff') format('woff'), url('../fonts/GE_SS_Two_Medium.ttf') format('truetype'), url('../fonts/GE_SS_Two_Medium.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

body {
 font-family: "Tajawal", sans-serif;
  font-size: 13px;
}

/*body {
  font-family: 'Times New Roman', serif !important;
  font-weight: bolder;
  color: #444444;
  max-width: 100%;
}*/

a {
  color: #ef6603;
  text-decoration: none;
}

a:hover {
  color: #fc8129;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bolder;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 12%;
  z-index: 996;
  background: rgb(255 219 116);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  text-align: center;
  transition: .3s;
}

.back-to-top i {
  font-size: 45px;
  color: rgb(20, 39, 74);
  line-height: 0;
  margin-right: 0;
  transition: .3s;
}

.back-to-top i:hover {
  color: white;
}

.back-to-top:hover {
  background: #47A3DA;
  color: #fff;
  transition: .3s;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
      transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #14254a !important;
}

#header .container {
  padding-top: 5px;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: #14254a;
  /* padding-top: 10px; */
  padding-bottom: 10px;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 60px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  margin-right: 15px;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
  border-bottom: 0px solid #eff0f6 !important;
  margin-top: 0px!important;
  border-bottom: 0px solid #eff0f6 !important;
  padding: 0px!important;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  padding: 5px 15px 7px 15px;
  margin-left: 5px;
  font-size: 17px;
  color: #fff!important;
  white-space: nowrap;
  transition: 0.3s;
  border-radius: 50px;
  font-weight:600
}

.navbar a i,
.navbar a:focus i {
  font-size: 15px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  /*background: #ef6603;*/
  /*background: #c6ad00;*/
  background: #1b7ad9;
  transition: 0.5s;
}

.navbar a:hover {
  color: white;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  /* left: 5px; */
  /* top: calc(100% + 30px); */
  margin: 5px 0 0 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  /*background: #fff;*/
  background: #14254a;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 15px;
}

.navbar .dropdown ul li {
  min-width: 200px;
  text-align: center;
}

.navbar .dropdown ul li p {
  color: #c6ad00;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  /*color: #2a2c39;*/
  color: white;
  margin: 10px 5px;
  font-size: 17px;
}

.navbar .dropdown ul a i {
  font-size: 26px;
  margin-left: 10px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #fff;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  right: 100%;
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  /* right: 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: #fff;
  font-size: 40px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  float: left;
  /* outline: 2px green solid; */
  position: relative;
  bottom: 50px;
  left: 20px;
  /* text-align: end; */
}

.bi-x {
  z-index: 4;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

.icons-hide {
  display: inline-block;
  position: relative;
  top: 100px;
  right: 40%;
  z-index: 3;
}

/***********************************************************/
/* for the tabs in services for responsiveness by boulis*/

@media (min-width: 50px) {
  .col-3 {
      flex: 0 0 auto;
      width: 100%;
  }
}

@media (min-width: 308px) {
  .col-3 {
      flex: 0 0 auto;
      width: 50%;
  }
}

@media (min-width: 375px) {
  .col-3 {
      flex: 0 0 auto;
      width: 25%;
  }
}

@media (max-width: 300px) {
  .col-12 {
      width: 100%;
  }
}




/* for the tabs io services for responsiveness by boulis*/
/***********************************************************/

@media (max-width: 1024px) {
  .mobile-nav-toggle {
      display: block;
  }

  .navbar ul {
      display: none;
  }

  .footerMiniCol {
      width: 1000px;
  }

  .footerMiniCol h4 {
      font-size: 17px;
  }

  .footerMiniCol p {
      font-size: 15px;
  }

  .footerMiniCol a {
      font-size: 15px;
  }

  .apps {
      max-width: 90px;
  }
}

@media (max-width: 1280px) {
  .icons-hide {
      display: none;
  }
}


.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(20, 21, 28, 0.9);
  /*background: #14254a;*/
  transition: 0.3s;
  z-index: 4;
}


.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 10%;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  /*background-color: #fff;*/
  background: #14254a;
  overflow-y: auto;
  transition: 0.3s;
  box-shadow: inset 1px 2px 9px 0px #f8f9fa;
}



.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  margin: 5px;
  font-size: 15px;
  color: white;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #fff;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}


.navbar-mobile .dropdown ul,
.navbar-mobile .dropdown .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: inset 0px 1px 10px 0px #103776
}

.navbar-mobile .dropdown ul li,
.navbar-mobile .dropdown .dropdown ul li {
  min-width: 200px;
}


.navbar-mobile .dropdown ul a,
.navbar-mobile .dropdown .dropdown ul a {
  padding: 10px 20px;
  color: #14254a;
}

.navbar-mobile .dropdown ul a i,
.navbar-mobile .dropdown .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,
.navbar-mobile .dropdown .dropdown ul a:hover,
.navbar-mobile .dropdown .dropdown ul .active:hover,
.navbar-mobile .dropdown .dropdown ul li:hover>a {
  color: #fff;
}


.navbar-mobile .dropdown>.dropdown-active,
.navbar-mobile .dropdown .dropdown>.dropdown-active {
  display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  /*  background: linear-gradient(0deg, rgb(42, 44, 57) 0%, rgb(51, 54, 74) 100%);*/
  background: white;
  padding: 0;
  margin-top: 20px;
}

.carousel {
  margin-top: 110px;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  height: 70vh;
  /* padding-top: 60px; */
}

.carousel-inner {
  /* overflow: visible !important; */
}

/* .carousel-item {
  padding: 0px !important;
  margin: 0px !important;
} */

#hero h2 {
  color: #14254a;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: black;
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
  color: black;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
  color: black;
}

#hero .btn-get-started {
    /*font-weight: 500;*/
    /* font-size: 14px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: black;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;*/
    /*border: 2px solid #ef6603;*/
    /*border: 2px solid #48a0d8;*/
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    border: none;
    text-transform: uppercase;
    text-align: center;
    background: linear-gradient(#48A0D8, #14254A);
    color: var(--white-color);
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    padding: 13.5px 5px;
    border-radius: 2px;
    min-width: 150px;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
    margin-top: 15px;
    min-width: 116px;
}
    #hero .btn-get-started:before {
        left: 0;
        border-radius: 0 20px 20px 0;
    }
    #hero .btn-get-started:after {
        right: 0;
        border-radius: 20px 0 0 20px;
    }


    #hero .btn-get-started:before, #hero .btn-get-started:after {
        content: "";
        position: absolute;
        height: 100%;
        top: 0;
        width: 0%;
        background-color: #14254A;
        z-index: -1;
        -webkit-transition: all 0.4s ease-out;
        transition: all 0.4s ease-out;
    }
    #hero .btn-get-started:hover {
        /*background: #ef6603;*/
  /*      background: #48a0d8;
        color: #fff;
        text-decoration: none;*/
    }
        #hero .btn-get-started:hover::before,
        #hero .btn-get-started:hover:after,
        #hero .btn-get-started.active::before,
        #hero .btn-get-started.active:after {
            width: 50%;
            border-radius: 0;
        }
    #hero .btn-get-started:hover,
    #hero .btn-get-started.active {
        color: var(--white-color);
    }

        @media (min-width: 1024px) {
            #hero p {
      width: 80%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
      width: 5%;
  }
}

@media (max-width: 768px) {
  #hero .carousel-container {
      height: 70vh;
  }

  #hero h2 {
      font-size: 28px;
  }

  #hero p {
      display: none;
  }

  #hero .banner {
      max-height: 200px;
  }

  #featuresDoc .col-3 {
      flex: 0 0 auto;
      width: 100%;
  }
}

.hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
  bottom: 0px;
  z-index: 5;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
      transform: translate(85px, 0%);
  }

  100% {
      transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
      transform: translate(85px, 0%);
  }

  100% {
      transform: translate(-90px, 0%);
  }
}

@-webkit-keyframes move-forever2 {
  0% {
      transform: translate(-90px, 0%);
  }

  100% {
      transform: translate(85px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
      transform: translate(-90px, 0%);
  }

  100% {
      transform: translate(85px, 0%);
  }
}

@-webkit-keyframes move-forever3 {
  0% {
      transform: translate(-90px, 0%);
  }

  100% {
      transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
      transform: translate(-90px, 0%);
  }

  100% {
      transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {

  overflow: hidden;
}

hero-waves .section-bg {
  background-color: #f7fbfe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 25px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  color: #222222;
}

.section-title h2::before,
.section-title h2::after {
  content: "";
  width: 50px;
  height: 2px;
  background: #48a0d8;
  display: inline-block;
}

.section-title h2::before {
  margin: 0 15px 10px 0;
}

.section-title h2::after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin: 15px 0 0 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding-top: 80px;
}

.about .content h3 {
  /*  font-weight: 600;*/
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #ef6603;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  /*  font-weight: 600;*/
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #ef6603;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #ef6603;
}

.about .content .btn-learn-more:hover {
  background: #ef6603;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 15px;
  flex-wrap: wrap;
  /* add this property */
  border: 1px solid rgb(17 101 167);
  border-radius: 10px;
  /*background: linear-gradient(to bottom, #dbac4e, #ffdb74);*/
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  color: #14274a;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
}

.features .nav-link i {
  padding-left: 10px;
  font-size: 28px;
}

.features .nav-link h4 {
  font-size: 18px;
  /*  font-weight: 600;*/
  margin: 0;
}

.features .nav-link:hover {
  color: white;
  background-color: #48a0d8;
}

.features .nav-link.active {
  background: #14274a;
  color: #fff;
  border-color: #056ed6;
  top: 0;
  transition: top 0.2s;
}

@media (min-width: 1024px) {
  .mob-tab-text {
      display: none;
  }
}

@media (max-width: 768px) {
  .features .nav-link i {
      padding: 0;
      line-height: 1;
      font-size: 36px;
  }

  .cPage .counter-value {
      font-size: 30px !important;
  }
}

@media (max-width: 575px) {
  .features .nav-link {
      padding: 15px;
  }

  .features .nav-link i {
      font-size: 24px;
  }

  .img-tab {
      max-height: 125px;
  }


  .logo {
      width: 120px;
  }

  #header {
      padding-top: 10px;
  }

  .search-field:focus {
      width: 170px !important;
  }

  .moreInfo {
      margin-top: 10px !important;
  }

  .copyRight {
      font-size: 10px;
  }

  .iconColor i {
      font-size: 18px !important;
  }

  .navbar a .fa-solid {
      color: #14254a;
  }

  .youtubeLink img {
      max-width: 250px;
  }

  .cPage .text {
      font-size: 20px !important;

  }
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  /*  font-weight: 600;*/
  font-size: 26px;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}




/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #2a2c39;
  padding: 80px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  /*  font-weight: 700;*/
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  text-transform: uppercase;
  /*font-weight: 700;*/
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #ef6603;
}

.cta .cta-btn:hover {
  background: #fff;
  color: #ef6603;
}

@media (max-width: 1024px) {
  .cta {
      background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
      display: flex;
      align-items: center;
      justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  /* background-color: #f2f2f2; */
}

.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 0px 3px 0px #056ed6;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  width: 100%;
  padding-right: 60px;
  padding-left: 60px;
}

.services .icon-box::before {
  content: "";
  position: absolute;
  background: #e1f0fa;
  right: -60px;
  top: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  transition: all 0.3s;
  z-index: -1;
}

.services .icon-box:hover::before {
  background: #14274a;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.services .icon {
  margin: 0 auto 20px auto;
  padding-top: 10px;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: #14274a;
  transition: all 0.3s ease-in-out;
}

.services .icon i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
 font-family: "Tajawal", sans-serif;
}

.services .title a {
  color: #14254a;
  font-size: 20px;
  display: inherit;
  text-align: center;
}

.services .icon-box p {
 font-family: "Tajawal", sans-serif;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box:hover .title a,
.services .icon-box:hover .description {
  color: #fff;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #48a0d8;
}

/*--------------------------------------------------------------
# More Services
--------------------------------------------------------------*/
.more-services {
  padding-top: 20px;
}

.more-services .card {
  border: 0;
  padding: 80% 0px 0px 0px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.more-services .card-body {
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  transition: ease-in-out 0.4s;
}

.more-services .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.more-services .card-title a {
  color: #222222;
}

.more-services .card-text {
  color: #5e5e5e;
  transition: 0.5s;
}

.more-services .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.4s;
}

.more-services .read-more a:hover {
  text-decoration: underline;
}

.more-services .card:hover .card-body {
  background: #3498db;
}

.more-services .card:hover .read-more a,
.more-services .card:hover .card-title,
.more-services .card:hover .card-title a,
.more-services .card:hover .card-text {
  color: #fff;
}

.counter {
  color: #0f4478;
  background: linear-gradient(to right bottom, #fff 50%, #f9f9f9 51%);
  /*    font-family: "Comfortaa", cursive;
*/
  text-align: center;
  width: 200px;
  padding: 20px 0 0;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.counter .counter-icon {
  font-size: 45px;
  margin: 0 0 10px;
}

.counter h3 {
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0 0 20px;
}

.counter .counter-value {
  font-family: 'Times New Roman', 'Times New Roman', Times, serif !important;
  color: #fff;
  background: linear-gradient(to right bottom, #2174c7, #295699);
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  padding: 0;
  display: block;
  text-align: center;
  justify-content: center;
}

.counter.blue {
  color: #0092cd;
}

.counter.blue .counter-value {
  background: linear-gradient(to right bottom, #06bbf4, #0092cd);
}

.counter.orange {
  color: #fb9a00;
}

.counter.orange .counter-value {
  background: linear-gradient(to right bottom, #fcca09, #fb9a00);
}

.counter.green {
  color: #03bfb0;
}

.counter.green .counter-value {
  background: linear-gradient(to right bottom, #00e2cd, #03bfb0);
}

@media screen and (max-width: 990px) {
  .counter {
      margin-bottom: 40px;
  }

  .staticStyling {
      margin-top: 70px;
  }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  /* background: #f3f9fd; */
  padding: 10px 0;
  text-align: center;
  display: block;
}

.clients .col-lg-2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients img {
  max-width: 70%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 10px 0;
}

.clients img:hover {
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .clients img {
      width: 40%;
  }
}

@media (max-width: 575px) {
  .clients img {
      width: 50%;
  }

  .counter {
      max-width: 170px;
  }

  .col-sm-6 {
      width: 50%;
  }

  .services .icon-box {
      padding-right: 20px;
      padding-left: 20px;
  }
}

/* side menu */

/*--------------------------------------------------------------
# seleca Services

--------------------------------------------------------------*/
/* .services .icon-box {
padding: 30px;
position: relative;
overflow: hidden;
border-radius: 10px;
background: #fff;
box-shadow: 0 2px 29px 0 rgba(68, 88, 144, 0.12);
transition: all 0.4s ease-in-out;
width: 100%;
height: 100%;
}

.services .icon-box:hover {
transform: translateY(-10px);
box-shadow: 0 2px 35px 0 rgba(68, 88, 144, 0.2);
}

.services .icon {
position: absolute;
left: -20px;
top: calc(50% - 30px);
}

.services .icon i {
font-size: 64px;
line-height: 1;
transition: 0.5s;
}

.services .title {
margin-left: 40px;
margin-bottom: 15px;
font-size: 18px;
}

.services .title a {
color: #2a2c39;
transition: ease-in-out 0.3s;
}

.services .title a:hover {
color: #ef6603;
}

.services .description {
font-size: 14px;
margin-left: 40px;
line-height: 24px;
margin-bottom: 0;
} */

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 0 0 10px 10px;
  font-size: 16px;
  /*font-weight: 500;*/
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li::before {
  content: "[";
  margin-right: 6px;
  color: #fff;
  font-size: 18px;
  /*font-weight: 400;*/
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li::after {
  content: "]";
  margin-left: 6px;
  color: #fff;
  font-size: 18px;
  /*font-weight: 400;*/
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #ef6603;
}

.portfolio #portfolio-flters li.filter-active::before,
.portfolio #portfolio-flters li.filter-active::after {
  color: #ef6603;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.8s ease-in-out;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  /*font-weight: 600;*/
  color: #fff;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #fedac0;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #fd9f5b;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #fd9f5b;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.2);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ef6603;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ef6603;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(42, 44, 57, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  /*font-weight: 700;*/
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  /*font-weight: 700;*/
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 0 30px;
  margin: 30px 15px;
  text-align: center;
  min-height: 350px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  /*font-weight: bold;*/
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #fedac0;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ef6603;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ef6603;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  /*font-weight: 400;*/
  margin: -20px -20px 25px -20px;
  padding: 30px 15px;
  font-size: 18px;
  /*font-weight: 600;*/
  color: #777777;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #ef6603;
  /*font-weight: 600;*/
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  /*font-weight: 300;*/
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #ef6603;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #ef6603;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  color: #fff;
  transition: none;
  font-size: 14px;
  /*font-weight: 400;*/
  /*font-weight: 600;*/
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #fc8129;
}

.pricing .featured {
  border: 2px solid #ef6603;
}

.pricing .featured h3 {
  color: #fff;
  background: #ef6603;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #ef6603;
  color: #fff;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #ececf1;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #ef6603;
  font-size: 18px;
  line-height: 24px;
  /*font-weight: 400;*/
  padding-left: 25px;
  cursor: pointer;
  color: #bd5102;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: black;
}

.faq .faq-list .collapsed:hover {
  color: #ef6603;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  transition: color 0.3s;
  margin: 0 3px;
  border-radius: 50px;
  width: 36px;
  height: 36px;
  background: rgba(239, 102, 3, 0.8);
  transition: ease-in-out 0.3s;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a:hover {
  background: #fc8129;
}

.team .member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  /*font-weight: 700;*/
  margin-bottom: 5px;
  font-size: 18px;
  color: #2a2c39;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  /*font-weight: 400;*/
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #ef6603;
  float: left;
  width: 44px;
  height: 44px;
  background: #ffecde;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  /*font-weight: 600;*/
  margin-bottom: 5px;
  color: #2a2c39;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #555974;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #ef6603;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  /*font-weight: 600;*/
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  /*font-weight: 600;*/
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #ef6603;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #fc8129;
}

@-webkit-keyframes animate-loading {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  position: fixed;
  top: 85px;
  background: #f7f8f9;
  min-height: 40px;
}

.breadcrumbs a {
  color: #14254a;
}

.breadcrumbs h2 {
  font-size: 28px;
  /*  font-weight: 400;*/
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

@media (max-width: 992px) {
  .breadcrumbs ol {
      margin-top: 10px;
  }
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #404356;
  content: "\\";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
      display: block !important;
  }

  .breadcrumbs ol {
      display: block;
  }

  .breadcrumbs ol li {
      display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  /*background: #14151c;*/
  background: #14254a;
  color: #fff;
  font-size: 15px;
  text-align: center;
  padding: 10px 0;
}

.footer-fixed {
  /*background: #14151c;*/
  position: fixed;
  bottom: 0;
  width: 100%;
}

#footer h3 {
  font-size: 36px;
  /*  font-weight: 700;*/
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15;
  /*font-style: italic;*/
  padding: 0;
}

#footer .social-links {
  margin: 0 0 20px 0;
}

#footer .social-links a {
  font-size: 25px;
  display: inline-block;
  /*background: #c6ad00;*/
  background: #ffffff;
  color: #0c2577;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: rgb(228, 177, 9);
  color: #2237af;
  text-decoration: none;
}

#footer .credits {
  font-size: 13px;
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/

.btn-login {
  /*font-weight: 500;*/
  font-size: 14px;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: black;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  /*border: 2px solid #ef6603;*/
  border: 2px solid #056ed6;
  /*border: 2px solid #056ed6;*/
}

@media (min-width: 1024px) {
  .btn-login {
      width: 65vh;
      font-size: 24px;
  }
}

.btn-login:hover {
  /*background: #ef6603;*/
  /*background: #056ed6;*/
  background: #056ed6;
  color: #fff;
  text-decoration: none;
}

#login {
  padding: 20px 0;
  overflow: hidden;
}

.fawesome {
  padding: 0 5px;
}

/*--------------------------------------------------------------
# Post Card
--------------------------------------------------------------*/
a,
a:hover {
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

#pageHeaderTitle {
  margin: 2rem 0;
  text-transform: uppercase;
  text-align: center;
  font-size: 2.5rem;
}

/* Cards */
.postcard {
  flex-wrap: wrap;
  display: flex;
  box-shadow: -8px 14px 8px -12px #102baf;
  border-radius: 10px;
  margin: 0 0 2rem 0;
  overflow: hidden;
  position: relative;
  color: black;
  border: 2px solid #056ed6;
}

.postcard .t-dark {
  color: #18151f;
}

.postcard a {
  color: inherit;
}

.postcard h1,
.postcard .h1 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.postcard .small {
  font-size: 80%;
}

.postcard .postcard__title {
  font-size: 1.75rem;
}

.postcard .postcard__img {
  height: 315px;
  width: 520px;
  object-fit: cover;
  position: relative;
  float: none;
}

.postcard .postcard__img_link {
  display: contents;
}

.postcard__img img {
  width: 100%;
}

.postcard .postcard__bar {
  width: 50px;
  height: 10px;
  margin: 10px 0;
  border-radius: 5px;
  background-color: #424242;
  transition: width 0.2s ease;
}

.postcard .postcard__text {
  padding: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.postcard .postcard__preview-txt {
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: justify;
  height: 100%;
}

.postcard .postcard__tagbox {
  display: flex;
  flex-flow: row wrap;
  font-size: 14px;
  margin: 20px 0 0 0;
  padding: 0;
  justify-content: center;
}

.postcard .postcard__tagbox .tag__item {
  display: inline-block;
  /*background: rgba(83, 83, 83, 0.4);*/
  border-radius: 3px;
  padding: 2.5px 10px;
  margin: 0 5px 5px 0;
  cursor: default;
  user-select: none;
  transition: background-color 0.3s;
}

.postcard:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 1;
  border-radius: 10px;
}

.postcard:hover .postcard__bar {
  width: 100px;
}

@media screen and (min-width: 769px) {
  .postcard {
      flex-wrap: inherit;
  }

  .postcard .postcard__title {
      font-size: 2rem;
  }

  .postcard .postcard__tagbox {
      justify-content: start;
  }

  .postcard .postcard__img {
      max-width: 300px;
      max-height: 100%;
      transition: transform 0.3s ease;
  }

  .postcard .postcard__text {
      padding: 3rem;
      width: 100%;
  }

  .postcard:nth-child(2n + 1) {
      flex-direction: row;
  }

  .postcard:nth-child(2n + 0) {
      flex-direction: row-reverse;
  }
}

@media screen and (min-width: 1024px) {
  .postcard__text {
      padding: 2rem 3.5rem;
  }

  .postcard.dark .postcard__text:before {
      background: #18151f;
  }

  .postcard.light .postcard__text:before {
      background: #e1e5ea;
  }
}

/* COLORS */
.postcard .postcard__tagbox .green.play:hover {
  background: #79dd09;
  color: black;
}

.green .postcard__title:hover {
  color: #79dd09;
}

.green .postcard__bar {
  background-color: #79dd09;
}

.postcard .postcard__tagbox .blue.play:hover {
  background: #0076bd;
}

.blue .postcard__title:hover {
  color: #0076bd;
}

.blue .postcard__bar {
  background-color: #0076bd;
}

.postcard .postcard__tagbox .red.play:hover {
  background: #bd150b;
}

.red .postcard__title:hover {
  color: #bd150b;
}

.red .postcard__bar {
  background-color: #bd150b;
}

.postcard .postcard__tagbox .yellow.play:hover {
  background: #bdbb49;
  color: black;
}

.yellow .postcard__title:hover {
  color: #bdbb49;
}

.yellow .postcard__bar {
  background-color: #bdbb49;
}

/* ===================================
    PDF Ads-Section
====================================== */
.custom-card {
  background-color: #14254a !important;
  border: #fff 1px solid !important;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
}

.custom-card i {
  font-weight: bold;
  color: #ebb436;
}

.custom-card h5 {
  font-weight: bold;
  /*color:#EBB436;*/
  color: #e8b53f;
  font-size: 20px;
}

.pdf-links i {
  float: right;
  color: white !important;
}

.pdf-links a,
.pdf-links a:hover,
.pdf-links a:focus,
.pdf-links a:active {
  color: white;
  text-decoration: none;
}

.custom-card .card-text a {
  color: #fff;
  margin-bottom: 5px;
  text-decoration: none;
}

.custom-card .card-text a i {
  color: #fff;
  float: right;
  padding-left: 10px;
  line-height: 20px;
}

/* ===================================
    Statistics cards for dashboard
====================================== */
.statistics-card {
  border: #056ed6 2px solid;
  border-radius: 10px;
}

.card-bg-blue-dark {
  background: #14254a;
  color: #fff !important;
  border-radius: 0px 30px 30px 0px;
}

.rounded-top2 {
  border-radius: 40px 40px 40px 40px !important;
}

/* ===================================
    Loader
====================================== */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  overflow: hidden;
}

#loader {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -90px;
  margin-top: -90px;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #007b3a;
  -webkit-animation: spin 2s linear infinite;
  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 2s linear infinite;
  /* Chrome, Firefox 16+, IE 10+, Opera */
  z-index: 1001;
}

#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #ffffff;
  -webkit-animation: spin 3s linear infinite;
  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 3s linear infinite;
  /* Chrome, Firefox 16+, IE 10+, Opera */
}

#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #cf0921;
  -webkit-animation: spin 1.5s linear infinite;
  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 1.5s linear infinite;
  /* Chrome, Firefox 16+, IE 10+, Opera */
}

.loader-img {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1001;
}

@-webkit-keyframes spin {
  0% {
      -webkit-transform: rotate(0deg);
      /* Chrome, Opera 15+, Safari 3.1+ */
      -ms-transform: rotate(0deg);
      /* IE 9 */
      transform: rotate(0deg);
      /* Firefox 16+, IE 10+, Opera */
  }

  100% {
      -webkit-transform: rotate(360deg);
      /* Chrome, Opera 15+, Safari 3.1+ */
      -ms-transform: rotate(360deg);
      /* IE 9 */
      transform: rotate(360deg);
      /* Firefox 16+, IE 10+, Opera */
  }
}

@keyframes spin {
  0% {
      -webkit-transform: rotate(0deg);
      /* Chrome, Opera 15+, Safari 3.1+ */
      -ms-transform: rotate(0deg);
      /* IE 9 */
      transform: rotate(0deg);
      /* Firefox 16+, IE 10+, Opera */
  }

  100% {
      -webkit-transform: rotate(360deg);
      /* Chrome, Opera 15+, Safari 3.1+ */
      -ms-transform: rotate(360deg);
      /* IE 9 */
      transform: rotate(360deg);
      /* Firefox 16+, IE 10+, Opera */
  }
}

#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 50%;
  height: 100%;
  background: #000;
  z-index: 1000;
  -webkit-transform: translateX(0);
  /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateX(0);
  /* IE 9 */
  transform: translateX(0);
  /* Firefox 16+, IE 10+, Opera */
}

#loader-wrapper .loader-section.section-left {
  left: 0;
}

#loader-wrapper .loader-section.section-right {
  right: 0;
}

/* Loaded */
.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%);
  /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateX(-100%);
  /* IE 9 */
  transform: translateX(-100%);
  /* Firefox 16+, IE 10+, Opera */
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%);
  /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateX(100%);
  /* IE 9 */
  transform: translateX(100%);
  /* Firefox 16+, IE 10+, Opera */
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateY(-100%);
  /* IE 9 */
  transform: translateY(-100%);
  /* Firefox 16+, IE 10+, Opera */
  -webkit-transition: all 0.3s 1s ease-out;
  transition: all 0.3s 1s ease-out;
}

.loaded .loader-img {
  display: none;
}

/* JavaScript Turned Off */
.no-js #loader-wrapper {
  display: none;
}

.no-js h1 {
  color: #222222;
}

/* ============================== Adel css ========================= */
.clearSec {
  clear: both;
}

.topbarIcons {
  margin-right: 5px;
  padding-top: 10px;
  margin-left: 10px;
  /* outline: 2px solid green; */
}

.topbarIcons ul {
  all: unset;
}

.topbarIcons ul a {
  all: none;
  text-decoration: none;
  padding: 0px;
  transition: 0.5s;
}

.topbarIcons ul a:hover {
  background: none;
}

.topbarIcons ul a i {
  font-size: 23px;
}

.topbarIcons ul i {
  all: none;
  font-size: 23px;
  text-decoration: none;
  padding: 0px;
  color: #14254a;
  margin-right: 50px;
}

.tab-content>.active {
  /*  background-color: #f2f2f2;*/
  padding: 15px;
  
}

.secondTopbar {
  background-color: #ffffff;
  text-align: center;
}

.signinButtonSubSec {
  color: #48a0d8;
  border-color: #48a0d8;
  font-size: 20px;
  font-weight: bolder;
  border-radius: 33px 33px;
  width: 160px;
}

.signinButtonSubSec:hover {
  color: white;
  background-color: #48a0d8;
}

.detailscontent .signinButtonSubSec {
  color: #48a0d8;
  background-color: transparent;
  margin-bottom: 10px;
}

.detailscontent .signinButtonSubSec:hover {
  color: white;
  border-color: #48a0d8;
  background-color: #48a0d8;
}

.search-field {
  background-color: transparent;
  background-image: url(../img/search.png);
  background-position: 5px center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  border: none;
  cursor: pointer;
  height: 40px;
  margin: 3px 0;
  padding: 0 0 0 34px;
  position: relative;
  -webkit-transition: width 400ms ease, background 400ms ease;
  transition: width 400ms ease, background 400ms ease;
  width: 10px;
  cursor: pointer;
  filter: brightness(0) invert(1);
}

.search-field::placeholder {
  color: black !important;
}

.search-field:focus {
  background-color: white;
  border: 2px solid #c3c0ab;
  border-radius: 25px;
  cursor: text;
  outline: 0;
  width: 200px;
  color: black;
  padding-right: 10px;
  filter: none;
}

.search-form .search-submit {
  display: none;
}

.loginOptions {
  margin-right: 100px;
  margin-bottom: 20px;
}

.fa-solid {
  color: white;
  /*margin-right: 10px;*/
  transition: .3s;
}

.fa-solid:hover {
  color: #e8b53f;
}

.dropdown .fa-solid:hover {
  color: white;
}

.counter-icon .fa-solid {
  color: rgb(15, 68, 120);
}

.footerMiniCol .fa-solid {
  font-size: 11px;
}

.footerMiniCol a:hover .fa-solid {
  color: #47a3da;
}

.floatingSettings {
  position: fixed;
  top: 120px;
  left: 0px;
  z-index: 5;
  color: black;
}

.settingsButton {
  all: unset;
  padding: 0px;
  margin: 0px;
  text-align: center;
  background-color: red;
  position: absolute;
  right: -30px;
  width: 30px;
  height: 30px;
}

.settingsButton i {
  padding: 0px;
  margin: 0px;
  font-size: 20px;
}

.settingCard {
  width: 300px;
  /* height: 200px; */
  background-color: rgb(65, 63, 63);
  padding: 10px;
  /* position: absolute; */
}

.colorsSet {
  background-color: gray;
  margin-bottom: 15px;
  padding: 10px;
}

.buttonSet1 {
  all: unset;
  height: 50px;
  width: 50px;
  background-color: lightblue;
  border: 4px solid white;
}

.buttonSet2 {
  all: unset;
  height: 50px;
  width: 50px;
  background-color: yellow;
  border: 4px solid white;
}

.buttonSet3 {
  all: unset;
  height: 50px;
  width: 50px;
  background-color: green;
  border: 4px solid white;
}

.buttonSet4 {
  all: unset;
  height: 50px;
  width: 50px;
  background-color: blue;
  border: 4px solid white;
}

.fontsSet {
  background-color: gray;
  padding: 10px;
}

.importantSites {
  justify-content: center;
}

.mostVisitedSites {
  margin-top: 10px;
}

.iconsDiv {
  float: left;
  outline: 2px solid green;
}

.more-services button {
  text-align: center;
}

.moreInfo {
  text-align: center;
  margin-top: 25px;
  color: #dbac4e;
}

.moreInfo:hover {
  color: #0d6efd;
}

.moreInfo .mybtn {
  /*background: transparent;
      color: #0E6AF5;*/
  font-weight: bold;
  font-size: 20px;
  transition: .3s;
  background: #ffdb74;
  color: #14254a;
}

.moreInfo .mybtn i {
  color: #0E6AF5;
  transition: .3s;
}

.moreInfo .mybtn:hover {
  background: #0E6AF5;
  color: white;
}

.moreInfo .mybtn:hover i {
  color: white;
}

.iconColor i {
  font-size: 20px;
}

.imgSize {
  max-height: 400px;
}

.dropdown li {
  /* float: right; */
  text-align: right;
}

.menuArrow {
  border: solid white;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  margin-right: 5px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.menuRightArrow {
  border: solid white;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  margin-left: 5px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

/* =============================== Footer Styling =============== */
/* .upperFooter{
  
background-color: #14254A;
padding-top: 15px;
text-align: center;
display: flex;
justify-content: center;
font-size: 13px;
} */
.upperFooter a {
  color: #ffffff !important;
}

.upperFooter a:hover {
  color: #47a3da !important;
}

.upperFooter h2 {
  color: #47a3da;
}

.upperFooter h4 {
  color: #47a3da !important;
  font-size: 21px;
}

.footerMiniCol {
  /*min-width: 300px;*/
  /*commented by boulis because the reponsive of footer for some sizes has problem as samsung fold size*/
  min-width: 100px;
  color: white;
}

.footerMiniCol .col {
  padding: 0px;
}

.footerText a {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.layout-footer {
  font-size: 13px;
}

.widthContainer {
  max-width: 1320px;
  margin: 0 auto;
}

.responsiveItem {
  width: 100%;
  height: auto;
}

.apps {
  max-width: 110px;
}

.ServicesTabs p {
  margin: 0px;
  margin-top: 10px;
  font-size: 15px;
  text-align: center;
  display: none;
}

.detailsStylingUl {
  text-align: center;
  margin-top: 50px;
  margin-right: 100px;
}

.detailsStyling {
  margin-bottom: 10px;
}

.detailsStyling[open] summary {
  background-color: #14274a;
  color: white;
}

.detailsStyling[open] summary~* {
  animation: sweep 0.5s ease-in-out;
}

@keyframes sweep {
  0% {
      opacity: 0;
      margin-left: -10px;
  }

  100% {
      opacity: 1;
      margin-left: 0px;
  }
}

.detailsStyling summary {
  color: #14274a;
  /* background-color: #0D6EFD; */
  border: #14274a solid 1px;
  border-radius: 25px;
  text-align: right;
  transition: 0.5s;
  max-width: 400px;
  padding: 5px;
  padding-right: 120px;
  transition: 0.5s;
}

.detailsStyling summary:hover {
  background-color: #14274a;
  color: white;
}

.detailscontent {
  /* background-color: #0d6efd; */
  border: 1px solid #14274a;
  padding-top: 10px;
  margin-right: 10px;
  position: relative;
  top: -5px;
  border-radius: 0px 0px 25px 25px;
  max-width: 380px;
  color: #14274a !important;
}

.detailscontent li {
  text-align: right;
  list-style-type: square;
  margin-right: 30px;
}

.detailscontent i {
  font-size: 20px !important;
  font-weight: normal;
}

.detailsStyling ul {
  text-align: right;
}

/* ================= Footer Styling END ========================= */

/* ============================= Adel css END =======================*/
/* ========================== new news section ===================== */

figure.snip1249 {
  position: relative;
  overflow: hidden;
  margin: 10px;
  min-width: 220px;
  max-width: 310px;
  width: 100%;
  background: #ffffff;
  color: #ffffff;
  text-align: right;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  /* background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%); */
  min-height: 400px;
}

figure.snip1249 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

figure.snip1249 .image {
  position: relative;
}

figure.snip1249 img {
  max-width: 100%;
  vertical-align: top;
}

figure.snip1249 i {
  position: absolute;
  top: 7px;
  left: 12px;
  font-size: 32px;
  opacity: 0;
  z-index: 2;
  -webkit-transition-delay: 0;
  transition-delay: 0;
}

figure.snip1249 h3 {
  margin: 0;
  margin-bottom: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

figure.snip1249 h4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

figure.snip1249:before,
figure.snip1249:after {
  width: 120px;
  height: 120px;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 100%);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

figure.snip1249:before {
  background-color: #14274a;
  -webkit-transform: skew(-45deg) translateX(-150%);
  transform: skew(-45deg) translateX(-150%);
  border-right: 1px solid #14274a;
}

figure.snip1249:after {
  background-color: white;
  -webkit-transform: skew(-45deg) translateX(-175%);
  transform: skew(-45deg) translateX(-175%);
  border-right: 1px solid #962d22;
}

figure.snip1249 figcaption {
  padding: 25px 25px 25px 25px;
  background-color: #ffffff;
  color: #000000;
  position: relative;
  font-size: 0.9em;
}

figure.snip1249 figcaption p {
  text-align: right;
  margin-bottom: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-width: 200px;
}

figure.snip1249 figcaption:before {
  width: 150px;
  height: 200px;
  position: absolute;
  right: 330px;
  content: "";
  z-index: 1;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 100%);
  background-color: #14274a;
  -webkit-transform: skew(-45deg) translateX(50%);
  transform: skew(45deg) translateX(50%);
  border-right: 1px solid #14274a;
}

figure.snip1249 .moreNews {
  display: inline-block;
  width: 70px;
  border: 2px solid #14274a;
  /* padding: 0.4em 0.4em; */
  padding-right: 10px;
  color: #14274a;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.3em;
  text-transform: uppercase;
  margin-top: 10px;
}

figure.snip1249 .moreNews:hover {
  background-color: #14274a;
  color: #ffffff;
}

figure.snip1249 .price {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #ffffff;
  z-index: 2;
  text-transform: uppercase;
  padding: 20px;
  font-weight: 800;
  font-size: 1.2em;
  text-align: center;
}

figure.snip1249 .price s {
  display: block;
  font-size: 0.85em;
  font-weight: 400;
  opacity: 0.8;
}

figure.snip1249:hover i,
figure.snip1249.hover i {
  opacity: 0.7;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

figure.snip1249:hover h3,
figure.snip1249.hover h3 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

figure.snip1249:hover:before,
figure.snip1249.hover:before {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: skew(-45deg) translateX(-50%);
  transform: skew(-45deg) translateX(-50%);
}

figure.snip1249:hover:after,
figure.snip1249.hover:after {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transform: skew(-45deg) translateX(-75%);
  transform: skew(-45deg) translateX(-75%);
}

figure.snip1249 .snip1249 {
  max-height: 200px !important;
  min-height: 0px !important;
  margin: 0px;
}

figure.snip1249 .snip1249 figcaption {
  position: absolute;
  bottom: -20px;
  padding: 0px;
  /* background-color: transparent; */
  width: 100%;
  padding-right: 30px;
}

figure.snip1249 .snip1249 .moreNews {
  bottom: 20px;
  left: 5px;
}

figure.snip1249 .snip1249 figcaption::before {
  bottom: -20px;
}

.removeingHover {
  box-shadow: none !important;
}

.removeingHover::after,
.removeingHover::before {
  all: unset !important;
}

.newsSec {
  text-align: center;
}

/* .newsSec h3 {
  font-size: ; */
/* } */

.row1 {
  display: inline-block;
}

.newsHalfSec {
  max-height: 200px !important;
}

.jobsTitle {
  text-align: center;
}

/* ============================= new news section END ============= */

/* ========================== mahdi CSS ====================== */
:root {
  --Mclr: #fff;
}

.cPage {
  position: relative;
  width: 100%;
  height: 200px;
  background: linear-gradient(to right bottom, #f5f5f5 50%, #e6e5e5 51%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.8), 0 2px 2px rgba(0, 0, 0, 0.12), 0 4px 4px rgba(0, 0, 0, 0.16), 0 4px 4px rgba(0, 0, 0, 0.2);
}

.cPage ul {
  display: flex;
  width: 200px;
}

.cPage ul li {
  position: relative;
  list-style: none;
  width: 70px;
  height: 70px;
  z-index: 1;
}

.cPage ul li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  text-align: center;
  font-weight: 500;
}

.cPage ul li a .icon {
  position: relative;
  display: block;
  line-height: 75px;
  font-size: 3.5em;
  left: 21.5px;
  top: 5px;
  text-align: center;
  color: #000000;
}

.text {
  position: center;
  display: block;
  text-align: center;
  padding: 5px 0 0;
  font-size: 28px;
  color: #14254a;
  font-weight: 700;
  text-transform: capitalize;
  margin-left: 50px;
}

.cPage .counter-value {
  font-family: 'Times New Roman', 'Times New Roman', Times, serif !important;
  color: #fff;
  width: 100%;
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  display: flex;
  color: #48a0d8;
  text-align: center;
  justify-content: center;
  margin-left: 2rem;
}

.cImge {
  position: absolute;
  top: -24.7%;
  width: 110px;
  height: 100px;
  background: linear-gradient(to right bottom, white 50%, rgb(245, 245, 245) 51%);
  border-radius: 50%;
  border: 2px solid rgb(245, 245, 245);
}

/*.cImge::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -22.5px;
  width: 20px;
  height: 20px;
  background: transparent;
  border-top-right-radius: 20px;
  box-shadow: 0px -10px 0 0 var(--Mclr);
}

.cImge::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -22.5px;
  width: 20px;
  height: 20px;
  background: transparent;
  border-top-left-radius: 20px;
  box-shadow: 0px -10px 0 0 var(--Mclr);
}*/

.cIcon {
  font-size: 45px;
  margin: 0 0 10px;
}

/* ===== buttons ====== */

.mybtn {
  outline: 1px solid groove;
  display: inline-block;
  width: 190px;
  padding: 10px 25px;
  text-decoration: none;
  color: #111;
  text-align: center;
  color: white;
  text-shadow: 0 0 2px rgba(255, 255, 255, 1);
  background-color: #0d6efd;
  background-clip: padding-box;
  border: 1px solid;
  border-radius: 20px;
  background-image: linear-gradient(to bottom, #0d6efd, #14254a);
  box-shadow: inset 0 1px rgba(192, 111, 111, 0.09), 0 1px 1px rgba(0, 0, 0, 0.2);
  margin: 10px;
}

.mybtn:hover {
  background-color: #aaa;
  background-image: linear-gradient(to bottom, #43c0fd, #0d6efd);
}


.serventer {
  outline: 1px solid groove;
  display: inline-block;
  width: 190px;
  padding: 10px 25px;
  text-decoration: none;
  color: #111;
  text-align: center;
  color: white;
  text-shadow: 0 0 2px rgba(255, 255, 255, 1);
  background-clip: padding-box;
  border: 1px solid;
  border-radius: 20px;
  background: #14274a;
  box-shadow: inset 0 1px rgba(192, 111, 111, 0.09), 0 1px 1px rgba(0, 0, 0, 0.2);
  margin: 0px;
}

.serventer:hover {
  background-color: blue;
  background: #48a0d8;
}

/* ======== news ========= */

figure.snip1249 .moreNews {
  position: absolute;
  display: contents;
  bottom: 35px;
  left: 25px;
  display: inline-block;
  width: 70px;
  border: 2px solid #20638f;
  transform: rotate(45deg);
  z-index: 3;
  color: aliceblue;
  border-color: aliceblue;
}

figure.snip1249 .moreNews:hover {
  background-color: #20638f;
  color: #ffffff;
}

figure.snip1249 .image,
figure.snip1249 .image img {
  max-height: 177px;
  min-height: 175px;
}

/* ====================== Banner ==================== */
.MOEBanner {
  height: 700px;
  /* background-image: url(https://i.pinimg.com/236x/57/f9/ce/57f9ce0866c3037ed2fa146a44eff9ca.jpg); */
  background-position: center;
  background-size: cover;
}

@media only screen and (max-width: 600px) {
  .MOEBanner {
      height: 300px;
  }
}

.carousel-control-next,
.carousel-control-prev {
  top: unset !important;
  bottom: 70px;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  filter: brightness(0) saturate(100%) invert(60%) sepia(24%) saturate(1050%) hue-rotate(160deg) brightness(91%) contrast(96%);
}

.carousel-indicators li {
  background-color: gray;
}

.carousel-indicators .active {
  background-color: #48a0d8;
}

.BannerSec {
  margin-top: 100px;
}

.BannerSec h1 {
  color: white;
  position: absolute;
  top: 37%;
  right: 33%;
  /* outline: green 3px solid; */
  z-index: 3;
  font-size: 4vw;
}

.BannerSecH1 {
  color: white;
  position: absolute;
  top: 150px !important;
  right: 30%;
  /* outline: green 3px solid; */
  z-index: 3;
  font-size: 4vw;
  font-family: 'Amiri';
  src: url("assets/font/Amiri.ttf");
}

.BannerSec img {
  width: 100%;
  max-height: 400px;
  /* filter: brightness(70%); */
  object-fit: cover;
}

.BannerSec .bannerlogo img {
  position: absolute;
  width: fit-content;
  top: 30%;
  right: 40%;
}




/* ====================== Banner END ================ */

/* ====================== Content ==================== */
.bodyContent {
  background: radial-gradient(circle, #efefef 1%, transparent 11%);
  background-size: 1em 1em;
  background-color: #ffffff;
  opacity: 1;
}

/* .leftSideOfContent {
width: 70%;
float: left;
margin-bottom: 50px;
padding: 25px;
background-color: #EFEEEE;
} */
.leftSideOfContent {
  margin-bottom: 50px;
  padding: 25px;
  background-color: #efeeee;
  border-radius: 25px;
  margin-top: 25px;
}

.rightSideOfContent {
  width: 28%;
  background-color: #efeeee;
  margin-top: 25px;
  padding: 25px;
  color: black;
  text-align: center;
  align-items: center;
  padding-bottom: 25px;
}

.rightSideOfContent .card {
  margin: 0 auto;
  /* Added */
  float: none;
  /* Added */
  margin-bottom: 10px;
  /* Added */
  /* max-height: auto; */
  max-width: 250px;
}

.rightSideOfContent .card img {
  width: 100% !important;
  height: auto !important;
  height: 200px !important;
}

.rightSideOfContent h1 {
  text-align: center;
  margin-bottom: 50px;
}

.contentSec {
  text-align: right;
  color: black;
}

.contentSec h1 {
  color: #14254a;
  margin-bottom: 25px;
  text-align: center;
}

.contentSec h3 {
  margin-bottom: 20px;
}

.contentSec p {
  font-size: 18px;
  text-align: right;
}

.contentSec li {
  font-size: 18px;
}

.contentSecDate {
  text-align: left !important;
  color: gray;
  font-size: 15px !important;
}

.contentStyling {
  margin-bottom: 30px;
}

.contentStyling b {
  font-size: 18px;
}

.pdfImg {
  max-width: 100px;
}

.downloadablePDF {
  text-align: center;
  justify-content: center;
  margin-top: 50px;
}

.downloadablePDF .signinButtonSubSec {
  max-width: 100%;
  width: inherit;
  padding: 10px;
}

.downloadablePDF a {
  text-align: center;
  color: #48a0d8;
}

.downloadablePDF p {
  margin-top: 10px;
  text-align: center;
}

.sepContentSec {
  margin-bottom: 50px;
  background-color: #efeeee;
  border-radius: 25px;
  margin-top: 25px;
}

.sepContentSecHeader {
  background-color: #e8b53f;
  border-radius: 25px 25px 0px 0px;
  padding: 10px;
  padding-right: 25px;
  color: white;
}

.sepContentSecContent {
  padding: 25px;
}

.sepContentSecContent .row {
  text-align: center;
  /* display: block; */
  margin-top: 50px;
}

.sepContentSecButton {
  all: unset;
  padding: 10px;
  background-color: transparent;
  max-width: 250px;
  border-radius: 25px;
  margin: 10px;
  text-align: center;
  color: #0d6efd;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid #48a0d8;
}

.sepContentSecButton:hover {
  background-color: #48a0d8;
  color: white !important;
}

.sepContentSecButton i {
  color: #48a0d8;
  transition: .3s;
}

.sepContentSecButton:hover i {
  color: white;
}

.youtubeVideo {
  text-align: center;
  margin-top: 25px;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}

@media(min-width:100px) and (max-width:365px) {
  .newsPost {
      display: inline-block;
  }
}


.youtubeLink {
  text-align: center;
  margin: 50px auto;
}

.youtubeLink h3 {
  margin-top: 25px;
}

.youtubeLink a {
  color: black;
}

.youtubeLink img {
  max-width: 300px;
  border-radius: 25px;
}

.sepContentSecButtonDiv {
  margin-top: 50px;
  margin-bottom: 25px;
}

.youtubeVideo iframe {
  width: 100%;
  width: 540px;
  height: 315px;
}

.newsPost {
  margin-bottom: 30px;
  background-color: white;
  border-radius: 25px;
  padding: 25px;
  margin-top: 25px;
  box-shadow: 5px 5px 5px #aaaaaa;
  transition: 0.3s;
  min-height: 270px;
}

.newsPost:hover {
  box-shadow: 10px 10px 5px #aaaaaa;
}

.newsPostText {
  margin-bottom: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  padding-left: 10px;
}

.newsPostDate {
  color: gray;
  text-align: center;
  margin-right: 10px;
}

.newsPostLink {
  color: black;
}

.newsPostLink:hover {
  color: black;
}



/* ========================= graduated page ==================== */
.graduatedCard {
  text-align: center;
  margin-top: 50px;
}

.graduatedCard .card {
  max-width: 350px;
  margin: 0 auto;
  /* Added */
  float: none;
  /* Added */
  padding: 0px;
  box-shadow: 10px 10px 5px #aaaaaa;
  margin-top: 20px;
  transition: 0.3s;
}

.graduatedCard .card:hover {
  box-shadow: 15px 15px 3px #aaaaaa;
}

.graduatedCard .card p {
  font-size: 15px;
}

.graduatedCard .card a {
  color: black;
}

.graduatedPost {
  margin-bottom: 30px;
  background-color: white;
  border-radius: 25px;
  padding: 25px;
  margin-top: 25px;
  box-shadow: 10px 10px 5px #aaaaaa;
  transition: 0.3s;
  /* display: flex; */
}


.graduatedPost a {
  color: black;
}

.graduatedPostImg {
  max-width: 100%;
  max-height: 100%;
  text-align: center;
  float: left;
}

.graduatedPostImg img {
  max-width: 100%;
  max-height: 100%;
  max-width: 350px;
  max-height: 200px;
  min-width: 350px;
  min-height: 200px;
  border-radius: 25px;
}

.graduatedPost .graduatedPostImg img {
  max-width: 280px;
}

.graduatedPostText {
  width: 100%;
}

/* ========================= graduated page END ==================== */

/* ====================== sitemap ==================== */

.MScontainer,
.MScontainer-fluid,
.MScontainer-lg,
.MScontainer-md,
.MScontainer-sm,
.MScontainer-xl,
.MScontainer-xxl {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  margin-left: auto;
  margin-right: auto;
}

.MScard {
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 1rem;
  --bs-card-title-spacer-y: 0.5rem;
  --bs-card-border-width: 1px;
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: 0.375rem;
  --bs-card-inner-border-radius: calc(0.375rem - 1px);
  --bs-card-cap-padding-y: 0.5rem;
  --bs-card-cap-padding-x: 1rem;
  --bs-card-cap-bg: rgba(0, 0, 0, 0.03);
  --bs-card-bg: #fff;
  --bs-card-img-overlay-padding: 1rem;
  --bs-card-group-margin: 0.75rem;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  text-align: center;
}

.MScard-header:first-child {
  border-radius: 30px 30px 0 0;
  background: #14254a;
  color: #fff !important;
  font-size: 1.2em;
}

.MScard-header .p-3 {
  padding: 1rem !important;
}

.MScard-body {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color);
  border-radius: 0 0 30px 30px;
  height: 25.5%;
}

.MScard .my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.MScard-body .pages {
  position: relative;
  display: flow;
  color: #48a0d8;
  font-size: 1em;
  top: 7px;
  right: 20px;
  margin-bottom: 7px;
}

.MScard-body .pages2 {
  position: relative;
  display: flow;
  color: #14274a;
  font-weight: 700;
  font-size: 1.3em;
  padding: 7px;
  text-align: center !important;
}

.Phover:hover {
  color: #ffdb74;
}

.MScard-body .Pborder1 {
  min-width: 250px;
  max-width: 276px;
  min-height: 131px;
  max-height: 132px;
}

.MScard-body .Pborder2 {
  min-width: 275px;
  max-width: 276px;
}


.MScard-body ul {
  text-align: right !important;
  list-style: none;
}



/* ====================== sitemap END ================ */



/* =============== Outstanding-schools ================= */

.OSbodyContent {
  margin-bottom: 50px;
  padding: 0;
  background-color: #efeeee;
  border-radius: 25px;
  margin-top: 25px;
  width: 55%;
}

.OSbodyContent-header:first-child {
  border-radius: 30px 30px 0 0;
  background: #14254a;
  color: #fff !important;
  font-size: 1.2em;
}

.OSbodyContent-header .p-3 {
  padding: 1rem !important;
}


.OSbodyContent h1 {
  font-weight: 700;
  font-size: 1.5em;
}

.OSbodyContent h2 {
  color: #14254a;
  font-weight: 700;
  font-size: 1.4rem;
  text-align: justify;
}

.OSbodyContent h3 {
  font-weight: 700;
  font-size: 1.25em;
  margin: 0 0;
}

.OSbodyContent h4 {
  color: #14254a;
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 0;
}

.OSbodyContent p {
  font-weight: 550;
  font-size: 1.15rem;
  text-align: justify;
}

.OSbodyContent ul {
  text-align: justify;
}

.OSbodyContent ul li {
  text-align: justify;
  font-size: 1.10rem;
  font-weight: 450;
}

.OSbodyContent ul ol {
  text-align: justify;
  font-size: 1.10rem;
  font-weight: 450;
}

.OSLinkCards {
  text-align: center;
  margin-top: 10px;
}

.OSLinkCards .card {
  max-width: 350px;
  margin: 0 auto;
  float: none;
  padding: 0px;
  box-shadow: 10px 10px 5px #aaaaaa;
  margin-top: 20px;
  transition: 0.3s;
  background-color: white;
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 1rem;
  --bs-card-title-spacer-y: 0.5rem;
}

.OSLinkCards .card a {
  color: black;
}

.OSLinkCards .card a:hover {
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.OSLinkCards .card-body {
  padding: 1rem 1rem;
}

.OSLinkCards .card p {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

.OSLinkCards img {
  min-height: 209px;
  max-height: 210px;
  max-width: 350px;
}


/* =============== Outstanding-school END ============== */


/* =============== Mahdi NewCards 4/6 ============== */

.MHDbodyContent {
  margin-bottom: 50px;
  padding: 0;
  background-color: #efeeee;
  border-radius: 25px;
  margin-top: 25px;
  width: 100%;
}


.MHDbodyContent .MHDcontent {
  display: flex;
  justify-content: space-around;
}


.MHDcards {
  padding: 20px;
}

.MHDcards h1 {
  font-weight: 900;
  font-size: 1.2em;
  /*        text-align: justify;
*/
  padding: 20px;
  background-color: #14274a;
  color: #fff;
}

.MHDcards h2 {
  font-weight: 900;
  font-size: 1.2em;
  /*        text-align: justify;
*/
  margin: 0;
}

.MHDcards h3 {
  font-weight: 900;
  font-size: 1.2em;
  /*        text-align: justify;
*/
  background-color: #14274a;
  color: #fff;
  padding: 15px;
}

.MHDcards h4 {
  font-weight: 900;
  font-size: 1.2em;
  /*        text-align: justify;
*/
  margin: 0;
}

.MHDcards p {
  font-weight: 500;
  font-size: 15px;
  /*    text-align: justify;
*/
  /*padding: 0 15px;*/
  margin: 0;
}

.MHDcards a {
  color: #14254a;
}

.MHDcards a:hover {
  color: #dbac4e;
}

.MHDcards ul {
  margin: 0;
}

.MHDcards ul li {
  font-weight: bold;
  font-size: 1em;
  /*    text-align: justify;
*/
}

.MHDcards .card1 {
  padding: 20px;
  background-color: #fff;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

.MHDcards .card2 {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  padding: 20px;
  /*background-color: #14254a;*/
  background-color: #fff;
  /*color: #fff;*/
  width: 100%;
  height: 100%;
}


.MHDcards .card3 {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  padding: 20px;
  background-color: #14254a;
  color: #fff;
  width: 100%;
  height: 100%;
}

@media (max-width: 567px) {

  .MHDcards ul {
      padding: 2px;
      margin: 0;
      justify-content: right;
  }

  .MHDcards ul li {
      padding: 7px;
      font-size: 15px;
      margin: 0;
      text-align: right;
      justify-content: right;
  }



  .MHDcards .marg0 {
      margin: 0;
  }
}

/* =============== Mahdi NewCards END ============== */
/* ============================= Unisco =========================== */
.uniscoLinks {
  margin-top: 50px;
}

.uniscoLinks a {
  color: #14254A;
}

.uniscoLinks a:hover {
  color: #E8B53F;
}

.uniscoLinks li {
  margin-bottom: 20px;
}

/* ============================= Unisco END =========================== */

/* ============================= Jobs =========================== */
.jobsOfferCon {
  padding: 0px;
  margin-bottom: 30px;
  max-width: 300px;
  box-shadow: 10px 10px 5px #aaaaaa;
  border-radius: 25px;
  overflow: hidden;
  margin: 25px;
}

.jobsOfferConTitle {
  text-align: center;
  background-color: #14254A;
  padding-top: 5px;
}

.jobsOfferConTitle h3 {
  padding: 0px;
  margin: 0px !important;
  color: white;
}

.jobsOfferConTitle span {
  text-align: right;
  color: gray;
}

.jobsOfferConText {
  margin-bottom: 15px;
  overflow: hidden;
  /*display: -webkit-box;*/
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  padding: 10px 10px 0px 10px;
}

.jobsOfferConImg {
  text-align: center;
}

.jobsOfferConImg img {
  width: 100%;
}

.jobsOfferConImg p {
  margin: 0px;
  padding: 0px;
}

.attachments {
  text-align: center;
  color: #14254A;
  background-color: #14254A;
  padding: 15px 0px;
}

.attachments a {
  padding: 5px 25px;
  color: white;
  /* border: #14254A solid 2px; */
  border-radius: 25px;
}

.attachments i {
  color: white;
}

.attachments i:hover {
  color: #14254A;
}

.flexWrapContainer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================= Jobs END  =========================== */

/* ============================= Services  =========================== */
.servicesTable {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.servicesTable th {
  background-color: #14254A;
  text-align: center;
  color: white;
}

.servicesTable li {
  text-align: right;
}

.servicesTable table,
td,
th {
  border: 1px solid;
}

.servicesTable a {
  color: #E8B53F;
}



/* ============================= Services END  =========================== */


/*===========================
    more visited css 
===========================*/
.single-features {
  -webkit-box-shadow: 0px 8px 16px 0px rgba(72, 127, 255, 0.1);
  -moz-box-shadow: 0px 8px 16px 0px rgba(72, 127, 255, 0.1);
  box-shadow: inset 0px 1px 10px 0px #103776;
  background-color: #fff;
  /* border-top-right-radius: 30px;
border-bottom-left-radius: 30px; */
  border-radius: 25px;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.single-features::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #102baf;
  /* background: -webkit-linear-gradient(left, #102baf 0%, #1664ff 100%);
background: -o-linear-gradient(left, #102baf 0%, #1664ff 100%);
background: linear-gradient(to right, #102baf 0%, #1664ff 100%); */
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  color: white !important;
}

.single-features .features-icon {
  position: relative;
  display: inline-block;
}

.single-features .features-icon i {
  font-size: 50px;
  color: #1863ff;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.single-features .features-icon span {
  font-size: 124px;
  color: white;
  line-height: 100px;
  opacity: 0.08;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}

.single-features .features-content {
  padding-top: 5px;
  position: relative;
  z-index: 9;
}

.single-features .features-content .features-title {
  font-size: 24px;
  color: #1763FF !important;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.single-features:hover .features-content .features-title {
  color: white !important;
}

.single-features .features-content .text {
  margin-top: 25px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.single-features:hover::before {
  opacity: 1;
}

.single-features:hover .features-icon i,
.single-features:hover .features-icon span {
  color: #fff;
}

.single-features:hover .features-icon span {
  color: #102baf;
}

.single-features:hover .features-content .features-title a {
  color: #fff;
}

.single-features:hover .features-content .text {
  color: #fff;
}

.featuresSpan {
  color: white;
}


/*===========================
    more visited css 
===========================*



/*===========================
    new more visited css 
===========================*/
.section-padding {
  padding: 120px 0px;
}

@media (max-width: 1191px) {
  .section-padding {
      padding: 100px 0px;
  }
}

@media (max-width: 767px) {
  .section-padding {
      padding: 80px 0px;
  }
}

@media (max-width: 767px) {
  .section-padding.section-padding_3 {
      padding: 50px 0px;
  }
}

section.more-sec {
  /*    background-image: url("../img/home/pattern-section-01.png");*/
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover !important;
}

div.more-box-1 {
  background: linear-gradient(0deg, rgba(27 167 228 / 40%), rgba(0 0 0 / 60%)), url('../img/more_visited/Group7.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transition: 2s;
}

div.more-box-1:hover {
  background: linear-gradient(0deg, rgba(27 167 228 / 50%), rgba(0 0 0 / 60%)), url('../img/more_visited/Group7.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transition: 2s;
}

div.more-box-2 {
  background: linear-gradient(0deg, rgba(27 167 228 / 40%), rgba(0 0 0 / 60%)), url('../img/more_visited/Group6.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transition: 2s;
}

div.more-box-2:hover {
  background: linear-gradient(0deg, rgba(27 167 228 / 50%), rgba(0 0 0 / 60%)), url('../img/more_visited/Group6.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transition: 2s;
}

div.more-box-3 {
  background: linear-gradient(0deg, rgba(27 167 228 / 40%), rgba(0 0 0 / 60%)), url('../img/more_visited/Group5.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transition: 2s;
}

div.more-box-3:hover {
  background: linear-gradient(0deg, rgba(27 167 228 / 50%), rgba(0 0 0 / 60%)), url('../img/more_visited/Group5.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transition: 2s;
}

div.more-box-4 {
  background: linear-gradient(0deg, rgba(27 167 228 / 40%), rgba(0 0 0 / 60%)), url('../img/more_visited/Group1.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transition: 2s;
}

div.more-box-4:hover {
  background: linear-gradient(0deg, rgba(27 167 228 / 50%), rgba(0 0 0 / 60%)), url('../img/more_visited/Group1.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transition: 2s;
}


section.more-sec .section-title-4 h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 139.9%;
  /* or 67px */

  align-items: center;
  text-align: center;
  letter-spacing: -0.015em;
  color: #14274A;
}

section.more-sec .single-fun-fact.mb-30 {
  padding: 50px 10px 30px 10px;
  min-height: 100%;
}

section.more-sec .single-fun-fact.mb-30 h4 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 139.9%;
  /* identical to box height, or 90px */

  align-items: center;
  text-align: center;
  letter-spacing: -0.015em;
  color: #fff;
}



section.link-sec {
  background-color: #EFEFEF;
}

section.link-sec .section-title-4 h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 139.9%;
  /* or 67px */

  align-items: center;
  text-align: center;
  letter-spacing: -0.015em;
  color: #14274A;
}

section.link-sec .single-fun-fact.mb-30 {
  background-color: #fff;
  padding: 30px;
  min-height: 280px;
}

section.link-sec .single-fun-fact.mb-30:hover {
  background-color: #f9f9f9;
  padding: 30px;
  min-height: 280px;
}

section.link-sec .single-fun-fact.mb-30 h4 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 139.9%;
  /* identical to box height, or 90px */

  align-items: center;
  text-align: center;
  letter-spacing: -0.015em;
  color: #fff;
}

/*===========================
    new more visited css 
===========================*/

.newsImgInnrPg {
  width: 100%;
  max-width: 500px;
  margin: auto;
  text-align: center !important;
}

.newsImgInnrPg img {
  width: 100%;
  max-width: 600px;
}

.newInnrPgText p {
  margin-top: 45px;
  font-size: 20px !important;
}

/*===========================
    more visited css END 
===========================*/


/* =============== youtubeVideo mahdi ============== */


.vidlist {
  align-content: center;
  width: 95%;
  border: dashed;
  border-color: red;
}

.vidcard {
  width: 100%;
  border: dashed;
  border-color: green;
  min-height: 270px;
  max-height: 290px;
  top: -50px;
  align-items: center;
}

.vidcard p {
  width: 70%;
  text-align: justify;
  border: dashed;
  border-color: blue;
}


.youtubeVideo2 {
  text-align: center;
  /*    margin-top: 25px;
margin-bottom: 25px;*/
  display: flex;
  align-content: space-between;
}

.youtubeVideo2 .youtubeLink {
  text-align: center;
  margin: 50px auto;
}

.youtubeVideo2 .youtubeLink h3 {
  margin-top: 25px;
}

.youtubeVideo2 iframe {
  width: 350px;
  height: 250px;
  margin-top: 7.5px;
}




/* =============== youtubeVideo END ============== */

/*===========================
    FingerPrint css 
===========================*/
.iframe-container iframe .resultform td {
  background: green;
}

#Label3 {
  font-size: 30px !important;
}

/*===========================
    FingerPrint css END
===========================*/

#statistics .section-title h2 {
  /* color: white !important; */
}

/* ====================== Content END ================ */



/* Set container styles */
.chatbot-container {
  position: fixed;
  bottom: 100px;
  left: 20px;
  width: 400px;
  max-width: 90%;
  height: 500px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: none;
  /* Hide the container by default */
  transition: left 0.3s ease-in-out;
  z-index: 999999;
}

/* Set button styles */
.chatbot-button {
  position: fixed;
  bottom: 20px;
  left: 60px;
  font-family: 'Cairo', sans-serif;
  line-height: 28px;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  z-index: 99999999;
  /* Make sure the button appears above other elements */
  /*background-color: #FFDB74;*/
  background-color: none;
  color: #14274A;
  border-radius: 35px;
  padding: 12px 35px;
  /*font-size: 14px;*/
  font-size: 0px;
  font-weight: 700;
  /* text-transform: uppercase; */
  transition: 1s;
  /* Customize the button's appearance as desired */
}

/* hover */
.chatbot-button:hover {
  /* background-color: #14274A; */
  /*color: #ffffff;*/
  color: darkblue;
  transition: 1s;
  /* Customize the button's appearance as desired */
}


/* Set iframe styles */
.chatbot-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Class to display the chatbot container */
.show-container {
  left: 20px;
  /* Move the container to the left */
}

img.avatar {
  width: 80px;
  height: auto;
  position: absolute;
  top: -16px;
  left: -45px;
  /* border: 2px #14254A solid; */
  border-radius: 80%;
  position: absolute;
  /* animation: drop 2s infinite;
  animation-iteration-count: 1; */
  box-shadow: -1px 1px 7px 3px #1766d7;
  /* animation-delay: 0.01s; */
}

*********** voice ************************** ***********************************************/

/* Set iframe styles */
.voice-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Class to display the voice container */
.show-container {
  left: 20px;
  /* Move the container to the left */
}


audio.audio-box {
  position: fixed;
  left: calc(100vw - 55vw);
  cursor: pointer;
  box-sizing: border-box;
  z-index: 99999999;
  border-radius: 0 20px 20px 0;
  bottom: calc(100% - 160px);
}

.voice-container {
  display: none;
}

@media (max-width: 300px) {
  audio.audio-box {
      position: fixed;
      left: calc(100vw - 91vw);
      cursor: pointer;
      box-sizing: border-box;
      z-index: 99999999;
      border-radius: 0 20px 20px 0;
      bottom: calc(100% - 160px);
  }

  .voice-container {
      display: none;
  }
}

@media (min-width: 301px) and (max-width: 500px) {
  audio.audio-box {
      position: fixed;
      left: calc(100vw - 81vw);
      cursor: pointer;
      box-sizing: border-box;
      z-index: 99999999;
      border-radius: 0 20px 20px 0;
      bottom: calc(100% - 160px);
  }

  .voice-container {
      display: none;
  }
}

@media (min-width: 501px) and (max-width: 849px) {
  audio.audio-box {
      position: fixed;
      left: calc(100vw - 65vw);
      cursor: pointer;
      box-sizing: border-box;
      z-index: 99999999;
      border-radius: 0 20px 20px 0;
      bottom: calc(100% - 160px);
  }

  .voice-container {
      display: none;
  }
}

@media (min-width: 850px) and (max-width: 1100px) {
  audio.audio-box {
      position: fixed;
      left: calc(100vw - 63vw);
      cursor: pointer;
      box-sizing: border-box;
      z-index: 99999999;
      border-radius: 0 20px 20px 0;
      bottom: calc(100% - 160px);
  }

  .voice-container {
      display: none;
  }
}

@media (min-width: 1101px) and (max-width: 1500px) {
  audio.audio-box {
      position: fixed;
      left: calc(100vw - 62vw);
      cursor: pointer;
      box-sizing: border-box;
      z-index: 99999999;
      border-radius: 0 20px 20px 0;
      bottom: calc(100% - 160px);
  }

  .voice-container {
      display: none;
  }
}

@media (min-width: 1501px) {
  audio.audio-box {
      position: fixed;
      left: calc(100vw - 56vw);
      cursor: pointer;
      box-sizing: border-box;
      z-index: 99999999;
      border-radius: 0 20px 20px 0;
      bottom: calc(100% - 160px);
  }

  .voice-container {
      display: none;
  }
}

/*floating button*/




/* Set container styles */
.voice-container {
  position: fixed;
  bottom: 100px;
  left: 20px;
  width: 260px;
  max-width: 80%;
  height: 45px;
  display: none;
  /* Hide the container by default */
  transition: left 0.3s ease-in-out;
  z-index: 999999;
}


/* Set button styles */
.voice-button {
  position: fixed;
  bottom: 50%;
  left: 3%;
  font-family: 'Cairo', sans-serif;
  line-height: 28px;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  z-index: 99999999;
  background-color: rgb(255, 219, 116);
  color: #14274A;
  border-radius: 35px;
  padding: 7px 16px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  transition: .3s;
  /* Customize the button's appearance as desired */
}

/* hover */
.voice-button:hover {
  background-color: #14274A;
  color: #ffffff;
  transition: 1s;
  /* Customize the button's appearance as desired */
}

#btn-show-cal {
  cursor: pointer;
}

/* ===============================================================
========================== @Calendar ================================
====================================================================*/
.modal-dialog-centered {
  justify-content: center;
}

.modal-content-cal {
  max-width: 800px;
}

.calendarTitleContainer {
  text-align: center;
  padding: 0px;
  margin: 0px !important;
  padding: 0px 13px;
}

.calendarTitle {
  background-color: #14254A;
  color: white !important;
  font-size: 30px;
  padding: 10px;
}

.calendarButton {
  text-align: left;
  font-size: 15px;
  position: absolute;
  top: 50px;
  left: 50px;
}

.calendarButton a {
  all: unset;
  padding: 7px;
  border-color: white 1px solid;
  background-color: #48A0D8;
  color: white;
  cursor: pointer;
  border-radius: 7px !important;
  transition: .2s;
}

.calendarButton a:hover {
  color: #14254A;
}

#calendarContainer {
  margin: 0px !important;
}

.cjslib-indicator-type-numeric {
  right: auto !important;
  left: 5px !important;
  bottom: auto !important;
  width: 15px !important;
  height: 15px !important;
  font-size: 12px !important;
}

.card-header {
  background-color: #14274A;
  color: white;
  font-size: 17px;
  font-weight: lighter;
}

.card-body,
.card-text {
  font-size: 15px !important;
}

.headerDate {
  font-weight: bolder !important;
}

.MOEh1 {
  background-color: #14274A !important;
  color: white !important;
  text-align: center;
  padding: 15px;
}

.MOEButton {
  all: unset;
  background-color: #48A0D8;
  padding: 10px 15px;
  margin-bottom: 5px;
  color: white;
  border-radius: 7px;
  /* margin-bottom: 200px !important; */
  transition: .3s;
}

.MOEButton:hover {
  background-color: #14274A;
  color: white !important;
  transition: .3s;
}


#calendarContainer-year {
  font-size: 23px;
  color: #14274A;
}

.cjslib-year path {
  fill: #14274A;
}

#organizerContainer-date {
  color: #14274A;
}

.cjslib-date path {
  fill: #14274A;
}

.btn-close {
  color: white;
  font-size: 15px;
  opacity: 1;
}

.btn-close:hover {
  color: #48A0D8;
}

/* ===============================================================
========================== @Calendar END ================================
====================================================================*/

/* ===============================================================
========================== @Search ================================
====================================================================*/

.MOESearchDiv {
  max-width: 700px;
  margin: auto;
}

.MOESearchBtn {
  all: unset;
  background-color: #48A0D8;
  padding: 10px 15px;
  color: white;
  border-radius: 7px 0px 0px 7px !important;
  font-size: 18px;
  transition: .3s;
}

.MOESearchBtn:hover {
  background-color: #14274A;
  color: white;
  transition: .3s;
}

.MOESearchInput {
  border-radius: 0px 7px 7px 0px !important;
}


/* ===============================================================
========================== @Search END ================================
====================================================================*/

/* ===============================================================
========================== @Documents Page ================================
====================================================================*/
.list-group-item {
  padding: 15px;
  font-size: 15px;
}

.list-group-item a {
  color: #48a0d8;
}

.list-group-item a:hover {
  color: #14274A;
}

.list-group2-item a {
  color: #14274A !important;
}

.list-group2 .active a {
  color: white !important;
}

/* ===============================================================
========================== @Documents Page END ================================
====================================================================*/

/* ===============================================================
========================== @Iframe  ================================
====================================================================*/

.MOEiframe iframe {
  display: block;
  /* iframes are inline by default */
  /* background: #000; */
  border: none;
  /* Reset default border */
  width: 100%;
  height: 1500px;
}

/* ===============================================================
========================== @Iframe END ================================
====================================================================*/

/* ===============================================================
========================== @ResearchRequest ================================
====================================================================*/
.outterPageBackground {
  background-color: #efeeee;
}

.outterPageBackground .leftSideOfContent {
  margin-top: 0px;
  margin-bottom: 0px;
}

/* ===============================================================
========================== @ResearchRequest END ================================
====================================================================*/






.newKuwaitLogoInMenu {
  display: none !important;
}

/* ===============================================================
========================== @NEW BANNER ================================
====================================================================*/

.bannerContainer {
  display: flex;
  height: 500px;
}

.bannerLeftSec {
  background-color: lightblue;
}

.bannerRightSec {
  background-color: lightgreen;
}

.bannerLeftSec,
.bannerRightSec {
  margin: auto;
  flex: 1;
  text-align: center;
}

@media (max-width: 600px) {
  .bannerContainer {
      flex-direction: column;
  }
}

/* ===============================================================
========================== @NEW BANNER END ================================
====================================================================*/

/* ===============================================================
========================== @404 page ================================
====================================================================*/

.page404 {
  margin-top: 105px;
  text-align: center;
  background-image: url("/assets/img/sections/bacground.webp");
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  /* min-height: 700px; */
  color: white;
  /* padding-top: 100px; */
  padding: 350px;
  filter: brightness(50%);
}

.page404text {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.page404text h1 {
  margin: 0px;
}

.MOEerror {
  padding: 180px;
}

.MOEerror h5 {
  color: #14274a;
  font-size: 26px;
}

/* ===============================================================
========================== @404 page END ================================
====================================================================*/


/*/////////////////////////////////////////////////////////
/////////////////////// new carousel Sec //////////////////
/////////////////////////////////////////////////////////*/

.newCarouselSection {
  display: none;
}

.newCarouselSection .container {
  text-align: center;
  /* display: flex; */
  /* padding-top: 40px; */
  padding-bottom: 40px;
}

.newCarouselSection .image-container {
  /* flex: 1; */
}

.newCarouselSection .slider-container {
  margin-top: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding-bottom: 20px;
  min-height: 100px;
  padding-top: 10px;
  max-width: 90%;
  text-align: center;
  justify-content: center;
  margin: auto;
}

.newCarouselSection .slider-image {
  width: 100px;
  height: 100px;
  margin-right: 10px;
  /* cursor: pointer; */
  /* transition: all 0.4s ease-in-out; */
  /* padding: 20px 0px; */
  border-left-width: 3px;
  border-left-style: solid;
  border-image: linear-gradient(to top, transparent, gray, transparent)1 100%;
  padding-left: 10px;
}

.newCarouselSection .slider-image:hover {
  /* transform: scale(1.3); */
}

.newCarouselSection #main-image {
  max-width: 200px;
  min-width: 200px;
  max-height: 200px;
  min-height: 200px;
}

/*/////////////////////////////////////////////////////////
/////////////////////// new carousel Sec END//////////////////
/////////////////////////////////////////////////////////*/


.MOEcenter {
  text-align: center;
}

/* ===============================================================
========================== @media ================================
====================================================================*/
@media only screen and (max-width: 1399px) and (min-width: 1200px) {
  figure.snip1249 figcaption::before {
      right: 300px;
  }

  figure.snip1249 .moreNews {
      bottom: 32px;
      left: 10px;
  }
}

@media only screen and (max-width: 1199px) and (min-width: 1151px) {
  figure.snip1249 figcaption::before {
      right: 288px;
  }

  figure.snip1249 .moreNews {
      bottom: 25px;
      left: 0px;
  }
}

@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .MScard-body .pages {
      font-size: 0.9em;
  }
}

@media (max-width: 1350px) {
  .BannerSec h1 {
      top: 34%;
  }
}

@media (max-width: 1150px) {
  .BannerSec h1 {
      top: 18%;
  }
}

@media only screen and (max-width: 1150px) and (min-width: 993px) {
  .newsSec .col-lg-3 {
      width: 50%;
  }
}

@media (max-width: 1024px) {
  .newKuwaitLogoInMenu {
      display: block !important;
  }

  #hero h2 {
      font-size: 28px;
  }
}

@media (max-width: 992px) {
  .detailscontent {
      padding: 10px;
  }

  .detailsStylingUl {
      margin-right: 130px !important;
  }

  .mybtn {
      margin: 10px;
  }

  .ServicesTabs p {
      display: block;
  }

  .detailsStyling summary {
      padding-right: 135px;
  }

  figure.snip1249 .snip1249 .moreNews {
      font-size: 20px;
  }

  .section-title h2 {
      font-size: 20px;
  }

  .graduatedPostImg {
      /* padding-top: 50px; */
      float: none;
  }

  .graduatedPostImg img {
      /* width: 300px; */
      /* object-fit: cover; */
      max-width: 100%;
      border-radius: 25px 25px 0px 0px;
      min-width: inherit;
      min-height: inherit;
  }

  .graduatedPost .graduatedPostImg img {
      max-width: 100%;
  }

  .graduatedPostText {
      margin-top: 15px;
      padding: 10px;
  }

  .newsPost {
      padding: 0px;
      display: flow-root;
  }

  .graduatedPost {
      padding: 0px;
  }

  .jobsOfferCon {
      max-width: 250px;
  }

  .servicesTable {
      font-size: 15px;
  }

  .servicesTable li {
      font-size: 15px;
  }

  .youtubeVideo iframe {
      width: 100%;
      width: 540px;
      height: 315px;
      float: none;
  }

  .BannerSecH1 {
      font-size: 35px;
  }

  .BannerSec h1 {
      top: 210;
      font-size: 45px;
      right: 28%;
  }

  .clients {
      display:  none;
  }

  .newCarouselSection {
      display: block;
  }

}

@media (max-width: 768px) {
  .card {
      min-height: 350px;
  }

  .marg0R-small {
      margin-right: 0;
  }

  .calendarCardBody {
      min-height: auto;
  }

  /* .newCarouselSection .slider-image{
      width: 70px;
      height: 70px;
  } */
  .newCarouselSection .autoScroll{
      animation: scroll 20s linear alternate infinite ;
  }
  @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      
      100% {
        transform: translateX(100%);
      }
    }
}

@media (max-width: 575px) {
  .detailsStylingUl {
      margin-right: 0px !important;
  }

  .detailscontent {
      max-width: 340px;
  }

  .BannerSec h1 {
      top: 17%;
      font-size: 25px;
      right: 15%;
  }

  .BannerSecH1 {
      /* font-size: 35px; */
      top: 120px !important;
  }

  .detailsStyling summary {
      padding-right: 110px;
  }

  .graduatedPostImg {
      /* padding-top: 50px; */
  }

  .graduatedPostImg img {
      /* width: 150px; */
  }

  .graduatedPostText {
      font-size: 10px;
      color: black;
  }

  .youtubeVideo iframe {
      width: 300px;
      height: 200px;
  }

  .newsPostText {
      font-size: 17px !important;
      margin-left: 10px;
  }

  .footerMiniCol h4 {
      font-size: 17px;
  }

  .footerMiniCol p {
      font-size: 15px;
  }

  .footerMiniCol a {
      font-size: 15px;
  }

  .footerMiniCol .col {
      padding: 0px;
  }

  .apps {
      max-width: 90px;
  }

  .footerHr {
      margin: 10px 0px;
  }

  #hero .carousel-container {
      padding-top: 50px;
  }

  .calendarTitle {
      text-align: right;
      padding-right: 20px;
  }

  .calendarCardBody {
      min-height: auto;
  }

  .dropdown ul a {
      font-size: 15px !important;
  }
}

@media (max-width: 420px) {
  .card {
      min-height: 300px;
  }

  .calendarCardBody {
      min-height: auto;
  }
}

@media (max-width: 390px) {
  .detailscontent {
      max-width: 320px;
  }

  .detailsStyling summary {
      padding-right: 100px;
      /*changed by boulis for responsive*/
  }

  .servicesTable ul {
      padding: 0px;
  }

  #hero h2 {
      font-size: 30px;
  }

  #hero h3 {
      font-size: 25px;
      font-weight: lighter;
  }

  #hero .banner {
      /* max-height: 150px; */
  }

  .BannerSecH1 {
      font-size: 35px;
      top: 120px !important;
  }

  .footerMiniCol a {
      font-size: 13px;
  }

  .BannerSec h1 {
      top: 17.5%;
      font-size: 25px;
      right: 15%;
  }
}

@media (max-width: 375px) {
  .detailscontent {
      max-width: 300px;
  }

  #hero h2 {
      font-size: 20px;
  }

  #hero h3 {
      font-size: 18px;
  }

  #hero .banner {
      max-height: 150px;
  }

  .footerMiniCol a {
      font-size: 12px;
  }

  .BannerSec h1 {
      top: 22%;
      font-size: 25px;
      right: 18%;
  }
}

@media (max-width: 320px) {
  #hero h2 {
      font-size: 15px;
  }

  #hero h3 {
      font-size: 13px;
  }

  .topbarIcons {
      margin-right: 0px;
      padding-top: 10px;
      margin-left: 0px;
      /* outline: 2px solid green; */
  }

  .topbarIcons ul a i {
      font-size: 18px;
  }

  #hero .banner {
      max-height: 120px;
  }

  .BannerSec h1 {
      font-size: 20px;
  }
}


@media (max-width: 280px) {
  .detailscontent {
      max-width: 320px;
  }

  .detailsStyling summary {
      padding-right: 50px;
      /*changed by boulis for responsive*/
  }

  .footerMiniCol a {
      font-size: 13px;
  }
}
figure.snip1249 {
  position: relative;
  overflow: hidden;
  margin: 10px 0px;
  min-width: 220px;
  max-width: 100%;
  width: 100%;
  background: #ffffff;
  color: #ffffff;
  text-align: right;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  min-height: 400px;
  border-radius: 10px
}
@media (max-width: 991px) {

  figure.snip1249 figcaption:before {
      width: 168px;
      height: 200px;
      right: 419px;
  }
}

@media (max-width: 768px) {
  figure.snip1249 .moreNews {
      position: absolute;
      display: contents;
      bottom: 21px !important;
      left: 8px !important;
      display: inline-block;
      width: 54px !important;
      border: 2px solid #20638f;
      transform: rotate(45deg);
      z-index: 3;
      color: aliceblue;
      border-color: aliceblue;
      font-size: 13px
  }
}
@media (min-width: 768px) and (max-width: 1180px) {
  figure.snip1249 figcaption:before {
      width: 251px;
      height: 200px;
  }
}