@import url("https://fonts.googleapis.com/css2?family=Lilita+One&family=Montserrat:wght@400;500;600&family=Poppins:wght@400;500;600&family=Quicksand:wght@400;500;600&family=Roboto+Condensed:wght@400;700&family=Roboto:wght@400;500&family=Rubik:wght@300;400;500;600&family=Rufina:wght@400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  color: #000000;
  /*  font-family: "Rubik", sans-serif; */
  font-family: "Montserrat", sans-serif;
  outline: 0;
}
.contact-form {
  margin-top: 20px;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.qr-code-section {
  display: none;
}
a {
  cursor: pointer;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  align-items: center;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

/* HEADER START */

header {
  /* background-color: #e24044; */
  background-color: #e3fee0;
  width: 100%;
  min-height: 100px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

header .header-wrapper {
  width: 100%;
  padding: 0 10%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .header-wrapper .details {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 10px 0;
}

header .header-wrapper .details .phone {
  color: #ffffff;
  padding: 0 10px;
  border-right: 2px solid #001d3d;
}

header .header-wrapper .details .phone i {
  color: #ffffff;
  margin: 0 10px;
}

header .header-wrapper .details .email {
  color: #ffffff;
}

header .header-wrapper .details .email i {
  color: #ffffff;
  margin: 0 10px;
}

header .header-wrapper .social {
  display: flex;
  align-items: center;
  justify-content: center;
}

header .header-wrapper .social a {
  border-radius: 5px;
  margin: 5px;
  font-size: 15px;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #28c793;
  background-color: #ffffff;
  transition: all 0.2s linear;
}

header .header-wrapper .social a:hover {
  color: #e24044;
}

/* HEADER END */

/* NAVIGATION BAR START */

nav {
  z-index: 100;
  padding: 0 20px;
  background-color: #ffffff;
  max-width: 1700px;
  width: 100%;
  min-height: 100px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
}

nav .brand-outer {
  display: flex;
  align-items: center;
}

nav .brand {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

nav .brand img {
  width: 70px;
  margin: 10px;
}

nav .brand .brand-name {
  margin: 0 10px;
}

nav .brand .brand-name h1 {
  font-weight: 600;
  font-size: 30px;
  margin: 5px 0;
  color: #272727;
  font-family: "Montserrat", sans-serif;
}

nav .brand .brand-name p {
  /* font-family: "Rubik", sans-serif;  */
  font-family: "Montserrat", sans-serif;
  margin: 0 3px;
  font-size: 14px;
  color: #be1d20;
}

nav ul {
  height: auto;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap-reverse;
  margin-left: 60px !important;
  flex-direction: row;
}

nav ul li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
}

nav ul li.donate-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}

nav ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  height: 100px;
  width: 100%;
  position: relative;
  font-family: "Montserrat", sans-serif;
  color: #272727;
  font-weight: 700;
  font-size: 17px;
  z-index: 1;
}

nav ul li.donate-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  height: 40px;
  width: 130px;
  position: relative;
  /* font-family: "Roboto", sans-serif; */
  font-family: "Montserrat", sans-serif;
  color: #fff;
  background-color: #343434;
  border-radius: 100px;
  font-weight: 400;
  z-index: 1;
}

nav ul li a i {
  padding: 0 5px;
  position: relative;
  color: #28c793;
  z-index: 1;
  font-size: 13px;
}

nav ul li::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0%;
  background-color: #28c793;
  transition: all 0.2s ease;
  z-index: -1;
}

nav ul li.donate-btn::after {
  content: "";
  display: none;
}

nav ul li:hover::after {
  width: 100%;
}

nav ul li ul {
  position: absolute;
  top: 100%;
  height: auto;
  width: max-content;
  display: none;
  margin-left: 0 !important;
  justify-content: center;
  transition: all 0.07s linear;
  flex-direction: column;
  align-items: flex-start;
  border-bottom: 3px solid #2ccc7f;
  background-color: #ffffff;
}

nav ul li:hover ul {
  display: flex;
}

nav ul li ul li {
  width: 100%;
}

nav ul li ul li a {
  display: flex;
  justify-content: flex-start;
  color: #272727 !important;
  padding: 15px;
  font-size: 15px;
  width: 100%;
  height: 50px;
}

nav ul li ul li a::after {
  display: none;
}

nav ul li ul li a:hover {
  color: #e24044 !important;
}

nav ul li ul li a i {
  color: #2ccc7f;
}

nav ul li ul li a:hover i {
  color: #2ccc7f;
}

/* NAVIGATION BAR END */

/* SWIPER START */

main {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

main .swiper {
  width: 100%;
  height: 650px;
}

main .swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

main .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
}

main .swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: #e24044;
  width: 20px;
  height: 3px;
  border-radius: 50px;
}

main .swiper .swiper-button-prev,
main .swiper .swiper-button-next {
  margin: 0 30px;
}

main .swiper .swiper-button-prev::after,
main .swiper .swiper-button-next::after {
  color: #be1d20;
  font-size: 20px;
  background-color: #be1d2045;
  border-radius: 30px;
  padding: 15px;
}

/* SWIPER END */

/* WELCOME START */

.welcome {
  width: 100%;
}

.welcome .welcome-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  padding: 40px 20px;
  background: #fff;
}

.welcome .welcome-wrapper h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #e9e9e9;
  text-align: center;
  border-radius: 20px;
  padding: 16px;
  /* text-decoration: underline; */
  margin: 20px 0;
  background-color: #343434;
}

.welcome .welcome-wrapper p {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  color: #5c5c5c;
  font-size: 18px;
}

/* WELCOME END */

/* PROGRAMMES START */

.programmes {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.programmes h1 {
  font-weight: 600;
  /*  color: #000; */
  color: #e9e9e9;
  text-align: center;
  /*   text-transform: uppercase; */
  letter-spacing: 2px;
  margin: 5px 0;
}

/* .programmes h1::after {
  content: "";
  position: absolute;
  background-color: #28c79271;
  border-radius: 5px;
  height: 10px;
  z-index: -1;
  bottom: 7px;
  width: 110%;
} */

.programmes .programmes-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 10px 0;
  width: 100%;
  max-width: 1650px;
  flex-wrap: wrap;
}

.programmes .programmes-wrapper .programm {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 364px;
  min-height: 437px;
  background-color: #e7fff8;
  margin: 20px;
  border-radius: 10px;
  transition: all 0.2s ease-in;
  cursor: pointer;
}

.programmes .programmes-wrapper .programm:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.09);
}

.programmes .programmes-wrapper .programm .img-wrapper {
  margin: 30px 0 10px 0;
}

.programmes .programmes-wrapper .programm .img-wrapper img {
  width: 70px;
}

.programmes .programmes-wrapper h2 {
  font-family: "Montserrat", sans-serif;
  color: #343434;
  margin: 10px 0;
  user-select: none;
  font-size: 25px;
}

/* PROGRAMMES END */

/* DONATORS START */

.donators {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  background-color: #f8f9fa;
}

.donators .donators-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  flex-wrap: wrap;
}

.donators .donators-wrapper .donator {
  display: flex;
  align-items: center;
  flex-direction: column;
  border-left: 1px solid #a2a2a218;
  border-right: 1px solid #a2a2a218;
  justify-content: center;
  width: 300px;
  height: 160px;
  margin: 20px 0;
  transition: all 0.2s ease-in;
}

.donators .donators-wrapper h4 {
  /*  font-family: "Lilita One", cursive; */
  font-family: "Montserrat", sans-serif;
  color: #fa4a19;
  margin: 10px 0;
  user-select: none;
}

.donators .donators-wrapper span {
  font-family: "Montserrat", sans-serif;
  color: #272727;
  font-size: 55px;
  user-select: none;
  display: flex;
  align-items: center;
}

.donators .donators-wrapper span h6 {
  font-family: "Montserrat", sans-serif;
  color: #272727;
  font-size: 55px;
  margin: 0;
  user-select: none;
}

.donators a {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  font-size: 18px;
  background-color: #001d3d;
  padding: 10px 15px;
  border-radius: 100px;
  margin: 30px 0 35px 0;
  border: 2px solid #001d3d;
  transition: all 0.3s ease-out;
}

.donators a:hover {
  color: #001d3d;
  background-color: #ffffff;
}

/* DONATORS END */

/* LATEST START */

.latest {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.latest h1 {
  margin: 40px 0;
  position: relative;
  display: flex;
  align-items: flex-end;
  font-family: "Montserrat", sans-serif;
  justify-content: center;
}

.latest h1::after {
  content: "";
  position: absolute;
  background-color: #28c79271;
  border-radius: 5px;
  height: 10px;
  z-index: -1;
  bottom: 7px;
  width: 110%;
}

.latest p {
  margin-bottom: 50px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  color: #5c5c5c;
}

.latest .latest-wrapper {
  margin-bottom: 40px;
  display: flex;
  width: 100%;
  justify-content: center;
  max-width: 1440px;
  align-content: space-evenly;
  flex-wrap: wrap;
}

.latest .latest-wrapper .post {
  border-radius: 5px;
  width: 380px;
  margin: 20px;
  background-color: #ffffff;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease-out;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.09);
}

.latest .latest-wrapper .post:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4), 0 6px 20px 0 rgba(0, 0, 0, 0.11);
}

.latest .latest-wrapper .post .img-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  height: 270px;
  z-index: 1;
}

.latest .latest-wrapper .post .img-wrapper h4 {
  position: absolute;
  color: #ffffff;
  background-color: #2ccc7f;
  top: 20px;
  padding: 5px 10px;
  border-radius: 50px;
  right: 20px;
  font-size: 12px;
  z-index: 5;
}

.latest .latest-wrapper .post .img-wrapper img {
  height: 100%;
}

.latest .latest-wrapper .post .post-text {
  width: 100%;
  padding: 20px 20px 0 20px;
  display: flex;
  flex-direction: column;
}

.latest .latest-wrapper .post .post-text a {
  font-size: 15px;
  margin-bottom: 20px;
  color: #464646;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.latest .latest-wrapper .post .post-text p {
  text-align: left;
  font-size: 13px;
  color: #adadad;
  font-family: "Montserrat", sans-serif;
}

.latest .latest-wrapper .post .date-comment {
  font-size: 12px;
  margin-top: auto;
  padding: 10px 15px;
  border-top: 2px solid #e24044;
  background-color: #292929;
}

.latest .latest-wrapper .post .date-comment .date {
  color: #ffffff;
  margin-right: 5px;
}

.latest .latest-wrapper .post .date-comment .date i {
  color: #be1d20;
  margin-right: 5px;
}

.latest .latest-wrapper .post .date-comment .comment {
  color: #ffffff;
}

.latest .latest-wrapper .post .date-comment .comment i {
  color: #be1d20;
  margin-right: 5px;
}

/* LATEST END */

/* CONTACT PAGE START */

.contact {
  width: 100%;
  display: flex;
  justify-content: center;
}

.contact .contact-wrapper {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  padding: 40px 20px;
  background: #fff;
}

.contact .contact-wrapper h2 {
  font-weight: 600;
  color: #000;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 6px 0;
}

.contact .contact-wrapper .contact-content {
  display: flex;
  padding: 20px;
}

.contact .contact-wrapper .contact-content .left-box {
  margin: 0 10px;
  width: 50%;
}

.contact .contact-wrapper .contact-content .left-box iframe {
  width: 100%;
  height: 100%;
}

.contact .contact-wrapper .contact-content .right-box {
  margin: 0 10px;
  padding: 20px 30px;
  width: 50%;
  background-color: #001d3d;
}

.contact .contact-wrapper .contact-content .right-box form {
  width: 100%;
}

.contact .contact-wrapper .contact-content .right-box form label {
  width: 100%;
}

.contact .contact-wrapper .contact-content .right-box form label h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #ffffff;
}

.contact .contact-wrapper .contact-content .right-box form label h4 span {
  color: #28c793;
}

.contact .contact-wrapper .contact-content .right-box form label input {
  font-size: 14px;
  width: 100%;
  max-width: 100%;
  min-width: auto;
  margin-bottom: 25px;
}

.contact .contact-wrapper .contact-content .right-box form label textarea {
  font-size: 14px;
  resize: none;
  border-radius: 3px;
  border: 0;
  padding: 10px;
  width: 100%;
}

/* CONTACT PAGE END */

/* ABOUT PAGE START */

.about {
  width: 100%;
  display: flex;
  justify-content: center;
}

.about .about-wrapper {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  padding: 40px 20px;
  background: #fff;
}

.about .about-wrapper h2 {
  font-weight: 600;
  color: #000;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 5px 0;
}

.about .about-wrapper .about-content {
  display: flex;
  padding: 20px;
  flex-direction: column;
}

.about .about-wrapper .about-content h3 {
  color: #001d3d;
  font-weight: 700;
  margin-bottom: 20px;
}

.about .about-wrapper .about-content hr {
  color: #0056b3;
  border-top: 2px solid #28c793;
}

/* ABOUT PAGE END */

/* FOOTER START */

.footer {
  width: 100%;
  /*  background-image: radial-gradient(
      circle,
      rgba(0, 0, 0, 0.356),
      rgba(0, 0, 0, 0.685)
    ),
  url(../img/footer-bg.jpg); */
  background-color: #343434;

  background-size: cover;
  /*  color: #313131; */
}

.footer .footer-wrapper .items {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  padding: 0 100px;
}

.footer .footer-wrapper .items .footer-contact .footer-h5,
.footer .footer-wrapper .items .footer-navigation .footer-h5,
.footer .footer-wrapper .items .footer-about .footer-h5,
.footer .footer-wrapper .items .footer-subscribe .footer-h5 {
  width: 100%;
  font-weight: 300;
}

.footer .footer-wrapper .items .footer-contact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-grow: 1;
  margin: 30px 0;
  padding: 0 50px;
}

.footer .footer-wrapper .items .footer-contact .footer-contact-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
}

.footer .footer-wrapper .items .footer-contact address {
  margin: 5px 0;
}

.footer .footer-wrapper .items .footer-contact address i {
  margin: 5px;
  font-size: 20px;
  color: #2ccc7f;
}

.footer .footer-wrapper .items .footer-contact span {
  margin: 5px 0;
}

.footer .footer-wrapper .items .footer-contact span i {
  margin: 5px;
  font-size: 20px;
  color: #2ccc7f;
}

.footer .footer-wrapper .items .footer-contact .social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: auto 0;
}

.footer .footer-wrapper .items .footer-contact .social a {
  border-radius: 100%;
  margin: 20px 5px;
  font-size: 20px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #28c793;
  background-color: #ffffff;
  transition: all 0.2s linear;
}

.footer .footer-wrapper .items .footer-contact .social a:hover {
  color: #e24044;
}

.footer .footer-wrapper .items .footer-navigation {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-grow: 1;
  margin: 10px 0;
  padding: 0 50px;
}

.footer .footer-wrapper .items .footer-navigation .footer-navigation-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.footer
  .footer-wrapper
  .items
  .footer-navigation
  .footer-navigation-wrapper
  ul
  li
  a {
  font-size: 14px;
}

.footer
  .footer-wrapper
  .items
  .footer-navigation
  .footer-navigation-wrapper
  ul
  li
  a:hover {
  text-decoration: underline !important;
  color: #ffffff !important;
}

.footer .footer-wrapper .items .footer-about {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-grow: 1;
  margin: 30px 0;
  padding: 0 50px;
}

.footer .footer-wrapper .items .footer-about .footer-about-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.footer .footer-wrapper .items .footer-about .footer-about-wrapper ul li a {
  font-size: 14px;
}

.footer
  .footer-wrapper
  .items
  .footer-about
  .footer-about-wrapper
  ul
  li
  a:hover {
  text-decoration: underline !important;
  color: #ffffff !important;
}

.footer .footer-wrapper .items .footer-subscribe {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-grow: 1;
  margin: 30px 0;
  padding: 0 50px;
}

.footer .footer-wrapper .items .footer-subscribe p {
  color: #e5e5e5;
  margin-left: 10px;
}

.footer .footer-wrapper .items .footer-subscribe .footer-subscribe-wrapper {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  width: 100%;
}

.footer
  .footer-wrapper
  .items
  .footer-subscribe
  .footer-subscribe-wrapper
  input {
  min-width: 350px;
  max-width: 400px;
  height: 40px;
  border-radius: 3px;
  border: 0;
  padding: 10px;
}

.footer
  .footer-wrapper
  .items
  .footer-subscribe
  .footer-subscribe-wrapper
  input:focus {
  outline: 0;
  border: 0;
}

.footer .footer-wrapper .items .footer-subscribe .footer-subscribe-wrapper a {
  border-radius: 3px;
  border: 0;
  margin: 20px 0;
  padding: 6px 12px;
  background-color: #2ccc7f;
  color: #fff;
  transition: all 0.2s linear;
  user-select: none;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer .footer-wrapper .items .footer-subscribe .footer-subscribe-wrapper a i {
  color: #ffffff;
  margin: 0 5px;
}

.footer
  .footer-wrapper
  .items
  .footer-subscribe
  .footer-subscribe-wrapper
  a:hover {
  background-color: #be1d20;
}

.footer .footer-wrapper .copyright {
  padding: 20px;
  border-top: 1px solid #46464667;
}

.footer .footer-wrapper .copyright p {
  text-align: center;
  color: #ffffff;
}

.footer .footer-wrapper .copyright p a {
  text-align: center;
  color: #ffffff;
}

.footer .footer-wrapper .copyright p a:hover {
  text-decoration: underline !important;
}

@media screen and (max-width: 1700px) {
  header {
    min-height: 50px !important;
  }

  nav {
    position: static;
    border-radius: 0;
  }
}

@media screen and (max-width: 1350px) {
  nav {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  nav .brand {
    width: 100%;
    justify-content: flex-start;
  }

  nav .brand-outer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }

  nav .brand-outer .menu-outer {
    height: 40px;
    width: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 40px;
  }

  nav .brand-outer .menu-outer .menu-btn {
    background-color: #272727;
    height: 4px;
    width: 30px;
    border-radius: 5px;
    position: relative;
  }

  nav .brand-outer .menu-outer .menu-btn::after {
    content: "";
    position: absolute;
    top: 9px;
    background-color: #272727;
    height: 4px;
    width: 30px;
    border-radius: 5px;
  }

  nav .brand-outer .menu-outer .menu-btn::before {
    content: "";
    position: absolute;
    bottom: 9px;
    background-color: #272727;
    height: 4px;
    width: 30px;
    border-radius: 5px;
  }

  nav .brand-name {
    margin-right: 10px;
  }

  nav .brand-outer::after {
    display: none;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    display: none;
    width: 100%;
    height: auto;
    background-color: #ffffff;
  }

  nav ul li {
    border-bottom: 1px solid #e5e5e5;
  }

  nav ul li.donate-btn {
    border-bottom: 1px solid #e5e5e5;
    padding: 10px;
  }

  nav ul li a {
    color: #272727;
    height: 60px;
    justify-content: space-between;
  }

  nav ul li a::after {
    display: none;
  }

  nav ul li ul {
    position: relative;
    width: 100%;
    background-color: #1a1a1a;
    border-bottom: 0;
  }

  nav ul li ul li a {
    color: #ffffff !important;
  }
}

@media screen and (max-width: 1200px) {
  main .swiper {
    height: auto;
    aspect-ratio: 1 / 0.5;
  }

  header .header-wrapper {
    padding: 0;
  }

  header .header-wrapper .social {
    padding: 0 10px;
  }
}

@media screen and (max-width: 760px) {
  header .header-wrapper {
    flex-direction: column;
  }

  header .header-wrapper .social {
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 720px) {
  nav .brand-outer {
    flex-direction: column;
    align-items: flex-end;
  }
  nav .brand-outer .menu-outer {
    margin: 0 10px;
  }

  nav .brand {
    flex-direction: column;
  }

  nav .brand .brand-name h1 {
    text-align: center;
  }

  nav .brand .brand-name p {
    text-align: center;
  }

  .contact .contact-wrapper .contact-content {
    flex-direction: column;
    padding: 0;
  }

  .contact .contact-wrapper .contact-content .left-box {
    width: 100%;
    margin: 0;
  }

  .contact .contact-wrapper .contact-content .left-box iframe {
    height: 400px;
  }

  .contact .contact-wrapper .contact-content .right-box {
    width: 100%;
    margin: 0;
  }
}

@media screen and (max-width: 575px) {
  .qr-code-section {
    display: flex;
  }

  .contact-form {
    display: block;
  }

  header .header-wrapper .details {
    flex-direction: column;
  }

  header .header-wrapper .details .phone {
    border: 0;
  }
  header .header-wrapper .details .email {
    text-align: center;
  }
}

@media screen and (max-width: 530px) {
  .contact-form {
    display: block;
  }
  .latest .latest-wrapper {
    padding: 0;
  }

  .latest .latest-wrapper .title {
    padding: 30px;
  }

  main .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 2px;
    border-radius: 50px;
  }

  main .swiper .swiper-button-prev,
  main .swiper .swiper-button-next {
    margin: 0 10px;
  }

  main .swiper .swiper-button-prev::after,
  main .swiper .swiper-button-next::after {
    font-size: 20px;
  }
  header .details {
    flex-direction: column;
    align-items: center;
  }

  header .details .mail-phone {
    flex-direction: column;
    align-items: center;
  }

  header .details .mail-phone a {
    border-right: 0;
  }

  .footer .footer-wrapper .items {
    padding: 0 0;
  }
}

@media screen and (max-width: 480px) {
  .contact-form {
    display: block;
  }
  .footer .footer-wrapper .items .footer-subscribe h5 {
    text-align: center;
  }

  .footer .footer-wrapper .items .footer-subscribe p {
    text-align: center;
    width: 100%;
    margin-left: 0;
  }

  .footer .footer-wrapper .items .footer-subscribe .footer-subscribe-wrapper {
    align-items: center;
    padding: 0 10px;
  }

  .footer .footer-wrapper .items .footer-subscribe {
    padding: 0 0;
  }

  .footer
    .footer-wrapper
    .items
    .footer-subscribe
    .footer-subscribe-wrapper
    input {
    width: 100%;
    max-width: 480px;
    min-width: 280px;
  }

  .footer .footer-wrapper .items .footer-subscribe .footer-subscribe-wrapper a {
    right: 13px;
    left: auto;
  }
}

@media screen and (max-width: 450px) {
  .latest .latest-wrapper .posts .post {
    width: 100%;
    max-width: 265px;
  }
  .contact-form {
    display: block;
  }
}

@media screen and (max-width: 390px) {
  .footer .footer-wrapper .items .footer-subscribe h5 {
    text-align: center;
  }

  .footer .footer-wrapper .items .footer-contact {
    padding: 0 40px;
  }
  .contact-form {
    display: block;
  }
}

/* contact us form css */

.form-group {
  margin-bottom: 20px;
  /* flex: 0 0 20%; */
}
.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group a,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
}

.form-group a {
  display: inline;
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
}

.form-group textarea {
  height: 150px;
}
.form-group button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}
.form-group button:hover {
  background-color: #0056b3;
}
/* contact us form end */

/* inputs start*/
input {
  min-width: 241px;
  max-width: 400px;
  height: 40px;
  border-radius: 3px;
  border: 0;
  padding: 10px;
}
/* inputs end */

/* button */
.prg a {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  font-size: 18px;
  background-color: #343434;
  padding: 10px 15px;
  border-radius: 100px;
  margin: -4px 0 30px 0;
  /*  border: 2px solid #001d3d; */
  transition: all 0.3s ease-out;
}

/* ssss */

/* why-choose-us */
.why-choose-us {
  background-color: #eca5a61c;
  border-radius: 10px;
  padding: 22px 26px;
}

.programmes .programmes-wrapper .programm .desc {
  padding: 10px 20px;
  text-align: center;
}

.qr-code {
  display: none;
}

/* Media query for mobile devices (max-width: 768px) */
@media only screen and (max-width: 768px) {
  /* Show the QR code only on mobile devices */
  .qr-code {
    display: block;
    /* Add your QR code styling here */
  }

  /* Hide other content on mobile devices if needed */
  .other-content {
    display: none;
  }
}

button {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  font-size: 18px;
  background-color: #343434;
  padding: 10px 15px;
  border-radius: 100px !important;
  margin: -4px 0 30px 0;
  border: 2px solid #001d3d;
  transition: all 0.3s ease-out;
}

.whychooseus {
  font-family: "Montserrat", sans-serif;
  color: #5c5c5c;
  font-size: 18px;
  font-weight: 300;
  text-align: left;
}

.heading-box {
  background-color: #343434;
  border-radius: 20px;
  padding: 16px;
}

.bold {
  font-weight: 600;
}
