@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");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #3e51ff;
  --green: #6FAD24;
  --yellow: #FDDA6D;
  --red: #E40202;
  --brown: #da7f00;
  --white: #fbfbfb;
  --purple: #0000EE;
  --black: #121212;
}

/* 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 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  padding-top: 20px;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  z-index: 10;
}
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;
}
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(--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: 1rem;
  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: 1rem;
  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;
}
header .name {
  font-size: 2.2rem;
  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;
}
header .name b {
  font-weight: 900;
  color: var(--blue);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
header .name b p {
  color: var(--brown);
}
header .name p {
  font-weight: 900;
  color: var(--red);
}
header .name i {
  font-size: 0.8rem;
  color: var(--green);
  margin-top: 15px;
}

.landingPage {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(to left, rgba(96, 73, 1, 0.6), rgba(38, 75, 1, 0.6)), url("../../assets/img/kids.gif");
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.landingPage .txtBox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.landingPage .txtBox .wlcm {
  font-family: "Raleway", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 1.75px;
  color: rgb(216, 216, 216);
  font-weight: 600;
}
.landingPage .txtBox .siptxt {
  font-size: 5.2rem;
  font-weight: 900;
  font-family: "Nunito Sans", sans-serif;
  letter-spacing: 3px;
  background: linear-gradient(to left, #f32170, #ff6b08, #cf23cf, #2A3CD3);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  opacity: 0.7;
  margin-top: 20px;
  position: relative;
}
.landingPage .txtBox .siptxt:before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  border-radius: 5px;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #f32170, #ff6b08, #cf23cf, #2A3CD3);
}
.landingPage .txtBox .tagline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  opacity: 0.7;
}
.landingPage .txtBox .tagline p {
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  color: var(--yellow);
  font-weight: 600;
}
.landingPage .txtBox .tagline img {
  height: 50px;
  width: 50px;
  margin-left: 10px;
}

.quote {
  width: 100%;
  background-color: var(--yellow);
  padding: 50px;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.75rem;
  color: var(--black);
  font-weight: 500;
  background-color: #fdda6d;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23da7f00' fill-opacity='0.16' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.sip {
  width: 100%;
  height: 100%;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.sip .sub1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 100%;
  margin-top: 50px;
  padding-left: 100px;
}
.sip .sub1 img {
  height: 300px;
  width: 300px;
}
.sip .sub1 .txt {
  width: 100%;
}
.sip .sub1 .txt p {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 3rem;
  font-family: "Nunito Sans", sans-serif;
}
.sip .sub1 .txt p:nth-child(1) {
  color: var(--blue);
}
.sip .sub1 .txt p:nth-child(2) {
  color: var(--red);
}
.sip .sub1 .txt p:nth-child(3) {
  color: var(--green);
}

.about {
  height: 100%;
  width: 100%;
  background-color: var(--white);
  display: block;
  margin-top: -120px;
}
.about svg {
  width: 100%;
}
.about .aboutSec {
  width: 100%;
  height: 100%;
  background-color: var(--yellow);
  margin-top: -5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.about .aboutSec .head {
  font-size: 3.5rem;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 800;
  letter-spacing: 3.5px;
  color: var(--blue);
}
.about .aboutSec .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-top: 50px;
}
.about .aboutSec .container img {
  height: 300px;
  width: 350px;
  margin-right: 100px;
}
.about .aboutSec .container p {
  width: 50%;
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-size: 1.1rem;
  line-height: 1.75rem;
}
.about .aboutSec .foot {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--blue);
  margin-top: 50px;
  text-align: center;
}
.about .aboutSec .foot b {
  font-weight: 700;
}

.perk {
  height: 100%;
  width: 100%;
  background-color: var(--white);
  margin-top: -75px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.perk .head {
  font-size: 3.5rem;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 800;
  letter-spacing: 3.5px;
  color: var(--red);
}
.perk .container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  margin-top: 50px;
  width: 100%;
  padding: 30px;
  flex-wrap: wrap;
}
.perk .container .box {
  width: 300px;
  margin: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 45px;
}
.perk .container .box i {
  font-size: 4.5rem;
  color: var(--red);
}
.perk .container .box p {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--black);
  font-family: "Raleway", sans-serif;
  line-height: 1.75rem;
  margin-top: 15px;
  text-align: center;
}

.contact {
  height: 100%;
  width: 100%;
  background-color: var(--white);
  margin-top: -150px;
  display: block;
}
.contact svg {
  width: 100%;
}
.contact .contactsec {
  width: 100%;
  height: 100%;
  background-color: var(--yellow);
  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(--green);
}
.contact .contactsec .col1 .head a {
  text-decoration: none;
}
.contact .contactsec .col1 .info {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--black);
  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(--purple);
}
.contact .contactsec .col1 .text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  font-family: "Raleway", sans-serif;
  line-height: 1.75rem;
  margin-bottom: 15px;
  text-align: left;
  padding-right: 75px;
}
.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(--green);
}
.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(--green);
}
.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(--green);
}
.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(--brown);
  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: 0.8rem;
    margin: 10px;
  }
  header nav ul li .button {
    margin: 10px;
    font-size: 14px;
  }
}
@media (max-width: 1030px) {
  header nav ul li a {
    font-size: 0.8rem;
    margin: 8px;
  }
  header nav ul li .button {
    margin: 8px;
    font-size: 0.8rem;
  }
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  header #hamburger-icon {
    display: block;
  }
}
@media (max-width: 950px) {
  header {
    height: 90px;
    padding-top: 20px;
  }
  header .logo {
    width: 70px;
    height: 50px;
  }
  .landingPage .txtBox .wlcm {
    font-size: 1rem;
  }
  .landingPage .txtBox .siptxt {
    font-size: 3.2rem;
  }
  .landingPage .txtBox .tagline p {
    font-size: 1rem;
  }
  .landingPage .txtBox .tagline img {
    height: 30px;
    width: 30px;
    margin-left: 10px;
  }
  .sip .sub1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-left: 0;
  }
  .sip .sub1 .txt {
    margin: 25px 0;
  }
  .sip .sub1 .txt p {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }
  .about {
    margin-top: -60px;
  }
  .about .aboutSec .head {
    font-size: 2.5rem;
    letter-spacing: 2.5px;
  }
  .about .aboutSec .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .about .aboutSec .container img {
    margin-right: 0;
    margin-left: -25px;
    height: 250px;
    width: 300px;
  }
  .about .aboutSec .container p {
    width: 90%;
    margin-top: 25px;
  }
  .perk {
    margin-top: -30px;
  }
  .perk .head {
    font-size: 2rem;
    letter-spacing: 2.5px;
  }
  .perk .container {
    padding: 15px;
  }
  .perk .container .box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    width: 100%;
    height: 100%;
  }
  .perk .container .box i {
    font-size: 2.5rem;
    color: var(--red);
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
  }
  .perk .container .box p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
    font-family: "Raleway", sans-serif;
    line-height: 1.75rem;
    margin-top: 0;
    text-align: center;
    height: 100%;
    margin-left: 15px;
  }
  .contact {
    margin-top: -75px;
  }
  .contact .contactsec {
    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: 480px) {
  .landingPage .txtBox .wlcm {
    font-size: 0.8rem;
  }
  .landingPage .txtBox .siptxt {
    font-size: 2.2rem;
  }
  .landingPage .txtBox .tagline p {
    font-size: 0.8rem;
  }
  .sip .sub1 .txt p {
    font-size: 1rem;
  }
  .sip .sub1 img {
    height: 230px;
    width: 230px;
  }
  .quote {
    font-size: 1.2rem;
  }
  .about .aboutSec .head {
    font-size: 2rem;
  }
  .about .aboutSec .foot {
    font-size: 1rem;
  }
  .about .aboutSec .container p {
    font-size: 0.8rem;
  }
  .about .aboutSec .container img {
    height: 230px;
    width: 230px;
  }
  .perk .head {
    font-size: 1.5rem;
  }
  .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) {
  .sip .sub1 img {
    height: 100px;
    width: 100px;
  }
  .about .aboutSec .container img {
    height: 100px;
    width: 100px;
  }
}
@media (max-width: 280px) {
  .sip .sub1 .txt p {
    font-size: 0.8rem;
  }
  .sip .sub1 img {
    height: 70px;
    width: 70px;
  }
  .landingPage .txtBox .wlcm {
    font-size: 0.8rem;
  }
  .landingPage .txtBox .siptxt {
    font-size: 2rem;
  }
  .landingPage .txtBox .tagline p {
    font-size: 0.8rem;
  }
  .quote {
    font-size: 1rem;
  }
  .about .aboutSec .head {
    font-size: 2rem;
  }
  .about .aboutSec .foot {
    font-size: 0.8rem;
  }
  .about .aboutSec .container p {
    font-size: 0.8rem;
  }
  .about .aboutSec .container img {
    height: 70px;
    width: 70px;
  }
  .perk .head {
    font-size: 1.2rem;
  }
  .contact .contactsec .col1 .head {
    font-size: 2rem;
  }
}/*# sourceMappingURL=kids_camp.css.map */