@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  outline: none;
  text-rendering: optimizeLegibility;
  font-family: 'Nunito', sans-serif;
}
  
::-webkit-scrollbar-track {
  background-color:#ecedee;
}
  
::-webkit-scrollbar-thumb {
  -webkit-border-radius: 0px;
  border-radius: 0px;
  background-color: #9b9b9b;
}
  
::-webkit-scrollbar-thumb:hover{
  background-color:#5a5a5a;
}
  
::-webkit-scrollbar{
  width: 6px;
}

.logo a {
  color: white;
}

body {
  background-color: #232235;
}

nav {
  background: transparent;
  height: 70px;
  width: 100%;
  position: fixed;
  z-index: 999;
}

label.logo {
  color: white;
  font-size: 60px;
  font-weight: bold;
  float: left;
  padding: 15px;
  margin-top: 55px;
  margin-left: 50px;
  font-family: 'Righteous', cursive;
}

label.logo a {
  font-family: 'Righteous', cursive;
}

nav ul {
  float: left;
  text-align: left;
}

.right-bar {
  float: right;
  text-align: right;
  margin-top: 65px;
  display: inline-block;
  padding: 15px;
  margin-right: 50px;
}

nav ul li {
  display: inline-block;
}

nav ul li a  {
  color: #fff;
  font-size: 30px;
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  cursor: pointer;
  padding: 7px 25px;
  transition: color 0.1s linear;
}

nav ul li a.active, nav ul li a:hover {
  color: #5865F2;
}

.first-a {
  margin-left: 15px;
}

.menu {
  display: none;
  padding: 10px;
  margin-top: 75px;
  margin-right: 45px;
  float: right;
  cursor: pointer;
  fill: white;
}

.menu svg rect {
  width: 60px;
  height: 10px;
}

.menu:hover {
  fill: #4c56c9;
}

.menuLow {
  display: none;
  padding: 10px;
  margin-top: 68px;
  margin-right: 15px;
  float: right;
  cursor: pointer;
  fill: white;
}

.menuLow svg rect {
  width: 40px;
  height: 7px;
}

.menuLow:hover {
  fill: #4c56c9;
}

#check {
  display: none;
}

.noButton {
  display: none;
}

@media (max-width: 1500px){
  .menu {
    display: block;
  }
  nav ul {
    opacity: 0;
    background: rgba(69, 77, 114, 0.88);
    border-radius: 20px;
    transition: 0.2s ease;
  }
  nav ul li {
    display: block;
    line-height: 33px;
    margin-left: 5px;
  }
  .noButton {
    margin-top: -5px;
    display: block;
  }
  .button {
    opacity: 0;
    position: absolute;
    left: -10000px;
  }
  .right-bar {
    float: right;
    text-align: left;
    margin-right: 18px;
  }
  nav ul li a {
    font-size: 16px;
  }
  #check:checked ~ ul {
    opacity: 1;
  }
}
#main {
  width: 100%;
  height: auto;
  text-align: center;
  color: #fff;
  float: left;
  z-index: 1;
}

#leftContent {
  margin-top: 25vh;
  text-align: left;
  margin-left: 12vh;
  max-width: 500px;
}

#leftContent .title {
  margin-bottom: 25px;
  font-family: 'Rubik', sans-serif;
  font-size: 60px;
  line-height: 70px;
}

#leftContent .desc {
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  line-height: 35px;
}

#rightContent {
  text-align: right;
  margin-left: 12vh;
  margin-top: -45vh;
}

.button {
  display: inline-block;
  background: #2DDFB4;
  border-radius: 10px;
  font-size: 30px;
  text-align: center;
  font-weight: 500;
  color: #fff;
  transition: 0.1s ease;
  padding: 10px 20px;
}

.button:hover {
  color: #fff;
  background: #27c49e;
}

.buttonAdd {
  font-family: 'Rubik', sans-serif;
  display: inline-block;
  background: #5865F2;
  line-height: 50px;
  cursor: pointer;
  border-radius: 20px;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  transition: 0.1s ease;
  margin-top: 35px;
  padding: 15px 55px;
}

.buttonAdd:hover {
  color: #fff;
  background: #4c56c9;
}

#mainMobImg {
  display: none;
  width: 50%;
}

#mainImg {
  float: right;
  margin-right: 25vh;
  width: 432px;
  height: 432px;
}

@media (max-width: 1500px){
  #mainImg {
    display: none;
  }
}

@media (max-width: 950px){
  #mainImg {
    display: block;
    width: 28%;
    height: 28%;
    margin-right: 75px;
  }
  #rightContent {
    margin-top: -25vh;
  }
  label.logo {
    margin-left: 10px;
    font-size: 40px;
  }
  .menu {
    display: none;
  }
  .menuLow {
    display: block;
  }
  #leftContent {
    margin-top: 20vh;
    margin-left: 6vh;
  }
  #leftContent .title {
    font-size: 40px;
    line-height: 50px;
  }
  #leftContent .desc {
    font-size: 20px;
    line-height: 25px;
  }
  .buttonAdd {
    background: #5865F2;
    line-height: 30px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    transition: 0.1s ease;
    margin-top: 35px;
    padding: 10px 35px;
  }
}

@media (max-width: 840px){
  #mainImg {
    display: none;
  }
}

@media (max-width: 570px){
  label.logo {
    margin-left: 5px;
  }
  .menu {
    display: none;
  }
  .menuLow {
    display: block;
  }
  #leftContent {
    margin-top: 20vh;
    margin-left: 2vh;
  }
}

@media (max-width: 500px){
  .menuLow {
    display: block;
  }
  #leftContent .title {
    font-size: 25px;
    line-height: 30px;
  }
  #leftContent .desc {
    font-size: 18px;
    line-height: 25px;
  }
}

@media (max-width: 400px){
  label.logo {
    margin-left: 0;
    padding: 13px;
    margin-top: 25px;
  }
  #leftContent {
    margin-top: 20vh;
    max-width: 300px;
  }
  .menuLow {
    margin-top: 35px;
  }
}

@media (max-width: 350px){
  .menuLow {
    display: none;
  }
  .right-bar {
    display: none;
  }
}

#features {
  width: 100%;
  height: 20vh;
  padding-bottom: 6%;
  color: #fff;
  z-index: 2;
}

#footer {
  text-align: center;
}

.footer-text {
  position: absolute;
  width: 100%;
  opacity: 0.3;
  bottom: 30px;
}