/* @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;
  flex-wrap: wrap;
  background-color: white;
  /* line-height: 20px; */
}


.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;
  display: flex;
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: center;
  }

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

  /* .right > ul {
    gap
  }

  .right ul li a{

  } */

}

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

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

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

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

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





.main{
  height: 750px;
  width: 100%;
  /* background-color: pink;  */
  background-color: #333;
  position: relative;
  /* padding: 0 5%; */
  display: flex;
  /* justify-content: center; */
  align-items: center;
   /* background-image: url("images/main-wallpaper.jpg"); */
  /* background-repeat: no-repeat;
  background-position: center;
  background-size: cover; */
}


.loop-video{
  /* content: ""; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
height: 100%;
object-fit: cover;
z-index: 1;
background-position: center;
object-fit: cover;
}



.wall-2 {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 3;
  /* background-color: #784444; */
}


.wall-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background-color: black;
  /* z-index: -1;  */
}

.wall-3 {

  z-index: 5;
  /* background-color: #52966e; */
  /* color: black; */
  padding: 20px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: left;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  gap: 20px;
  position: absolute;
}


.head.active{
  color: white;
}


.wall-2 h3 solid {
  color: rgb(0 137 232);
}
.button-1 {
  margin-top: 20px;
  display: flex;
  gap: 25px;
}

.btn-1,
.btn-2 {
  background-color: transparent;
  height: 50px;
  width: 160px;
  cursor: pointer;
  font-weight: 600;
  color: white;
  font-size: 14px;
  border: 1px solid white;
  font-size: 16px;
  transition: all 0.5s ease-in;
}
.btn-1 {
  background-color: #91bf06;
  border: none;
}

.btn-3:hover {
  background-color: orange;
}

.wall-3 h1 {
  font-size: 50px;
}



  .main{
    width: 100%;

  }


  .wall-2 {
    width: 100%;
  }

  .wall-3{
    width: 100%;
  }



  .btn-1,
  .btn-2 {
    width: 140px;
    font-size: 14px;
  }


@media(max-width: 992px) {
  .main {
    width: 100%;
    height: 600px;
  }




  .wall-2 {
    width: 100%;
  }
  .wall-3{
    width: 100%;
  }


  .wall-3 h1 {
    font-size: 38px;
  }

  .btn-1,
  .btn-2 {
    width: 160px;
    font-size: 16px;
  }

  .button-1 {
    width: 100%;
    gap: 20px;
  }
}

@media  (max-width: 768px) {
  .main {
    width: 100%;
    height: 500px;
    display: flex;
    gap: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .wall-2 {
    height: 100%;
    width: 100%;
    background-image: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .wall-3 {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
  }

  .wall-3 h3 {
    display: none;
  }
.button-1{
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

}

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

  .wall-2 {
    width: 100%;
  }

  .wall-3 {
    width: 100%;
    text-align: center;
  }

  .wall-3 h1 {
    font-size: 24px;
  }

  .button-1 {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .btn-1,
  .btn-2 {
    width: 90%;
    font-size: 14px;
  }
}



.carousel-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin: auto;
}

.carousel-slide {
  display: flex;             /* Flex to display the images in a row */
  transition: transform 0.5s ease-in-out; /* Smooth transition for sliding */
  width: 100%;               /* Make sure the container width is 100% */
}

  /* Anchor tag style */
  /* .carousel-slide a {
    display: block;
    width: 100%;
} */


.carousel-item {
  flex: 0 0 100%; /* Each item takes up 100% of the container width */
}

.carousel-item.active {
  display: block; /* Only show the active item */
}


  /* Image style */
  .carousel-image {
    width: 100%;
    display: block;
    object-fit: cover; /* Ensures images fill the container without distorting */
}

  /* Navigation buttons */
  .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 2rem;
    z-index: 100;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Optional: Add hover effect on the buttons */
.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .carousel-container {
      max-width: 100%;
  }

  .prev, .next {
      font-size: 1.5rem;
      padding: 8px;
  }
}

/* Tablet and above */
@media (min-width: 769px) {
  .carousel-container {
      max-width: 100%;
  }

  .prev, .next {
      font-size: 2rem;
      padding: 10px;
  }
}



/* Desktop (larger screens) */
@media (min-width: 1200px) {
  .carousel-container {
      width: 100%;
  }

  .carousel-image{
    width: 100%;
  }
}

  /* Optional: Add hover effect on the buttons */
  .prev:hover, .next:hover {
      background-color: rgba(0, 0, 0, 0.8);
  }


  /* Desktop */
  @media (min-width: 1200px) {
      .carousel-container {
          width: 100%;
      }

      .carousel-image {
          width: 100%;
      }
  }



.main-2-heading{
  text-align: center;
  color: black;
  width: 100%;
  height:50px;
  margin-top: 30px;
  /* background-color: yellow; */
}

.main-2-heading h1{
  font-size: 40px;
}

@media(max-width:1200px){
  .main-2-heading{
   
    width: 100%;
    height: 50px;
  }

  .main-2-heading h1{
    font-size: 40px;
  }
}

@media (max-width:768px){
 .main-2-heading{
    width: 100%;
    height: 50px;
  }

  .main-2-heading h1{
    font-size: 30px;
  }
}

@media (max-width:480px){
  .main-2-heading{
    width: 100%;
    height: 50px;
  }

  .main-2-heading h1{
    font-size: 20px;
  }
}


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

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


.div-1 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 500px;
  margin: 10px;
  box-shadow: 0px 0px 10px 0px rgb(242, 233, 233);
  padding: 20px;
  height: 250px;
}

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

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

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

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

  }
}

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

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

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

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

@media screen and (max-width: 768px) {
  .main-2{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
  }
  .div-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: center;
  }

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

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

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

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

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


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

.main-3 {
  display: flex;
  justify-content: space-around;
  /* flex-direction: column; */
  height: 100%;
  width: 100%;
  flex-wrap: wrap;
  /* margin: auto; */
  margin: 0px 0px;
  gap: 40px;
  /* background-color: orange; */
  /* margin-bottom: 50px; */
}

.images-1 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.imgg {
  height: 50%;
  width: 100%;
}

.imggg {
  height: 50%;
  width: 100%;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

#imgggg {
  height:100%;
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.new-content {
  display: flex;
  gap: 25px;
  width: 50%;
  /* margin-top: 20px; */
  /* margin-left: 30px; */
  /* background-color: yellow; */
  /* overflow: auto; */
}

.new-content-1 {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  width: 40%;
  padding: 20px;
  /* margin: auto; */
  /* margin-top: 0; */
  /* background-color: red; */
}

.cont-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-left: 20px;
  text-align: left;
  /* margin-bottom: 25px; */
}

.p1 {
  color: #0275a8;
  font-size: 26px;
  font-weight: 600;
}


.cont-1 > h1 {
  font-size: 40;
}


@media screen and (max-width: 1200px) {
  .main-3 {
    margin-top: 2rem;
    gap: 30px;
  }

  .cont-1 > h1 {
    font-size: 40px;
  }

  .cont-2 {
    height: auto;
    flex-wrap: wrap;
    gap: 15px;
  }
}

@media screen and (max-width: 992px) {
  .main-3 {
    margin-top: 2rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
  }

  .new-content {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }

  .new-content-1 {
    width: 100%;
    padding: 30px;
  }

  .imgg,
  .imggg,
  #imgggg {
    width: 100%;
    height: 250px;
  }

  .cont-1 > h1 {
    font-size: 35px;
  }

  .stars {
    width: 120px;
  }

  .cont-2 {
    flex-direction: column;
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .imgg,
  .imggg {
    width: 100%;
    height: 100%;
  }

  #imgggg{
    height: 100%;
    width: 100%;
  }

  .cont-1 > h1 {
    font-size: 30px;
  }

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

  .cont-2 {
    flex-direction: column;
    gap: 15px;
    height: auto;
  }

  .new-content,
  .new-content-1 {
    padding: 20px;
  }

}

@media screen and (max-width: 480px) {
  .imgg,
  .imggg {
    width: 100%;
    height: 100%;
  }

  #imgggg{
    height: 100%;
    width: 100%;
  }

  .imgg,
  .imggg {
    position: relative;
  }

  #imgggg {
    position: absolute;
    left: 120px;
    width: 60%;
  }

  .cont-1 > h1 {
    font-size: 20px;
  }
  .cont-1 p {
    font-size: 14px;
  }

  .new-content,
  .new-content-1 {
    width: 100%;
    padding: 10px;
  }

  .cont-2 {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .stars {
    width: 90px;
  }
}

.main-4 {
  width: 100%;
  height: 465px;
  position: relative;
  display: flex;
  justify-content: right;
  background-color: moccasin;
  /* background-color: palevioletred; */
}

.main-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.6;
  /* z-index: -1;  */
}

.text {
  z-index: 1;
  color: black;
  padding: 20px;
  width: 650px;
  display: flex;
  flex-direction: column;
  justify-content: right;
  align-items: flex-end;
  color: rgb(16, 16, 16);
  gap: 20px;
  text-align: right;
  margin-top: 150px;
}


.text > h1{
  font-size: 40px;
}

.text > p {
  font-size: 16px;
  font-weight: 500;
}

.text > button {
  width: 200px;
}

@media screen and (max-width: 1200px) {
  .main-4 {
    height: 500px;
  }

  .text {
    width: 60%;
    margin-top: 150px;
  }

  .text > button {
    width: 180px;
  }
  .text > h1{
    font-size: 40px;
  }
}

@media screen and (max-width: 992px) {
  .main-4 {
    height: 450px;
  }

  .text {
    width: 70%;
    margin-top: 60px;
    text-align: center;
  }

  .text > h1 {
    font-size: 35px;
  }

  .text > button {
    width: 180px;
  }

}

@media screen and (max-width: 768px) {
  .main-4 {
    height: 350px;
    justify-content: center;
  }

  .text {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .text > p {
    font-size: 16px;
  }

  .text > button {
    width: 100%;
  }
  
.text > h1{
  text-align: center;
  font-size: 30px;
}
}

@media screen and (max-width: 480px) {
  .main-4 {
    height: 260px;
    /* background-color: blue; */
  }

  .text {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
  }

  .text > h1 {
    font-size: 20px;
  }

  .text > p {
    font-size: 14px;
  }

  .text > button {
    width: 100%;
    font-size: 16px;
  }
}

.main-5 {
  display: flex;
  width: 100%;
  height: 350px;
  align-items: center;
  height: auto;
  /* padding-left: 30px; */
  /* padding-right: 30px; */
  position: relative;
  margin-bottom: 10px;
  background-color: rgba(248, 243, 243, 0.959);
  /* background-color: green; */
}

.main-5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: url("images/main-4bgc.jpg"); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.5;
  /* z-index: -1;  */
}

.md-1 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin: 20px;
  z-index: 1;
}

.heading {
  font-size: 40px;
}

.md-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 20px;
  text-align: center;
  margin: 20px;
  z-index: 1;
  /* overflow: scroll; */
}

.md-2 .heading-4 {
  text-decoration: none;
  color: #0275bb;
}

.md-2 .heading-4:hover {
  color: black;
}

.md-2 p {
  font-size: 16px;
}

@media screen and (max-width: 1200px) {
  .main-5 {
    /* background-color: blue; */
    height: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .md-1 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .heading {
    font-size: 40px;
  }

  .md-2 {
    width: 80%;
    text-align: center;
  }

  .md-2 button {
    width: 180px;
  }
}

@media screen and (max-width: 992px) {
  .main-5 {
    height: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .md-1 {
    width: 100%;
  }

  .heading {
    font-size: 35px;
  }

  .md-2 {
    width: 90%;
  }

  .md-2 button {
    width: 100%;
    font-size: 14px;
    height: 30px;
  }
}

@media screen and (max-width: 768px) {
  .main-5 {
    /* margin-top: 50px; */
    height: 100%;
    flex-direction: column;
  }

  .md-1,
  .md-2 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .heading {
    font-size: 30px;
  }

  .md-2 button {
    width: 100%;
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .main-5 {
    height: auto;
    /* margin-bottom: -200px; */
  }

  .heading {
    font-size: 20px;
  }

  .md-2 {
    width: 100%;
  }

  .md-2 button {
    width: 100%;
    font-size: 12px;
  }

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


.main-6-heading{
  text-align: center;
  color: black;
  width: 100%;
  height: 100%;
  /* background-color: blue; */
}

.main-6-heading h1{
  font-size: 40px;
}

@media(max-width:1200px){
  .main-6-heading{ 
    width: 100%;
    height: 100%;
    /* margin-bottom: -90px; */
  }

  .main-6-heading h1{
    font-size: 40px;
  }
}

@media (max-width:768px){
 .main-6-heading{
    width: 100%;
    height: 50px;
    margin-bottom: 60px;
  }

  .main-6-heading h1{
    font-size: 30px;
  }
}

@media (max-width:480px){
  .main-6-heading{
    width: 100%;
    height: 50px;
    margin-bottom: 60px;
  }

  .main-6-heading h1{
    font-size: 20px;
  }
}



.main-after-6{
  /* height: 100%; */
  /* background-color: orange; */
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 25px;
  /* margin-bottom: 25px; */
}

.main-after-6 h2{
  font-size: 40px;

}

.small-box-container{
  height: 100%;
  width: 100%;
  /* padding: 30px; */
  padding: 15px;
  /* background-color: green; */
  display: flex;
  justify-content: center;
  gap: 10px;
}

.paper-container{
  height: 100%;
  width: 100%;
  /* background-color: pink; */
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  /* margin: 20px; */
  gap: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,.2)
}

.paper-container img{
  height: 90px;
  width: 90px;
}

.paper-container a{
text-decoration: none;
color: black;
font-weight: 600;
font-size: 16px;
}


@media (max-width:1200px) {
  .main-after-6{
    width: 100%;
    height: 100%;

  }

  .main-after-6 h1{
  font-size: 40px;
  }

  .paper-container{
    height: 170px;
    width: 100%;
    margin: 20px;
  }

  .paper-container p {
    font-size: 16px;
  }

  .paper-container img{
    height: 75px;
    width: 75px;
  }

  .small-box-container{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
  }
}


@media (max-width:992px){
  .main-after-6{
    height: 100%;
    width: 100%;
    justify-content: center;
  }

  .paper-container{
    height: 160px;
    width: 90%;
    margin: 15px;
  }

  .paper-container img{
    height: 65px;
    width: 65px;
  }

  .small-box-container{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
  }
}

@media (max-width:768px){
  .main-after-6{
    height: 100%;
    width: 100%;
  }

  .main-after-6 h1{
    font-size: 30px;
    }

  .paper-container{
    height: 100%;
    width: 50%;
    margin: 15px;
    justify-content: center;
    align-items: center;
  }

  .paper-container p {
    font-size: 16px;
  }

  .paper-container img{
    height: 65px;
    width: 65px;
  }

  .small-box-container{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

}

@media (max-width:480px){
  .main-after-6{
    height: 100%;
    width: 100%;
  }

  .main-after-6 h1{
    font-size: 20px;
    /* margin-bottom: 60px; */
    }

  .paper-container{
    height: 140px;
    width: 100%;
    margin: 15px;
    justify-content: center;
    align-items: center;
  }

  .paper-container p {
    font-size: 14px;
  }

  .paper-container img{
    height: 65px;
    width: 65px;
  }

  .small-box-container{
    width: 100%;
    height: 100%;
    gap: 10px;
  }
}


.main-6 {
  height: 70%;
  width: 100%;
  display: flex;
  margin-top: 0px;
  /* background-color: rebeccapurple; */
 /* background-color: blue; */
}


.box-1 {
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  width: 100%;
  margin: 10px;
  padding: 20px;
  gap: 20px;
  text-align:left;
  box-shadow: 0px 0px 7px 1px rgb(236, 235, 235);
  line-height: 1.5rem;
  /* overflow-y: hidden; */
}

.box-1 .heading-4 {
  text-decoration: none;
  color: #226c8a;
}

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

.box-1 .heading-4:hover {
  color: black;
}

.box-1 h3{
  color: #226c8a;
}

.ig {
  height: 70px;
  width: 70px;
}



@media screen and (max-width: 1200px) {
  .main-6 {
    height: auto;
    flex-direction: column;
  }

  .box-1 {
    width: auto;
    margin-bottom: 20px;
  }

  .ig {
    height: 60px;
    width: 60px;
  }
}

@media screen and (max-width: 992px) {
  .main-6 {
    height: 100%;
    flex-direction: column;
    padding: 20px;
  }

  .box-1 {
    width: auto;
    margin-bottom: 20px;
  }

  .ig {
    height: 60px;
    width: 60px;
  }
}

@media screen and (max-width: 768px) {

  .main-6 {
    height: auto;
    flex-direction: column;
    margin-top: -5rem;
    /* padding: 20px; */
  }

  .box-1 {
    width: auto;
    margin-bottom: 20px;
  }

  .ig {
    height: 50px;
    width: 50px;
  }

  .box-1 h3 {
    font-size: 1.5rem;
  }

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

  .box-1 .heading-4 {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .main-6 {
    height: auto;
    flex-direction: column;
    margin-top: -5rem;
    padding: 10px;
  }

  .box-1 {
    width: auto;
    margin-bottom: 20px;
  }

  .box-1 h3 {
    font-size: 1rem;
  }

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

  .box-1 .heading-4 {
    font-size: 16px;
  }


  .ig {
    height: 45px;
    width: 45px;
  }
}

.main-7 {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: .9;
  background-color: #226c8a;;
  /* background-image: url("images/bg-1.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; */
  /* position: relative; */
}


/* .main-7 {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 3;
}


.main-7::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background-color: #226c8a;;
  z-index: -1; 
}

.form-section{

  z-index: 999;
  color: black;
  padding: 20px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: left;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  gap: 20px;
  position: absolute;
} */

/* .main-7-content{
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 3;
}

.main-7-content{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background-color: #226c8a;;
  z-index: -1; 
} */

.main-7 .right-side .form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  /* position: absolute;
  
  z-index: 999; */

}

.main-7 .right-side .form > input {
  height: 50px;
  width: 35rem;
  border-radius: 20px;
  padding-left: 30px;
  font-size: 14px;
}



form input{
  margin-bottom: 0px;
}

.main-7 .right-side .form > select {
  height:50px;
  width: 35rem;
  border-radius: 20px;
  padding-left: 25px;
  padding-left: 25px;
  font-size: 14px;
  color: #6d6868;
}


.main-7 .left-side > p {
  color: white;
}

.main-7 .left-side .heading-1 {
  color: white;
  margin: 25px 0px;
}

.main-7 .right-side .btn-main-7 {
  background-color: black;
  transition: all 0.5s ease-in;
}

.main-7 .right-side .btn-main-7:hover {
  background-color: orange;
}

@media screen and (max-width: 1200px) {
  .main-7 {
    height: 100%;
  }

  .main-7 .right-side .form > input {
    width: 30rem;
  }

  .main-7 .right-side .form > select{
    width: 100%;
  }

  .main-7 .right-side .btn-main-7 {
    width: 100%;
  }
}

@media screen and (max-width: 992px) {
  .main-7 {
    height: 100%;
  }

  .main-7 .right-side .form > input {
    width: 100%;
    height: 100%;
  }

  .main-7 .right-side .form > select{
    width: 100%;
    height: 100%;
  }

  .main-7 .right-side .btn-main-7 {
    width: 28rem;
  }
}

@media screen and (max-width: 768px) {
  .main-7 {
    height: 100%;
  }

  .main-7 .left-side {
    margin-bottom: 20px;
  }

  .main-7 .right-side .form {
    margin-top: 20px;
  }

  .main-7 .right-side .form > input {
    width: 100%;
    height: 100%;
  }

  .main-7 .right-side .form > select{
    width: 100%;
    height: 100%;
  }

  .main-7 .right-side .btn-main-7 {
    width: 90%;
    height: 45px;
  }
}

@media screen and (max-width: 480px) {
  .main-7 {
    height: 100%;
  }

  .main-7 .right-side .form > input {
    width: 100%;
    font-size: 12px;
  }

  .main-7 .right-side .form > select{
    width: 100%;
    height: 100%;
    font-family: 12px;
  }

  .main-7 .right-side .btn-main-7 {
    width: 100%;
    font-size: 14px;
  }
}


.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: left;
  }

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