/********** Template CSS **********/
:root {
    --primary: #FE5D37;
    --light: #FFF5F3;
    --dark: #103741;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-out, visibility 0s linear 1s; /* Increased duration to 1s */
  z-index: 99999;
}

#spinner.show {
  transition: opacity 1s ease-out, visibility 0s linear 0s; /* Increased duration to 1s */
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

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

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

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

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Heading ***/
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: "Cairo", sans-serif;
    /*font-family: 'Lobster Two', cursive;*/
    font-weight: 700;
}

h5,
h6,
.h5,
.h6 {
    font-weight: 600;
}

.font-secondary {
    font-family: 'Lobster Two', cursive;
}


/*** Navbar ***/
.navbar .navbar-nav .nav-link {
    padding: 30px 15px;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

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

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: calc(100% - 15px);
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel::before,
.header-carousel::after,
.page-header::before,
.page-header::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    top: 0;
    left: 0;
    background: url(../img/bg-header-top.png) center center repeat-x;
    z-index: 1;
}

.header-carousel::after,
.page-header::after {
    height: 19px;
    top: auto;
    bottom: 0;
    background: url(../img/bg-header-bottom.png) center center repeat-x;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 275px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 1%;
    width: 98%;
    display: flex;
    flex-direction: column;
}

/* .header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
} */

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Facility ***/
.facility-item .facility-icon {
    position: relative;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-item .facility-icon::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-icon span {
    position: absolute;
    content: "";
    width: 15px;
    height: 30px;
    top: 0;
    left: 0;
    border-radius: 50%;
}

.facility-item .facility-icon span:last-child {
    left: auto;
    right: 0;
}

.facility-item .facility-icon i {
    position: relative;
    z-index: 2;
}

.facility-item .facility-text {
    position: relative;
    min-height: 250px;
    padding: 30px;
    /*border-radius: 10%;*/
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
}

.facility-item .facility-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-text * {
    position: relative;
    z-index: 2;
}

.facility-item:hover .facility-icon::before,
.facility-item:hover .facility-text::before {
    background: transparent;
}

.facility-item * {
    transition: .5s;
}

.facility-item:hover * {
    color: #FFFFFF !important;
}


/*** About ***/
.about-img img {
    transition: .5s;
    width: 95%; 
    
}

.about-img img:hover {
    background: var(--primary) !important;
}


/*** Classes ***/
.classes-item {
    transition: .5s;
}

.classes-item:hover {
    margin-top: -10px;
}


/*** Team ***/
.team-item .team-text {
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #FFFFFF;
    border: 17px solid var(--light);
    border-radius: 250px;
    transition: .5s;
}

.team-item:hover .team-text {
    border-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
    .post-slide{
      margin-top: 50px;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

/* .testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
} */


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 45px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    border-color: var(--primary);
    background: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 16px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary) !important;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--primary) !important;
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* fayiz */
body {
    position: relative;
    height: 100vh;
  }
          
  .wrapper {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)
  }
  
  .video-main {
    position: relative;
    display: inline-block;
  }
  
  .video {
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 100%;
    background: transparent;
    color: #fff;
    display: inline-block;
    background: #bd0606;
    z-index: 999;
  }
  
  @keyframes waves {
    0% {
      -webkit-transform: scale(0.2, 0.2);
      transform: scale(0.2, 0.2);
      opacity: 0;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    50% {
      opacity: 0.9;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }
    100% {
      -webkit-transform: scale(0.9, 0.9);
      transform: scale(0.9, 0.9);
      opacity: 0;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
  }
  
  .fa-play:before {
    content: "\f04b";
  }
  
  .waves {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(196, 15, 15, 0.452);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    border-radius: 100%;
    right: -50px;
    bottom: -50px;
    z-index: -1;
     -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
  }
          
  .wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
  
  .wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
  }
  
  .wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
  }

  /* gallery */
  /* Click the image one by one to see the different layout */

/* Owl Carousel */

.owl-prev {
    height: 50px!important;
    width: 50px!important;
    border-radius: 100%;
    background: url('../img/arrow-left.svg') center no-repeat;
    background-size: 24px;
    background-color: white;
    box-shadow: 1.5px 3px 3px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 50%;
    width: 27px;
    z-index: 1000;
    left: 2%;
    cursor: pointer;
    color: transparent;
    margin-top: -27px;
  }
  
  .owl-next {
    height: 50px!important;
    width: 50px!important;
    border-radius: 100%;
    background: url('../img/arrow-right.svg') center no-repeat;
    background-size: 24px;
    background-color: white;
    box-shadow: 1.5px 3px 3px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 50%;
    width: 27px;
    z-index: 1000;
    right: 2%;
    cursor: pointer;
    color: transparent;
    margin-top: -27px;
  }
  
  .owl-prev:hover,
  .owl-next:hover {
    opacity: 0.5;
  }
  
  
  /* Owl Carousel */
  
  
  /* Popup Text */
  
  .white-popup-block {
    background: #FFF;
    padding: 20px 30px;
    text-align: left;
    max-width: 650px;
    margin: 40px auto;
    position: relative;
  }
  
  .popuptext {
    display: table;
  }
  .popuptext p {
    margin-bottom: 10px;
  }
  .popuptext span {
    font-weight.item {
        position: relative;
      }
      .item i {
        display: none;
        font-size: 4rem;
        color: #FFF;
        opacity: 1;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
      }
      .item a {
        display: block;
        width: 100%;
      }
      .item a:hover:before {
        content: "";
        background: rgba(0, 0, 0, 0.5);
        position: absolute;
        height: 100%;
        width: 100%;
        z-index: 1;
      }
      .item a:hover i {
        display: block;
        z-index: 2;
      }
    
  }
  /* Popup Text */
  
  /* Icon CSS */
/* test */
.card {
    position: relative;
    width: 280px;
    height: 370px;

    display: flex;
    align-items: flex-end;

    padding: 2rem 1rem;
    background-color: #fff;
    box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.5);
    transition: 0.5s ease-in-out;
}

.card:hover {
    transform: translateY(20px);
}

.card::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(74, 77, 76, 0.5), rgb(62, 65, 57));
    z-index: 2;
    transition: 0.5s all;
    opacity: 0;
}

.card:hover::before {
    opacity: 1;
}

.card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card .overlay {
    position: relative;
    z-index: 3;
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.5s all;
    padding: 30px 0px;
}

.card:hover .overlay {
    opacity: 1;
    transform: translateY(30px);
}

.overlay {}

.text-h5 {
    margin: 0;
    color: white !important;
    margin-top: 60%;
}

.text-p {
    letter-spacing: 1px;
    margin-top: 8px;
    margin-bottom: 10px;
}

.link-a {
    padding: 0.5rem 1rem;
    background-color: #fff;
    color: #000;
    cursor: pointer;
    transition: .4s ease-in-out;
}

.link-a:hover {
  box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.5);
}
@media (max-width: 575px) {
    .card {
      width: 120%;
      /* margin-left: 1px; */
    }
  }
  @media (min-width: 576px) and (max-width: 767px) {
    /* .grid-sizer,
    .grid-item {
      width: 50%;
    } */
  }
  

* { box-sizing: border-box; }

.grid:after {
  content: '';
  display: block;
  clear: both;
}

/* .grid-sizer,
.grid-item {
  width: 33.333%;
} */
@media (max-width: 575px) {
  .grid-sizer,
  .grid-item {
    width: 100%;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .grid-sizer,
  .grid-item {
    width: 50%;
  }
}

/* To change the amount of columns on larger devices, uncomment the code below */

/* @media (min-width: 768px) and (max-width: 991px) {
  .grid-sizer,
  .grid-item {
    width: 33.333%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .grid-sizer,
  .grid-item {
    width: 25%;
  }
}
@media (min-width: 1200px) {
  .grid-sizer,
  .grid-item {
    width: 20%;
  }
} */

.grid-item {
  float: left;
}

.grid-item img {
  display: block;
  max-width: 100%;
}

/* learning env */
*{padding:0px; margin:0px;}
.grid {display: grid;grid-template-columns :repeat(auto-fit, minmax(280px,1fr)); gap:24px;}
.grid-item{
   background-color: #fff;
   /*border-radius: 18px;*/
   box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 5px;
   padding: 10px;
}

/* camp card */
/* .movie-card {
  position: relative;
  width: 320px;
  height: 450px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  margin: 10px 0;
  color:#fff;
}
.movie-card .poster {
  position: relative;
  overflow: hidden;
} */
/* .movie-card .poster::before {
  content: "";
  position: absolute;
  bottom: -180px;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #fe5d37 50%, transparent);
 
} */
/* .movie-card:hover .poster::before {
  bottom: 0px;
}
.movie-card .poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.movie-card:hover .poster img {
  transform: translateY(-50px);
  filter: blur(5px);
}
.movie-card .details {
  position: absolute;
  display:flex;
  flex-direction:column;
  justify-content:start;
  align-items:start;
  text-align: start;
  width: 100%;
  bottom: -120px;
  transition: 0.5s;
  padding: 10px;
  transition:0.5s;
}
.movie-card:hover .details {
 bottom:0;
}
.movie-card .tags span{
  border-radius:5px;
  background:#fe5d37;
  padding:4px;
  margin: 0 5px;
}
.movie-card .details .tags span:nth-child(2){
  background:orange;
} */
/* hire */
section {
  /* max-width: 80rem; */
  background: linear-gradient(to right, #fe5d37 30%,  #fe5d37);
  color: white;
  line-height: 1.5;
  font-family: "Cairo", sans-serif;
  /*font-family: 'Nunito', sans-serif;*/
}

@media (min-width: 600px) {
  section {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  
  .hiring {
    padding: 3vw 0 3vh 3vw;
  }
  
  .image-wrapper {
    filter: hue-rotate(20deg);
    clip-path: polygon(0 100%, 50% 0, 100% 0, 100% 100%);
  }
}

.hiring {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  
  h3 {
    white-space: nowrap;
    color: #333;
    font-size: 3rem;
    margin: 2.5rem 0 1.5rem;
  }
  
  p {
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin: 0 0 1.5rem;
  }
  a { border: 4px solid #fe5d37; }
  a:hover {
    color: white;
    background-color: #fe5d37;
    border: 4px solid white;
  }
}

.image-wrapper {
  height: 100%;
  width: 100%;
  clip-path: polygon(0, 0, 0, 0);

  img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: right center;
  }
}

/* job */



body {
    font-family: "Cairo", sans-serif;
    /*font-family: 'Open Sans', sans-serif;*/
    color: #31383d;
    font-size: 1.1rem;
}

.section01 {
    padding: 30px 0;
    background: #fff;
}

p {
    line-height: 1.5;
    margin: 30px 0;
    text-align: justify;
}
.facility-text p {
    text-align: center;
}
.classes-item p, .testimonial-item p, h3.text-white ~ p, p.company.my-2 {
    text-align: start;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Cairo", sans-serif;
    /*font-family: 'Hind', sans-serif;*/
    font-weight: 800;
}
h1, h2 { color: #FE5D37; }
h3, h4 { color: #ed7d31; }
h5, h6 { color: #186ebf; }

.summerparagh{
  color: white;
}
a {
    color: #31383d;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
}

a:hover,
a:focus {
    color: #73a5fc;
}



header.masthead {
    padding-top: 4rem;
    padding-bottom: 4rem;
    margin-bottom: 3rem;
    background: #a3bded;
    background: -webkit-linear-gradient(-20deg, #a3bded 0%, #6991c7 100%);
    background: -moz-linear-gradient(-20deg, #a3bded 0%, #6991c7 100%);
    background: linear-gradient(-20deg, #a3bded 0%, #6991c7 100%);
}

header.masthead .site-heading {
    padding: 100px 0 50px;
    color: #fff;
}

header.masthead .site-heading h1 {
    font-size: 2.3rem;
}

header.masthead .site-heading .subheading {
    display: block;
    font-weight: 300;
    margin: 0.625rem 0 0;
    color: #fff;
}

ul.job-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.job-list > li.job-preview {
    background: #fff;
    border: 1px solid #d7e2e9;
    -webkit-border-radius: 0.4rem;
    -moz-border-radius: 0.4rem;
    border-radius: 0.4rem;
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    float: left;
    width: 100%;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

ul.job-list > li.job-preview:hover {
    cursor: pointer;
    -webkit-box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    -moz-box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.job-title {
    margin-top: 0.6rem;
}

.company {
    color: #96a4b1;
}

.job-preview .btn {
    margin-top: 1.1rem;
}

.btn-apply {
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 1px;
    background-color: transparent;
    color:  #393a5f;
    border: 2px solid #393a5f;
    padding: 1.6rem 2rem;
    -webkit-border-radius: 2rem;
    -moz-border-radius: 2rem;
    border-radius: 2rem;
  line-height: normal; /* Reset line height */
}

.btn-apply:hover {
    background-color: #393a5f;
    color:  #fff;
    border: 2px solid #393a5f;
}

@media (max-width: 575px) {
    .job-preview .content {
        width: 100%;
    }
}

/* counter */


/* gallery */
img {
  width: 100%;
}

.masonry {
    column-count: 4;
    column-gap: 16px;
}

.masonry .mItem {
  display: inline-block;
  margin-bottom: 16px;
  width: 100%;
}

@media (max-width: 1199px) {
  .masonry {
    column-count: 3;
  }
}

@media (max-width: 991px) {
  .masonry {
    column-count: 2;
  }
}

@media (max-width: 767px) {
  .masonry {
    column-count: 1;
  }
}

iframe{
  width: 100%;
  min-height: 350px;
  border-radius: 18px;
}

/*ticker*/
.ticker { 
    font-size: 16px;
}
.ticker span {
    padding: 2px 7px 0;
    font-size: 14px;
    font-weight: 700;
    color: #FFF;
    text-transform: uppercase;
    background-color: #FE5D37;
}
.ticker div {
    display: inline-block;
    word-wrap: break-word;
}
.ticker div a:hover {
    color: #FE5D37;
}
.ticker div a:focus {
    color: #FE5D37;
}

/*news*/
.post-content {
    padding: 10px;
    background-color: #FFF5F3;
}
.post-title {
    text-align: center;
}

/*news swiper*/
.swiper-button-next {
    width: 50px!important;
    height: 50px!important;
    border-radius: 100%;
    background-color: white;
    box-shadow: 1.5px 3px 3px rgba(0, 0, 0, 0.5);
}
.swiper-button-next::after {
    font-size: 24px!important;
    color: #000;
}
.swiper-button-prev {
    width: 50px!important;
    height: 50px!important;
    border-radius: 100%;
    background-color: white;
    box-shadow: 1.5px 3px 3px rgba(0, 0, 0, 0.5);
}
.swiper-button-prev::after {
    font-size: 24px!important;
    color: #000;
}

/*learning environment*/
.leen {
    overflow: hidden;
}
.leen h3 {
     margin-top: 25px;
    padding: 0 15px;
    font-size: 1.5rem;
}
.leen p {
    padding: 0 15px 15px;
    margin-top: 15px;
    text-align: center;
}
.leen a i {
    margin-top: 10px;
    color: #333;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 3px solid #333;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.leen a i:hover {
    color: #FE5D37;
    border: 3px solid #FE5D37;
}

 /*registration*/
 .registration {
    box-shadow: rgba(0, 0, 0, 0.2) 3px 3px 3px;
 }
 .registration input, .registration textarea {
    background-color: #FFF5F3;
 }

/*inner-banners*/
li.breadcrumb-item a {
    color: white;
}
li.breadcrumb-item a:hover {
    color: #fe7555;
}

/*school-structure*/
.img-st {
   width: 100%;
}

/*camping*/
.container__profile__text {
    padding: 10px;
    background-color: #FFF5F3;
}
.container__profile__text h5 {
    color: #31383d;
}

/*flag*/
span.flag-lang, a.flag-lang, a.log-icon {
    display: inline-flex !important;
    align-items: center;
}
span.flag-lang::before, a.flag-lang::before {
    display: inline-block;
    content: '';
    width: 16px;
    height: 16px;
    margin-inline-end: 5px;
    background-size: cover;
}
span.flag-lang::before, [dir="rtl"] a.flag-lang::before {
    background-image: url('../img/flag-usa.png');
}
a.flag-lang::before, [dir="rtl"] span.flag-lang::before {
    background-image: url('../img/flag-ksa.png');
}
a.log-icon::before {
    display: inline-flex;
    justify-content: center;
    align-items: end;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 12px;
    color: #FE5D37;
    content: '\f007';
    width: 19px;
    height: 19px;
    background-color: white;
    border-radius: 100%;
    margin-inline-end: 5px;
}
a.log-icon:first-of-type::before {
    display: none;
} /*online class*/
.oc {
    color: #444 !important;
} /*online class*/
@media (max-width: 767.98px) {
    img[src="img/fsislogo.png"] {
        width: 70%;
    }
}

/* complaint-page */
.option-box{
  padding-top: 0rem !important;
  font-size: large;
    font-weight: 600;
}
.btnh:hover{
color: white !important;
}
