@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'lato', sans-serif;
  
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  color:white;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 1.5rem; 
  letter-spacing: 2px;
}

.logo span { 
  font-size: 1.2rem; 
  margin-left: 5px; 
  color: #e20f2f; 
}

.toggle {
  position: relative;
  width: 60px;
  height: 60px;
  background: url(https://i.ibb.co/HrfVRcx/menu.png);
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center;
  cursor: pointer;
}

.toggle.active {
  background: url(https://i.ibb.co/rt3HybH/close.png);
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center;
  cursor: pointer;
}

.showcase {
  position: absolute;
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  transition: 0.5s;
  z-index: 2;
}

.showcase.active {
  right: 300px;
}

.showcase video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #03a9f4;
  mix-blend-mode: overlay;
}

.text {
  position: relative;
  z-index: 10;
}

.text h2 {
  font-size: 5em;
  font-weight: 800;
  color: #fff;
  line-height: 1em;
  margin-top: 70px;
  text-transform: uppercase;
  
}

.text h3 {
  font-size: 2em;
  font-weight: 200;
  color: #fff;
  line-height: 1em;
  color:#008000;
  margin-bottom: 1rem;
}

.text p {
  font-size: 1.1em;
  color: #fff;
  margin: 20px 0;
  font-weight: 400;
  max-width: 700px;
}

.gs {
  font-family: "Poppins" sans-serif;
  line-height: 25px;
  letter-spacing: 1.5px;
}

.explore {
  margin-bottom: 5rem;
}

.explore a:hover {
  background-color: #008000;
}

.btn {
  margin-top: 1rem; padding: 0.6rem 1.8rem;
  background-color: #e20f2f; border: none; border-radius: 25px;
  color: #fff; text-transform: uppercase; cursor: pointer;
  text-decoration: none;
  
}

.social {
  position: absolute;
  z-index: 10;
  bottom: 35px;
  display: flex;
  justify-content:center;
  align-items: center;
  
}

.social li {
  list-style: none;
}

.social li a {
  display: inline-block;
  margin-right: 5px;
  filter: invert(1);
  width: 5rem;
  height: 0.5rem;
  transform: scale(0.5);
  transition: 0.5s;
}

.social li a:hover {
  transform: scale(0.5) translateY(-15px);
}

.menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu ul {
  position: relative;
}

.menu ul li {
  list-style: none;
}

.menu ul li a {
  text-decoration: none;
  font-size: 20px;
  line-height: 1.9em;
  color: #03a9f4;
}

.menu ul li a:hover {
  color: palevioletred; 
}

.image {
  width: 768px;
  max-width: 500px;
}

/**Testimony css**/
.testimonial-container {
  background-color: #476ce4;
  color: #fff;
  border-radius: 15px;
  margin: 80px 0px 50px;
  padding: 50px 80px;
  max-width: 996px;
  letter-spacing: 1.5px;
  position: relative;
}

.fa-quote {
  color: rgba(255, 255, 255, 0.3);
  font-size: 28px;
  position: absolute;
  top: 70px;
}
.fa-quote-right {
  left: 40px;
  
}

.fa-quote-left {
  right: 40px; 
  
}

.testimonial {
  line-height: 28px;
  text-align: justify;
 
}

.user {
  display: flex;
  align-items: center;
  justify-content: center;
}

.user .user-image {
  border-radius: 50%;
  height: 75px;
  width: 75px;
  object-fit: cover
}

.user .user-details {
  margin-left: 10px;
}

.user .username {
  margin: 0;
}

.user .role {
  font-weight: normal;
  margin: 10px 0;
}

/* Footer section */
.footer {
  background-color: var(--bg-color);
  padding: 1.25rem;
  text-align: center;
  align-items: center;
  margin: 2rem 0 0 25rem; ;
}

/* Footer section ends */

.progress-bar {
  background-color: #fff;
  height: 4px;
  width: 100%;
  animation: grow 10s linear infinite;
  transform-origin: left;
}

@keyframes grow {
  0% {
      transform: scalex(0);
  }
}

@media (max-width: 991px) {
  .testimonial-container {
    padding: 40px;
    width: 25rem;
}

.image {
  width: 25rem;
}
  .showcase,
  .showcase header
  {
    padding: 40px;
  }
  
  .text h2
  {
    font-size: 3em;
  }
  .text h3
  {
    font-size: 2em;
  }
  .gs {
    width: 25rem;
  }

  .explore {
    margin-top: 1rem;
  }

  .footer {
   margin: 2rem 0 0 0;
  }
  
}

@media (max-width: 768px) {
  .testimonial-container {
      padding: 20px 30px;
      width: 22.76rem;
  }
  .fa-quote {
      display: none;
  }
  .image {
    width: 22.76rem;
  }
  .fa-quote {
    display: none;
  }
  .showcase,
  .showcase header
  {
    padding: 40px;
  }
  
  .text h2
  {
    font-size: 3em;
  }
  .text h3
  {
    font-size: 2em;
  }
  .gs {
    width: 22.76rem;
  }

  .explore {
    margin-top: 1rem;
  }

  .footer {
   margin: 1.5rem 0 0 0;
  }
  
}

@media (max-width: 420px) {
  .testimonial-container {
      padding: 40px;
      width: 17.76rem;
  }

  .image {
    width: 17.76rem;
  }
  .fa-quote {
    display: none;
  }
  .showcase,
  .showcase header
  {
    padding: 40px;
  }
  
  .text h2
  {
    font-size: 3em;
  }
  .text h3
  {
    font-size: 2em;
  }
  .gs {
    width: 17.76rem;
  }

  .explore {
    margin-top: 1rem;
  }

  .footer {
   margin: 1rem 0 0 0;
   font-size: 0.5em;
   color: white;
  }
  .footer-logo{
     font-size: 0.5em;
     color: white;
  }
  
}

