@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");

/* css reset  */
/*! Note Use Rem Unit */
* {
  margin: 0px;
  padding: 0px;
}

:root {
  --primary: #682972;
  --secondary: #8cc63e;
  --secondary-dark: #6c9932;
  --tertiary: black;
  --quaternary: white;
}

body {
  background-color: rgb(255, 255, 255);
  font-family: "Quicksand", sans-serif;
  overflow-x: hidden;
}

/** Header */
.top-banner {
  display: flex;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 2;
  align-items: center;
  justify-content: space-around;
  padding: 1rem 0rem;
  background-color: var(--secondary);
}

.top-banner-left,
.banner-left-block {
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-banner-left img {
  width: 20px;
  margin-left: 2rem;
}

.top-banner a {
  text-decoration: none;
  color: #000;
  margin-left: 0.5rem;
  font-weight: 500;
}

header {
  background-color: rgb(255, 255, 255);
  box-shadow: 5px 5px 12px #8888887c;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  z-index: 2;
  top: 50px;
  width: 100vw;
  padding: 1rem 1rem;
  /* display: none; */
}
/* header-left-block  */
.header-left-block {
  display: flex;
  margin-left: 23px;
  align-items: center;
}
/* logo-block */
.logo {
  width: 230px;
}
/* navbar-link */
.nav-links {
  margin: 0px 23px;
  position: relative;
}
.nav-links ul {
  display: flex;
  list-style: none;
}
.nav-links a {
  margin: 0px 20px;
  font-size: 18px;
  text-decoration: none;
  color: var(--tertiary);
  font-weight: 600;
  position: relative;
}
.nav-links ul li :hover {
  color: var(--secondary);
}
.nav-links a span {
  position: absolute;
  top: 4px;
  right: -20px;
}
.nav-links-block {
  position: absolute;
  top: 70px;
  left: 30%;
  background-color: var(--secondary);
  padding: 1rem 2rem;
  border-radius: 10px;
  display: none;
}
.nav-links-each ul {
  list-style: none;
  padding: 1rem 0rem;
}
.nav-links-each ul li {
  margin-bottom: 1rem;
}
.nav-links-each ul li a {
  font-weight: 600;
  text-decoration: none;
  color: #000;
  margin-bottom: 1rem;
}

.nav-links-top {
  display: flex;
  justify-content: space-between;
}
.nav-links-top img {
  margin-left: 1rem;
}
.nav-links-top h4 {
  font-size: 14px;
}
.nav-links-top a {
  font-size: 14px;
  text-decoration: none;
  color: black;
  font-weight: 700;
}
.nav-links-each {
  position: relative;
  margin: 1rem 0px;
  background-color: white;
  padding: 1rem 1rem;
  border-radius: 5px;
}
.nav-links-top-sub-links {
  position: absolute;
  width: 220px;
  left: 225px;
  top: 0px;
  background-color: white;
  padding: 1rem 1rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.nav-links-top-sub-links-second {
  position: absolute;
  width: 250px;
  left: 220px;
  top: 0px;
  background-color: rgb(255, 255, 255);
  padding: 1rem 1rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.nav-links-each p {
  font-size: 12px;
}
.accessibility-icon {
  cursor: pointer;
}
.accessibility-tool {
  position: absolute;
  top: 90px;
  background-color: var(--quaternary);
  padding: 1.5rem;
  border: 2px solid black;
  display: none;
}

.show {
  display: block;
}

.increase-block,
.decrease-block {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1rem;
  cursor: pointer;
}

.increase-block img,
.decrease-block img {
  width: 20px;
}

/* header-right-block */
.header-right-block {
  display: flex;
  align-items: center;
  padding: 0px 20px;
  margin-right: 23px;
}
/* right-block-btn  */
.right-block-btn {
  padding: 1rem 1rem;
  border: none;
  background-color: var(--primary);
  border-radius: 3px;
  margin-left: 1rem;
  transition: all 1s;
}

.right-block-btn a {
  text-decoration: none;
  font-size: 16px;
  color: rgb(255, 255, 255);
}

/** Our Vision Section */
.our-vision-main-section {
  margin-top: 17rem;
}
.our-vision-main-heading {
  font-size: 50px;
  text-align: center;
  color: black;
  font-weight: 700;
  line-height: 1rem;
  margin-bottom: 6rem;
}

.our-vision-main-grid-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
  margin-bottom: 4rem;
}

/* Top Block */
.our-vision-main-section .top-block,
.our-vision-main-section .bottom-block {
  width: 70%;
  margin: auto;
  margin-top: 5rem;
  margin-bottom: 5rem;
  /* display: grid; */
  /* grid-template-columns: 1fr 1fr; */
}

.our-vision-main-section .t-heading-block,
.our-vision-main-section .b-heading-block {
  width: 100%;
  /* text-align: center; */
}

.our-vision-main-section .top-block h1 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  text-align: justify;
  width: 90%;
}

.our-vision-main-section .top-block h1 span {
  color: var(--secondary);
}

.t-para-block {
  align-self: center;
  /* padding-left: 3rem; */
}

.t-para-block p,
.b-para-block p {
  width: 90%;
  text-align: justify;
  line-height: 1.5rem;
}
/* .our-vision-main-grid-block{
  display:flex;
} */
/* Middle Block */
.middle-block {
  display: flex;
  align-items: center;
}
.middle-block img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Bottom Block */
.bottom-block {
  border-top: 2px solid rgba(0, 0, 0, 0.692);
  padding-top: 2rem;
}

.our-vision-main-section .bottom-block h1 {
  width: 90%;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  text-align: justify;
}

.b-para-block h3 {
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.808);
  margin-bottom: 3rem;
}

/** Contact Page Section */
.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 300px;
  padding: 1rem 0rem;
  /* margin-bottom: 2rem; */
  /* margin-top: 12rem; */
  border-top: solid 12px var(--primary);
  border-bottom: solid 10px var(--secondary);
  display: none;
}

.contact-container h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.contact-container a {
  background-color: var(--primary);
  color: white;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: bolder;
  padding: 0.8rem 1.2rem;
  border: none;
  text-decoration: none;
  border-radius: 0.125rem;
  margin-top: 1rem;
}

/** footer-block  */
.footer-section {
  /* margin-top: 80px; */
  background-color: #24282f;
  padding: 1rem 4rem;
  margin-top: 8rem;
}
/* footer-top-content */
.footer-block-top-content {
  display: flex;
  /* padding: 1rem 2rem 4rem 2rem; */
  border-bottom: 1px solid gray;
}
/* left-block  */
.footer-top-left-block {
  display: flex;
  flex-direction: column;
  width: 300px;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
/* logo-block  */
.left-block-logo {
  width: 13rem;
}
/* left-block-img  */
.left-block-img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
/* left-block-first-img  */
.left-block-first-img {
  width: 6.7rem;
}
/* mid-section  */
.footer-top-mid-block {
  display: flex;
  margin: 1rem;
}
/* mid-left-block  */
.mid-left-block {
  margin: 0rem 2.5rem;
}
/* mid-left-block-heading */
.mid-left-block-heading {
  font-size: 18px;
  color: white;
  line-height: 2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li a {
  text-decoration: none;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.706);
  line-height: 2rem;
}

.footer-section ul li a:hover {
  color: white;
}

.footer-section h1 {
  font-size: 18px;
  color: white;
  line-height: 2rem;
}

/* mid-mid-block */
.mid-mid-block {
  margin: 2rem 2.5rem;
}

/* mid-right-block  */
.mid-right-block {
  margin: 0rem 2rem;
}

/* footer-right-block  */
.footer-right-block {
  margin: 1rem;
  margin-left: 0px;
  display: flex;
}
/* right-left-block  */
.footer-right-block-left-content-block {
  margin: 0rem 1rem;
}
/* right-right-block */
.footer-right-block-right-content-block {
  margin: 0rem 2.5rem;
  display: flex;
  align-items: flex-start;
}
/* right-top-block  */
.right-top-block {
  display: flex;
  flex-direction: column;
  margin-right: 1rem;
}

/* right-mid-block */
.right-mid-block {
  margin-right: 1rem;
}

/* footer-bottom-top-content */
.footer-bottom-top-block-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}
/* bottom-left-block  */
.bottom-top-left-block {
  margin-top: 2rem;
}
/* logo-block */
.top-left-block-logos {
  border: 2px solid white;
  width: 20rem;
  color: white;
  margin: 1rem;
}
/* top-left-block-para */
.top-left-block-para {
  color: rgba(255, 255, 255, 0.673);
  font-size: 15px;
  font-style: italic;
  line-height: 2rem;
}

/* bottom-top-right-block-heading */
.bottom-top-right-block-heading {
  font-size: 14px;
  margin: 2rem;
  color: rgba(255, 255, 255, 0.644);
  margin-left: 16px;
}
/* bottom-top-right-block-span a  */
.bottom-top-right-block-span a {
  color: rgba(255, 255, 255, 0.644);
}
.bottom-top-right-block-span :hover {
  color: white;
}
/* bottom-top-right-block-images */
.bottom-top-right-block-images {
  margin: 2rem;
  display: flex;
  align-items: center;
  margin-left: 0px;
}
.top-right-block-image {
  width: 25px;
  margin: 0rem 0.5rem;
}

/* footer-bottom-bottom-block-content */
.footer-bottom-bottom-block-content {
  padding: 1rem 2rem;
}
/* bottom-block-content-first-heading */
.bottom-block-content-first-heading {
  color: rgba(255, 255, 255, 0.285);
  font-size: 14px;
  display: inline;
}
/* bottom-block-content-first-link */
.bottom-block-content-first-link {
  text-decoration: none;
}
.bottom-block-content-first-link :hover {
  color: white;
}
/* bottom-block-content-second-link */
.bottom-block-content-second-link {
  color: rgba(255, 255, 255, 0.29);
  font-size: 13px;
}
.top-left-block-links h1 {
  font-size: 18px;
  font-weight: 400;
  line-height: 2rem;
  margin: 1rem 0rem;
}
.top-left-block-links p {
  font-size: 12px;
  line-height: 2rem;
  color: white;
  width: 70%;
}
@media (max-width: 860px) {
  header {
    margin-top: 4rem;
  }
  .top-banner {
    height: 80px;
    padding: 1rem 1rem;
  }
  .top-banner-left,
  .banner-left-block {
    flex-direction: column;
    align-items: start;
    justify-content: center;
  }
  .banner-left-block {
    flex-direction: row;
    margin-bottom: 1rem;
  }

  .top-banner-left img {
    margin-left: 0px;
  }
  .logo {
    width: 165px;
  }
  .nav-links a {
    font-size: 14px;
  }
  .our-vision-main-grid-block {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer-block-top-content {
    flex-direction: column;
    align-items: center;
  }
  .footer-section {
    padding: 1rem 2rem;
  }
  .footer-bottom-top-block-content {
    padding: 1rem 1rem;
  }
  .footer-bottom-bottom-block-content {
    padding: 1rem 1rem;
  }
}

@media (max-width: 660px) {
  header {
    margin-top: 3.5rem;
  }

  .top-banner {
    height: 80px;
    padding: 1rem 1rem;
  }

  .top-banner-left,
  .banner-left-block {
    flex-direction: column;
    align-items: start;
    justify-content: center;
  }

  .banner-left-block {
    flex-direction: row;
    margin-bottom: 1rem;
  }

  .top-banner-left img {
    margin-left: 0px;
  }

  .header-left-block {
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0rem;
    align-items: start;
  }
  .nav-links {
    margin-left: 0rem;
  }
  .nav-links-block {
    top: 140px;
    left: 8%;
  }
  .nav-links-top h4 {
    font-size: 12px;
  }
  .nav-links-top a {
    font-size: 12px;
  }
  .nav-links-each ul li a {
    font-size: 12px;
  }
  .nav-links-top-sub-links {
    width: 160px;
    left: 190px;
  }
  .nav-links-top-sub-links-second {
    width: 160px;
    left: 195px;
  }
  .our-vision-main-section .top-block h1 {
    font-size: 2rem;
  }
  .our-vision-main-section .top-block h1 {
    font-size: 1.3rem;
    line-height: 2rem;
  }
  .our-vision-main-section .top-block,
  .our-vision-main-section .bottom-block {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .our-vision-main-section .bottom-block h1 {
    font-size: 1.3rem;
    line-height: 2rem;
  }
}

@media (max-width: 520px) {
  .top-banner a {
    font-size: 10px;
  }
  .nav-links a span {
    right: -12px;
  }
  .nav-links a {
    font-size: 12px;
    margin: 0px 10px;
  }
  .nav-links a span img {
    width: 10px;
  }
  .right-block-btn a {
    font-size: 10px;
  }
  .right-block-btn {
    padding: 0.7rem;
  }
  .accessibility-icon {
    display: none;
  }
  .our-vision-main-section .top-block,
  .our-vision-main-section .bottom-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .our-vision-main-section .bottom-block h1,
  .our-vision-main-section .top-block h1 {
    width: 100%;
    font-size: 1rem;
  }
  .bottom-top-right-block-images {
    flex-direction: column;
    gap: 1rem;
  }
  .footer-bottom-top-block-content {
    padding: 1rem 0rem;
  }
  .header {
    padding: 0px 1rem;
  }
  .right-block-btn a {
    font-size: 8px;
  }
  .header {
    margin-top: 3.5rem;
  }

  .footer-right-block-right-content-block {
    flex-direction: column;
  }
}

.font-increase {
  font-size: 22px;
}
