@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
/* ::-webkit-scrollbar {
  width: 0;  
  background: transparent; 
} */
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #ece2ccb2;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(248, 213, 148);
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(240, 188, 119);
}
.intro {
  background: black;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.sliderbg {
  background: rgb(97, 105, 109);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(100%);
  z-index: 1000;
}

.intro-text h1 {
  color: rgb(233, 233, 233);
  /* font-family: "Heebo", sans-serif; */
  font-size: 6rem;
  text-align: center;
}

.hide {
  background: black;
  overflow: hidden;
}

.hide span {
  transform: translateY(100%);
  display: inline-block;
}
.intro-text h2 {
  text-align: center;
  color: rgb(233, 233, 233);
  /* font-family: "Lobster", sans-serif; */
  font-size: 3rem;
}
.showcase {
  position: relative;
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex; /* we will postion header as absoulte so that it does get affected by the flex and stays at the top*/
  justify-content: space-between;
  align-items: center;
  background: #111;
  color: #fff;
  z-index: 2;
  /* transition: 0.5s; */
}

header {
  z-index: 20;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 100px;
  transform: 0.5s ease;
  background: linear-gradient(0deg, transparent 0, rgba(0, 0, 0, 0.3) 60%);
  transition: all 0.6s ease-in;
}

.header.fixed {
  position: fixed;
  padding: 10px 30px;
  background-color: black;
}
/* header{
  width: 100%;
  height: 50px;
  background: #F8F8F8;
  display: flex;
  justify-content: space-around;
  align-items: center;
} */
.badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.Logo {
  color: #fff;
  font-size: 1.5em;
}
.logo_icon {
  height: 70px;
  width: 70px;
  margin-right: 15px;
}
/* ********NABAR******** */

.nav {
  display: flex;
  align-items: center;
}
.nav ol {
  display: flex;
  list-style: none;
}
.nav ol li {
  margin: 1em;
}
.nav ol li a {
  text-decoration: none;
  padding: 0.2em 1.2em 0.9em 1.2em;
  border-radius: 10px 10px 0 0;
  color: #fff;
  transition: all 0.4s;
  position: relative;
  z-index: 1;
}
.nav ol li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 41px;
  border-radius: 10px 10px 0 0;
  background: #853333;
  transform-origin: bottom;
  background: radial-gradient(
    circle farthest-corner at 10% 20%,
    rgba(255, 209, 67, 1) 0%,
    rgba(255, 145, 83, 1) 90%
  );
  transform: scaleY(0.05);
  z-index: -1;
  transition: all 0.4s;
}
.nav ol li a:hover::before {
  transform: scaleY(1.1);
}
.nav ol li a:hover {
  color: rgb(235, 14, 14);
}

.menu-btn {
  background: url(https://i.ibb.co/HrfVRcx/menu.png) no-repeat;
  background-size: 30px;
  background-position: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: 0.3s ease;
  display: none;
}
.menu-btn.transform {
  background: url(https://cdn-icons-png.flaticon.com/512/1828/1828778.png)
    no-repeat;
  background-size: 25px;
  background-position: center;
  transition: 0.3s ease;
  cursor: pointer;
  transform: translateY(-15px);
}
.nav.transform {
  transform: translateY(0%);
  padding: 15px;
}

@media (max-width: 1200px) {
  /* header {
    justify-content: space-between;
    padding: 50px 3.5em;
  } */
  /* .showcase header {
    padding: 40 px;
  } */
  .menu-btn {
    display: block;
    z-index: 1000;
  }
  header {
    justify-content: space-between;
    padding: 40px 3.5em;
  }
  .nav {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    background: #f8f8f8;
    transform: translateY(-110%);
    transition: all 0.4s;
  }
  .nav ol li a {
    color: rgb(39, 39, 39);
  }
}
@media (max-width: 700px) {
  .nav ol {
    flex-direction: column;
    text-align: center;
  }
  .nav ol li a {
    color: rgb(39, 39, 39);
  }
  .menu-btn {
    z-index: 1000;
  }
}

.brand {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.content {
  z-index: 10;
  position: relative;
  display: none;
  width: 80%;
}
.content.active {
  display: block;
}
.content h1 {
  font-size: 4em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 75px;
  margin-bottom: 40px;
  margin-top: 40px;
}
.content h1 span {
  font-size: 0.7em;
  font-weight: 500;
  line-height: 1.3px;
}
.content p {
  font-size: 1.3em;
  /* margin: 10px 0; */
  margin-top: 8px;
  margin-bottom: 7px;
  font-weight: 400;
  max-width: 700px;
}
.content a {
  display: inline-block;
  font-size: 1em;
  background-color: #fff;
  padding: 10px 30px;
  text-decoration: none;
  text-transform: uppercase;
  color: #1680ac;
  letter-spacing: 1px;
  transition: 0.3s;
}
.content a:hover {
  transform: scale(0.9);
}
.social {
  z-index: 10;
  position: absolute;
  right: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.5s ease;
}
.social li {
  list-style: none;
}
.social li a {
  display: inline-block;
  filter: invert(1);
  margin-right: 20px;
  transform: scale(0.6);
  transition: 0.3s ease;
  margin-bottom: 20px;
}
.social li a:hover {
  transform: scale(0.8);
}
.showcase .slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.intro-text h2 span {
  font-family: "Lobster", sans-serif;
}
.showcase::before {
  z-index: 1;
  content: "";
  position: absolute;
  background: #03a9f4;
  mix-blend-mode: overlay;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.slider {
  z-index: 5;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -90%);
  margin: 10px;
}
.slider .nav-btn {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
  transition: 0.3s;
}

.slider .nav-btn.active {
  background: #2696e9;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.slider .nav-btn:not(:last-child) {
  margin-right: 20px;
}
.slider .nav-btn:hover {
  transform: scale(1.2);
}
.slides {
  position: absolute;
  width: 100%;
  clip-path: circle(0% at 0 50%);
  -webkit-clip-path: circle(0% at 0 50%);
  /* display: none; */
}
.slides.active {
  clip-path: circle(150% at 0 50%);
  -webkit-clip-path: circle(150% at 0 50%);
  display: block;
  transition: 1s ease;
  transition-property: clip-path;
}

.main {
  padding: 200px 50px;
  color: #111;
}
.main h2 {
  font-size: 3em;
  margin-bottom: 80px;
}
.main p {
  font-size: 25px;
}
/* ********************* FOOTER STARTS *********************** */

#footer {
  background-color: #0abcf9;
  background-image: radial-gradient(
    circle farthest-corner at 10% 20%,
    rgba(255, 209, 67, 1) 0%,
    rgba(255, 145, 83, 1) 90%
  );
  color: white;
  padding-bottom: 20px;
}

.footer_content {
  padding-top: 120px;
  padding-right: 90px;
  padding-left: 90px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.footer_links ul li {
  list-style: none;
}
.footer_links a {
  text-decoration: none;
  color: #f8f8f8;
}
.footer_linkList {
  display: flex;
  margin-top: 15px;
}

.footer_linkList li {
  margin-right: 10px;
}
.footer_social_ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.footer_social_ul li {
  list-style: none;
  font-size: 30px;
  color: white;
}
.footer_social_ul i {
  color: white;
  transition: all 0.5s;
}
.footer_social_ul i:hover {
  transform: scale(1.3);
  color: #0abcf9;
}

.footer_header {
  position: absolute;
  width: 80%;
  height: 100px;
  border-radius: 3px;
  background-image: radial-gradient(
    circle farthest-corner at 10% 20%,
    rgba(97, 186, 255, 1) 0%,
    rgba(166, 239, 253, 1) 90.1%
  );
  position: absolute;
  left: 10%;
  /* top: 50%; */
  transition: all 0.5s;
  transform: scale(0.97, 0.97) translateY(-50px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 40px;
}
.footer_header h1 {
  font-size: 30px;
}
.footer_header a {
  text-decoration: none;
  background: radial-gradient(
    circle farthest-corner at 10% 20%,
    rgba(255, 209, 67, 1) 0%,
    rgba(255, 145, 83, 1) 90%
  );
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  color: white;
  font-size: 20px;

  transition: all 250ms;
}
.footer_header a:hover {
  transform: scale(0.8);
}
.footer_header:hover {
  transform: translateY(-48px) scale(1, 1);
}

.sub-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 60px;
}
.rights span {
  font-weight: bold;
}
.credits span {
  color: burlywood;
}

@media (max-width: 898px) {
  .showcase,
  .showcase header {
    padding: 40px;
  }
  .content h1 {
    font-size: 2.7em;
  }
  .content span {
    font-size: 1.4em;
  }
  .social {
    right: 15px;
  }
  .navigation {
    display: none;
  }
  .navigation.active {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(73, 142, 245, 0.7);
  }
  .menu-btn {
    display: block;
  }

  /* ********************* FOOTER STARTS ***********************  */

  .footer_content {
    flex-direction: column;
    padding: 80px 0px 10px 30px;
  }
  .footer_links {
    margin-top: 10px;
  }
  .footer_links h1 {
    font-size: 20px;
  }
  .footer_social {
    margin-top: 10px;
  }
  .footer_social h1 {
    font-size: 20px;
  }
  .footer_header {
    padding: 0px 20px;
    height: 80px;
  }
  .footer_header h1 {
    font-size: 20px;
  }
  .footer_header a {
    font-size: 10px;
    flex: 1;
    width: 20%;
    margin-left: 20px;
    padding: 5px 10px;
    text-align: center;
  }
  .footer_social_ul li a {
    margin-right: 20px;
  }
  .sub-footer {
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  .footer_linkList {
    margin-top: 7px;
  }
  .intro-text h1 {
    font-size: 4rem;
  }
  .intro-text h2 {
    font-size: 2.8rem;
  }
  .intro {
    padding: 0px 30px;
  }
}
