/* resets */
* {
    padding: 0;
    margin: 0;
      font-family: Varela Round;
  }
  
  html {
     scroll-behavior: smooth;
    overflow-x: hidden;
  }
  
  /* Adding the scrollbar effects */
  /* Gradient Scrollbar */
  
  body::-webkit-scrollbar {
    width: 10px;
  }
  
  
  body::-webkit-scrollbar-track {
    background-clip: content-box;
    background:  linear-gradient(0deg, orange 25%, red 100%);
  }
  
  body::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: transparent; /* opacity: 0; should do the thing either */
    box-shadow: 0px 0px 0px 100000vh black;
  }
  
  /* giving the entire website a reveal class */
  
  .reveal{
    position: relative;
    opacity: 0;
    transition: 1s all ease;
  }
  
  .reveal.active{
    opacity: 1;
  }
  
  /* styling the nav */
  #navigation {
    color: #fff;
    text-shadow: 0 0 3px white;
  }
  
  #navigation a {
    padding-left: 5px;
    border-radius: 5px;
    color: #fff;
    transition: .2s all ease-in-out
  }
  
  #navigation a:hover {
    color: #fff;
    background-color: #111;
    text-shadow: 0 0 10px white;
  }
  
  /* every transition button */
  .transition-button {
    padding: 5px;
    font-size: 16px;
    background-color: rgba(255,255,255,1);
    border: 1px solid #000;
    border-radius: 10px;
    transition: .2s all ease-in-out
  }
  
  .transition-button:hover {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    box-shadow: 0 0 10px white, 0 0 20px black;
    text-shadow: 0 0 10px white, 0 0 20px black;
  }
  
  
  
  
  
  
  /* styling the header  */
  
  #section-header {
    background: url('https://images.unsplash.com/photo-1464855499786-2839659d9e5d?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1332&q=80');
    background-size: cover;
    background-position: center;
        width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  
  .mask h1, .mask h2, .mask p, .mask ul {
    color: #fff;
    text-shadow: 0 0 20px #000;
    list-style: none;
  }
  
  .mask-header {
      color: #fff;
    text-shadow: 0 0 20px #000;
      width: 400px;
    padding-bottom: 20px;
    transform: translateY(70px);
    text-align: center;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.5);
    margin: auto;
    width: 450px;
    border-radius: 25px;
  }
  
  
  
  /* styling about us  */
  #about-us {
    background: url('https://images.unsplash.com/photo-1542038784456-1ea8e935640e?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2070&q=80');
      background-size: cover;
    background-position: center;
          width: 100%;
    height: 100vh;
    position: relative;
    justify-content: center;
    text-align: center;
  
  }
  
  .mask {
  
     width: 400px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 70px;
    text-align: center;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.5);
    margin: auto;
    transform: translateY(150px);
    width: 450px;
    border-radius: 25px;
  }
  
  
  /* styling the gallery section */
  #section-gallery {
    background: url('https://images.unsplash.com/photo-1602576998827-2e5947056f16?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  #gallery-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  #section-gallery button {
    transform: translateY(-25px);
  }
  
  
  #carouselExampleFade {
    border-radius: 100px;
    height: 400px;
    width: 400px;
    margin-top: 100px;
    box-shadow: 0 0 5px #555, 0 0 10px #999, 0 0 15px white;
    margin-bottom: 50px;
  }
  
  #section-gallery img {
    border-radius: 100px;
    height: 400px;
    width: 400px;
  }
  
  /* services section */
  
  #section-services {
    background: url('https://images.unsplash.com/photo-1520390138845-fd2d229dd553?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1332&q=80');
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    position: relative;
  } 
  
  
  
  #card-wrapper {
    margin-top: 90px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    height: 100%A;
  }
  
  #section-services .card {
    height: 400px;
    width: 100%;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  
  #section-services .card-body {
    height: 200px;
  }
  
  
  /* contact us section */
  #section-contact-us {
    height: 120vh;
    padding-top: 50px;
  }
  
  .wrapper {
      max-width: 850px;
      margin: 50px auto;
      height: 600px;
      background-color: #FFF;
      overflow: hidden;
      box-shadow: 5px 25px 35px #3535356b;
  }
  
  .wrapper .bg-dark {
      background-color: #fdc91f;
      height: 100%;
      width: 40%;
      padding-top: 40px;
      padding-left: 50px;
      padding-right: 20px;
    color: white;
  }
  
  
  .wrapper .bg-dark .text-white {
      font-size: 3rem;
  }
  
  .wrapper .bg-dark .cursive {
      font-family: 'Kalam', cursive;
      font-size: 1rem;
      font-weight: 600;
  
  }
  
  .wrapper .contact-form {
      width: 100%;
      padding: 40px 80px 40px 50px;
  }
  
  .wrapper .contact-form .h3 {
      padding-top: 15px;
      font-weight: 700;
  }
  
  .wrapper .contact-form label {
      font-size: 0.9rem;
      color: #555;
      font-weight: 500;
      margin-bottom: 10px;
  }
  
  .wrapper .contact-form textarea {
      height: 120px;
  }
  
  .wrapper .contact-form .form-control {
      background-color: #e7e7e7;
      box-shadow: none;
      font-weight: 600;
      font-size: 0.95rem;
      border: none;
      border-top: 1px solid #bbb;
  }
  
  
  .wrapper .contact-form .btn {
      font-size: 1.2rem;
      font-weight: 700;
  }
  
  .wrapper .contact-form .btn.btn-default {
       color: white;
        padding: 5px;
    font-size: 20px;
    background-color: red;
    border: 1px solid white;
    border-radius: 10px;
    transition: .2s all ease-in-out
  }
  
  .wrapper .contact-form .btn.btn-default:hover {
         background-color: transparent;
    border: 1px solid red;
    color: red;
    box-shadow: 0 0 10px red, 0 0 20px white;
    text-shadow: 0 0 10px red, 0 0 20px white;
  }
  
  
  .wrapper .contact-form .btn.btn-dark {
    padding: 5px;
    font-size: 20px;
    background-color: #111;
    border: 1px solid white;
    border-radius: 10px;
    transition: .2s all ease-in-out
  }
  
  .wrapper .contact-form .btn.btn-dark:hover {
       background-color: transparent;
    border: 1px solid black;
    color: black;
    box-shadow: 0 0 10px black, 0 0 20px white;
    text-shadow: 0 0 10px black, 0 0 20px white;
  }
  
  .modal .modal-content .modal-header .fas {
      color: #F50057;
  }
  
  @media(max-width: 900.5px) {
      .wrapper {
          margin: 20px;
      }
  }
  
  @media(max-width: 575.5px) {
  
      .wrapper .contact-form {
          padding: 40px;
      }
  
      .wrapper .bg-yellow {
          padding-left: 30px;
      }
  }
  
  @media(max-width: 496px) {
  
      .wrapper .bg-yellow {
          display: none;
      }
  
  }
  
  @media(max-width: 350px) {
  
      .wrapper {
          height: 570px;
      }
  
      .wrapper .contact-form {
          padding: 20px;
      }
  }
  
  
  
  
  /* styling the footer */
  
  #footer {
    background-color: #000;
    height: 100%;
    padding-bottom: 20px;
  }
  
  
  
  
  /* copyright link */
  #copyright {
    color: #fff;
    text-shadow: 0 0 2px #fff, 0 0 4px lightSkyBlue, 0 0 6px pink;
  }
  /* giving copyright hover effects */
  #copyright:hover {
    color: #000;
    text-shadow: 0 0 2px blue, 0 0 4px lightSkyBlue, 0 0 6px #fff;
  }
  