html,
body {
  font-family: "Arial", sans-serif;
  /* box-sizing: border-box; */
  margin: 0;
  padding: 0;
}

/* 👉 year pages */

.nav-pills {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
  background-color: green; 
}

.nav-pills .nav-item {
  background-color: green;  
  color: black;
  padding: 10px;
}

.nav-pills .nav-item .active{
  
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(2, 212, 72);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(2, 150, 59);
}

/* from privacy policy page */

.privacy_policy {
  padding: 100px;
}

.cookie_policy {
  padding: 100px;
}

/* cookie container */

.cookie_container {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background-color: green;
  color: white;
  padding: 20px 30px;
  z-index: 9999;
  transition: 400ms;
  text-align: center;
  box-shadow: 0 -2px 16px rgb(0, 0, 0, 0.3);
}

.cookie_container.active {
  bottom: 0;
}

.cookie_container a {
  color: white;
}

.cookie_container .cookie_button {
  background-color: darkgreen;
  color: white;
}

/* pop up login and sign up container ---------------------------------*/

.popup_container {
  z-index: 8;
  top: -150%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(1.25);
  position: fixed;
  width: 700px;
  padding: 20px 40px;
  background-color: white;
  box-shadow: 2px 2px 5px 5px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  transition: top 0ms ease-in-out 200ms, opacity 200ms ease-in-out 0ms,
    transform 200ms ease-in-out 0ms;
}

.cover {
  z-index: 7;
  top: -100%;
  left: 50%;
  opacity: 0;
  position: fixed;
  transform: translate(-50%, -50%) scale(1.25);
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  transition: top 0ms ease-in-out 200ms, opacity 200ms ease-in-out 0ms,
    transform 200ms ease-in-out 0ms;
}

.cover.active {
  top: 50%;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.popup_container.active {
  top: 50%;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.popup_container .close-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 15px;
  height: 15px;
  background-color: green;
  color: #eee;
  text-align: center;
  line-height: 12px;
  border-radius: 15px;
  cursor: pointer;
}

.popup_container .form h2 {
  text-align: center;
  color: #222;
  margin: 10px 0px 20px;
  font-size: 25px;
}

.popup_container .form .form-element label {
  font-size: 14px;
  color: #222;
}

.popup_container .form .form-element input[type="text"],
.popup_container .form .form-element input[type="password"] {
  margin-top: 5px;
  display: block;
  width: 100%;
  padding: 10px;
  outline: none;
  border: 1px solid #aaa;
  border-radius: 5px;
}

.popup_container .form .form-element input[type="checkbox"] {
  margin-right: 5px;
}

.popup_container .form .form-element button {
  width: 100%;
  height: 40px;
  border: none;
  outline: none;
  font-size: 16px;
  background: rgb(1, 117, 1);
  color: #f5f5f5;
  border-radius: 10px;
  cursor: pointer;
}

.popup_container .form .form-element a {
  position: relative;
  text-align: right;
  font-size: 15px;
  color: #1a79ca;
  text-decoration: none;
  font-weight: 600;
}

.popup_container .form .form-element .caccount {
  position: relative;
  text-align: left;
  font-size: 15px;
  color: #1a79ca;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.wrapper_container {
  /* background-color: pink; */
  width: 140vh;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.cover2 {
  top: -150%;
  opacity: 0;
  z-index: 7;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: top 0ms ease-in-out 200ms, opacity 200ms ease-in-out 0ms,
    transform 200ms ease-in-out 0ms;
}

.cover2.active {
  opacity: 1;
  top: 0;
}

.popup_container2 {
  opacity: 0;
  background-color: white;
  box-shadow: 2px 2px 5px 5px rgba(0, 0, 0, 0.15);
  border-radius: 30px;
  width: 60vh;
  height: 100%;
  padding: 30px;
  /* padding: 90px 50px 20px 45px;     */
  transition: top 0ms ease-in-out 200ms, opacity 200ms ease-in-out 0ms,
    transform 200ms ease-in-out 0ms;
}

.popup_container2.active {
  opacity: 1;
}

.popup_container2 .close-btn {
  width: 20px;
  height: 20px;
  background-color: green;
  color: #eee;
  float: right;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sub_pop_con2 {
  opacity: 0;
  background-color: white;
  z-index: 8;
  box-shadow: 2px 2px 5px 5px rgba(0, 0, 0, 0.15);
  border-radius: 30px;
  width: 60vh;
  height: 100%;
  padding: 50px;
  transition: top 0ms ease-in-out 200ms, opacity 200ms ease-in-out 0ms,
    transform 200ms ease-in-out 0ms;
}

.sub_pop_con2.active {
  opacity: 1;
}

.sub_pop_con2 img {
  border-radius: 10px;
}

.sub_pop_con2 h4 {
  color: green;
  text-align: center;
}

.popup_container2 .show-already {
  cursor: pointer;
  margin-top: 20px;
}

.popup_container2 .form h2 {
  text-align: center;
  color: #222;
  margin: 10px 0px 20px;
  font-size: 25px;
}

.popup_container2 .form .form-element label {
  font-size: 14px;
  color: #222;
}

.popup_container2 .form .form-element input[type="text"],
.popup_container2 .form .form-element input[type="password"] {
  margin-top: 5px;
  display: block;
  width: 100%;
  padding: 10px;
  outline: none;
  border: 1px solid #aaa;
  border-radius: 5px;
}

.popup_container2 .form .form-element input[type="checkbox"] {
  margin-right: 5px;
}

.popup_container2 .form .form-element button {
  width: 100%;
  height: 40px;
  border: none;
  outline: none;
  font-size: 16px;
  background: rgb(1, 117, 1);
  color: #f5f5f5;
  border-radius: 10px;
  cursor: pointer;
}

.popup_container2 .form .form-element a {
  display: block;
  text-align: right;
  font-size: 15px;
  color: #1a79ca;
  text-decoration: none;
  font-weight: 600;
}

/* main container ---------------------------------*/

.main_content_container {
  overflow-y: hidden;
  overflow-x: hidden;
  width: 100%;
}

/* top container ---------------------------------*/

.social_container {
  background-color: white;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  color: green;
  padding-left: 50px;
  padding-right: 50px;
}

.social_container_2 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}

.social_container_2 h5 {
  font-weight: 1000;
  font-size: 20px;
}

.top_logo {
  margin-left: 10px;
}

.tel_icon {
  font-size: 5em;
}

.logo_container img {
  width: 140px;
  height: 140px;
}

.logo_details {
  /* background-color: #eaa81f; */
  width: 300px;
  text-align: center;
  color: green;
}

.logo_details h3 {
  font-family: "CARBON BL";
}

.logo_details p {
  font-weight: 700;
  font-family: "CANDARALI";
}

.logo_details h5 {
  line-height: 0;
  font-family: "COOPBL";
}

.logo_container {
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  justify-items: center;
  flex-wrap: wrap;
  height: 23vh;
  width: 25%;
  /* border: 1px solid black; */
}

.phone_container {
  height: 23vh;
  display: flex;
  flex-direction: row;
  justify-items: center;
  align-items: center;
  justify-content: space-evenly;
  width: 25%;
  /* border: 1px solid black; */
}

.contact_container {
  height: 23vh;
  display: flex;
  flex-direction: row;
  justify-items: center;
  align-items: center;
  justify-content: space-evenly;
  width: 25%;
  /* border: 1px solid black; */
}

.map_container {
  height: 23vh;
  display: flex;
  flex-direction: row;
  justify-items: center;
  align-items: center;
  justify-content: space-evenly;
  width: 25%;
  /* border: 1px solid black; */
}

.fa-envelope {
  font-size: 5em;
}

.map_container iframe {
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.fa-map-pin {
  font-size: 5em;
}

.location_pin {
  color: green !important;
}

.contact_container {
  color: green;
}

.contact_container p {
  margin-top: 20px;
}

.social_media {
  color: green;
  display: flex;
  justify-content: end;
}

.social_media i {
  font-size: 30px;
}

.social_media a {
  color: green;
  margin-top: 20px;
  margin-left: 20px;
}

/* navigation container ---------------------------------*/

.navbar {
  text-align: center;
  width: 100% !important;
  background-color: green;
  height: 100%;
  z-index: 6;
  border-top: 2px solid #eaa81f;
  border-bottom: 2px solid #eaa81f;
}

.navbar-toggler {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
}

.navbar-toggler-icon {
  font-size: 50px;
  margin-top: -5px;
  color: white;
}

.navbar-nav {
  width: 80% !important;
  padding: 0 !important;
  /* background-color: red !important; */
  /* border: 1px solid white; */
  display: flex;
  justify-content: center;
  box-shadow: 1px 1px 5px 5px rgb(0, 0, 0, 0.1);
}

.nav-link {
  font-weight: 500;
  text-transform: uppercase;
  color: white !important;
}

.nav-link.active {
  color: green !important;
  border-radius: 10px;
  background-color: white !important;
}

.nav-link:hover {
  font-weight: 500;
  color: green !important;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0px 0px 2px 2px rgb(0, 128, 0, 0.5);
  transition: 0.1s all ease-in;
}

#show-signup {
  cursor: pointer;
}

.nav-item a {
  font-size: medium;
  text-decoration: none;
}

.search_box {
  width: 400px !important;
}

/* .search_box input {
  border: 2px solid white;
  border-radius: 50px !important;
} */

.search_btn {
  position: absolute;
  background-color: green;
  height: 20px;
  width: 20px;
  margin-left: 170px !important;
  border-radius: 50%;
}

.dropbtn {
  background-color: #1d8d21;
  color: white;
  padding: 7px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  margin-left: -125px;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: green;
  padding: 10px 0px;
  text-decoration: none;
  display: block;
  font-weight: 500;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
  color: green;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}

/* parallax container ---------------------------------*/

.top_parallax {
  background-image: url("../images/stations/11_pres.JPG");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  height: 15vh;
  background-color: rgb(9, 153, 9);
  color: white;
}

.top_para_con {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 128, 0, 0.5);
}

.parallax_container {
  display: flex;
  flex-wrap: wrap;
  /* align-items: center; */
  justify-content: center;
  height: 100%;
  /* background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  justify-content: space-evenly; */
  padding: 50px;
  /* color: #1d8d21; */
}

.parallax_container .gallery_date {
  background-color: green;
  width: 40%;
  color: white;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}

.section_0 {
  /* width: 800px; */
  width: 50%;
  height: 70vh;
  padding: 30px;
  /* border: 1px solid gold; */
  /* background-color: #eaa81f; */
}

.swot_swiper .swiper-slide {
  font-size: 18px;
  /* background: red; */
  height: 63vh;
}

.section_0 .swiper {
  /* border: 1px solid gold; */
  height: 600px;
  /* height: 100%; */
}

.section_1 {
  /* width: 800px; */
  width: 50%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* background-color: #eaa81f; */
}

.splide {
  /* width: 700px; */
  width: 100%;
}

.mini_splide {
  width: 100% !important;
  margin-top: 10px;
}

.section_2 {
  /* width: 800px; */
  width: 50%;
  padding: 30px;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* background-color: gold; */
}

.mini_splide2 {
  width: 100% !important;
  margin-top: 10px;
}

.section_3 {
  margin-top: 30px;
  padding: 30px;
  /* width: 800px; */
  width: 50%;
  height: 70vh;
  display: flex;
  /* padding: 50px; */
  flex-direction: column;
  /* align-items: center; */
  /* background-color: gold; */
}

.section_4 {
  margin-top: 30px;
  padding: 30px;
  /* width: 800px; */
  width: 50%;
  height: 70vh;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  /* background-color: salmon; */
}

/* swiper container -----------------------------*/

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

/* .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
} */

.swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.mySwiper2 {
  margin-top: 20px;
  height: 80%;
  width: 100%;
}

.mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 600px;
  object-fit: contain;
}

/* swiper 2 container -----------------------------*/

.mySwiper3 {
  margin-top: 20px;
  height: 80%;
  width: 100%;
}

.mySwiper4 {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper4 .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.mySwiper4 .swiper-slide-thumb-active {
  opacity: 1;
}

/* calendar container ---------------------------------*/

.calendar_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  height: 100%;
  justify-content: space-evenly;
  padding: 50px;
}

.left_container {
  /* background-color: green; */
  margin: 10px;
  width: 80%;
  height: 100%;
  padding: 50px;
  /* border: 1px solid green; */
  box-shadow: 0px 0px 10px rgb(0, 0, 0, 0.2);
  /* border-radius: 10px; */
  color: green;
}

.right_container {
  /* background-color: darkcyan; */
  margin: 10px;
  padding: 50px;
  width: 820px;
  box-shadow: 0px 0px 10px rgb(0, 0, 0, 0.2);
  /* border-radius: 10px; */
  color: green;
}

.hr_sec {
  width: 100%;
  margin: 25px auto;
  height: 3px;
  background-color: rgb(0, 124, 0, 0.3);
}

/* extra container ---------------------------------*/

.extras_container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 80px;
  color: white;
  background: green;
}

/* footer container ---------------------------------*/

.footer_container {
  height: 300px;
  background: rgb(1, 117, 1);
  color: white;
  background-image: url("../images/backgrounds/pexels-pixabay-40568.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.footer_cover {
  width: 100%;
  height: 100%;
  /* height: 300px; */
  display: flex;
  flex-wrap: wrap;
  background-color: rgb(0, 128, 0, 0.9);
}

.footer_container,
ul {
  padding: 0 !important;
}

.col_container {
  height: 300px;
  /* width: 470px; */
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 18px;
}

.col_container p {
  margin-top: 20px;
}

.col2_container {
  height: 300px;
  /* width: 470px; */
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.col2_container ul {
  list-style-type: none;
}

.footer_container .col2_container ul a {
  text-decoration: none;
  color: white;
}

.footer_container .col2_container ul a:hover {
  color: wheat;
}

.col3_container {
  height: 300px;
  /* width: 470px; */
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 18px;
}

.bi-geo-alt-fill {
  font-size: 30px;
  color: rgb(241, 50, 50);
}

.col3_container iframe {
  border-radius: 10px;
}

.col3_container ul {
  list-style-type: none;
}

.footer_container .col3_container ul a {
  text-decoration: none;
  color: white;
}

.footer_container .col3_container ul a:hover {
  color: wheat;
}

.col4_container {
  height: 300px;
  /* width: 476px; */
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.col4_container ul {
  list-style-type: none;
}

.footer_container .col4_container ul a {
  text-decoration: none;
  color: white;
}

.footer_container .col4_container ul a:hover {
  color: wheat;
}