* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Poppins-Bold";
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
}
header {
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 2;
  margin-bottom: 0.5rem;
}
.nav-flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background: whitesmoke;
  box-shadow: 10px 10px 10px #0661a2;
}
.nav-logo {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 35px;
  border: solid 1px whitesmoke;
  border-radius: 20%;
  margin-right: 1rem;
}
.nav-left {
  display: flex;
  flex-direction: row;
  margin: 0.5rem;
}
.nav-left-link{
  display: flex;
  flex-direction: column;
}

.nav-right {
  display: flex;
  flex-direction: column;
  margin: 0.5rem;
}
.nav-link i {
  color: #0096ff;
  padding: 0.5rem;
}
.nav-link i:hover {
  color: #0096ff;
}
.nav-link i::after {
  content: "";
}
.nav-link {
  text-decoration: none;
  color: #0096ff;
  font-family: "Poppins-Bold";
}
.nav-link:hover {
  color: #72ffff;
}
.nav-link-r {
  text-decoration: none;
  color: #0096ff;
  font-family: "Poppins-Bold";
}
.nav-link-r:hover {
  color: #72ffff;
}
.nav-link-r::before {
  counter-reset: "";
}

/*---Main Section--*/
main {
  width: 100%;
}
.sec-headline {
  display: flex;
  justify-content: center;
}
h1 {
  font-family: "Poppins-Bold";
  display: flex;
  font-size: 3rem;
  justify-content: center;
  color: rgba(255, 255, 255, 0.999);
  text-shadow: 3px 3px 4px #060606;
}
.imgh1 {
  display: flex;
  height: 3.5rem;
  border: solid 2px whitesmoke;
  border-radius: 20%;
  margin-top: 0.5rem;
}
.slideshow-container {
  max-width: 62.5rem;
  position: relative;
  margin: auto;
}
.sec-hero {
  margin-bottom: 1rem;
  background-image: url(../img/zachary-nelson-98Elr-LIvD8-unsplash.jpg);
  background-size: cover;
  background-position: center;
  box-shadow: 10px 10px 10px #0661a2;
}
.numbertext {
  position: absolute;
  top: 1rem;
  left: 0.5rem;
  color: #ffffff;
  font-size: 1rem;
  padding: 8px;
  text-shadow: 3px 3px 4px #060606;
}
.texta {
  color: #0096ff;
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 3px 3px 4px #060606;
}
.btn-a {
  --color: #0096ff;
  display: inline-block;
  width: 6em;
  height: 2.6em;
  line-height: 2.5em;
  margin-top: 1rem;
  position: relative;
  top: 3rem;
  overflow: hidden;
  border: 2px solid var(--color);
  transition: color 0.5s;
  z-index: 1;
  font-size: 17px;
  border-radius: 6px;
  font-weight: 500;
  color: var(--color);
}
.btn-a:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: var(--color);
  height: 150px;
  width: 200px;
  border-radius: 50%;
}

.btn-a:hover {
  color: #72ffff;
}

.btn-a:before {
  top: 100%;
  left: 100%;
  transition: all 1.5s;
}

.btn-a:hover:before {
  top: -30px;
  left: -30px;
}

.btn-a:active:before {
  color: #72ffff;
  transition: background 3s;
}
.mySlides img {
  border-radius: 20px;
  box-shadow: inset 0px 0px 100px -13px rgb(0, 150, 255), 5px 5px 10px #0661a2;
}
.section-icon {
  display: flex;
  margin: 20px;
  justify-content: space-evenly;
}
.section-link {
  text-decoration: none;
  color: #0096ff;
  font-weight: bold;
  margin: 1em;
  text-shadow: 3px 3px 4px #060606;
}
.section-link:hover {
  color: #72ffff;
}
.section-link i {
  font-size: 4rem;
}
.prev,
.next {
  display: none;
  cursor: pointer;
  position: absolute;
  bottom: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
.next {
  right: 0px;
  border-radius: 3px 0 0 3px;
}
.prev:hover,
.next:hover {
  background-color: #0096ff;
}
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}
aside {
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 999;
  line-height: 1.3em;
}
.links-footer a {
  text-decoration: none;
  color: #616161;
}
[class^="chevron"] {
  margin-left: 10px;
}

#menu-button {
  background-color: #0096ff;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  transform: rotate(-90deg);
}

#menu-button:hover {
  transform: scale(1.1);
}

#menu-container {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 200px;
  background-color: #72ffffd8;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  display: none;
}

#menu-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#menu-container ul li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease-in-out;
  font-size: small;
  letter-spacing: 0.5px;
}

#menu-container ul li a:hover {
  background-color: #5900ffe3;
  color: #fff;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
}
/* icon effect */
#menu-container li {
  position: relative;
}
#menu-container li:hover [class^="chevron"] {
  transition: all 0.3s ease;
  transform: translateX(10px);
  font-size: medium;
}
/* Links */
.links {
  width: 100%;
  background: #f2f2f2;
  color: #616161;
  font-size: 12px;
}
.links-inner {
  list-style: none;
  padding: 0;
}
.links li {
  line-height: 2;
}
/* Footer */
.footer {
  background: #f2f2f2;
  color: #616161;
  font-size: 12px;
  padding: 20px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.footer-inner ul {
}

.footer div {
  margin-bottom: 20px;
  padding: 2rem;
  display: flex;
  align-items: center;
}

.footer div i {
  margin-right: 10px;
}

.footer ul {
  display: flex;
  flex-wrap: wrap;
}

.footer li {
  margin: 0 30px 20px 0;
}

/* links and footer */
.links-footer {
  display: block;
}

.links-footer a:hover {
  color: black;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}
/* form */
.form {
  font-family: "Montserrat", sans-serif;
  background: #e4e4e4e3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 90vh;
  margin: -20px 0 50px;
  color: #fff;
  margin-bottom: 0;
}

.container {
  background: #546dfa;
  
  box-shadow: 8px 9px 14px 3px rgba(9, 77, 144, 0.91),
    -6px -5px 20px -5px rgba(12, 84, 165, 0.356);
  position: relative;
  overflow: hidden;
  width: 480px;
  max-width: 100%;
  min-height: 576px;
  padding: 0 50px;
}

form h3 {
  margin: 50px 0;
  font-size: 2rem;
}

.fullName {
  display: flex;
  column-gap: 15px;
}

.input-field {
  margin: 30px 0;
}

input[type="text"],
input[type="password"],
input[type="email"] {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  border-style: none;
  padding: 0 20px;
  font-size: 16px;
}

input[type="text"]:focus::placeholder,
input[type="password"]:focus::placeholder,
input[type="email"]:focus::placeholder {
  color: transparent;
}

/* submit-btn */
.submit input {
  display: block;
  width: 100%;
  height: 40px;
  /* padding: 10px 0; */
  border-style: none;
  border-radius: 10px;
}

.signin-btn {
  background: #00d7ff;
  margin-bottom: 20px;
}

.login-btn {
  background: #2f0086;
  color: #fff;
}

.signin-btn:hover {
  background: #00f7ff;
}

.login-btn:hover {
  background: #3a01a5;
}

/* toggle switch btn */
.switch-field {
  display: flex;
  /* flex-direction: row; */
  column-gap: 20px;
  align-items: center;
  font-size: 14px;
}

.switch {
  position: relative;
  /* display: inline-block; */
  width: 50px;
  height: 22px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.slider:before {
  position: absolute;
  left: 4px;
  bottom: 2px;
  content: "";
  height: 18px;
  width: 18px;
  background-color: #25194e;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #0096ff;
}

input:checked + .slider:before {
  transform: translateX(24px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@media only screen and (min-width: 820px) {

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
}
header {
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 2;
  margin-bottom: 0.5rem;
}
.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center center;
  background: rgb(255, 255, 255);
  box-shadow: 10px 10px 10px #0661a2;
}
.nav-logo {
  width: 60px;
  border: solid 4px whitesmoke;
  border-radius: 20%;
}
.nav-left {
  display: flex;
  flex-direction: row;
  padding: 0;
  margin: 0.5;
}
.nav-right {
  display: flex;
  flex-direction: row;
  padding: 0;
  margin: 0.5;
}
.nav-link i {
  color: #0096ff;
  padding: 0.5rem;
}
.nav-link i:hover {
  color: #0096ff;
}
.nav-link i::after {
  content: "";
}
.nav-link {
  text-decoration: none;
  color: #0096ff;
  font-weight: bold;
  margin: 1em;
}
.nav-link:hover {
  color: #72ffff;
}
.nav-link-r {
  text-decoration: none;
  color: #0096ff;
  font-weight: bold;
  margin: 1em;
}
.nav-link-r:hover {
  color: #72ffff;
}
.nav-link-r::before {
  counter-reset: "";
}

/*---aside--*/
/* aside btn */

aside {
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 999;
  line-height: 1.3em;
}

aside button i {
  padding: 12px;
}

.links-footer a {
  text-decoration: none;
  color: #616161;
}
[class^="chevron"] {
  margin-left: 10px;
}

#menu-button {
  background-color: #0096ff;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  transform: rotate(-90deg);
}

#menu-button:hover {
  transform: scale(1.1);
}

#menu-container {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 200px;
  background-color: #72ffffd8;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  display: none;
}

#menu-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#menu-container ul li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
}

#menu-container ul li a:hover {
  background-color: #5800ff;
  color: #fff;
}

/* Links */
.links {
  background: #f2f2f2;
  color: #616161;
  font-size: 12px;
  padding: 35px 0;
}

.links-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 10px;
  align-items: flex-start;
  justify-content: center;
}

.links li {
  line-height: 2.5;
}

/* Footer */
.footer {
  background: #f2f2f2;
  color: #616161;
  font-size: 12px;
  padding: 20px 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer div {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.footer div i {
  margin-right: 10px;
}

.footer ul {
  display: flex;
  flex-wrap: wrap;
}

.footer li {
  margin: 0 30px 20px 0;
}

/* links and footer */
.links-footer {
  display: block;
  width: 100%;
}

.links-footer a:hover {
  color: black;
}

/* form */
.form {
  font-family: "Montserrat", sans-serif;
  background: #e4e4e4e3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 90vh;
  margin: -20px 0 50px;
  color: #fff;
  margin-bottom: 0;
}

.container {
  background: #546dfa;
  border-radius: 30px;
  box-shadow: 8px 9px 14px 3px rgba(0, 0, 0, 0.91),
    -6px -5px 20px -5px rgba(255, 255, 255, 0.356);
  position: relative;
  overflow: hidden;
  width: 480px;
  max-width: 100%;
  min-height: 576px;
  padding: 0 50px;
}

form h1 {
  margin: 50px 0;
}

.fullName {
  display: flex;
  column-gap: 15px;
}

.input-field {
  margin: 30px 0;
}

input[type="text"],
input[type="password"],
input[type="email"] {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  border-style: none;
  padding: 0 20px;
  font-size: 16px;
}

input[type="text"]:focus::placeholder,
input[type="password"]:focus::placeholder,
input[type="email"]:focus::placeholder {
  color: transparent;
}

/* submit-btn */
.submit input {
  display: block;
  width: 100%;
  height: 40px;
  /* padding: 10px 0; */
  border-style: none;
  border-radius: 10px;
}

.signin-btn {
  background: #00d7ff;
  margin-bottom: 20px;
}

.login-btn {
  background: #2f0086;
  color: #fff;
}

.signin-btn:hover {
  background: #00f7ff;
}

.login-btn:hover {
  background: #3a01a5;
}

/* toggle switch btn */
.switch-field {
  display: flex;
  /* flex-direction: row; */
  column-gap: 20px;
  align-items: center;
  font-size: 14px;
}

.switch {
  position: relative;
  /* display: inline-block; */
  width: 50px;
  height: 22px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.slider:before {
  position: absolute;
  left: 4px;
  bottom: 2px;
  content: "";
  height: 18px;
  width: 18px;
  background-color: #25194e;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #0096ff;
}

input:checked + .slider:before {
  transform: translateX(24px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
}