@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");
@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;
  scroll-behavior: smooth;
}

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

::-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(--red);
  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;
}
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(--black);
  font-weight: 800;
  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(--black);
  font-weight: 800;
  border-radius: 20px;
  padding: 10px;
  font-family: "Raleway", sans-serif;
  font-size: 0.8rem;
  color: var(--black);
  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(--yellow);
  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 {
  background-image: url(../Landing.png);
  background-size: 100% 100%;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.landing .txtbox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-weight: 700;
}
.landing .txtbox p {
  font-family: "Oswald", sans-serif;
  font-size: 6rem;
  letter-spacing: -2px;
  color: var(--red);
}
.landing .txtbox b {
  font-family: "Allura", cursive;
  color: var(--black);
  font-size: 3rem;
  margin-top: -12px;
  text-align: center;
  width: 100%;
}

.aboutus {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding-top: 45px;
  background-color: var(--white);
}
.aboutus .head b {
  font-family: "Oswald", sans-serif;
  font-size: 6rem;
  letter-spacing: -2px;
  color: var(--red);
}
.aboutus .txtbox {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
  margin-top: 75px;
}
.aboutus .txtbox .icon {
  width: 50%;
  font-size: 20rem;
  color: var(--black);
  display: grid;
  place-items: center;
  background: -webkit-linear-gradient(#eee, #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.aboutus .txtbox .txt {
  width: 50%;
  font-family: "Raleway", sans-serif;
  padding-right: 60px;
}
.aboutus .txtbox .txt b {
  color: var(--red);
  font-size: 1.5rem;
}
.aboutus .txtbox .txt p {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 15px;
  color: var(--black);
  line-height: 1.75rem;
}

.survey {
  height: 100%;
  width: 100%;
  background-color: var(--white);
  display: block;
}
.survey svg {
  width: 100%;
}
.survey .surveySec {
  width: 100%;
  height: 100%;
  background-color: var(--yellow);
  margin-top: -5px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.survey .surveySec .box {
  min-height: 550px;
  width: 300px;
  background-color: var(--white);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  margin: 25px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}
.survey .surveySec .box:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}
.survey .surveySec .box img {
  height: 200px;
  width: 100%;
}
.survey .surveySec .box .head {
  margin-top: 25px;
  font-family: "Oswald", sans-serif;
  color: var(--red);
  font-size: 2rem;
}
.survey .surveySec .box p {
  padding: 0 25px;
  margin-top: 12px;
  font-family: "Raleway", sans-serif;
  line-height: 1.5rem;
  text-align: center;
}
.survey .surveySec .box button {
  margin-top: 12px;
  padding: 12px;
  border: 2px solid var(--red);
  outline: none;
  background-color: transparent;
  font-weight: 600;
  font-size: 1.2rem;
  font-family: "Raleway", sans-serif;
  transition: 0.3s;
  cursor: pointer;
  color: var(--red);
}
.survey .surveySec .box button:hover {
  background-color: var(--red);
  color: var(--white);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.tagline {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  background-color: var(--white);
  margin-top: -120px;
}
.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(--yellow);
  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(--yellow);
}
.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(--yellow);
}
.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(--yellow);
}
.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(--yellow);
}
.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: 0.8rem;
    margin: 10px;
  }
  header nav ul li .button {
    margin: 10px;
    font-size: 0.8rem;
  }
}
@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: 950px) {
  header {
    height: 90px;
    padding-top: 20px;
  }
  header .logo {
    width: 70px;
    height: 50px;
  }
  .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: 900px) {
  header nav {
    display: none;
  }
  header #hamburger-icon {
    display: block;
  }
}
@media (max-width: 800px) {
  .aboutus .txtbox {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .aboutus .txtbox .txt {
    padding-right: 0rem;
    margin-top: 2rem;
  }
  .aboutus .txtbox .icon {
    width: 100%;
    font-size: 14rem;
    color: var(--black);
    display: grid;
    place-items: center;
    background: -webkit-linear-gradient(#eee, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
@media (max-width: 620px) {
  .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: 550px) {
  .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: 500px) {
  .landing .txtbox p {
    font-size: 2.8rem;
  }
  .landing .txtbox b {
    font-size: 1.5rem;
  }
  .aboutus {
    padding-top: 45px;
    padding-bottom: 50px;
  }
  .aboutus .head b {
    font-size: 3rem;
  }
  .aboutus .txtbox {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    margin-top: 95px;
  }
  .aboutus .txtbox .icon {
    width: 100%;
    font-size: 12rem;
  }
  .aboutus .txtbox .txt {
    width: 100%;
    text-align: center;
    padding: 0 25px;
    margin-top: 65px;
  }
  .aboutus .txtbox .txt b {
    font-size: 1.2rem;
  }
  .aboutus .txtbox .txt p {
    font-size: 1rem;
  }
  .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 0px;
  }
}
@media (max-width: 380px) {
  .survey svg {
    margin-bottom: 1rem;
  }
  .survey .surveySec {
    margin-top: -2rem;
  }
  .tagline p {
    font-size: 1.2rem;
  }
  .contact svg {
    margin-top: 1rem;
  }
}
@media (max-width: 300px) {
  .survey svg {
    margin-bottom: 2rem;
  }
  .survey .surveySec .box {
    min-height: 600px;
  }
  .tagline p {
    font-size: 0.9rem;
  }
  .tagline img {
    height: 20px;
    width: 20px;
  }
}/*# sourceMappingURL=parent.css.map */