/* @import url("https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap"); */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* background-color: yellow; */
  font-family: "Roboto", serif;
}

.container {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  background-color: white;
  flex-wrap: wrap;
}


.left {
  /* width: 17rem; */
  height: 6rem;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 10px;
  width: 40%;
  /* background-color: blue; */
}

.left a img {
  height: 4rem;
  width: 100%;
  /* border:2px solid yellow; */
}

.nav-left {
  background-image: url("images/logo.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 5rem;
  width: 5rem;
}

.nav-address {
  /* background-color: red; */
  font-size: 14px;
  color: #226c8a;
  height: 6rem;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-direction: column;
  text-align: left;

}

.nav-address a {
  text-decoration: none;
  color: #226c8a;
}

.right {
  background-color: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 60%;
  justify-content: right;
}

.right>ul {
  display: flex;
  list-style: none;
  gap: 1rem;
  background-color: #ececec;
}

.right ul li a {
  text-decoration: none;
  padding: 12px;
  /* margin-right: 1rem; */
  display: flex;
  /* justify-content: center; */
  text-align: left;
}

.btn {
  height: 3rem;
  width: 12rem;
  cursor: pointer;
  font-weight: 600;
  color: white;
  border: none;
  background-color: #91bf06;
  font-size: 1rem;
  transition: all 0.5s ease-in;
}


.btn:hover {
  color: white;
  background-color: orange;
  animation: all 4s ease-in;
}


.dropdown a {
  color: black;
  font-weight: 600;
  font-size: 14px;
  padding: 15px 20px;
  display: block;
  text-decoration: none;
}

.dropdown:hover>a>i {
  transform: rotate(180deg);
  transition: all 0.2s ease-in;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  height: 6rem;
  padding: 0 1rem;
  border-bottom: 1px solid #ddd;
  position: sticky;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
  width: 100%;
  top: 0;
  z-index: 999;
  flex-wrap: wrap;
}

.ul-1 {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 0;
  list-style: none;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 150px;
  width: 100%;
  padding: 0;
  margin: 0;
  z-index: 1;
}

.ul-1.active {
  display: block;

}

.dropdown {
  position: relative;
}

.dropdown a:hover {
  background-color: #ececec;
}

.dropdown:hover>.ul-1 {
  display: block;
}

.ul-1 li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: black;
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  background-color: white;
  text-align: left;
}



.ul-1 li a:hover {
  background-color: #ececec;
}

.hamburger-menu {
  display: none;
  cursor: pointer;
  font-size: 2rem;
}

@media (max-width: 1200px) {
  .navbar {
    /* justify-content: row; */
    align-items: center;
    height: auto;
  }
}


@media(max-width:1082px) {
  .nav-address {
    display: none;
  }

  .left {
    width: 25%;
  }

  .right {
    width: 75%;
  }
}

@media(max-width:992px) {
  .navbar {
    align-items: center;
    height: auto;
  }

  .right>ul {
    gap: 0px;
  }

}


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


  .left {
    width: auto;
  }

  .right {
    width: auto;
  }

  .right>ul {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    background-color: white;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }

  .right>ul.active {
    display: flex;
  }

  .ul-1 {
    display: none;
  }

  .ul-1.active {
    display: block;
  }
}


.modal {
  display: none;
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  padding-top: 60px;
}


.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  text-align: center;
}


.close-btn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}


.close-btn:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.close-btn:hover {
  color: red;
}

.form-details {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-details input {
  width: 90%;
  border-radius: 15px;
  padding: 8px 15px;
  margin: 10px;
}

.edit-btn {
  padding: 10px 20px;
  background-color: blue;
  color: white;
  border: none;
  border-radius: 15px;
  cursor: pointer;
}

.edit-btn:hover {
  background-color: blue;
}

.main {
  height: 300px;
  width: 100%;
  background-image: url("images/about.jpg");
  background-color: #ccc;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.section-1 {
  background-image: url("images/wall-2.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  max-width: 1050px;
  /* margin: 0 auto;   */
  padding: 0;
}

.main-content {
  display: flex;
  flex-direction: column;
  padding-top: 6rem;
  color: white;
  padding-left: 2rem;
  text-align: left;
  justify-content: center;
}



.h1-heading h1 {
  font-size: 2.5rem;
  margin: 0;
}

.h2-heading{
  font-size: 2rem;
  color: #226c8a;
}

.h4-hd {
  margin-top: 1rem;
  display: flex;
  color: darkblue;
  gap: 1rem;
}

.h4-hd a {
  color: white;
  text-decoration: none;
  border-right: 2px solid white;
  padding-right: 1rem;
}

@media (max-width: 1200px) {

  .h1-heading h1{
    font-size: 2.5rem;
  }

  .main-content {
    padding-left: 1.5rem;
  }
}

@media (max-width: 992px) {

  .h1-heading h1{
    font-size: 2rem;
  }

  .main-content {
    padding-left: 1rem;
    padding-top: 5rem;
  }
}

@media (max-width: 768px) {
  .main {
    height: 250px;
  }

  .h1-heading h1{
    font-size: 2rem;
  }


  .main-content {
    padding-top: 4rem;
    padding-left: 1rem;
    text-align: center;
  }

  .h4-hd {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .main {
    height: 200px;
  }

  .h1-heading h1 {
    font-size: 2rem;
  }


  .main-content {
    padding-top: 3rem;
    padding-left: 0.5rem;
    text-align: center;
  }


  .section-1 {
    background-image: none; 
  }

  .main-content {
    padding-top: 3rem;
    padding-left: 0.5rem;
    text-align: center;
  }

  .main {
    height: 200px;
    position: relative;
  }

  .main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay with semi-transparent black */
    z-index: 1;
  }

  .main-content {
    position: relative;
    z-index: 2; /* Ensure the content is above the overlay */
    padding-top: 3rem;
    padding-left: 0.5rem;
    text-align: center;
  }

  .h1-heading {
    font-size: 2rem;
    position: relative;
  }

  .h1-heading::after {
    content: "";
    display: block;
    height: 2px;
    width: 50%;
    background-color: white;
    margin: 0.5rem auto 0;
    opacity: 0.8;
  }

  .main img {
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }

  .main:hover img {
    opacity: 1;
  }


}

.main-2 {
  /* height: 32rem; */
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
  /* background-color: red; */
  margin-top: 30px;
  /* margin: 30px; */
}

.left-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  /* background-color: yellow; */
}

.left-img img {
  /* background-image: url("images/left-img.jpg"); */
  margin: 20px;
  height: 320px;
  object-fit: cover;
  width: 100%;
}

.right-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  /* padding-left: 1.5rem; */
  width: 100%;
  justify-content: center;
  align-items: left;
  gap: 10px;
  padding: 0px 20px;
  text-align: left;
  /* font-size: 1; */
}

.right-content a {
  text-decoration: none;
  color: #226c8a;
  font-size: 16px;
}

@media (max-width: 1024px) {
  .main-2 {
    /* flex-direction: column; */
    padding: 10px;
  }



  .right-content p {
    font-size: 16px;
  }

  .heading-use {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {

  .main-2 {
    flex-direction: column;
  }

  .left-img img {
    height: 300px;
  }

  .right-content {
    width: 100%;
    height: auto;
  }

  .right-content {
    font-size: 1rem;
    gap: 1rem;
  }

  .heading-use {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {


  .left-img img {
    height: 300px;
  }



  .right-content {
    width: 100%;
    /* height: 25rem; */
  }

  .heading-use {
    font-size: 1rem;
  }
}


.main-2-1 {
  height: 100%;
  width: 100%;
  display: flex;
  /* background-color: blue; */
}

.img-1 {
  height: 75px;
  width: 40;
  /* padding: 20px; */
}


.division-1 {
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  /* align-items: center; */
  gap: 20px;
  width: 100%;
  margin: 10px;
  box-shadow: 0px 0px 10px 0px rgb(242, 233, 233);
  padding: 10px;
  height: auto;
}

.division-1  img{
  width: 100%;
  object-fit: cover;
  height: 200px;
}

.division-1-content{
display: flex;
flex-direction: column;
}

.division-1 div > h3 {
  padding-bottom: 20px;
  color: #226c8a;
}
.division-1 div > h3 > a {
  text-decoration: none;
  color: #226c8a;
}

.main-2-1 .div-1 p {
  font-size: 16px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1200px) {
  .division-1 {
    width: 100%;
  }

  .main-2-1{
    height: 100%;
    width: 100%;

  }
}

@media screen and (max-width: 992px) {
  .division-1 {
    width: 100%;
    font-display: flex;
    /* justify-content: center; */
    /* align-items: center; */
    flex-direction: column;
    height: auto;
    text-align: left;
  }

  .main-2-1 {
    gap: 15px;
    height: 100%;
    width: 100%;
  }

  .division-1 div h3 {
    font-size: 22px;
  }
}

@media screen and (max-width: 768px) {
  .main-2-1{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
  }
  .division-1 {
    width: 100%;
    height: auto;
    /* margin: 15px 0; */
    /* padding: 10px; */
    /* width: 350px; */
    display: flex;
    /* justify-content: center;
    align-items: center; */
    flex-direction: column;
    text-align: left;
  }

  .img-1 {
    height: 30px;
    width: 30px;
  }

  .division-1 div > h3 {
    font-size: 18px;
  }
}

@media screen and (max-width: 480px) {
  .main-2-1{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    /* background-color: red; */
  }

.division-1 {
  width: 100%;
  padding: 10px;
  height: 100%;
}
  .img-1 {
    height: 30px;
    width: 30px;
  }

  .division-1 div > h3 {
    font-size: 16px;
  }


  /* .main-2-1 .div-1 p {
    font-size: 14px;
  } */
}

.main-3 {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* background-color: beige; */
  margin-bottom: 30px;
  gap: 30px;
}

.div-1 {
  border-bottom: 2px solid #226c8a;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  height: 8rem;
  font-size: 1rem;
  margin: 0rem 7rem;
}

.div-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  /* background-color: green; */
  gap: 20px;
}

.div-2-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  text-align: left;
  height: 100%;
  width: 100%;
  gap: 1rem;
  /* background-color: pink; */
  padding: 0px 15px;
}

.div-img {
  display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
      width: 100%;
  }

.img-2 {
  /* background-image: url("images/left-img.jpg"); */
  margin: 20px;
  height: 320px;
  object-fit: cover;
  width: 100%;
}

.heading-use {
  color: #226c8a;
  font-size: 2.5rem;
}


.div-3 {
  display: flex;
  /* justify-content: center;
  text-align: center; */
  padding: 0px 20px;
}

@media (max-width: 1200px) {
  .main-3 {
    /* margin-top: 6rem; */
    width: 100%;
    height: 100%;
  }

  .div-1 {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-items: center;
    padding: 20px;

  }

  .div-2-img {
    height: 100%;
  }

  .heading-use {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .main-3 {
    padding: 10px;
    /* background-color: green; */
  }

  .div-1 {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-items: center;
    padding: 20px;
}

  .div-1 p {
    font-size: 14px;
  }

  .heading-use {
    font-size: 1.2rem;
  }

  .div-2 {
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    margin: auto;
    /* background-color: red; */
  }

  .div-img {
    /* background-color: yellow; */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

.img-2 {
  height: 300px;

}

  .div-2-content .button {
    /* background-color: blue; */
    width: 100%;
  }

  .div-2-content .button .btn {
    width: 50%;
    font-size: 14px;
  }

  .div-2-content {
    gap: 1rem;
  }

  .div-2-content p {
    font-size: 14px;
  }

  .h3-heading {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .div-2 {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .div-2-content {
    width: 100%;
    gap: 1rem;
  }

  .div-2-img {
    height: 70%;
    width: 100%;
  }

  .div-2-content p {
    font-size: 12px;
  }

  .div-2-content .button {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: blue; */
    width: 100%;
  }

  .div-2-content .button .btn {
    width: 50%;
    font-size: 14px;
    text-align: center;
  }

  /* .div-1 p {
    font-size: 12px;
  } */

  .heading-use {
    font-size: 1rem;
  }

  .main-3 {
    margin-top: 2rem;
  }
}


.footer-container {
  margin-top: 15px;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #f3f3fa;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.footer {
  height: auto;
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 20px 0px 20px;
  /* overflow: auto; */
  /* background-color: rgb(234, 227, 227); */
  background-color: #ececec;
  border-radius: 30px 30px 0 0;
}

.foot-1 {
  /* margin-left: 20px; */
  width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
}


.foot-1 a img {
  height: 5rem;
  width: 260px;
}


.foot-1 .address {
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: center;
  margin-top: 25px;
}

.foot-1 .address p {
  text-align: left;
  font-size: 16px;
}

.footer .footer-top {
  display: flex;
  justify-content: space-around;
  gap: 60px;
  /* flex-wrap: wrap; */
}

.footer .footer-top .foot-2 {
  display: flex;
  gap: 10px;
  /* flex-wrap: wrap; */
}


.footer .footer-top .foot-2 .footer-top-1 {
  margin: 20px;
}

.footer .footer-top .foot-2 .footer-top-1 ul {
  padding-top: 20px;
  list-style: none;
}

.footer .footer-top .foot-2 .footer-top-1 ul li a {
  text-decoration: none;
  line-height: 2rem;
  color: grey;
  font-size: 16px;
}

.footer .footer-top .foot-2 .footer-top-1 ul li a:hover {
  color: #226c8a;
  ;
}

.footer .footer-bottom {
  height: 120px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid grey;
}

.footer .footer-bottom .side-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;

}

.footer-upper-content {
  display: flex;
  padding: 10px 40px;
}

.social {
  display: flex;

}

.social a {
  font-size: 16px;
  padding: 10px 40px;

}

.social i {
  color: black;
}


.social i:hover {
  color: #226c8a;
  ;
}

.footer .footer-bottom .side-1>div {
  display: flex;
  gap: 10px;
}

.footer .footer-bottom a {
  text-decoration: none;
  color: grey;
  font-size: 16px;
}

.footer .footer-bottom .side-1 a {
  color: #226c8a;
  ;
}

.footer .footer-bottom .side-1 a:hover {
  color: #226c8a;
  ;
}

.side-1 p {
  font-size: 16px;
}

.side-2 a {
  font-size: 16px;
}

.footer .footer-bottom a:hover {
  color: #226c8a;
  ;
}

@media (max-width: 1225px) {
  .footer-container {
    width: 100%;
  }

  /* .footer {
    height: auto;
    padding-top: 20px;
  }

  .foot-1 {
    height: 200px;
    margin-left: 10px;
    width: 100%;
  } */


  .footer-top .foot-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
  }

  .foot-1 .address {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    text-align: center;
    text-align: center;
  }

  .foot-1 .address p {
    padding: 0px 50px;
    font-size: 16px;
  }

  .side-1>p {
    font-size: 13px;
  }

  .footer .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer .footer-top .foot-2 .footer-top-1 {
    text-align: center;
  }

  .footer .footer-top .foot-2 {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: center;
  }

  .footer .footer-bottom .side-1 {
    flex-direction: column;
    align-items: center;
    /* gap: 1px;
    margin-top: 20px; */
  }

  .footer .footer-bottom .side-2 {
    display: flex;
    gap: 5px;
    flex-direction: column;
    text-align: center;
  }

  .footer .footer-bottom a {
    font-size: 16px;
  }

  .footer .footer-top .foot-2 .footer-top-1 ul li a {
    font-size: 14px;
  }

  .last-footer {
    width: 100%;
    height: 100%;
  }

  .last-footer h2 {
    font-size: 14px;
  }

  .last-footer a {
    font-size: 14px;
  }

  .last-footer .left {
    display: none;
  }

  .foot-1 {
    /* margin-left: 20px; */
    width: 300px;
    padding: 20px;
    /* margin: auto; */
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 1136) {

  .footer,
  .footer-top,
  .footer-bottom {
    display: flex;
    flex-direction: column;
  }

  .footer-container {
    width: 100%;
  }

  .side-1 p {
    font-size: 15px;
  }

  .side-2 a {
    font-size: 16px;
  }

  .footer-container {
    width: 100%;
  }

  .last-footer {
    width: 100%;
  }


  .last-footer .left {
    display: none;
  }
}

@media (max-width: 768px) {
  .footer-container {
    width: 100%;
  }

  .footer {
    height: auto;
    padding-top: 20px;
  }


  .footer-top .foot-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-left: 10px;
    width: 100%;
  }

  .foot-1 .address {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    text-align: center;
    align-items: center;
  }

  .foot-1 .address p {
    padding: 0px 50px;
    font-size: 14px;
  }

  .side-1 p {
    font-size: 14px;
  }

  .side-2 a {
    font-size: 14px;
  }

  .footer .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer .footer-top .foot-2 .footer-top-1 {
    text-align: center;
  }

  .footer .footer-top .foot-2 {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: center;
  }

  .footer .footer-bottom .side-1 {
    flex-direction: column;
    align-items: center;
    gap: 1px;
    margin-top: 20px;
  }

  .footer .footer-bottom .side-2 {
    display: flex;
    gap: 5px;
    flex-direction: column;
    text-align: center;
  }

  .footer .footer-bottom a {
    font-size: 14px;
  }

  .footer .footer-top .foot-2 .footer-top-1 ul li a {
    font-size: 14px;
  }


  .last-footer .left {
    display: none;
  }

  .foot-1 a img {
    height: 4rem;
    width: 230px;
  }
  
}

@media (max-width: 480px) {
  .footer-container {
    width: 100%;
  }

  .footer .footer-top {
    padding: 20px;
  }

  .footer .footer-top .foot-2 .footer-top-1 ul li a {
    font-size: 12px;
  }

  .foot-1 {
    margin-left: 10px;
    width: 100%;
  }

  .foot-logo {
    height: 30px;
    width: 30px;
    font-size: 14px;
  }

  .foot-1 .left>h2 {
    font-size: 16px;
  }

  .foot-1 .left {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-top .foot-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
  }

  .foot-1 .address {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    text-align: center;
    align-items: center;
  }

  .foot-1 .address p {
    padding: 0px 50px;
    font-size: 12px;
  }

  .footer .footer-bottom {
    padding: 10px;
    border-top: none;
  }

  .foot-1 {
    margin-left: 0;
    width: 100%;
  }

  .footer .footer-top .foot-2 {
    flex-direction: column;
    gap: 15px;
  }

  .footer .footer-bottom .side-1 {
    flex-direction: column;
    align-items: center;
    gap: 1px;
    margin-top: 20px;
  }

  .side-1 p {
    font-size: 12px;
  }

  .side-2 a {
    font-size: 12px;
  }

  .footer .footer-bottom .side-2 {
    display: flex;
    gap: 5px;
    flex-direction: column;
    text-align: center;
  }

  .social a {
    font-size: 16px;
    padding: 10px 25px;
  
  }
}

.last-footer {
  padding: 0px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(234, 227, 227);
  height: 90px;
  width: 100%;
  position: sticky;
  bottom: 0;
  z-index: 99;
}

.last-footer a {
  text-decoration: none;
  color: black;
  cursor: pointer;
  font-size: 12px;
}

.last-footer .foot-logo {
  height: 3rem;
  width: 3rem;
  border: 2px solid #226c8a;
  ;
  border-radius: 50%;
}

.last-footer h2 {
  cursor: pointer;
  font-size: 16px;
}

li.custom-text {
  font-size: 12px;
  font-weight: 500;
}