@import url("https://fonts.googleapis.com/css2?family=Quicksand&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@500&display=swap");
/* font-family: 'Josefin Sans', sans-serif */

* {
  /* font-family: "Quicksand", sans-serif; */
}

.header_main {
  width: 100%;
  padding: 1rem;
  /* background-color: #3396d1; */
  background-color: #000;
  /* background-color: #002c47; */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  font-family: "Josefin Sans", sans-serif;
}

@media (max-width: 815px) {
  .header_main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 615px) {
  .header_main {
    grid-template-columns: repeat(1, 1fr);
  }
}

.header_item {
  /* background-color: #eee; */
  /* padding: 2rem 0; */
  display: flex;
  align-items: center;
}

.header_item:nth-child(1) i {
  color: #fff;
  margin: 0 0 0 1rem;
}

.header_item:nth-child(1) a {
  text-decoration: none;
  color: #fff;
  padding: 0 0 0 1rem;
}

@media (max-width: 615px) {
  .header_item:nth-child(1) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .header_item:nth-child(1) a {
    text-decoration: none;
    color: #fff;
    padding: 0 0 0 0.5rem;
    font-size: 0.8rem;
  }
}

.header_item:nth-child(2) {
  /* background-color: #1b6d85; */
  display: flex;
  justify-content: end;
}

.header_item:nth-child(2) a {
  padding: 0 0 0 1rem;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 815px) {
  .header_item:nth-child(2) {
    display: none;
  }
}

.header_item:nth-child(3) {
  /* background-color: #1b6d85; */
  display: flex;
  justify-content: end;
}

.header_item:nth-child(3) a {
  padding: 0 0 0 1rem;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 420px) {
  .header_item:nth-child(1) {
    font-size: 0.8rem;
  }

  .header_item:nth-child(3) {
    font-size: 0.8rem;
  }
}

.my_logo img {
  width: 190px;
  background-color: #fff;
  padding: 0.5rem;
  border-radius: 100vw;
}

.banner {
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../img/banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.banner h1 {
  color: #fff;
  padding: 2rem;
  text-align: center;
  font-size: 6rem;
  font-family: "Bebas Neue", sans-serif;
  text-shadow: 0px 0px 15px #000;
}

.banner a {
  color: #fff;
  text-decoration: none;
  background-color: #62c43a;
  padding: 1rem;
  font-size: 1.5rem;
  animation: downarrow 1s infinite alternate;
  transition: 0.5s;
}

.banner a:hover {
  background-color: #fff;
  color: #62c43a;
}

@keyframes downarrow {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(1rem);
  }
}

.mybg {
  background-color: #62c43a;
}

.myCard1 {
  width: 100%;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  /* border: 1px solid #3396D1; */
  border: 1px solid lightgray;
  /* background-color: #fff; */
  background: linear-gradient(180deg, transparent, #65c93d46);
  border-radius: 10px;
  padding: 1rem;
  /* background-color: #3396D1;
    overflow: hidden; */
  position: relative;
  transition: 0.5s;
  overflow: hidden;
  z-index: 3;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
}

.myCard1:hover {
  border-color: #62c43a;
}

/* .myCard1::before {
    content: '';
    width: 200px;
    height: 200px;
    position: absolute;
    top: -6rem;
    left: -7rem;
    background-color: #3396D1;
    border-radius: 50%;
    z-index: -1;
    transition: 0.5s;
}

.myCard1:hover::before{
    transform: scale(8);
}

.myCard1::after {
    content: '';
    width: 200px;
    height: 200px;
    position: absolute;
    bottom: -6rem;
    right: -7rem;
    background-color: #3396D1;
    border-radius: 50%;
    z-index: -1;
    transition: 0.5s;
}

.myCard1:hover::after{
    transform: scale(8);
} */

.myCard1 h5 {
  /* color: rgb(3, 82, 146); */
  color: #428129;
  transition: 0.5s;
  font-family: "Josefin Sans", sans-serif;
}

.myCard1 p {
  /* color: rgb(3, 82, 146); */
  color: #428129;
  transition: 0.5s;
  padding-top: 0.7rem;
  /* color: #000; */
  font-weight: bold;
  /* text-shadow: 0px 0px 0px #000; */
}

/* .myCard1:hover h5, .myCard1:hover p{
    color: #fff;
} */

.myCard1 a {
  color: #fff;
  background-color: #62c43a;
  border: 1px solid #62c43a;
  transition: 0.4s;
  font-weight: bold;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

/* .myCard1:hover a{
    border-color: #fff;
    background-color: #fff;
    color: #3396D1;
} */

.myCard1 a:hover {
  background-color: #62c43a;
  color: #fff;
  box-shadow: 5px 5px 0px #000;
}

.myCard1 i {
  font-size: 3.5rem;
  color: #3396d1;
}

/* .myCard1:hover i{
    font-size: 3.5rem;
    color: #fff;
} */

.myCard1 h1 {
  color: #3396d1;
}

/* .myCard1:hover h1{
    color: #fff;
} */

.myCard1 img {
  width: 100%;
  object-fit: contain;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  opacity: 15%;
  transition: 0.3s;
}

.myCard1:hover img {
  top: 1.3rem;
  left: 1.3rem;
  width: 60px;
  opacity: 100%;
}

.myCard1 .cardimg_box {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 70px;
  height: 70px;
  /* background-color: #002c47; */
  background-color: aliceblue;
  border-radius: 100%;
  border: 3px solid #62c43a;
  z-index: -2;
  opacity: 0;
  transition: 0.3s;
}

.myCard1:hover .cardimg_box {
  opacity: 1;
}

.myCard2 {
  width: 100%;
  height: 225px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border: 1px solid lightgray;
  border-radius: 10px;
  padding: 0.5rem;
  background: linear-gradient(180deg, transparent, #65c93d46);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: 0.5s;
  overflow: hidden;
  z-index: 2;
}

.myCard2:hover {
  background: linear-gradient(180deg, transparent, #fff);
  border-color: #62c43a;
}

.myCard2 h5 {
  color: #428129;
  transition: 0.5s;
}

.myCard2 p {
  color: #428129;
  transition: 0.5s;
  padding-top: 0.7rem;
  font-size: 0.9rem;
}

.myCard2 a {
  color: #fff;
  background-color: #3396d1;
  border: 1px solid #3396d1;
  transition: 0.4s;
  font-weight: bold;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.myCard2:hover a {
  border-color: #fff;
  background-color: #fff;
  color: #3396d1;
}

.myCard2 a:hover {
  background-color: #3396d1;
  color: #fff;
}

.myCard2 i {
  font-size: 2.5rem;
  color: #428129;
}

.mytitle {
  display: flex;
  color: #428129;
}

.mytitle h3 {
  font-family: "Josefin Sans", sans-serif;
  margin: 0;
}

.mytitle span {
  font-size: 2rem;
  display: inline-block;
  font-family: "Josefin Sans", sans-serif;
}

.myCard {
  width: 100%;
  /* height: 350px; */
  height: 145px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border: 1px solid #3e7b4e;
  border-radius: 10px;
  padding: 0.5rem;
  /* background-color: #3396D1;
    overflow: hidden; */
  position: relative;
  transition: 0.5s;
  overflow: hidden;
  z-index: 2;
}

.myCard::before {
  content: "";
  width: 200px;
  height: 200px;
  position: absolute;
  top: -6rem;
  left: -7rem;
  background-color: #3e7b4e;
  /* background-color: #3396d1; */
  border-radius: 50%;
  z-index: -1;
  transition: 0.5s;
}

.myCard:hover::before {
  transform: scale(8);
}

.myCard::after {
  content: "";
  width: 200px;
  height: 200px;
  position: absolute;
  bottom: -6rem;
  right: -7rem;
  background-color: #3e7b4e;
  /* background-color: #3396d1; */
  border-radius: 50%;
  z-index: -1;
  transition: 0.5s;
}

.myCard:hover::after {
  transform: scale(8);
}

.myCard h5 {
  color: rgb(3, 82, 146);
  transition: 0.5s;
}

.myCard p {
  color: #3e7b4e;
  transition: 0.5s;
  padding-top: 0.7rem;
}

.myCard:hover h5,
.myCard:hover p {
  color: #fff;
}

.myCard a {
  color: #fff;
  background-color: #3e7b4e;
  border: 1px solid #3e7b4e;
  transition: 0.4s;
  font-weight: bold;
  text-decoration: none;
  padding: 0.rem 1rem;
  border-radius: 5px;
}

.myCard:hover a {
  border-color: #fff;
  background-color: #fff;
  color: #3e7b4e;
  /* color: #3396d1; */
}

.myCard a:hover {
  background-color: #3e7b4e;
  color: #fff;
}

.myCard i {
  font-size: 3.5rem;
  color: #3396d1;
}

.myCard:hover i {
  font-size: 3.5rem;
  color: #fff;
}

.myCard h1 {
  color: #3e7b4e;
  /* color: #3396d1; */
}

.myCard:hover h1 {
  color: #fff;
}

.myBtn {
  color: #62c43a;
  border: 1px solid #62c43a;
  /* border: 1px solid #3396d1; */
  transition: 0.4s;
  font-weight: bold;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.myBtn:hover {
  color: #fff;
  background-color: #62c43a;
}

.myBtn2 {
  color: #fff;
  border: 1px solid #fff;
  transition: 0.4s;
  font-weight: bold;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.myBtn2:hover {
  color: #3396d1;
  background-color: #fff;
}

.myfooter {
  background-color: #62c43a;
}

.myfooterlinks {
  color: #3396d1;
  font-weight: bold;
  transition: 0.4s;
  text-decoration: none;
}

.myfooterlinks:hover {
  color: #fff;
}

.devLop {
  margin-left: -2rem !important;
}

@media (max-width: 1035px) {
  .devLop {
    margin-left: -3rem !important;
  }
}

@media (max-width: 992px) {
  .devLop {
    margin-left: 0rem !important;
  }
}

@media (max-width: 646px) {
  .banner h1 {
    font-size: 4rem;
  }
}

@media (max-width: 452px) {
  .banner h1 {
    font-size: 3rem;
  }

  .banner {
    height: 80vh;
  }
}

@media (max-width: 355px) {
  .banner h1 {
    font-size: 2rem;
  }

  .banner {
    height: 80vh;
  }

  .banner a {
    font-size: 1rem;
  }
}

.mybg2 {
  background-color: #f2f2f2;
}

.banner2 {
  width: 100%;
  height: 450px;
  background-color: #3e7b4e;
  position: relative;
  z-index: 2;
  padding: 6rem 0 0 4rem;
  overflow: hidden;
}

.banner2 img {
  position: absolute;
  top: 0;
  right: 1rem;
  filter: drop-shadow(5px 5px 20px rgba(255, 255, 255, 0.1));
  z-index: -1;
}

.banner2_content {
  max-width: 550px;
  color: #fff;
}

.banner2_content h1 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 4rem;
}

.banner2_breadcrumbs {
  display: flex;
  font-weight: bold;
}

.banner2_breadcrumbs a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.banner2_breadcrumbs a:hover {
  color: #3396d1;
}

.banner2_breadcrumbs span {
  padding-left: 0.5rem;
}

@media (max-width: 1115px) {
  .banner2 img {
    width: 400px;
    position: absolute;
    top: 3rem;
    right: -2rem;
    filter: drop-shadow(5px 5px 20px rgba(255, 255, 255, 0.1));
    z-index: -1;
  }
}

@media (max-width: 938px) {
  .banner2 img {
    width: 500px;
    top: 0rem;
    left: 4rem;
    filter: none;
    opacity: 20%;
  }
}

@media (max-width: 660px) {
  .banner2 {
    padding: 1.5rem;
  }

  .banner2_content {
    margin: 3rem auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .banner2_content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 385px) {
  .banner2_content h1 {
    font-size: 2rem;
  }
}

@media (max-width: 355px) {
  .banner2_breadcrumbs {
    font-size: 0.8rem;
  }
}


.footer_title {
  font-size: 1.5rem !important;
}