@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');

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

/* width */
::-webkit-scrollbar {
    width: 8px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: white; 
    border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: rgb(226, 226, 226); 
  }

html {
    scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
}

body {
    font-family: 'Oswald', sans-serif;
    background-color: #FFA600;
    color: white;
    position: relative;
}

.main .brand {
    text-align: center;
    margin-top: 50px;
}

.main .blog {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.main .blog img {
    border-radius: 20px;
    width: 400px;
    margin-top: 50px;
}

.main .blog .slides {
    display: none;
}

.main .quotes {
  text-align: center;

    display: flex;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.main .quotes img {
  border-radius: 20px;

    width: 400px;

    margin-top: 50px;
}

.contact {
  background-color: #ffffff;
  color: #FFA600;
  height: auto;
  margin-top: 20px;
  padding: 10px;
  text-align: center;
}

.intro {
  text-align: center;

    display: flex;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.intro video {
  width: 80%;
  border-radius: 20px;
  auto
}

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
  }
  
  /* Caption text */
  .text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active {
    background-color: #ffb62e;
  }
  
  /* Fading animation */
  .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @-webkit-keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }

  /* center img when the max width is 600px */
  @media screen and (max-width: 600px) {
    .main .blog img {
      width: 80%;
    }
    
    .main .quotes img {
      width: 80%;
    }
    
    .main .brand img {
      width: 80%;
      height: 80%;
    }
  }
  
  /* On smaller screens, decrease text size */
  @media only screen and (max-width: 300px) {
    .text {font-size: 11px}
