@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f8ff;
  overflow-x: hidden;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f8f8ff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #9e78eb;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
ul {
  list-style-type: none;
}
a {
  text-decoration: none;
  color: #363b4e;
}
a:hover {
  text-decoration: none;
  color: #4f3b78;
}
.fontAwesome {
  font-family: "Helvetica", FontAwesome, sans-serif;
}

.uparrow {
  width: 70px;
  height: 70px;
  color: #4f3b78;
  font-size: 40px;
  background: #c4bbf0;
  position: fixed;
  border-radius: 50%;
  bottom: 30px;
  right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  cursor: pointer;
}

strong {
  font-size: 25px;
}

.video-size {
  height: 50vh;
}
.video-size iframe {
  width: 100%;
  height: 100%;
}

.video-flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.goggle-ad {
  height: 200px;
  background: green;
}
.goggle-ad-alter {
  height: 100%;
  background: green;
}

.icon {
  display: none;
}
nav {
  background: #f7f5ff;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hamburger {
  display: none;
}
nav .nav-logo {
  color: #4f3b78;
  font-size: 25px;
  padding: 10px;
}
nav .nav-items {
  padding-top: 12px;
}
h1 {
  color: #8732e9 !important;
  font-weight: 900 !important;
  font-size: 18px;
}
nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
}
nav ul li {
  margin-right: 5px;
}
.login {
  margin-left: 1250px;
}
button {
  border: none;
}
.dropdown {
  padding: 15px;
  height: 100px;
  width: 100px;
  z-index: 10;
  position: absolute;
  background-color: snow;
  bottom: -20;
}
.dropdown1 {
  padding: 15px;
  height: 215px;
  width: 100px;
  margin-top: 0px;
  margin-left: 0px;
  z-index: 10;
  position: absolute;
  background-color: snow;
}

/* ------------------Media Query--------------------- */

/* ---------------------------LAPTOPS------------------------------- */

@media (max-width: 1600px) and (min-width: 1300px) {
  .login {
    margin-left: 800px;
  }
}

@media (max-width: 1299px) and (min-width: 1025px) {
  .login {
    margin-left: 545px;
  }
}

/* --------------------------TABLETS------------------------------------------- */

@media (max-width: 1024px) {
  .navbar {
    display: none;
  }
  .icon {
    display: block;
  }
  .hamburger {
    display: block;
  }
  .login {
    margin-left: 0px;
  }

  h1 {
    font-size: 25px;
  }
}

@media (max-width: 655px) and (min-width: 481px) {
  .nav-flex {
    flex-direction: row;
  }
}

/* --------------------MOBILES------------------------------------------ */

@media (max-width: 480px) {
  h1 {
    font-size: 20px;
  }
  .nav-flex {
    flex-direction: row;
  }
}
