@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap");
body {
  font-family: "ubuntu", sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
  height: 100vh;
  max-width: 1366px;
  color: #04001C;
  margin: auto;
}

.switchContent {
  display: flex;
  font-size: 20px;
  align-items: center;
}

p {
  margin: auto 10px;
}

.switch {
  position: relative;
  display: inline-block;
  margin: auto 30px;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

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

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

.presentation {
  aspect-ratio: 16/9;
  max-width: 1366px;
  width: 100%;
  overflow: hidden;
  text-align: center;
  position: relative;
}
.presentation > img {
  filter: brightness(50%);
  height: fit-content;
  width: 100%;
}
.presentation > div {
  position: absolute;
  width: 100%;
  top: 20%;
  color: #fff;
  margin: auto;
  display: flex;
  flex-direction: column;
}
.presentation > div > h1 {
  font-size: 3vw;
}
@media (max-width: 920px) {
  .presentation > div > h1 {
    font-size: 4vw;
  }
}
.presentation > div > h2 {
  font-size: 2vw;
  margin-top: 0;
  font-weight: 400;
}
@media (max-width: 920px) {
  .presentation > div > h2 {
    font-size: 3vw;
  }
}
.presentation > div > .conversionBut {
  margin: auto;
}
.presentation .open {
  color: green;
  display: none;
}
.presentation .closed {
  color: red;
  display: none;
}
.presentation #status {
  backdrop-filter: brightness(50%) blur(3px);
  padding: 10px;
  margin: 20px auto;
  border-radius: 10px;
}

.loginForm {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.loginForm input[type=text], .loginForm input[type=password] {
  margin: 5px 10px 20px 10px;
  padding: 5px;
}
.loginForm label {
  margin: 5px 10px 5px 10px;
}
.loginForm input[type=submit] {
  margin: 5px 10px 10px 10px;
  padding: 10px;
  border: none;
  background-color: #2196F3;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

header {
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 2;
}

.nav {
  display: flex;
  position: sticky;
  justify-content: space-between;
}
.nav > .navLinks {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 980px) {
  .nav > .navLinks {
    display: none;
  }
}
.nav > .navLinks > .navLink {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #04001C;
  text-decoration: none;
  flex: 1;
  text-align: center;
  width: 150px;
  height: 100%;
  position: relative;
}

.conversionBut {
  background-color: #5439FF;
  color: #E7E3FF;
  border: none;
  border-radius: 10px;
  padding: 15px 35px;
  font-size: 20px;
  width: 150px;
  margin: 10px;
}

.underline {
  background-color: #5439FF;
  position: absolute;
  bottom: 0;
  border-radius: 10px 10px 0 0;
}

.navLink:hover > .underline {
  background-color: #5439FF;
  height: 5px;
  width: 100%;
}

#services {
  background-color: #F1F1F1;
  height: min-content;
  max-width: 1366px;
  width: 100%;
  display: grid;
  justify-items: center;
}
#services > .serviceContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-column: 1/4;
}
#services > .serviceContainer > .serviceClass {
  margin: 10px;
  background-color: #ffffff;
  border-radius: 10px;
  height: 200px;
  width: 400px;
  box-shadow: 0px 0px 20px 0px rgba(201, 201, 201, 0.4);
}
#services > .serviceContainer > .serviceClass > h3 {
  text-align: center;
}
#services > h2 {
  grid-row: 1/2;
  grid-column: 1/4;
  text-align: center;
}

#about {
  height: 400px;
  display: grid;
  padding: 10px;
  align-items: center;
}
@media (max-width: 920px) {
  #about {
    display: flex;
    flex-direction: column;
  }
}
#about .imgContainer {
  overflow: hidden;
  aspect-ratio: 1/1;
  height: 350px;
  grid-column: 1/2;
  border-radius: 200px;
  margin: 20px;
}
#about .imgContainer > img {
  height: 200%;
  width: 200%;
}
#about > p {
  grid-column: 2/3;
  margin: 10px;
}

#footer {
  background-color: #e9e5ff;
}
#footer .footer {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  flex-wrap: wrap;
}
#footer .footer > div {
  display: flex;
  flex-direction: column;
}
#footer .footer > div > h3 {
  margin: 0;
}
#footer .footer > div > ul {
  margin: 0;
  padding: 0;
}
#footer .footer > div > ul > li {
  margin: 5px;
}
#footer ul {
  list-style-type: none;
}

.loginSection {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/*# sourceMappingURL=style.css.map */
