html,
body {
  font-family: "Arial", sans-serif;
  /* box-sizing: border-box; */
  margin: 0;
  padding: 0;
}

/* 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 ---------------------------------*/
.parallax_container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: justify;
  flex-wrap: wrap;
  height: 60vh;
  background-image: url("../images/centers/st_james_building.jpg");
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  background-size: cover;
}

.paralllax_sub {
  text-shadow: 1px 1px 3px #000000;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0;
  color: white;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  /* padding-left: 500px;
  padding-right: 500px; */
  width: 100%;
  height: 60vh;
}

.parallax_container2 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60vh;
  background-color: rgb(9, 153, 9);
}

/* ---------------------------- */

.show_section {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: all 0.5s ease;
}

.show_section.show_active {
  transform: translateY(0px);
  opacity: 1;
}

/* ---------------------------- */

.show_section2 {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: all 1s ease;
}

.show_section2.show_active2 {
  transform: translateY(0px);
  opacity: 1;
}

.paralllax_sub2 {
  text-shadow: 1px 1px 3px #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0;
  color: white;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding-left: 300px;
  padding-right: 300px;
  width: 100%;
  height: 60vh;
}

.parallax_container3 {
  display: flex;
  height: 100%;
  /* height: 180vh; */
  background-image: url("../images/hospital.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.parallax_sub3 {
  color: white;
  background-color: rgba(0, 0, 0, 0.5);  
  height: 100%;
  width: 100%;
  padding: 20px;
  position: relative;
}

.parallax_sub3 input {
  display: none;
  position: absolute;
}

.parallax_sub3 head {
  position: relative;
  width: 90%;
  margin: auto;
  height: 100px;
  margin-top: 60px;
  animation: trans 0.7s linear forwards;
}

ul.nav {
  padding-top: 15px;
  z-index: 100;
  position: absolute;
  width: 100%;
}

ul.nav li {
  list-style: none;
  float: left;
  width: 25%;
  text-align: center;
  color: white;
  font-size: 11px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
  vertical-align: middle;
  height: 60px;
  position: relative;
}

ul.nav li::before {
  content: "";
  width: 25px;
  height: 25px;
  border: 2px solid white;
  border-radius: 50%;
  margin: auto;
  display: block;
  transition: all 0.3s ease;
}

ul.nav li:hover::before {
  background: rgb(0, 255, 76);
}

ul.nav li .inner {
  position: absolute;
  width: 100%;
  bottom: 0;
  font-size: 14px;
  font-weight: bold;
}

ul.nav li.active,
ul.nav li:hover {
  color: white;
}

ul.nav li::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-color: white;
  border-radius: 50%;
  border: 2px solid rgb(0, 174, 218);
  margin: auto;
  margin-top: 40px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
}

ul.nav li:hover::after,
ul.nav li.active::after {
  background-color: rgba(0, 255, 76, 0.842);
}

.line {
  width: 76%;
  margin: auto;
  background-color: rgb(0, 0, 0, 0.2);
  height: 7px;
  position: absolute;
  left: 13%;
  top: 103px;
  z-index: 1;
  border-radius: 50px;
}

.line span {
  content: "";
  width: 5%;
  height: 100%;
  /* background-image: linear-gradient(to right, #a29bfe 0%, #ff7675 100%); */
  background-color: white;
  position: absolute;
  z-index: 2;
  border-radius: 50px;
  transition: all 0.8s ease;
}

.content {
  position: relative;
  display: flex;
  justify-content: center;  
  animation: anim 0.7s linear forwards;
  height: 150vh;
  margin-top: 100px;
  /* background-color: #eaa81f; */
  /* flex-direction: column; */
}

.content section {
  width: 70%;
  /* height: 58vh; */
  /* margin: auto; */
  
  /* background-color: rgba(0, 0, 0, 0.5);   */
  border-radius: 4px;
  padding: 30px;
  color: white;
}

.content span {
  font-size: 3rem;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.content h1 {
  font-weight: 900;
  margin-top: 10px;
  text-align: center;
}

.content p {
  padding: 30px 40px;
  text-align: justify;
  font-size: 15px;
}

.profile:checked ~ .head .nav li.st1::before,
.settings:checked ~ .head .nav li.st1::before,
.settings:checked ~ .head .nav li.st2::before,
.posts:checked ~ .head .nav li.st1::before,
.posts:checked ~ .head .nav li.st2::before,
.posts:checked ~ .head .nav li.st3::before,
.books:checked ~ .head .nav li.st1::before,
.books:checked ~ .head .nav li.st2::before,
.books:checked ~ .head .nav li.st3::before,
.books:checked ~ .head .nav li.st4::before {
  border: 2px solid #fff;
  background-color: rgba(0, 255, 76, 0.842);
  transition: all 0.3s ease;
}

.settings:checked ~ .head .line span {
  width: 34%;
}

.posts:checked ~ .head .line span {
  width: 66%;
}

.books:checked ~ .head .line span {
  width: 100%;
}

.profile-section,
.account-section,
.post-section,
.books-section {
  transform: scale(0);
  transform-origin: center bottom;
  transition: all 0.7s ease;
  /* position: relative; */
  position: absolute;
  top: 0;  
  /* height: 100%; */
  /* background-color: #1a79ca; */
}

.profile:checked ~ .content .profile-section,
.settings:checked ~ .content .account-section,
.posts:checked ~ .content .post-section,
.books:checked ~ .content .books-section {
  display: block;
  transform: scale(1);
  /* transform-origin: bottom; */
}

@keyframes anim {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  50% {
    opacity: 0.5;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes trans {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  50% {
    opacity: 0.5;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.parallax_container4 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60vh;
}

.pagi {
  margin-top: 100px;
}

.slide-content {
  width: 1500px;
  /* background-color: rgb(0, 179, 0, 0.2); */
  padding: 140px;
}

.card {
  border-radius: 25px !important;
  /* background-color: rgb(255, 255, 255, 0) !important; */
  width: 248px !important;
  height: 348px !important;
  border: 10px solid black !important;
  padding: 0px 25px 25px 25px !important;
  border: 1px solid rgb(235, 235, 235) !important;
}

.card-wrapper {
  border-radius: 25px;
  width: 1500px;
  height: 350px;
}

.card,
.card-content {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  padding: 10px 30px;
  width: 250px;
}

.image-content {
  position: relative;
  width: 250px;
  padding: 25px;
  display: flex;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
}

.overlay {
  position: absolute;
  border-radius: 25px 25px 0 25px;
  left: 0;
  top: 0;
  height: 100px;
  width: 249px;
  background-color: rgb(1, 117, 1);
}

.overlay::before,
.overlay::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 40px;
  background-color: rgb(1, 117, 1);
  border: none;
}

.overlay::after {
  border-radius: 0 25px 0 0;
  background-color: white;
  border: none;
}

.card-image {
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  border: 4px solid rgb(1, 117, 1);
}

.card-image .card-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid white;
}

/* core program container ---------------------------------*/

.div_bef_core {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 80px;
  color: white;
  background-color: green;
  border-bottom: 3px solid gold;
}

.core_programs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.reveal {
  position: relative;
  transform: translateX(150px);
  opacity: 0;
  transition: all 1s ease;
}

.reveal.active {
  transform: translateX(0px);
  opacity: 1;
}

/* ---------------------------- */

.reveal2 {
  position: relative;
  transform: translateX(-150px);
  opacity: 0;
  transition: all 1s ease;
}

.reveal2.active2 {
  transform: translateX(0px);
  opacity: 1;
}

/* ---------------------------- */

.reveal3 {
  position: relative;
  transform: translateX(150px);
  opacity: 0;
  transition: all 1s ease;
}

.reveal3.active3 {
  transform: translateX(0px);
  opacity: 1;
}

/* ---------------------------- */

.reveal4 {
  position: relative;
  transform: translateX(-150px);
  opacity: 0;
  transition: all 1s ease;
}

.reveal4.active4 {
  transform: translateX(0px);
  opacity: 1;
}

/* ------------------------------- */

.core_content{
  background-color: green;
  padding: 50px;
  border-radius: 50px 0px;
}

.d_left {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  text-align: justify;
  padding: 50px;
  color: white;
  /* background-color: green; */
  width: 50%;
  height: auto;
  /* border-right: 3px solid gold; */
  border-bottom: 15px solid gold; 
  border-radius: 10px 0px 10px 0px;
}

.d_left p {
  font-size: 20px;
}

.d_left h1 {
  font-size: 100px;
}

.d_right {
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
  width: 50%;
  height: auto;

}

.d_right img {
  border-radius: 5px;
  box-shadow: 5px 5px 2px #888888;
}

/* ------------------------------- */

.p_left {
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
  width: 50%;
}

.p_left img {
  border-radius: 5px;
  box-shadow: 5px 5px 2px #888888;
}

.p_right {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  text-align: justify;
  padding: 130px;
  color: white;
  /* background-color: green; */
  width: 50%;
  /* border-left: 3px solid gold; */
  border-bottom: 15px solid gold;
  border-radius: 0px 0px 0px 10px;
}

.p_right p {
  font-size: 20px;
}

.p_right h1 {
  font-size: 80px;
}

/* ------------------------------- */

.do_left {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  text-align: justify;
  padding: 130px;
  color: white;
  /* background-color: green; */
  width: 50%;
  border-bottom: 15px solid gold;
  border-radius: 10px 0px 10px 0px;
}

.do_left p {
  font-size: 20px;
}

.do_left h1 {
  font-size: 80px;
}

.do_right {
  background-color: white;
  display: flex;
  justify-content: center;
  padding: 50px;
  width: 50%;
  align-items: center;
}

.do_right img {
  object-fit: contain;
  border-radius: 5px;  
  box-shadow: 5px 5px 2px #888888;
}

/* ------------------------------- */

.e_left {
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 50%;
  height: auto;
}

.e_left img {
  border-radius: 5px;
  box-shadow: 5px 5px 2px #888888;
}

.e_right {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  text-align: justify;
  padding: 130px;
  color: white;
  /* background-color: green; */
  width: 50%;
  /* border-left: 3px solid gold; */
  border-bottom: 15px solid gold;
  border-radius: 0px 0px 0px 10px;
}

.e_right p {
  font-size: 20px;
}

.e_right h1 {
  font-size: 70px;
}

/* extra container ---------------------------------*/

.extras_container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 80px;
  color: white;
  background: green;
  /* border-top: 3px solid gold; */
}

/* 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;
}
