@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;300;400;600;700;800;900&family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Allura&family=Oswald:wght@200;300;400;500;600;700&family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --blue: #3059BE;
  --green: #58CA60;
  --yellow: #EEB453;
  --red: #C4241C;
  --brown: #F36F3C;
  --white: #fbfbfb;
  --bg-white: #CBC9C6;
  --black: #111111;
}

/* width */
::-webkit-scrollbar {
  width: 7.5px;
  opacity: 0.1;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  opacity: 0.7;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: var(--green);
  border-radius: 10px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  width: 100%;
  padding-top: 20px;
  z-index: 20;
}
header .logo {
  width: 100px;
  height: 80px;
  margin-right: -15px;
}
header .logo img {
  height: 80px;
  width: 100px;
}
header nav ul {
  list-style: none;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-left: 2rem;
}
header nav ul li:hover {
  transform: scale(1.1);
  transition: 0.3s;
}
header nav ul li a {
  text-decoration: none;
  position: relative;
  font-family: "Raleway", sans-serif;
  font-size: 0.8rem;
  color: var(--white);
  opacity: 0.85;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 15px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
header nav ul li a:hover {
  opacity: 1;
  font-weight: 900;
}
header nav ul li .button {
  background-color: transparent;
  outline: none;
  margin: 15px;
  border: 2px solid var(--white);
  border-radius: 20px;
  padding: 10px;
  font-family: "Raleway", sans-serif;
  font-size: 0.8rem;
  color: var(--white);
  opacity: 0.85;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
header nav ul li .button:hover {
  opacity: 1;
  font-weight: 900;
  background-color: var(--bg-white);
  color: #000;
  mix-blend-mode: screen;
}
header #hamburger-icon {
  margin: auto 0;
  display: none;
  cursor: pointer;
}
header #hamburger-icon div {
  width: 35px;
  height: 3px;
  background-color: white;
  margin: 6px 30px;
  transition: 0.4s;
}
header .open .bar1 {
  transform: rotate(-45deg) translate(-6px, 6px);
}
header .open .bar2 {
  opacity: 0;
  color: var(--red);
}
header .open .bar3 {
  color: var(--green);
  transform: rotate(45deg) translate(-6px, -8px);
}
header .open .mobile-menu {
  background-color: #000;
  opacity: 0.75;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
header .mobile-menu {
  display: none;
  position: absolute;
  left: 0;
  height: calc(100vh - 50px);
  width: 100%;
  margin-top: 0.8rem;
  padding-left: 0;
}
header .mobile-menu li {
  text-decoration: none;
  margin-top: 2rem;
  list-style: none;
}
header .mobile-menu li a {
  text-decoration: none;
  position: relative;
  font-family: "Raleway", sans-serif;
  font-size: 0.8rem;
  color: var(--white);
  opacity: 0.85;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
header .mobile-menu li a:hover {
  opacity: 1;
  font-weight: 900;
}
header .mobile-menu li .button {
  background-color: transparent;
  outline: none;
  margin-top: 20px;
  border: 2px solid var(--white);
  border-radius: 20px;
  padding: 10px;
  font-family: "Raleway", sans-serif;
  font-size: 0.8rem;
  color: var(--white);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
header .mobile-menu li .button:hover {
  opacity: 1;
  font-weight: 900;
  background-color: var(--bg-white);
  color: #000;
  mix-blend-mode: screen;
}

.landing {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("https://images.unsplash.com/photo-1617133270228-e210f2d3046e?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxleHBsb3JlLWZlZWR8MTkyfHx8ZW58MHx8fHw%3D&auto=format&fit=crop&w=600&q=60");
  background-size: 100% 100%;
  display: grid;
  place-items: center;
  position: relative;
}
.landing .centerBox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.landing .centerBox .name {
  font-size: 9rem;
  font-weight: 900;
  margin-right: 15px;
  font-family: "Nunito Sans", sans-serif;
  letter-spacing: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.landing .centerBox .name b {
  font-weight: 900;
  color: var(--blue);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.landing .centerBox .name b p {
  color: var(--brown);
}
.landing .centerBox .name p {
  font-weight: 900;
  color: var(--red);
}
.landing .centerBox .name i {
  font-size: 1.5rem;
  color: var(--green);
  margin-top: 70px;
}
.landing .centerBox .tagline2 {
  font-family: "Raleway", sans-serif;
  color: var(--white);
  font-size: 1.4rem;
  margin-top: -45px;
  font-weight: 700;
  opacity: 0.75;
  text-align: left;
  padding-left: 12px;
  padding-top: 12px;
  width: 100%;
}
.landing .centerBox .tagline2 p {
  border-top: 2px solid var(--white);
  width: 275px;
}
.landing .centerBox .tagline1 {
  font-family: "Raleway", sans-serif;
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: -40px;
  font-weight: 700;
  opacity: 0.75;
  text-align: right;
  padding-left: 12px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: row;
  padding-bottom: 12px;
  width: 100%;
}
.landing .centerBox .tagline1 p {
  border-bottom: 2px solid var(--white);
  width: 275px;
}
.landing .centerBox a {
  text-decoration: none;
  margin-top: 75px;
  position: absolute;
  bottom: 75px;
  left: 50%;
  transform: translateX(-50%);
}
.landing .centerBox a button {
  border: none;
  outline: none;
  background-color: var(--yellow);
  font-family: "Nunito Sans", sans-serif;
  color: var(--white);
  padding: 15px 20px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: 700;
  opacity: 0.85;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  transition: all 0.3s ease-in-out;
}
.landing .centerBox a button:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  background-color: var(--black);
  color: var(--yellow);
  transform: scale(0.8);
}

.categories {
  width: 100%;
  height: 100%;
  background-color: var(--bg-white);
  padding-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.categories .head {
  font-size: 3.5rem;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 800;
  letter-spacing: 3.5px;
  color: var(--red);
  position: relative;
}
.categories .head::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 2.5px;
  width: 75%;
  background-color: var(--red);
  opacity: 0.75;
}
.categories .head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2.5px;
  width: 75%;
  background-color: var(--red);
  opacity: 0.75;
}
.categories .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-top: 50px;
  flex-wrap: wrap;
}
.categories .container .box {
  margin: 45px;
  width: 300px;
  height: 300px;
  padding: 20px 5px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  background-color: #d4d2d2;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  transition: 0.5s;
  overflow: hidden;
  position: relative;
}
.categories .container .box:hover img {
  transform: scale(1.15);
}
.categories .container .box .imgbox {
  overflow: hidden;
  height: 200px;
  width: 100%;
}
.categories .container .box .imgbox img {
  height: 100%;
  width: 100%;
  transition: transform 0.5s ease;
}
.categories .container .box .btn {
  background-color: var(--red);
  font-family: "Nunito Sans", sans-serif;
  text-transform: uppercase;
  font-size: 1.5rem;
  width: 100%;
  height: 30%;
  color: var(--bg-white);
  padding: 12px 12px;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.tagline {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  background-color: var(--bg-white);
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.tagline p {
  font-family: "Allura", cursive;
  color: var(--black);
  font-size: 3rem;
  font-weight: 700;
}
.tagline img {
  height: 50px;
  width: 50px;
  margin-left: 10px;
}

.contact {
  height: 100%;
  width: 100%;
  background-color: var(--bg-white);
  margin-top: -150px;
  display: block;
}
.contact svg {
  width: 100%;
}
.contact .contactsec {
  width: 100%;
  height: 100%;
  background-color: var(--black);
  margin-top: -5px;
  padding-bottom: 75px;
  padding: 0 25px 75px 25px;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  flex-direction: row;
  font-family: "Raleway", sans-serif;
  font-family: "Nunito Sans", sans-serif;
}
.contact .contactsec .col1 {
  width: 50%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.contact .contactsec .col1 .head {
  font-size: 3.5rem;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 800;
  letter-spacing: -5px;
  color: var(--bg-white);
  text-decoration: none;
}
.contact .contactsec .col1 .head a {
  text-decoration: none;
}
.contact .contactsec .col1 .info {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  font-family: "Raleway", sans-serif;
  line-height: 1.75rem;
  margin-bottom: 15px;
  text-align: center;
}
.contact .contactsec .col1 .info a {
  text-decoration: none;
  color: var(--white);
}
.contact .contactsec .col1 .text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  font-family: "Raleway", sans-serif;
  line-height: 1.75rem;
  margin-bottom: 15px;
  text-align: left;
  padding-right: 75px;
}
.contact .contactsec .col1 .copy {
  color: var(--white);
}
.contact .contactsec .sub {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  flex-direction: row;
}
.contact .contactsec .sub .col2 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  margin: 80px 12px 0 12px;
}
.contact .contactsec .sub .col2 .head {
  font-size: 1.5rem;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 900;
  color: var(--bg-white);
}
.contact .contactsec .sub .col2 .links {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.contact .contactsec .sub .col2 .links a {
  color: var(--red);
  font-family: "Raleway", sans-serif;
  margin-top: 7px;
  text-decoration: none;
}
.contact .contactsec .sub .col3 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  margin: 80px 12px 0 12px;
}
.contact .contactsec .sub .col3 .head {
  font-size: 1.5rem;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 900;
  color: var(--bg-white);
}
.contact .contactsec .sub .col3 .links {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.contact .contactsec .sub .col3 .links a {
  color: var(--red);
  font-family: "Raleway", sans-serif;
  margin-top: 7px;
  text-decoration: none;
}
.contact .contactsec .sub .col4 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  margin: 80px 12px 0 12px;
}
.contact .contactsec .sub .col4 .head {
  font-size: 1.5rem;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 900;
  color: var(--bg-white);
}
.contact .contactsec .sub .col4 .iconbox {
  margin-top: 25px;
}
.contact .contactsec .sub .col4 .iconbox a {
  text-decoration: none;
  margin: 5px;
}
.contact .contactsec .sub .col4 .iconbox a i {
  font-size: 1.5rem;
  color: var(--red);
  opacity: 0.7;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.contact .contactsec .sub .col4 .iconbox a i:hover {
  opacity: 1;
  transform: scale(0.9);
}

@media (max-width: 1700px) {
  header nav ul li a {
    font-size: 1.2rem;
    margin: 10px;
  }
  header nav ul li .button {
    margin: 10px;
    font-size: 1rem;
  }
}
@media (max-width: 1180px) {
  header nav ul li a {
    font-size: 14px;
    margin: 10px;
  }
  header nav ul li .button {
    margin: 10px;
    font-size: 14px;
  }
}
@media (max-width: 1030px) {
  header nav ul li a {
    font-size: 13px;
    margin: 8px;
  }
  header nav ul li .button {
    margin: 8px;
    font-size: 13px;
  }
}
@media (max-width: 950px) {
  header {
    height: 90px;
    padding-top: 20px;
  }
  header .logo {
    width: 70px;
    height: 50px;
  }
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  header #hamburger-icon {
    display: block;
  }
}
@media (max-width: 730px) {
  .tagline p {
    font-family: "Allura", cursive;
    color: var(--black);
    font-size: 2.5rem;
    font-weight: 700;
  }
}
@media (max-width: 600px) {
  header a {
    font-size: 0.5rem;
    letter-spacing: 1.5px;
    margin: 2.5px;
  }
  header a button {
    font-size: 0.4rem;
    letter-spacing: 1.5px;
    padding: 7px;
    margin: 2.5px;
  }
  .landing .centerBox {
    transform: scale(0.5);
  }
  .about .head {
    font-size: 3rem;
  }
  .about p {
    width: 100%;
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .activities {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    background-color: var(--bg-white);
    margin-top: -60px;
  }
  .activities svg {
    width: 100%;
  }
  .activities .activitySec {
    background-color: var(--blue);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    margin-bottom: -5px;
  }
  .activities .activitySec .head {
    font-size: 3rem;
    margin-top: 30px;
  }
  .activities .activitySec p {
    width: 100%;
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .activities .activitySec .container .box {
    margin: 45px 0;
  }
  .categories {
    margin-top: -30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .categories .head {
    font-size: 3rem;
  }
  .categories .container .box {
    margin: 45px 0;
  }
  .faq {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    margin-top: -60px;
  }
  .faq svg {
    width: 100%;
  }
  .faq .faqSec {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    margin-bottom: -5px;
  }
  .faq .faqSec .head {
    font-size: 3rem;
    margin-top: 30px;
  }
  .faq .faqSec p {
    width: 100%;
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .faq .faqSec .container .box {
    margin: 45px 0;
  }
  .faq .faqSec .btn {
    font-size: 1.2rem;
    padding: 12px 12px;
  }
  .tagline {
    margin-top: -50px;
  }
  .tagline p {
    font-size: 1.5rem;
  }
  .tagline img {
    height: 35px;
    width: 35px;
    margin-left: 10px;
  }
  .contact {
    margin-top: -50px;
  }
  .contact .contactsec {
    margin-top: -15px;
    padding: 0 30px 75px 30px;
  }
  .contact .contactsec .sub {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
  .contact .contactsec .sub .col2 {
    margin: 40px 12px 0 12px;
  }
}
@media (max-width: 430px) {
  .landing .centerBox .name {
    font-size: 6rem;
    margin: 2rem;
  }
  .tagline p {
    font-size: 1.2rem;
  }
  .tagline img {
    height: 30px;
    width: 30px;
  }
  .contact .contactsec {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
  .contact .contactsec .col1 {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
  .contact .contactsec .col1 .text {
    padding-right: 0px;
  }
  .contact .contactsec .col1 .head {
    font-size: 2.5rem;
  }
  .contact .contactsec .sub {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .contact .contactsec .sub .col2 {
    margin: 30px 12px 0 0px;
  }
  .contact .contactsec .sub .col3 {
    margin: 30px 12px 0 0px;
  }
  .contact .contactsec .sub .col4 {
    margin: 30px 12px 0 0px;
  }
}
@media (max-width: 370px) {
  .landing .centerBox {
    transform: translateZ(0) scale(0.8) !important;
  }
  .landing .centerBox .tagline1 p {
    width: 200px;
    font-size: 1rem;
  }
  .landing .centerBox .tagline2 p {
    width: 200px;
    font-size: 1rem;
  }
  .landing .centerBox .name {
    font-size: 4rem;
    margin: 3rem;
  }
  .about .container {
    margin-bottom: 3rem;
  }
  .about .container .box {
    margin: 0;
    margin-top: 10px;
  }
  .about .head {
    font-size: 2rem;
  }
  .about p {
    padding: 0 40px;
  }
  .about .container .box {
    width: 230px;
  }
  .activities .activitySec {
    width: 100%;
  }
  .activities .activitySec .head {
    font-size: 2rem;
  }
  .activities .activitySec .container .box {
    height: 100%;
    width: 230px;
  }
  .categories .head {
    font-size: 2rem;
    margin-top: 2rem;
  }
  .categories .container {
    width: 100%;
  }
  .categories .container .box {
    height: 100%;
    width: 230px;
  }
  .categories .container .box .btn a {
    font-size: 1rem;
  }
  .faq svg {
    margin-bottom: 1rem;
  }
  .faq .faqSec {
    width: 100%;
  }
  .faq .faqSec .head {
    font-size: 2rem;
  }
  .faq .faqSec .container {
    width: 100%;
  }
  .faq .faqSec .container .box {
    width: 230px;
  }
  .faq .faqSec .container .box p {
    width: 230px;
  }
  .faq .faqSec .container .box b {
    width: 230px;
  }
  .tagline p {
    font-size: 1rem;
  }
  .tagline img {
    height: 25px;
    width: 25px;
  }
  .contact svg {
    margin-top: 2rem;
  }
}
@media (max-width: 300px) {
  .landing .centerBox {
    transform: translateZ(0) scale(0.8) !important;
  }
  .landing .centerBox .tagline1 p {
    width: 200px;
    font-size: 0.8rem;
  }
  .landing .centerBox .tagline2 p {
    width: 200px;
    font-size: 0.8rem;
  }
  .landing .centerBox .name {
    font-size: 3rem;
    margin: 3rem;
  }
}/*# sourceMappingURL=mainPage.css.map */