/**
* NCW.
* Updated: 24/12/2023 with Bootstrap v5.2.3
* Dev. and Designed by: Anas Faisal H Allhyani  
**/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@font-face {
  font-family: Frutiger;
  src: url("../fonts/FrutigerLTArabiccopy.ttf");
  font-style: normal;
  font-weight: normal;
}
body {
  font-family: Frutiger;
  color: #444444;
}

.hero-video {
  position: static;
  width: 100%;
  /*height: 100vh;*/
  overflow: hidden;
}

.hero-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer: auto;

  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.box {
  margin: 10px;
  width: 255px;
  height: 490px;
  text-align: center;
  border-radius: 3px;
  -webkit-transition: 200ms ease-in-out;
  -o-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.box:hover {
  margin-bottom: -10px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}
.box h1 {
  color: #b1684d;

  padding: 30px;
  margin-top: 100px;
  text-align: center;
  font-weight: 50;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.date h4 {
  color: #fff;
  font-weight: 300;
  text-align: center;
  letter-spacing: 3px;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.9);
}
.poster {
  width: 130px;
  height: 130px;
  margin: 120px auto;
  position: relative;
  border-radius: 100px;
}
.poster h4 {
  top: 16px;
  color: #fff;
  position: relative;
  font-size: 80px;
  text-align: center;
  font-weight: 100;
}
.one {
  background: url("/assets/img/ftri/center_work/wilds.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.two {
  background: url("/assets/img/ftri/center_work/seas.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}
.three {
  background: url("/assets/img/ftri/center_work/NCW_PA11.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.four {
  background: url("/assets/img/ftri/center_work/ecotourism.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

a {
  color: #777777;
  text-decoration: none;
  /* font-family: Frutiger; */
}

a:hover {
  color: #000;
  text-decoration: none;
}

/* custom NCW icons for navbar */

ul.chevron2 li img {
  margin: 20px 0 0 0 auto;
}

/* h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: Frutiger; 
} */

/* adjust with the H's */

h5 {
  font-size: 20px;
  font-weight: 500;
  margin-top: 5px;
}

/* Box sizing for the new version of bootstrap V.5.3 */

.selector-for-some-widget {
  box-sizing: content-box;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background-size: cover;
  /*background: #a7593c;*/
  /*background-image: url("../../assets/img/maintheme2\ \(1\).jpg");*/

  /* <time> values 
transition-timing-function: ease-in-out;
  transition-duration: 3s;*/
}

#preloader:before {
  content: "";
  /* background: url("/assets/img/loading-logo.gif"); */
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  /*animation: pulse 2s infinite;*/ /*closed the pulse animation */
  /*background: url(../https://eservices.ncw.gov.sa/Content/images/profile/loading-logo.gif) no-repeat center;*/
  background-size: 7rem;
}

/*@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}*/

/* added the pulse kyframes 23-05-2023 

@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
    box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
      box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
      box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}*/

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #f4e5c9;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #777777;
  line-height: 0;
}

.back-to-top:hover {
  background: #b1684d;
}

.back-to-top:hover i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

/* for the time and transation sction top of the website */

.header-1 {
  background: #575757;
  height: 44px;
  padding-top: 12px;
}

#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

/* addd 29/04/2023 */

#header2 {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  background: #b1684d;
  box-shadow: rgba(176, 85, 56, 0.5) 0px 4px 12px;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: #b1684d;
  box-shadow: rgba(176, 85, 56, 0.5) 0px 4px 12px;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  /*margin-left: 130px;*/
  /* set the margin-left for the logo from 150-130px to 110px */
  /* set the margin-left for the logo from 110px to 70px */
  /* margin-left: 70px; */
}

#header .logo a {
  color: #fff;
}

/* #header .logo img {
  height: 100%;
  padding: 10px 0px 0px 0px; 
  margin-left: 80px; /*Hide for now SEP 3rd 2023
} */

/* img and img fluids section */

.img-rounded {
  max-width: 100%;
  height: 400px;
  min-width: 400px;
}

.img-fluid {
  max-width: 100%;
  /*height: 400px;*/
  min-width: 100%; /* from 400px to 100% */
}

.img-fluid2 {
  max-width: 100%;
  height: auto;
}

.img-fluid3 {
  max-width: 48%;
  height: auto;
  align-items: center;
}

.img-fluid4 {
  clip-path: square;
}

.img-fluid-logo {
  height: 100%;
  width: 70%;
  padding-left: 30px;
}

/*.img-fluid-logo {
      max-width: 88%;

}*/

.img-fluid-logo-E {
  max-height: 4rem;
  padding-right: 80px;
}

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

.navbar a:hover {
  /*border-bottom: 3px solid burlywood;*/
  /*padding: 15px;*/
  border-inline-width: 6px;
  /*line-height: 7px;*/
  outline-width: 30px;
  line-break: 10px;
  /*margin-block: 10px;*/
  border-radius: 6px;
  border-bottom-right-radius: 20px;
}

ul {
  columns: 1;
}

.navbar-mobile ul {
  columns: 1;
}

/* .navbar a.active {
  border-bottom: 0.7px solid whitesmoke;
} */

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  /*display: flex;*/
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: 0.5s;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #fff;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #b05538;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #b05538;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 1; /* twas 99 changed to 1 */
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: /*0px 0px 30px*/ 0px 8px 16px 0px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
  /*background-image: url("../../assets/img/menu-bg-1.jpg");*/
  background-color: rgba(25, 25, 25, 0.8);
}

.navbar .dropdown ul li {
  min-width: 250px;
  min-height: 50px;
  overflow: auto;
}

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

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

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

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

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

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

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

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

/* Animated nav-links */

.nav-link {
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  color: #b05538;
  padding: 20px 0px;
  margin: 15px 0px;
  display: inline-block;
  opacity: 0.75;
}

.nav-link:hover {
  opacity: 1;
}

.nav-link::before {
  transition: 300ms;
  height: 3px;
  content: "";
  position: absolute;
  background-color: #fff;
  border-radius: 10px;
  max-width: 90%;
}

.nav-link-ltr::before {
  width: 0%;
  bottom: 10px;
}

.nav-link-ltr:hover::before {
  width: 100%;
}

.nav-link-fade-up::before {
  width: 100%;
  bottom: 5px;
  opacity: 0;
}

.nav-link-fade-up:hover::before {
  bottom: 10px;
  opacity: 1;
}

.nav-link-grow-up::before {
  height: 0%;
  width: 100%;
  bottom: 0px;
}

.nav-link-grow-up:hover::before {
  height: 5px;
}

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

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

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

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  /*background: rgba(40, 58, 90, 0.9);*/
  transition: 0.3s;
  z-index: 999;
}

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

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: rgba(25, 25, 25, 0.8);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 24px;
  color: #fff;
}

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

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

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

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

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

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

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

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

*,
::after,
::before {
  /* box-sizing: border-box; */
  z-index: 100;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: #b1684d;
  background-size: cover;
  /*background-image: url(' https://www.ncw.gov.sa/Ar/KnowledgeLibrary/PhotoLibrary/slide-0009.JPG');*/
  /*background-image: url("../../assets/img/maintheme2.jpg");*/
}

@media (min-aspect-ratio: 16/9) {
  .back-video {
    width: 100%;
    height: auto;
  }
}

@media (max-aspect-ratio: 16/9) {
  .back-video {
    width: auto;
    height: 100%;
  }
}

/*video {
  /*object-fit: cover;
  width: auto;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}*/

#hero .container {
  padding-top: 72px;
}

.container-2 {
  background: #fcf8f0;
  border-radius: 10px;
}

.container-fluid-2 {
  background: #f6eae3;
  border-radius: 3px;
  padding: 20px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 7px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #b1684d;
}

#hero .btn-get-started:hover {
  background: #f4e5c9;
  color: #777777;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  margin-right: 50px;
  color: #fff;
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 22px;
  padding-left: 10px;
}

#hero .btn-watch-video:hover i {
  color: #b1684d;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    text-align: center;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

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

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

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

.section2 {
  padding: 10px 0 0 0;
  overflow: hidden;
}

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

.section-bg2 {
  margin-bottom: -80px;
}

.section-bg3 {
  background-color: #fff;
  margin-bottom: 10px;
}

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

/* 

.section-title-sisters {
  text-align: center;
  padding-bottom: 3px;
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 50px;
  padding-top: 100px;
  padding-bottom: 20px;
  position: relative;
  color: #b05538;

}
 */

.section-title h2 {
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 40px;
  padding-bottom: 20px;
  position: relative;
  color: #b05538;
}

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

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

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

.section-title h3 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 50px;
  padding-top: 100px;
  padding-bottom: 20px;
  position: relative;
  color: #b05538;
}

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

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

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

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 12px 0;
  text-align: center;
  overflow: scroll;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  /*filter: grayscale(100);*/
}

.clients img:hover {
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 80px;
  }
}

/*--------------------------------------------------------------

NEWS (إعلامنا) SECTION - for seconadry page (2 and 3) 
--------------------------------------------------------- */
.news-media {
  background-color: #fff;
  padding: 10px 0;
}

.news-media .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.news-media img {
  width: 460px;
  height: auto;
  margin: auto;
  display: block;
  /*padding-top: 20px;*/
  /*shape-outside: circle();*/
  /*clip-path: circle();*/
  border-color: #b05538;
  margin-top: auto;
  margin-bottom: auto;
  /*box-shadow: 0 0 12px 0 */
  /* rgba(0,0,0,0.2); */
}

.news-media .content ul {
  list-style: none;
  padding: 0;
}

.news-media .content ul li {
  padding-left: 28px;
  position: relative;
}

.news-media .content ul li + li {
  margin-top: 10px;
}

.news-media .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #b05538;
  line-height: 1;
}

.news-media .content p:last-child {
  margin-bottom: 0;
}

.news-media .content .btn-learn-more {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #b05538;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #b05538;
}

.news-media .content .btn-learn-more:hover {
  background: #b05538;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# About CENTER (MA and AA)
--------------------------------------------------------------*/

.about {
  background-color: #fff;
  padding: 20px 0;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about img {
  min-width: 140px;
  height: 190px;
  margin: auto;
  display: block;
  /*padding-top: 20px;*/
  shape-outside: circle();
  clip-path: circle();
  border-color: #b05538;
  margin-top: 20px;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
}

.about img-2 {
  display: block;
}

.about img-rounded {
  display: block;
}

.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: #b05538;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #b05538;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #b05538;
}

.about .content .btn-learn-more:hover {
  background: #b05538;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------

NEWS (from Media Landing page for secondary pags (2 and 3) SECTION 
--------------------------------------------------------- */
.media {
  background-color: #fff;
  padding: 10px 0;
}

.sea .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.sea img {
  width: 100%;
  height: auto; /* changed from 100% to auto */

  margin: auto;
  display: block;
  /*padding-top: 20px;*/
  /*shape-outside: circle();*/
  /*clip-path: circle();*/
  border-color: #b05538;
  margin-top: auto;
  margin-bottom: auto;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
}

.sea .content ul {
  list-style: none;
  padding: 0;
}

.sea .content ul li {
  padding-left: 28px;
  position: relative;
}

.sea .content ul li + li {
  margin-top: 10px;
}

.sea .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #b05538;
  line-height: 1;
}

.sea .content p:last-child {
  margin-bottom: 0;
}

.sea .content .btn-learn-more {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #b05538;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #b05538;
}

.sea .content .btn-learn-more:hover {
  background: #b05538;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
SEA SECTION 01/06/2023
--------------------------------------------------------- */
.sea {
  background-color: #fff;
  padding: 10px 0;
}

.sea .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.sea img {
  width: 100%;
  height: auto;
  margin: auto;
  display: block;
  /*padding-top: 20px;*/
  /*shape-outside: circle();*/
  /*clip-path: circle();*/
  border-color: #b05538;
  margin-top: auto;
  margin-bottom: auto;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
}

.sea .content ul {
  list-style: none;
  padding: 0;
}

.sea .content ul li {
  padding-left: 28px;
  position: relative;
}

.sea .content ul li + li {
  margin-top: 10px;
}

.sea .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #b05538;
  line-height: 1;
}

.sea .content p:last-child {
  margin-bottom: 0;
}

.sea .content .btn-learn-more {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #b05538;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #b05538;
}

.sea .content .btn-learn-more:hover {
  background: #b05538;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
CENTERS SECTION 31/05/2023
--------------------------------------------------------- */
.center {
  background-color: #fff;
  padding: 20px 0;
}

.center .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.center img {
  width: 100%;
  /*height: 100%;*/
  margin: auto;
  display: block;
  /*padding-top: 20px;*/
  /*shape-outside: circle();*/
  /*clip-path: circle();*/
  border-color: #b05538;
  margin-top: 20px;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
}

.center img-2 {
  display: block;
}

.center img-rounded {
  display: block;
}

.center .content ul {
  list-style: none;
  padding: 0;
}

.center .content ul li {
  padding-left: 28px;
  position: relative;
}

.center .content ul li + li {
  margin-top: 10px;
}

.center .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #b05538;
  line-height: 1;
}

.center .content p:last-child {
  margin-bottom: 0;
}

.center .content .btn-learn-more {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #b05538;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #b05538;
}

.center .content .btn-learn-more:hover {
  background: #b05538;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
GIS section 
--------------------------------------------------------- */

.GIS {
  background-color: #f3f5fa;
}

.GIS .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.GIS img {
  width: 200px;
  height: 220px;
  margin: auto;
  display: block;
  padding-top: 20px;
}

.GIS .content ul {
  list-style: none;
  padding: 0;
}

.GIS .content ul li {
  padding-left: 28px;
  position: relative;
}

.GIS .content ul li + li {
  margin-top: 10px;
}

.GIS .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #b05538;
  line-height: 1;
}

.GIS .content p:last-child {
  margin-bottom: 0;
}

.GIS .content .btn-learn-more {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #b05538;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #b05538;
}

.GIS .content .btn-learn-more:hover {
  background: #b05538;
  color: #fff;
  text-decoration: none;
}
/*--------------------------------------------------------------
# Why Us changed to "media" amended the background of the news (إعلامنا)
--------------------------------------------------------------*/

.media-bg {
  margin: 0;
  -webkit-overflow-y: hidden;
  -moz-overflow-y: hidden;
  -o-overflow-y: hidden;
  overflow-y: hidden;
  -webkit-animation: fadeIn 1 1s ease-out;
  -moz-animation: fadeIn 1 1s ease-out;
  -o-animation: fadeIn 1 1s ease-out;
  animation: fadeIn 1 1s ease-out;
}

.light {
  position: absolute;
  width: 0px;
  opacity: 0.75;
  background-color: white;
  box-shadow: #e9f1f1 0px 0px 20px 2px;
  opacity: 0;
  top: 100vh;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
}

.x1 {
  -webkit-animation: floatUp 4s infinite linear;
  -moz-animation: floatUp 4s infinite linear;
  -o-animation: floatUp 4s infinite linear;
  animation: floatUp 4s infinite linear;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.x2 {
  -webkit-animation: floatUp 7s infinite linear;
  -moz-animation: floatUp 7s infinite linear;
  -o-animation: floatUp 7s infinite linear;
  animation: floatUp 7s infinite linear;
  -webkit-transform: scale(1.6);
  -moz-transform: scale(1.6);
  -o-transform: scale(1.6);
  transform: scale(1.6);
  left: 15%;
}

.x3 {
  -webkit-animation: floatUp 2.5s infinite linear;
  -moz-animation: floatUp 2.5s infinite linear;
  -o-animation: floatUp 2.5s infinite linear;
  animation: floatUp 2.5s infinite linear;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -o-transform: scale(0.5);
  transform: scale(0.5);
  left: -15%;
}

.x4 {
  -webkit-animation: floatUp 4.5s infinite linear;
  -moz-animation: floatUp 4.5s infinite linear;
  -o-animation: floatUp 4.5s infinite linear;
  animation: floatUp 4.5s infinite linear;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  left: -34%;
}

.x5 {
  -webkit-animation: floatUp 8s infinite linear;
  -moz-animation: floatUp 8s infinite linear;
  -o-animation: floatUp 8s infinite linear;
  animation: floatUp 8s infinite linear;
  -webkit-transform: scale(2.2);
  -moz-transform: scale(2.2);
  -o-transform: scale(2.2);
  transform: scale(2.2);
  left: -57%;
}

.x6 {
  -webkit-animation: floatUp 3s infinite linear;
  -moz-animation: floatUp 3s infinite linear;
  -o-animation: floatUp 3s infinite linear;
  animation: floatUp 3s infinite linear;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  left: -81%;
}

.x7 {
  -webkit-animation: floatUp 5.3s infinite linear;
  -moz-animation: floatUp 5.3s infinite linear;
  -o-animation: floatUp 5.3s infinite linear;
  animation: floatUp 5.3s infinite linear;
  -webkit-transform: scale(3.2);
  -moz-transform: scale(3.2);
  -o-transform: scale(3.2);
  transform: scale(3.2);
  left: 37%;
}

.x8 {
  -webkit-animation: floatUp 4.7s infinite linear;
  -moz-animation: floatUp 4.7s infinite linear;
  -o-animation: floatUp 4.7s infinite linear;
  animation: floatUp 4.7s infinite linear;
  -webkit-transform: scale(1.7);
  -moz-transform: scale(1.7);
  -o-transform: scale(1.7);
  transform: scale(1.7);
  left: 62%;
}

.x9 {
  -webkit-animation: floatUp 4.1s infinite linear;
  -moz-animation: floatUp 4.1s infinite linear;
  -o-animation: floatUp 4.1s infinite linear;
  animation: floatUp 4.1s infinite linear;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  left: 85%;
}

@keyframes floatUp {
  0% {
    top: 100vh;
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    top: 0vh;
    opacity: 0.8;
  }
  75% {
    opacity: 1;
  }
  100% {
    top: -100vh;
    opacity: 0;
  }
}

#head1,
#head2,
#head3,
#head4,
#head5 {
  opacity: 0;
}

#head1 {
  -webkit-animation: fadeOut 1 5s ease-in;
  -moz-animation: fadeOut 1 5s ease-in;
  -o-animation: fadeOut 1 5s ease-in;
  animation: fadeOut 1 5s ease-in;
}

#head2 {
  -webkit-animation: fadeOut 1 5s ease-in;
  -moz-animation: fadeOut 1 5s ease-in;
  -o-animation: fadeOut 1 5s ease-in;
  animation: fadeOut 1 5s ease-in;
  -webkit-animation-delay: 6s;
  -moz-animation-delay: 6s;
  -o-animation-delay: 6s;
  animation-delay: 6s;
}

#head3 {
  -webkit-animation: fadeOut 1 5s ease-in;
  -moz-animation: fadeOut 1 5s ease-in;
  -o-animation: fadeOut 1 5s ease-in;
  animation: fadeOut 1 5s ease-in;
  -webkit-animation-delay: 12s;
  -moz-animation-delay: 12s;
  -o-animation-delay: 12s;
  animation-delay: 12s;
}

#head4 {
  -webkit-animation: fadeOut 1 5s ease-in;
  -moz-animation: fadeOut 1 5s ease-in;
  -o-animation: fadeOut 1 5s ease-in;
  animation: fadeOut 1 5s ease-in;
  -webkit-animation-delay: 17s;
  -moz-animation-delay: 17s;
  -o-animation-delay: 17s;
  animation-delay: 17s;
}

#head5 {
  -webkit-animation: finalFade 1 5s ease-in;
  -moz-animation: finalFade 1 5s ease-in;
  -o-animation: finalFade 1 5s ease-in;
  animation: finalFade 1 5s ease-in;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: 22s;
  -moz-animation-delay: 22s;
  -o-animation-delay: 22s;
  animation-delay: 22s;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

@-moz-keyframes fadeOut {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

@-o-keyframes fadeOut {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes finalFade {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes finalFade {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes finalFade {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 1;
  }
}

@keyframes finalFade {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 1;
  }
}

.media .content {
  /*padding: 60px 100px 0 100px;*/
  padding: 70px 100px 0 90px;
}

.media .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #b05538;
}

.media .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.media .content p {
  font-size: 15px;
  color: #fff;
}

.media .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  max-width: 100%;
}

.media .accordion-list {
  padding: 0 100px 60px 100px;
}

.media .accordion-list ul {
  padding: 0;
  list-style: none;
}

.media .accordion-list li + li {
  margin-top: 15px;
}

.media .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.media .accordion-list a {
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.media .accordion-list span {
  color: #b05538;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.media .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.media .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.media .accordion-list .icon-show {
  display: none;
}

.media .accordion-list a.collapsed {
  color: #343a40;
}

.media .accordion-list a.collapsed:hover {
  color: #b05538;
}

.media .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.media .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {
  .media .content,
  .media .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .media .img {
    min-height: 400px;
    max-width: 100%;
  }

  .media .content {
    padding-top: 30px;
  }

  .media .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .media .img {
    min-height: 200px;
  }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #b05538;
}

.skills .content ul {
  list-style: none;
  padding: 0;
}

.skills .content ul li {
  padding-bottom: 10px;
}

.skills .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #b05538;
}

.skills .content p:last-child {
  margin-bottom: 0;
}

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #37517e;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e8edf5;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #4668a2;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
}

.services .icon-box .icon {
  margin-bottom: 10px;
}

.services .icon-box .icon i {
  color: #b05538;
  font-size: 36px;
  transition: 0.3s;
}

.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #b05538;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
  color: #b05538;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(167, 89, 61, 1), rgba(176, 85, 56, 0.9)),
    url("../img/GIS.png") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #b05538;
  border: 2px solid #b05538;
}

@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;
  }
}

/*--------------------------------------------------------------
our-work section
--------------------------------------------------------------*/
.our-work #our-work-flters {
  list-style: none;
  margin-bottom: 20px;
}

.our-work #our-work-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 10px 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  transition: all 0.3s;
  padding: 8px 20px;
  border-radius: 50px;
}

.our-work #our-work-flters li:hover,
.our-work #our-work-flters li.filter-active {
  background: #b05538;
  color: #fff;
}

.our-work .our-work-item {
  margin-bottom: 30px;
}

.our-work .our-work-item .our-work-img {
  overflow: hidden;
}

.our-work .our-work-item .our-work-img img {
  transition: all 0.6s;
}

.our-work .our-work-item .our-work-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all 0.3s;
  background: rgba(233, 206, 151, 1);
  padding: 10px 5px;
}

.our-work .our-work-item .our-work-info h4 {
  font-size: 18px;
  color: #b05538;
  font-weight: 600;
  margin-bottom: 0px;
  color: white;
  margin: 0;
  padding: 20px;
}

.our-work .our-work-item .our-work-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}

.our-work .our-work-item .our-work-info .preview-link,
.our-work .our-work-item .our-work-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #b05538;
  transition: 0.3s;
}

.our-work .our-work-item .our-work-info .preview-link:hover,
.our-work .our-work-item .our-work-info .details-link:hover {
  color: #b05538;
}

.our-work .our-work-item .our-work-info .details-link {
  right: 10px;
}

.our-work .our-work-item:hover .our-work-img img {
  transform: scale(1.15);
}

.our-work .our-work-item:hover .our-work-info {
  opacity: 1;
}

.our-work {
  background-attachment: fixed;
}

/*--------------------------------------------------------------
our-work-details 
--------------------------------------------------------------*/
.our-work-details {
  padding-top: 40px;
}

.our-work-details .our-work-details-slider img {
  width: 100%;
}

.our-work-details .our-work-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.our-work-details
  .our-work-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #b05538;
}

.our-work-details
  .our-work-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: #b05538;
}

.our-work-details .our-work-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(55, 81, 126, 0.08);
}

.our-work-details .our-work-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.our-work-details .our-work-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.our-work-details .our-work-info ul li + li {
  margin-top: 10px;
}

.our-work-details .our-work-description {
  padding-top: 30px;
}

.our-work-details .our-work-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.our-work-details .our-work-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Frequently Asked Questions 
--------------------------------------------------------------
.faq .faq-list {
  padding: 0 100px;
}

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

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;

}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #b05538;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;

}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #444444;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #b05538;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}
*/

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .info {
  border-top: 3px solid #b1684d;
  border-bottom: 3px solid #b1684d;
  padding: 30px;
  margin-bottom: 10px;
  background-color: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #ffffff;
  float: left;
  width: 44px;
  height: 44px;
  background: #b1684d;
  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: #b05538;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #444444;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #b1684d;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #b1684d;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #b1684d;
  border-bottom: 3px solid #b1684d;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.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;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #b05538;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #b05538;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #b05538;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs for the sub-pages
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  min-height: 40px;
  margin-top: 35px;
  background-image: url("../../assets/img/menu-bg-1.jpg");
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 10px;
  font-weight: 600;
  color: #37517e;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  margin-top: 20px;
}

.breadcrumbs ol li {
  padding-left: 10px;
  color: #fff;
  font-size: 20px;
}

/*.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  content: "/";
  color:#fff;

}*/

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #b1684d;
}

#footer .footer-search {
  padding: 50px 0;
  background: #f3f5fa;
  text-align: center;
  font-size: 15px;
  color: #444444;
}

#footer .footer-search h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #b05538;
}

#footer .footer-search form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-search form input[type="search"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-search form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #b05538;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-search form input[type="submit"]:hover {
  background: #b05538;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #b05538;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #b05538;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #b05538;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #e9ce97;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #b05538;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #f4e5c9;
  color: #777777;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #b1684d;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}

/*-- real day and time sction */

.datepicker {
  text-align: center;
  float: none;
  color: #b05538;
  border: none;
  font-family: Frutiger;
}

/*--------------------------------------------------------------
# change the dircetion from E (English) to A (Arabic) HTML 
--------------------------------------------------------------*/

.element {
  direction: rtl;
}

/*--------------------------------------------------------------
   news bttns (btn and page links) section 
/*--------------------------------------------------------------*/

.btn {
  background-color: #b1684d;
  color: #ffffff;
  margin-bottom: 10px;
  margin-inline: 10px;
  background-position: center;
}

.btn:hover {
  background: #e9ce97;
}

.page-link {
  background-color: #b1684d;
  color: #ffffff;
  margin-bottom: 10px;
}

.page-link:hover,
.page-link:focus,
.page-link:active,
.page-link.active {
  color: #777777;
  background-color: #e9ce97;
  border-color: #fff; /*set the color you want here*/
}

.active > .page-link {
  background-color: #b05538;
}

.pagination-focus-box-shadow {
  background-color: #e9ce97;
}

/** Buttons for the news section  
.pagination-focus-box-shadow: {
   background-color: #e9ce9;
   border-color:#fff ;

}**/

.active > .page-link,
.page-link.active {
  background-color: #f4e5c9;
  border-color: #f4e5c9;
  border-radius: 4px;
}

/** icons for the us-page section **/

.icons-ncw {
  max-width: 40%;
  max-height: 20%;
  float: right;
}

/* rsizeing icons from us page */

.icons-ncw {
  height: 2rem;
  font-size: 3.5em;
}

/*****************************
*	 news ticker - hidden from index until further notice 
******************************

.news{width: 160px; height:30px; background-image: url("../../assets/img/menu-bg-1.jpg") }.news-scroll a{color: black; text-decoration: none}.dot{height: 6px;width: 6px;margin-left: 3px;margin-right: 3px;margin-top: 2px !important;background-color: rosybrown;border-radius: 50%;display: inline-block}

.news-scroll {
  height:30px;
border: solid;
} */

/** adds and events cards css **/

.card-link {
  text-align: center;
  background-color: #b05538;
}

.card-title {
  /*background-color: #fff;*/
  /*border: white;*/
  /*border-radius: 7px;*/
  font-size: 15px;
  padding: 0px;
  color: #b05538;
}

.card {
  border-radius: 7px;
  transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
  margin-bottom: 90px;
}

.card-bg {
  position: relative;
  background-color: #fcf8f0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 9vh;
}

.blur {
  text-align: center;
  width: 50%;
  backdrop-filter: blur(5px); /* blur effect to the backdrop */
  background-color: rgba(255, 255, 255, 0.2);
  font-size: 30px;
  height: 100vh;
  width: 50%;
}

.card-img-wrap {
  overflow: hidden;
  position: relative;
}
.card-img-wrap:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  transition: opacity 0.25s;
  background-color: white;
}
.card-img-wrap img {
  transition: transform 0.7s;
  width: 100rem;
}
.card-img-wrap:hover img {
  transform: scale(1.2);
}
.card-img-wrap:hover:after {
  opacity: 1;
}

.card:hover .card-img-overlay {
  color: #fff;
  background: rgba(238, 238, 238, 0.5);
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 170px;
}

.card-img-overlay > h4,
.card-img-overlay > p {
  visibility: hidden;
  color: #000;
}

.card-img-overlay:hover h4,
.card-img-overlay:hover p {
  visibility: visible;
}

.card:hover .card-img-overlay p {
  font-size: 1.5em;
  letter-spacing: 0.02em;
  transition: 0.5s;
  background-color: #fff;
}

/* for media إعلامنا hidden until further notice 

.carousel-inner {
  padding-right: 95px;
  padding-top: auto;
  padding-left: 20px;
}

.carousel-control-next-icon {
  margin-left: 100px;
  border-radius: 7px;
  border: double;


}

.carousel-control-prev-icon {
  margin-right: 100px;
  border-radius: 7px;
  border: double;



}

*/

/* careosel fixed 18/05/2023 - hidden until further notice 27-05-2023 

.carousel-control-next, .carousel-control-prev {
z-index: 100!important;
}

*/

.all-news {
  /*border-bottom: 1px solid #eee;*/
  margin-top: 10px;
  float: left;
  width: 100%;
  text-align: center;
}

.all-news a {
  font-size: 1.3rem;
  color: #b05538;
  display: inline-block;
  vertical-align: middle;
  font-weight: bold !important;
  margin-bottom: -50px;
  padding: 0 10px;
}

.all-news a,
.all-news a *,
.all-news a:before,
.all-news a:after,
.all-news a *:before,
.all-news a *:after {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.all-news a:before,
.all-news a:after {
  display: inline-block;
  content: "[";
  padding: 0 5px;
  vertical-align: middle;
}

.all-news a:after {
  content: "]";
}

.all-news a:hover:before,
.all-news a:hover:after {
  padding: 0 15px;
}

/* =============== updated 08/06/2023================ */

.all-news-2 {
  /*border-bottom: 1px solid #eee;*/
  color: #666;
  border: 1px solid #e5e5e5;
  background: #fff;
  border-radius: 20px;
  min-width: 100px;
  margin: 10px auto 0;
  padding: 3px 25px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  bottom: 10px;
  text-align: center;
  right: 50%;
  transform: translateX(50%);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

.all-news-2 a {
  font-size: 1.3rem;
  color: #b05538;
  display: inline-block;
  vertical-align: middle;
  font-weight: bold !important;
  /*background: #d1a797;*/
  margin-top: -20px;
  padding: 0 10px;
}

.all-news-2 a {
  font-size: 0.7rem;
  color: #b05538;
  /*display: inline-block;*/
  vertical-align: middle;
  font-weight: bold !important;
  /* background: #fff;*/
  margin-bottom: -20px;
  padding: 0 10px;
}

.all-news-2 a,
.all-news-2 a *,
.all-news-2 a:before,
.all-news-2 a:after,
.all-news-2 a *:before,
.all-news-2 a *:after {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.all-news-2 a:before,
.all-news-2 a:after {
  display: inline-block;
  content: "-";
  padding: 0 5px;
  vertical-align: middle;
}

.all-news-2 a:after {
  content: "-";
}

.all-news-2 a:hover:before,
.all-news-2 a:hover:after {
  padding: 0 15px;
}

/* all GIS page */

.all-map {
  border-bottom: 1px solid #eee;
  margin-top: 70px;
  float: left;
  width: 100%;
  text-align: center;
}

.all-map a {
  font-size: 1.3rem;
  color: #b05538;
  display: inline-block;
  vertical-align: middle;
  font-weight: bold !important;
  background: #f3f5fa;
  margin-bottom: -20px;
  padding: 0 10px;
}

.all-map a,
.all-map a *,
.all-map a:before,
.all-map a:after,
.all-map a *:before,
.all-map a *:after {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.all-map a:before,
.all-map a:after {
  display: inline-block;
  content: "[";
  padding: 0 5px;
  vertical-align: middle;
}

.all-map a:after {
  content: "]";
}

.all-map a:hover:before,
.all-map a:hover:after {
  padding: 0 15px;
}

/* mouse click animation nice to have "Hidden until further notice 

div.clickEffect {
  position: fixed;
  box-sizing: border-box;
  border-style: dotted;
  border-color: #b05538;
  border-radius: 50%;
  animation: clickEffect 0.4s ease-out;
  z-index: 99999;
}
@keyframes clickEffect {
  0% {
    opacity: 1;
    width: 0.5em;
    height: 0.5em;
    margin: -0.25em;
    border-width: 0.5rem;
  }
  100% {
    opacity: 0.2;
    width: 15em;
    height: 15em;
    margin: -7.5em;
    border-width: 0.03rem;
  }
}
*/

.box:after {
  content: "";
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  transform: translate3d(0, 0, 0);
}

@keyframes drift {
  from {
    transform: rotate(0deg);
  }
  from {
    transform: rotate(360deg);
  }
}

/*LOADING SPACE*/

.contain {
  animation-delay: 4s;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  background: #25a7d7;
  background: -webkit-linear-gradient(#25a7d7, #2962ff);
  background: linear-gradient(#25a7d7, #25a7d7);
}

.icon {
  width: 100px;
  height: 100px;
  margin: 0 5px;
}

/*Animation*/
.icon:nth-child(2) img {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.icon:nth-child(3) img {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.icon:nth-child(4) img {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.icon img {
  -webkit-animation: anim 2s ease infinite;
  animation: anim 2s ease infinite;
  -webkit-transform: scale(0, 0) rotateZ(180deg);
  transform: scale(0, 0) rotateZ(180deg);
}

@-webkit-keyframes anim {
  0% {
    -webkit-transform: scale(0, 0) rotateZ(-90deg);
    transform: scale(0, 0) rotateZ(-90deg);
    opacity: 0;
  }
  30% {
    -webkit-transform: scale(1, 1) rotateZ(0deg);
    transform: scale(1, 1) rotateZ(0deg);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1, 1) rotateZ(0deg);
    transform: scale(1, 1) rotateZ(0deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(0, 0) rotateZ(90deg);
    transform: scale(0, 0) rotateZ(90deg);
    opacity: 0;
  }
}

@keyframes anim {
  0% {
    -webkit-transform: scale(0, 0) rotateZ(-90deg);
    transform: scale(0, 0) rotateZ(-90deg);
    opacity: 0;
  }
  30% {
    -webkit-transform: scale(1, 1) rotateZ(0deg);
    transform: scale(1, 1) rotateZ(0deg);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1, 1) rotateZ(0deg);
    transform: scale(1, 1) rotateZ(0deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(0, 0) rotateZ(90deg);
    transform: scale(0, 0) rotateZ(90deg);
    opacity: 0;
  }
}

/* weather forecast section - footer - hidden until further notice 
.forecast {
    margin: 0;
    padding: 0.3rem;
    background-color: #eee;
    font: 1rem 'Fira Sans', sans-serif;
}

.forecast > h1,
.day-forecast {
    margin: 0.5rem;
    padding: 0.3rem;
    font-size: 1.2rem;
}

.day-forecast {
    background: right/contain content-box border-box no-repeat url('/media/examples/rain.svg') white;
}

.day-forecast > h2,
.day-forecast > p {
    margin: 0.2rem;
    font-size: 1rem;
}

*/

/* news section 25-05-2023 hidden until further notice */

* {
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #b05538;
  --active-color: #2ecc71;
}

.slider-container {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  position: relative;
  color: #fff;
}

.left-slides {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}
.right-slides {
  position: absolute;
  left: 50%;
  top: 0;
  width: 50%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.left-slides > div {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.left-slides h3 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.left-slides p {
  font-size: 1.5rem;
}

.right-slides > div {
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.slider-container button {
  position: absolute;
  left: 35%;
  top: 50%;
  font-size: 1.5rem;
  padding: 12px;
  border: none;
  cursor: pointer;
  color: #fff;
  background-color: #444;
}

button:hover {
  opacity: 0.9;
}

button:focus {
  outline: none;
}

.slider-container .left-btn {
  transform: translateX(-100%);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.slider-container .right-btn {
  transform: translateY(-100%);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

/***** added a new creative flip cards css for the news - not needed ***/

:root {
  --base-grid: 9px;
  --colour-body-background: #b05538;
  --colour-background: #fcf8f0;
  --colour-background-folded: #f5f5f5;
  --colour-background-stripes: rgba(255, 255, 255, 0.5);
  --colour-text: #1a1a1a;
}

*,
:after,
:before {
  box-sizing: border-box;
  margin: 0;
}

.articles {
  margin: calc(var(--base-grid) * 2) auto calc(var(--base-grid) * 5);
  display: grid;
  grid-row-gap: calc(var(--base-grid) * 8);
  grid-column-gap: calc(var(--base-grid) * 6);
  grid-template-columns: repeat(
    auto-fit,
    minmax(calc(var(--base-grid) * 35), 1fr)
  );
  justify-items: center;
}

/* The articles for the pages in the footer sction */

.article-container {
  font-size: 14px;
  color: #313131;
  text-align: justify;
  margin-top: 10px;
}

.ms-rteFontSize-3 {
  font-size: 13pt;
}

.articles__article {
  cursor: pointer;
  display: block;
  position: relative;
  animation-name: animateIn;
  animation-duration: 0.35s;
  animation-delay: calc(var(--animation-order) * 100ms);
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
}

.articles__article:before {
  content: "";
  position: absolute;
  top: calc(var(--base-grid) * -2);
  left: calc(var(--base-grid) * -2);
  border: 2px dashed var(--colour-background);
  background-image: repeating-linear-gradient(
    -24deg,
    transparent,
    transparent 4px,
    var(--colour-background-stripes) 0,
    var(--colour-background-stripes) 5px
  );
  z-index: -1;
}

.articles__article,
.articles__article:before {
  width: calc(var(--base-grid) * 35);
  height: calc(var(--base-grid) * 35);
}

.articles__link {
  background-color: var(--colour-body-background);
  border: 2px solid var(--colour-background);
  display: block;
  width: 100%;
  height: 100%;
  perspective: 1000px;
}

.articles__link:after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(var(--base-grid) * 3);
  width: calc(var(--base-grid) * 2);
  height: calc(var(--base-grid) * 2);
  margin-top: calc(var(--base-grid) * -1);
  clip-path: polygon(75% 0, 100% 50%, 75% 100%, 0 100%, 25% 50%, 0 0);
  -webkit-clip-path: polygon(75% 0, 100% 50%, 75% 100%, 0 100%, 25% 50%, 0 0);
  background-color: var(--colour-background);
  opacity: 0;
  transition: opacity 0.5s ease-in, transform 0.3s ease-in-out 0ms;
}

.articles__content {
  background-color: var(--colour-background);
  color: var(--colour-text);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: calc(var(--base-grid) * 2);
  display: flex;
  flex-direction: column;
  border: 2px solid var(--colour-background);
}

.articles__content--lhs {
  clip-path: polygon(0 0, 51% 0, 51% 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, 51% 0, 51% 100%, 0 100%);
}

.articles__content--rhs {
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
  -webkit-clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
  transition: transform 0.5s ease-in-out, background-color 0.4s ease-in-out;
}

.articles__title {
  /*font-size: calc(var(--base-grid)*3); changed from calc to px */
  font-size: 20px;
  line-height: 1.125;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.articles__footer {
  margin-top: auto;
  font-size: calc(var(--base-grid) * 2);
  line-height: calc(var(--base-grid) * 2);
  display: flex;
  justify-content: space-between;
}

.articles__link:hover .articles__content--rhs {
  background-color: var(--colour-background-folded);
  transform: rotateY(-50deg);
}

.articles__link:hover:after {
  opacity: 1;
  transform: translateX(calc(var(--base-grid) * 1.5));
  transition: opacity 0.5s ease-in, transform 0.3s ease-in-out 0.25s;
}

/* dividr */

.divider {
  position: relative;
  height: 1px;
}

.div-transparent:before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  width: 90%;
  height: 1px;
  background-image: linear-gradient(
    to right,
    transparent,
    rgb(119, 119, 119),
    transparent
  );
}

.div-arrow-down:after {
  content: "";
  position: absolute;
  z-index: 100;
  top: -7.8px;
  left: calc(50% - 7px);
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  background-color: #b1684d;
  /*border-left: 1px solid rgb(119, 119, 119);
  border-right: 1px solid rgb(119, 119, 119);*/
  box-shadow: 1px 1px 3px 2px #b1684d;
}

/* Gallery for our-work subpages */

/* image carousel 2.0 */

* {
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #b05538;
  --active-color: #2ecc71;
}

body {
  background-color: #f5f5f5;
  height: 100vh;
}

.slider-container {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  position: relative;
  color: #fff;
}

.left-slides {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}
.right-slides {
  position: absolute;
  left: 50%;
  top: 0;
  width: 50%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.left-slides > div {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.left-slides h3 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.left-slides p {
  font-size: 1.5rem;
}

.right-slides > div {
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

button {
}

.slider-container button {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 1.5rem;
  padding: 10px;
  border: none;
  cursor: pointer;
  color: #fff;
  background-color: #b1684d;
}

button:hover {
  opacity: 0.9;
}

button:focus {
  outline: none;
}

.slider-container .left-btn {
  transform: translateX(-100%);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.slider-container .right-btn {
  transform: translateY(-100%);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

/* more news button on slider section */

#mycheckbox:checked ~ .moretext {
  display: block;
}

.showmore {
  cursor: pointer;
  border: solid;
  border-radius: 5px;
  border-color: white;
  padding: 3px;
  color: white;
}

.showmore hover {
  color: black;
}

/**===============================================================================================**/

/* 1- Wilds Page CSS */

.img-with-text {
  text-align: justify;
  width: [width of img];
  text-align: center;
}

/* 2- Seas Page CSS */

/* Three image containers (use 25% for four, and 50% for two, etc) */
.column {
  float: left;
  width: 33.33%;
  padding: 5px;
}

/* Clear floats after image containers */
.row::after {
  content: "";
  clear: both;
  display: table;
}

/* ====== */

.newspaper {
  font-style: thin;
  font-size: 15px;
  column-count: 2;
}

/* Create four equal columns that sits next to each other */
.column {
  flex: 25%;
  max-width: 125%;
  padding: 0 4px;
  columns: 3;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 77%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}

#gallery {
  display: grid;
  height: calc(100vh - 10px);
  grid-template: repeat(6, 1fr) / repeat(6, 1fr);
  grid-gap: 0.3em;
}
@media (max-width: 800px) {
  #gallery {
    height: fit-content;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
  }
  #gallery > div {
    width: 48%;
    margin: 1%;
  }
}
@media (max-width: 800px) and (max-width: 350px) {
  #gallery > div {
    width: 98%;
  }
}
#gallery > div:nth-child(6n + 1) {
  grid-column: span 2;
  grid-row: span 2;
}
#gallery > div:nth-child(2) {
  grid-column: span 3;
  grid-row: span 3;
}
#gallery > div:nth-child(4) {
  grid-column: span 1;
  grid-row: span 2;
}
#gallery > div > a {
  opacity: 0;
  position: absolute;
  color: #000;
  /*background-color: #000;*/
  font: bold 200rem;
  text-shadow: 0 -1px 5px #fff, -1px 0px 5px #fff, 0 1px 5px #fff,
    1px 0px 5px #fff;
  padding: 2rem;
  width: 100%;
  height: 100%;
  transition: all ease 1s;
}
#gallery > div > img {
  width: 100%;
  min-height: 100%;
  transition: all ease 1s;
}
#gallery > div:hover img {
  filter: blur(4px);
}
#gallery > div:hover a {
  opacity: 1;
}
#gallery > div {
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2), 0 3px 20px 0 rgba(0, 0, 0, 0.19);
}
#gallery div,
#gallery a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  /* Trying out border radius */
  border-radius: 5px;
}
[id^="lightbox-"] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  opacity: 0;
  transition: opacity 450ms ease-in-out;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
[id^="lightbox-"]:target {
  opacity: 1;
  pointer-events: inherit;
}
[id^="lightbox-"]:target img {
  filter: blur(0);
}
[id^="lightbox-"] .content {
  max-width: 90%;
  position: relative;
  color: #fff;
}
[id^="lightbox-"] .content:hover > a.close {
  opacity: 1;
  transform: scale(1, 1);
}
[id^="lightbox-"] .content:hover > .title {
  opacity: 1;
  transform: translateY(-3px);
}
[id^="lightbox-"] .content:hover > .title::after {
  opacity: 1;
}
[id^="lightbox-"] .content > * {
  transition: all 450ms ease-in-out;
}
[id^="lightbox-"] .title {
  display: block;
  margin: 0;
  padding: 1em;
  position: absolute;
  bottom: 0;
  width: 100%;
  transform: translateY(50%);
  font-size: 1.5em;
  opacity: 0;
}
[id^="lightbox-"] .title::after {
  content: " ";
  background-color: rgba(0, 0, 0, 0.4);
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  transition: all 350ms ease-in-out 250ms;
  opacity: 0;
  transform-origin: bottom;
  mix-blend-mode: soft-light;
}
[id^="lightbox-"] img {
  max-height: 90vh;
  max-width: 100%;
  margin: 0;
  padding: 0;
  filter: blur(50px);
}
[id^="lightbox-"] a.close {
  width: 2em;
  height: 2em;
  position: absolute;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0, 0);
  opacity: 0;
  transform-origin: right top;
  text-decoration: none;
  color: #fff;
}
[id^="lightbox-"] a.close::after {
  content: "X";
}

/* Language btn switch */

.langbtn {
  border: solid;
  border-radius: 20px;
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
}

/* Landing Page (English) */

/* ======= table styles   =======*/

table {
  background: #f5f5f5;
  border-collapse: separate;
  box-shadow: inset 0 1px 0 #fff;
  font-size: 12px;
  line-height: 24px;
  margin: 30px auto;
  text-align: right;
  width: 800px;
  text-align: center;
}

th {
  background: #b1684d;
  box-shadow: inset 0 1px 0 #999;
  color: #fff;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 3px;
}

th:after {
  /*background: linear-gradient(
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.08)
  );*/
  content: "";
  display: block;
  height: 25%;
  left: 0;
  margin: 1px 0 0 0;
  position: absolute;
  top: 25%;
  width: 100%;
  border-radius: 7px;
}

th:first-child {
  border-left: 1px solid #777;
  box-shadow: inset 1px 1px 0 #999;
}

th:last-child {
  box-shadow: inset -1px 1px 0 #999;
}

td {
  border-right: 1px solid #fff;
  border-left: 1px solid #e8e8e8;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #e8e8e8;
  padding: 10px 15px;
  position: relative;
  transition: all 300ms;
}

td:first-child {
  box-shadow: inset 1px 0 0 #fff;
}

td:last-child {
  border-right: 1px solid #e8e8e8;
  box-shadow: inset -1px 0 0 #fff;
}

tr {
  background: url(https://jackrugile.com/images/misc/noise-diagonal.png);
}

tr:nth-child(odd) td {
  background: #f1f1f1 url(https://jackrugile.com/images/misc/noise-diagonal.png);
}

tr:last-of-type td {
  box-shadow: inset 0 -1px 0 #fff;
}

tr:last-of-type td:first-child {
  box-shadow: inset 1px -1px 0 #fff;
}

tr:last-of-type td:last-child {
  box-shadow: inset -1px -1px 0 #fff;
}

tbody:hover td {
  color: transparent;
  text-shadow: 0 0 3px #aaa;
}

tbody:hover tr:hover td {
  color: #444;
  text-shadow: 0 1px 0 #fff;
}

/*--- figure and figcaption styling ---*/

figcaption {
  background-color: #b1684d;
  border-radius: 10px;
  color: #fff;
  font-size: large;
  padding: 2px;
  text-align: center;
}

/*--- for small screens - LOGO - ---*/

@media (min-width: 1199px) {
  .logo {
    width: 219px;
  }
}

/* added the approved font awesome by NCW  */

@media (min-width: 768px) {
  .navbar li > a {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .navbar-brand {
    padding: 20px;
  }
}

/* Calendar */

.calendar {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  grid-template-rows: 50px;
  grid-auto-rows: 120px;
  overflow: auto;
}
.calendar-container {
  width: 90%;
  margin: auto;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: #f6eae3;
  max-width: 1200px;
}
.calendar-header {
  text-align: center;
  padding: 20px 0;
  background: linear-gradient(
    to bottom,
    #fafbfd 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border-bottom: 1px solid rgba(166, 168, 179, 0.12);
}

.calendar-header button {
  background: 0;
  border: 0;
  padding: 0;
  color: rgba(81, 86, 93, 0.7);
  cursor: pointer;
  outline: 0;
}
.day {
  border-bottom: 1px solid rgba(166, 168, 179, 0.12);
  border-right: 1px solid rgba(166, 168, 179, 0.12);
  text-align: right;
  padding: 14px 20px;
  letter-spacing: 1px;
  font-size: 12px;
  box-sizing: border-box;
  color: #98a0a6;
  position: relative;
  pointer-events: none;
  z-index: 1;
}
.day:nth-of-type(7n + 7) {
  border-right: 0;
}
.day:nth-of-type(n + 1):nth-of-type(-n + 7) {
  grid-row: 2;
}
.day:nth-of-type(n + 8):nth-of-type(-n + 14) {
  grid-row: 3;
}
.day:nth-of-type(n + 15):nth-of-type(-n + 21) {
  grid-row: 4;
}
.day:nth-of-type(n + 22):nth-of-type(-n + 28) {
  grid-row: 5;
}
.day:nth-of-type(n + 29):nth-of-type(-n + 35) {
  grid-row: 6;
}
.day:nth-of-type(7n + 1) {
  grid-column: 1/1;
}
.day:nth-of-type(7n + 2) {
  grid-column: 2/2;
}
.day:nth-of-type(7n + 3) {
  grid-column: 3/3;
}
.day:nth-of-type(7n + 4) {
  grid-column: 4/4;
}
.day:nth-of-type(7n + 5) {
  grid-column: 5/5;
}
.day:nth-of-type(7n + 6) {
  grid-column: 6/6;
}
.day:nth-of-type(7n + 7) {
  grid-column: 7/7;
}
.day-name {
  font-size: 12px;
  text-transform: uppercase;
  color: #99a1a7;
  text-align: center;
  border-bottom: 1px solid rgba(166, 168, 179, 0.12);
  line-height: 50px;
  font-weight: 500;
}
.day--disabled {
  color: rgba(152, 160, 166, 0.6);
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f9f9fa' fill-opacity='1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  cursor: not-allowed;
}
.task {
  border-left-width: 3px;
  padding: 8px 12px;
  margin: 10px;
  border-left-style: solid;
  font-size: 14px;
  position: relative;
}
.task--warning {
  border-left-color: #fdb44d;
  grid-column: 4 / span 3;
  grid-row: 3;
  background: #fef0db;
  align-self: center;
  color: #fc9b10;
  margin-top: -5px;
}
.task--danger {
  border-left-color: #fa607e;
  grid-column: 2 / span 3;
  grid-row: 3;
  margin-top: 15px;
  background: rgba(253, 197, 208, 0.7);
  align-self: end;
  color: #f8254e;
}
.task--info {
  border-left-color: #4786ff;
  grid-column: 6 / span 2;
  grid-row: 5;
  margin-top: 15px;
  background: rgba(218, 231, 255, 0.7);
  align-self: end;
  color: #0a5eff;
}
.task--primary {
  background: #4786ff;
  border: 0;
  border-radius: 4px;
  grid-column: 3 / span 3;
  grid-row: 4;
  align-self: end;
  color: #fff;
  box-shadow: 0 10px 14px rgba(71, 134, 255, 0.4);
}
.task__detail {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  background: #fff;
  border: 1px solid rgba(166, 168, 179, 0.2);
  color: #000;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  z-index: 2;
}
.task__detail:after,
.task__detail:before {
  bottom: 100%;
  left: 30%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.task__detail:before {
  border-bottom-color: rgba(166, 168, 179, 0.2);
  border-width: 8px;
  margin-left: -8px;
}
.task__detail:after {
  border-bottom-color: #fff;
  border-width: 6px;
  margin-left: -6px;
}

/* Bookshelf added for the Digital Library Page */

.bookshelf {
  width: 900px;
  margin: 5rem auto;
  text-align: center;
  position: relative;
}

.book-grid {
  z-index: 2;
  position: relative;
  transform: translateY(-15px);
}
.book-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.book-grid ul li {
  justify-self: center;
}
.book-grid ul img {
  display: block;
  box-shadow: 0px -5px 20px 2px rgba(0, 0, 0, 0.3);
  width: 200px;
  height: 300px;
  object-fit: cover;
}

.shelf-shadows {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1rem;
  border-radius: 2px;
  z-index: 1;
  box-shadow: 0px -5px 3px 0px rgba(170, 170, 170, 0.2),
    0px 15px 20px 0px rgba(170, 170, 170, 0.7),
    0px 5px 5px 0px rgba(119, 119, 119, 0.3);
}

.shelf {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1rem;
  background-color: #f6eae3;
  border-radius: 2px;
  z-index: 3;
}

/* en-version float button */

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  left: 40px;
  background-color: #b05538;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  z-index: 999;
}

.my-float {
  margin-top: 24px;
}

.mewa-cards {
  padding: 12px 24px;
  box-shadow: rgba(246, 234, 227, 1) 0px 4px 12px;
  background-image: linear-gradient(to right, #f6eae3, #fff);
  font-size: 18px;
}

/*  core business styles */

.clients-container {
  display: flex;
  padding: 10px;
  justify-content: space-between;
}

.client {
  padding-left: 15px !important;
}

h1 {
  color: #b05538;
}
.blues {
  background: #0081ff;
}

.values {
  position: relative;
  overflow: hidden;
}

.box {
  padding: 40px 20px;
  height: 600px;
}

.box .box-home {
  padding: 20px 30px;
  z-index: 100;
  position: relative;
}

.box .box-home > h4 {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.box .box-home > p {
  font-size: 13px;
  letter-spacing: 1px;
  color: rgb(204, 218, 229);
  box-shadow: black;
}

.icon-text {
  position: absolute;
  top: 24%;
  left: 15%;
  transform: translate(-50%, -50%);
  z-index: -100;
}

.icon-text p {
  font-weight: 700;
  font-size: 90px;
  color: Black;
}

.blacks > .box-home > .icon-text p {
  color: rgba(222, 220, 220, 0.28);
}

.bg-wilds {
  background-image: url("../../assets/img/ftri/center_work/wilds.png");
  background-size: cover;
}

.bg-sea {
  background-image: url("../../assets/img/ftri/center_work/seas.jpeg");
  background-size: cover;
}

.bg-centers {
  background-image: url("../../assets/img/ftri/center_work/NCW_PA11.jpg");
  background-size: cover;
}

.bg-eco {
  background-image: url("../../assets/img/ftri/center_work/ecotourism.jpg");
  background-size: cover;
}

.glow-title {
  font-size: 20px;
  /* changed the color of the font from #ffffff to #B1684D */
  color: #b1684d;
  /* changed the color of the text-shadow from #000 to #fff */
  text-shadow: #ffffff 1px 0 10px;
}

.glow {
  font-size: 1px;
  color: #ffffff;
  -webkit-animation: glow 1s ease-in-out infinite alternate;
  -moz-animation: glow 1s ease-in-out infinite alternate;
  animation: glow 1s ease-in-out infinite alternate;
}
@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #eeeeee, 0 0 20px #000000, 0 0 30px #000000,
      0 0 40px #000000, 0 0 50px #b05538, 0 0 60px #b05538, 0 0 70px #b05538;
  }
}

.core-container {
  display: flex;
  align-items: center;
  color: #fcf8f0;
  box-shadow: 10px 10px 10px 10px;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.core-container:hover .core-card {
  filter: blur(7px);
  width: 20%;
}

@media (max-width: 768px) {
  .core-container {
    display: block;
  }
}

.core-card {
  transition: 0.4s;
}

.core-container .core-card:hover {
  width: 40%;
  filter: blur(0px);
}

.box-home {
  margin: 0 auto 0 auto;
  /*background-color: rgba(177, 104, 77, 0.7);*/
  /* added the new background-color 22/10/2023 */
  background-color: rgba(255, 255, 255, 0.8);
  width: fit-content;
  border-radius: 7px;
}

/* Footer Animation */

/* mini slider for sisters' section  */

#sisters {
  /*display: block;*/
  margin-left: auto;
  margin-right: auto;
  background: #f9f9f9;
  padding-top: 30px;
  height: 140px;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-360px * 7));
  }
}
.slider {
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: auto;
}
.slider .slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(330px * 14);
}
.slider .slide {
  height: 100px;
  width: 320px;
}

@keyframes slide {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0%);
  }
}

/* Minor changes */

.logos {
  overflow: hidden;
  padding: 20px 0;
  /*margin: 40px 0;*/ /*Disabled the margin */
  background: #f6eae3;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 15s slide infinite linear;
}

.logos-slide img {
  margin: 0 80px;

  height: 100px;
  overflow: hidden;
  position: relative;
  width: auto;
}

/* FAQ 2023 */

/* -------------------------------- Primary style -------------------------------- */
.faq-page *,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.faq-page *::after,
.faq-page *::before {
  content: "";
}
.faq-page .body {
  font-size: 100%;
  color: #b1684d;
  background-color: white;
}
.faq-page .body::after {
  /* overlay layer visible on small devices when the right panel slides in */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(78, 83, 89, 0.8);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
}
.faq-page .body.cd-overlay::after {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
@media only screen and (min-width: 768px) {
  .faq-page .body::after {
    display: none;
  }
}
a,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-font-smoothing: antialiased;
  text-decoration: none;
}
.faq-page .p {
  color: white;
  margin-bottom: 1rem;
  font-size: inherit;
  line-height: 1.4;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
.faq-page .header-section h1 {
  font-size: 2em;
  margin: 0.67em 0;
  color: white;
  margin-left: -15px;
}
.faq-page .a {
  /* color: #a9c056;
   */
  color: #b1684d;
  text-decoration: none;
}
/* -------------------------------- Main components -------------------------------- */
.faq-page .header {
  position: relative;
  height: 180px;
  line-height: 180px;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .faq-page .header {
    height: 240px;
    line-height: 240px;
  }
  .faq-page .header h1 {
    font-size: 36px;
    font-size: 2.25rem;
    font-weight: 300;
  }
}
.faq-page .faq {
  width: 90%;
  max-width: 1024px;
  margin: 2em auto;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}
.faq-page .faq:after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (min-width: 768px) {
  .faq-page .faq {
    position: relative;
    margin: 4em auto;
    box-shadow: none;
  }
}
.faq-page .categories a {
  position: relative;
  /* display: inline;
   */
  display: block;
  overflow: hidden;
  height: 50px;
  line-height: 50px;
  padding: 0 28px 0 16px;
  /* background-color: #f3f3f5;
   */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #b1684d;
  white-space: nowrap;
  /* border-bottom: 1px solid #555b61;
   */
  text-overflow: ellipsis;
}
.faq-page .categories a::before,
.categories a::after {
  /* plus icon on the right */
  position: absolute;
  top: 50%;
  right: 16px;
  display: inline-block;
  height: 1px;
  width: 10px;
  background-color: #7f868e;
}
.faq-page .categories a::after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.faq-page .categories li:last-child a {
  border-bottom: none;
}
@media only screen and (min-width: 768px) {
  .faq-page .categories {
    width: 20%;
    float: left;
    /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
     */
  }
  .faq-page .categories a {
    text-align: right;
    font-size: 18px;
    color: #b1684d;
    font-size: 1.13rem;
    font-weight: 600;
    padding-left: 24px;
    padding: 0 24px; /* changed from 24 to 20 px */
    -webkit-transition: background 0.2s, padding 0.2s;
    -moz-transition: background 0.2s, padding 0.2s;
    transition: background 0.2s, padding 0.2s;
  }
  .faq-page .categories a::before,
  .categories a::after {
    display: none;
  }
  .faq-page .no-touch .categories a:hover {
    color: #b1684d;
  }
  .faq-page .no-js .categories {
    width: 100%;
    margin-bottom: 2em;
  }
}
@media only screen and (min-width: 1024px) {
  /* Not needed for now*/
  /*.categories a::before {
     decorative rectangle on the left visible for the selected item position:absolute;
     display: block;
     bottom:0;
     right: auto;
     right: 0;
     height: 60px;
     width: 3px;
     background-color: purple;
     border-radius: 25px;
     opacity: 0;
     -webkit-transition: opacity 0.2s;
     -moz-transition: opacity 0.2s;
     transition: opacity 0.2s;
  }
   */
  .faq-page .categories {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    z-index: 2;
  }
  .faq-page .verticalLine {
    position: absolute;
    left: 220px;
    z-index: 5;
    height: 100%;
    border-left: medium solid #777;
    border-radius: 25px;
  }
  .faq-page .categories .selected {
    color: #777 !important;
    border-right: 3px solid #777;
    /* background: yellow !important;
    */
    /* border-bottom: 3px solid #6454a4;
    */
    opacity: 1;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .faq-page .categories .selected::before {
    opacity: 1;
  }
  .faq-page .categories.is-fixed {
    /* top and left value assigned in jQuery */
    position: fixed;
  }
  .no-js .categories {
    position: relative;
  }
}
.faq-items {
  position: fixed;
  float: left;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  background: #fff;
  padding: 0 5% 1em;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0) translateX(100%);
  -moz-transform: translateZ(0) translateX(100%);
  -ms-transform: translateZ(0) translateX(100%);
  -o-transform: translateZ(0) translateX(100%);
  transform: translateZ(0) translateX(100%);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.faq-items.slide-in {
  -webkit-transform: translateZ(0) translateX(0%);
  -moz-transform: translateZ(0) translateX(0%);
  -ms-transform: translateZ(0) translateX(0%);
  -o-transform: translateZ(0) translateX(0%);
  transform: translateZ(0) translateX(0%);
  z-index: 999;
}
.no-js .faq-items {
  position: static;
  height: auto;
  width: 100%;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
@media only screen and (min-width: 768px) {
  .faq-items {
    position: static;
    height: auto;
    width: 64%;
    float: right;
    overflow: visible;
    -webkit-transform: translateZ(0) translateX(0);
    -moz-transform: translateZ(0) translateX(0);
    -ms-transform: translateZ(0) translateX(0);
    -o-transform: translateZ(0) translateX(0);
    transform: translateZ(0) translateX(0);
    padding: 0;
    background: transparent;
  }
}
@media only screen and (min-width: 1024px) {
  .faq-items {
    float: none;
    width: 100%;
    padding-left: 220px;
  }
  .no-js .faq-items {
    padding-left: 0;
  }
}
.cd-close-panel {
  position: sticky;
  /*float: left;*/
  background-color: #f6eae3;
  margin: auto;
  border-radius: 70px;
  top: 5px;
  right: -90px;
  display: block;
  height: 40px;
  width: 40px;
  overflow: hidden;
  /*text-indent: 100%;*/
  white-space: nowrap;
  z-index: 999;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: right 0.4s;
  -moz-transition: right 0.4s;
  transition: right 0.4s;
}
.cd-close-panel::before,
.cd-close-panel::after {
  /* close icon in CSS */
  position: absolute;
  top: 18px;
  left: 11px;
  display: inline-block;
  height: 3px;
  width: 18px;
  background: #6c7d8e;
}
.cd-close-panel::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cd-close-panel::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cd-close-panel.move-left {
  right: 2%;
}
@media only screen and (min-width: 768px) {
  .cd-close-panel {
    display: none;
  }
}

.faq-group {
  /* hide group not selected */
  display: none;
  margin-left: 100px;
}
.faq-group.selected {
  display: block;
}
.faq-group .faq-title {
  background: transparent;
  box-shadow: none;
  margin: 1em 0;
}
.no-touch .faq-group .faq-title:hover {
  box-shadow: none;
}
.faq-group .faq-title h2 {
  /* General: */
  font-size: 39px;
  font-size: 2.45rem;
  color: #b1684d;
  line-height: 50px;
}
.faq-group .faq-title a {
  background: red;
}
/* ^^^ not effecting */
.faq-items a {
  /* FAQ Questions */
  font-size: 15px;
  color: #b1684d;
}
.faq-page .iconh2div {
  overflow: hidden;
  margin-left: -63px;
}
/*.faq-page .icondiv, .faq-page .h2div {
   background: transparent;
   float: left;
}*/
.faq-page .icondiv {
  background: white;
  height: 70px;
  width: 70px;
}
.faq-page .h2div {
  margin-top: 15px;
  margin-left: 16px;
}
.no-js .faq-group {
  display: block;
}
@media only screen and (min-width: 768px) {
  /* all groups visible */
  .faq-group {
    display: block;
  }
  .faq-group > li {
    background: #fff;
    margin-bottom: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    -webkit-transition: box-shadow 0.2s;
    -moz-transition: box-shadow 0.2s;
    transition: box-shadow 0.2s;
  }
  .no-touch .faq-group > li:hover {
    box-shadow: 0 1px 10px rgba(108, 125, 142, 0.3);
  }
  .faq-group .faq-title {
    margin: 2em 0 1em;
  }
  .faq-group:first-child .faq-title {
    margin-top: 0;
  }
}
.faq-page .trigger {
  position: relative;
  display: block;
  margin: 1.6em 0 0.4em;
  line-height: 1.2;
}
@media only screen and (min-width: 768px) {
  .faq-page .trigger {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0;
    padding: 24px 72px 24px 24px;
  }
  .faq-page .trigger::before,
  .faq-page .trigger::after {
    /* arrow icon on the right */
    position: absolute;
    right: 24px;
    top: 50%;
    height: 2px;
    width: 13px;
    background: #777777;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
  }
  .faq-page .trigger::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    right: 32px;
  }
  .faq-page .trigger::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .faq-page .content-visible .trigger::before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .faq-page .content-visible .trigger::after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
.faq-content p {
  font-size: 0.875rem;
  line-height: 1.4;
  font-size: 15px;
  color: #909090;
}
@media only screen and (min-width: 768px) {
  .faq-content {
    display: none;
    padding: 30px 24px 30px 50px;
    background-color: ;
  }
  .faq-content p {
    line-height: 1.6;
  }
  .no-js .faq-content {
    display: block;
  }
}

/* Calendar */

#calendar {
  border: 1px solid #ccc;
  padding: 20px;
  margin: 10px;
}

#info {
  border: 1px solid #ccc;
  padding: 20px;
  margin: 10px;
}

.information-container {
  margin-top: 10px;
  padding: 10px;
  /* background-image: url(/assets/img/ftri/events-imgs/sea-bg23.jpeg); */
  background-color: #eee;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.month {
  padding: 30px 25px;
  width: 100%;
  background: #b1684d;
  text-align: center;
}

.month ul {
  margin: 0;
  padding: 0;
}

.month ul li {
  color: white;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.month .prev {
  float: left;
  padding-top: 10px;
}

.month .next {
  float: right;
  padding-top: 10px;
}

.weekdays {
  margin: 0;
  padding: 10px 0;
  background-color: #ddd;
}

.weekdays li {
  display: inline-block;
  width: 13.6%;
  color: #666;
  text-align: center;
}

.days {
  padding: 10px 0;
  background: #eee;
  margin: 0;
}

.days li {
  list-style-type: none;
  display: inline-block;
  width: 13.6%;
  text-align: center;
  margin-bottom: 5px;
  font-size: 12px;
  color: #777;
}

.days li .active {
  padding: 5px;
  background: #b1684d;
  color: white !important;
}

/* Add media queries for smaller screens */
@media screen and (max-width: 720px) {
  .weekdays li,
  .days li {
    width: 13.1%;
  }
}

@media screen and (max-width: 420px) {
  .weekdays li,
  .days li {
    width: 12.5%;
  }
  .days li .active {
    padding: 2px;
  }
}

@media screen and (max-width: 290px) {
  .weekdays li,
  .days li {
    width: 12.2%;
  }
}

/* core section new look */

.core-reforms {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
}

@media (max-width: 1200px) {
  .core-reforms {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.core-reforms .section__title {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.8rem;
  color: #fff;
  text-transform: uppercase;
  z-index: 999;
  pointer-events: none;
  padding: 2.5rem;
  margin-bottom: 0;
  -webkit-transition: opacity 0.1s ease-in-out;
  -o-transition: opacity 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out;
}

@media (max-width: 1200px) {
  .core-reforms .section__title {
    position: flex;
    font-size: calc(1.325rem + 0.9vw);
    color: #fff;
  }
}

.core-reforms:hover > .section__title {
  opacity: 0;
}

@media (max-width: 1200px) {
  .core-reforms:hover > .section__title {
    opacity: 10;
  }
}

.core-reforms__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

@media (max-width: 1200px) {
  .core-reforms__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.core-reforms__item {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 25%;
  flex: 1 1 25%;
  height: 41.25rem;
  background-color: #000;
  overflow: hidden;
  margin: 0;
  -webkit-transition: all 0.8s cubic-bezier(0, 0.45, 0.22, 1.45) !important;
  -o-transition: all 0.8s cubic-bezier(0, 0.45, 0.22, 1.45) !important;
  transition: all 0.8s cubic-bezier(0, 0.45, 0.22, 1.45) !important;
}

@media (max-width: 1200px) {
  .core-reforms__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    height: 28.125rem;
  }
}

.core-reforms__item:hover {
  -ms-flex-preferred-size: 40%;
  flex-basis: 40%;
}

@media (max-width: 1200px) {
  .core-reforms__item:hover {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}

.active .core-reforms__item:not(.is-expanded) .core-reforms__item__title {
  opacity: 0;
}

@media (max-width: 1200px) {
  .active .core-reforms__item:not(.is-expanded) .core-reforms__item__title {
    opacity: 1;
  }
}

.active .core-reforms__item:not(.is-expanded) .core-reforms__item__img {
  opacity: 0.6;
}

@media (max-width: 1200px) {
  .active .core-reforms__item:not(.is-expanded) .core-reforms__item__img {
    opacity: 1;
  }
}

.core-reforms__item__img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.core-reforms__item__img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(5, 0, 63, 0.47);
  pointer-events: none;
}

.core-reforms__item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.core-reforms__item__data {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  pointer-events: none;
  padding: 3.75rem 1.875rem;
}

.core-reforms__item__data .btn-primary {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  background-color: #b1684d;
  border-color: #fff;
  opacity: 0;
  pointer-events: auto;
  padding: 0.594rem 2.5rem;
  margin-top: auto;
  -webkit-transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media (max-width: 1200px) {
  .core-reforms__item__data .btn-primary {
    opacity: 1;
  }
}

.core-reforms__item__data .btn-primary:hover {
  color: #221c65;
  background-color: #fff;
}

.core-reforms__item__title {
  position: relative;
  max-width: 21.25rem;
  line-height: 1.6;
  font-size: 1.125rem;
  font-weight: bolder;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  -webkit-transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.core-reforms__item__title a {
  display: block;
  color: inherit;
  text-decoration: none;
  -webkit-padding-start: 1.4375rem;
  padding-inline-start: 1.4375rem;
  padding-block: 0.625rem;
}
.core-reforms__item__title a::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 0.1875rem;
  height: 100%;
  background-color: #b1684d;
}

.core-reforms__item__description {
  max-width: 20.625rem;
  font-size: 13px;
  color: #fff;
  opacity: 0;
  -webkit-transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media (max-width: 1200px) {
  .core-reforms__item__description {
    opacity: 1;
  }
}

.core-reforms__item:hover .core-reforms__item__description,
.core-reforms__item:hover .btn-primary {
  opacity: 1;
}

container-core {
  width: 60px;
}
