@font-face {
  font-family: "Party Confetti";
  src: url("/WebFont/PartyConfetti-Regular.woff") format("woff"),
    url("/WebFont/PartyConfetti-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: "Party Confetti";
  font-weight: normal;
  font-style: normal;
  font-weight: 500;
  height: 100%;
  letter-spacing: 3px;
}

a {
  text-decoration: none;
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 8px 6px -6px red;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
}

.nav-links {
  display: flex;
  justify-content: space-around;
  width: 50%;
}

.nav-links ul {
  padding: 10 20px;
}

.nav-links li {
  margin: auto;
  align-items: center;
  justify-content: center;
  text-align: center;
  list-style: none;
  height: 50%;
}

.nav-links a {
  color: red;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 3px;
  font-size: 20px;
  padding: 0 20px;
}

.nav-links a:hover {
  color: navy;
  transition: 0.5s;
}

.nav-links li:not(:last-child)::after {
  content: " \007C";
  color: red;
  padding-left: 50px;
}

.img-logo {
  height: 120px;
}

/*DONATION BUTTON*/

.donate-btn {
  background-color: #e40b5d;
  border: 2px;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1em;
  cursor: pointer;
}

.wrapper {
  background-color: #fff;
  width: 500px;
  padding: 25px;
  margin: 25px auto 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  margin-bottom: 20vh;
}

.wrapper h2 {
  background-color: #fcfcfc;
  color: red;
  font-size: 24px;
  padding: 10px;
  margin-bottom: 20px;
  text-align: center;
  border: 1px dotted #333;
}

h4 {
  padding-bottom: 5px;
  color: red;
}

.input-group {
  margin-bottom: 8px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  padding: 5px 0;
}

.input-box {
  width: 100%;
  margin-right: 12px;
  position: relative;
}

.input-box:last-child {
  margin-right: 0;
}

.name {
  padding: 14px 10px 14px 50px;
  width: 100%;
  background-color: #fcfcfc;
  border: 1px solid #000003;
  outline: none;
  letter-spacing: 1px;
  transition: 0.3s;
  border-radius: 3px;
  color: #333;
}

.name:focus,
.dob:focus {
  box-shadow: 0 0 2px 1px rgb(73, 25, 25);
  border: red;
}

.input-box .icon {
  width: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  color: #333;
  background-color: #f1f1f1;
  border-radius: 2px 0 0 2px;
  transition: 0.3s;
  font-size: 20px;
  pointer-events: none;
  border: 1px solid #00000033;
  border-right: none;
}

.name:focus + .icons {
  background-color: red;
  color: #f1f1f1;
  border-right: 1px solid red;
  border: none;
  transition: 1s;
}

.dob {
  width: 30%;
  padding: 14px;
  text-align: center;
  transition: 0.3s;
  outline: none;
  border: 1px solid #c0bfbf;
  border-radius: 3px;
}

.radio {
  display: none;
}

.input-box label {
  padding: 13px;
  background-color: #fcfcfc;
  display: inline;
  text-align: center;
  border: 1px solid #c0bfbf;
}

.input-box label:first-of-type {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-right: none;
}

.input-box label:last-of-type {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.radio:checked + label {
  background-color: red;
  color: #fff;
  transition: 0.5s;
}

.input-box select {
  display: inline-block;
  width: 50%;
  padding: 12px;
  background-color: #fcfcfc;
  text-align: center;
  font-size: 16px;
  border: 1px solid #c0bfbf;
  cursor: pointer;
  transition: all 0.2s ease;
}

.input-box select:focus {
  background-color: red;
  color: #fff;
  text-align: center;
}

button {
  width: 100%;
  background: transparent;
  border: none;
  background: red;
  color: #fff;
  padding: 15px;
  border-radius: 4px;
  font-size: 16px;
  transition: all 0.35s ease;
}

button:hover {
  cursor: pointer;
  background: rgb(73, 25, 25);
}

/*BURGER MENU */
.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: red;
  margin: 5px;
  transition: all 0.3s ease;
}

/*BANNER SECTION*/

.banner-container {
  background-image: linear-gradient(
      to right bottom,
      rgba(252, 255, 70, 0.486),
      rgba(255, 254, 254, 0.5),
      rgba(248, 72, 72, 0.5),
      rgba(45, 7, 180, 0.466),
      rgba(252, 255, 70, 0.486)
    ),
    url(/images/banner-2.jpg);
  height: 80%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin-top: 12vh;
  width: 100%;
  border-bottom: red 3px solid;
  padding: 20px;
}

.banner-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 2px 2px #000000;
  transition-duration: 1s;
}

.banner-text span {
  text-transform: uppercase;
  display: block;
}

.banner-text h1 {
  color: white;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 8px;
  margin-bottom: 20px;
  position: relative;
  animation: text 4s 1;
}

.text2 {
  font-size: 30px;
  color: navy;
}

@keyframes text {
  0% {
    color: red;
    margin-bottom: -40px;
  }
  30% {
    letter-spacing: 25px;
    margin-bottom: -40px;
  }
}

.banner-text p {
  font-size: 26px;
  display: block;
}

.banner-text .link-button {
  display: inline-block;
  border-radius: 5px;
  background-image: linear-gradient(
    to right,
    rgba(255, 254, 254, 0.5),
    #c9645e
  );
  text-align: center;
  font-size: 16px;
  padding: 10px;
  width: 200px;
  transition: all 0.5s;
  margin: 10px;
  border: white 1px solid;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}

.link-button:hover {
  cursor: pointer;
  font-size: large;
  font-weight: 700;
  letter-spacing: 1px;
  border: white 2px solid;
}

/*MAIN CONTENT CONTAINER*/
.main-content {
  margin-bottom: 15vh;
}

/*IMAGE CARDS*/

.image-link-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 30px 30px 30px;
  height: 50%;
}

.image-link-container > h2 {
  text-align: center;
  margin: 0 20px 20px 20px;
  color: red;
}

.service-boxes {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

h3 {
  font-size: 1.5em;
  padding: 10px;
  font-weight: 500;
}

.image-link {
  text-align: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  width: 300px;
  height: 200px;
  background-image: linear-gradient(
    to right,
    rgba(255, 254, 254, 0.5),
    rgba(248, 72, 72, 0.5)
  );
}

.small-img {
  width: 100px;
  height: 100px;
  position: relative;
}

.small-img:hover {
  width: 120px;
  height: 120px;
  opacity: 0.6;
  cursor: pointer;
  transition: 2s;
}

.row > .column {
  padding: 8px 8px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.column {
  float: left;
  width: 25%;
}

/*MODALS*/

.modal,
.gallary-modal,
.parents-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal {
  background-color: rgba(0, 0, 0, 0.4);
}

/*MODAL CONTENT*/

.modal-content {
  background-color: white;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 50%;
  height: 50%;
}

.gallary-modal-content {
  background-color: #fefefe;
  position: relative;
  margin: auto;
  padding: 0;
  width: 50%;
  max-width: 1200px;
}

.parents-modal-content {
  background-color: white;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 50%;
  height: 50%;
}

/*CLOSE BTNS*/

.close,
.closeGallaryModal,
.parents-close-btn {
  position: absolute;
  top: 26px;
  right: 100px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus,
.closeGallaryModal:hover,
.closeGallaryModal:focus,
.parentsCloseBtn:hover,
.parentsCloseBtn:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/*GALLARY SLIDES*/

.gallarySlides {
  display: none;
  height: 75vh;
}

.cursor {
  cursor: pointer;
}

/*GALLARY IMAGES*/

.gallary-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 60%;
  height: 100%;
}

/* Fading animation */

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* Next & previous buttons */

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: #333;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */

.prev:hover,
.next:hover {
  background-color: rgba(160, 142, 142, 0.8);
  color: #fff;
}

/* Number text (1/3 etc) */

.numbertext {
  color: #f2f2f2;
  font-size: 16px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

/*FOOTER SECTION*/

.footer-section {
  display: flex;
  flex-direction: column;
  border-top: 3px red solid;
  height: 100%;
  padding: 0 20px;
}

.footer-section h4 {
  padding: 20px;
  margin: 0;
}

.footer-info-container {
  display: flex;
  flex-direction: flex;
  justify-content: space-around;
  padding: 30px;
  margin-bottom: 12vh;
}

.footer-info {
  text-align: center;
  width: 100%;
  height: 100%;
}

.quick-links {
  display: flex;
  flex-direction: column;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 8px 6px -6px black;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  padding: 10px;
  height: 13vh;
}

footer .social-icons,
h4 {
  color: red;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 3px;
  font-size: 20px;
  padding-right: 30px;
}

/*MEDIA QUERIES*/
/* Medium devices (landscape tablets, 768px and up) */
@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  .nav-links {
    position: absolute;
    right: 0;
    height: 92vh;
    top: 0;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
  }
  .nav-links li {
    display: flex;
    align-items: center;
    opacity: 0;
  }
  .nav-links li:not(:last-child)::after {
    display: none;
  }

  .donate-btn {
    display: none;
  }
  .burger {
    display: block;
  }

  .service-boxes {
    flex-direction: column;
    align-items: center;
  }

  .gallary-modal-content {
    width: 100%;
  }

  nav {
    justify-content: space-between;
    padding: 0 30px;
  }
}

.nav-active {
  transform: translateX(0%);
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  opacity: 0;
}

.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Extra small devices (phones, 600px and down) */

@media only screen and (max-width: 667px) {
  .nav {
    width: 100%;
    height: 12vh;
  }

  .nav-links {
    width: 100%;
    background-image: url(./images/KidsDrawings/drawing-1.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .img-logo {
    height: 11vh;
  }

  .banner-container {
    top: 0;
    margin-top: 12vh;
    padding: 30px;
  }

  .banner-text {
    text-shadow: 1.5px 1px #000000;
  }

  .banner-text h1 {
    font-size: 1.9rem;
  }

  .text2 {
    font-size: 1.6rem;
    color: palevioletred;
  }

  .banner-text p {
    font-size: 1rem;
  }

  .modal {
    padding-top: 0;
    width: 100%;
    height: 100%;
  }

  .modal-content {
    width: 100%;
    height: 100%;
  }

  .close {
    top: 5px;
    right: 10px;
    color: #000;
  }

  .numbertext {
    color: #000;
  }

  footer {
    height: 10vh;
    padding: 0;
  }

  footer .social-icons,
  h4 {
    font-size: initial;
  }

  .image-link-container h2 {
    font-size: 1.5rem;
    margin-top: 20px;
  }

  h3 {
    font-size: 1.17rem;
  }

  .image-link {
    width: 80%;
    height: 100%;
    margin-bottom: 10px;
  }

  .footer-info-container {
    flex-direction: column;
    margin-bottom: 12vh;
    bottom: 0;
  }

  .footer-section {
    padding: 0;
  }

  .footer-info {
    width: 100%;
    height: 100%;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */

@media only screen and (min-width: 600px) {
}

/* Extra large devices (large laptops and desktops, 1200px and up) */

@media only screen and (min-width: 1024) {
}
