@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins',sans-serif;
}
.content {
  margin: 20px 5%;
  max-width: 1250px;
  color: white;
  font-size: 22px;
  padding: 20px;
  text-align: left;
  font-weight: 200;
}

.error {
  color: red;
  font-size: 16px;
  padding: 10px;
}
::selection{
  color: #000;
  background: #fff;
}
nav{
  position: fixed;
  width: 100%;
  padding: 10px 0;
  z-index: 12;
}
nav .menu{
  max-width: 1250px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.menu .logo a{
  text-decoration: none;
  color: #fff;
  font-size: 35px;
  font-weight: 400;
}
.menu ul{
  display: inline-flex;
}
.menu ul li{
  list-style: none;
  margin-left: 5px;
}
.menu ul li:first-child{
  margin-left: 0px;
}
.menu ul li a{
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 200;
  padding: 8px 15px;
  border-radius: 0px;
  transition: all 0.3s ease;
}
.menu ul li a:hover{
  color: white;
  border-bottom: 2px solid white;
}
.img{
  background-color: #224295;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}
.img::before{
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background: #224295;
}
.center{
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 20px;
  text-align: center;
}
.center .title{
  color: white;
  font-size: 55px;
  font-weight: 600;
}
.center .sub_title{
  color: #111;
  font-size: 52px;
  font-weight: 600;
}
.center .btns{
  margin-top: 20px;
}
.center .btns button{
  height: 55px;
  width: 170px;
  color: white;
  border-radius: 3px;
  border: none;
  margin: 0 10px;
  border: 1px solid white;
  font-size: 20px;
  font-weight: 500;
  padding: 0 20px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}
.center .btns button:first-child{
  color: white;
  background: none;
}
.btns button:first-child:hover{
  background: white;
  color: black;
}
.center .btns button:last-child{
  background: white;
  color: #111;
}
.signup-form {
}
input {
  background: #224295;
  color: white;
  height: 55px;
  width: 300px;
  border-radius: 3px;
  border: none;
  margin: 5px 10px;
  border: 1px solid white;
  font-size: 20px;
  font-weight: 300;
  padding: 0 20px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}
::placeholder {
  color: white;
  text-transform: capitalize;
}

input:focus::placeholder {
  color: transparent;
}
/* burger algus*/

.checkbtn {
  font-size: 30px;
  color: white;
  float: right;
  line-height: 80px;
  margin-right: 40px;
  margin-top: -11px;
  cursor: pointer;
  display: none;
}

#check {
  display: none;
}

a:active,a.hover {
  background: none;
  color: red;
}



/* burger lõpp */

/* Mobile */
@media (max-width: 952px) {

.content {
  margin: 15px 3%;
  padding: 10px;
  font-size: 20px;
  font-weight: 200;
}
.center .title{
  font-size: 44px;
  font-weight: 500;
}
.center .sub_title{
  font-size: 40px;
  font-weight: 500;
}
.center .btns button{
  height: 45px;
  width: 200px;
  border-radius: 3px;
  border: none;
  margin: 0 8px;
  border: 1px solid white;
  font-size: 18px;
  font-weight: 400;
  padding: 0 8px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}
/* burger algus*/
.checkbtn {
  display: block;
}

nav{
  position: fixed;
  height: 75px;
  padding: 10px 0;
}

ul {
  position: fixed;
  width:100%;
  height: 100vh;
  background: #3a3c40;
  top: 75px;
  left: -100%;
  text-align: center;
  transition: all .5s;
}

.menu ul{
  display: block;
}

 nav ul li {
  display: block;
  margin: 25px 0;
  line-height: 20px;
}

#check:checked ~ .menu ul{
  left: 0;
}

.center input {
  display: block;
  height: 45px;
  width: 300px;
  margin: 5px 10px;
  border: 1px solid white;
  font-size: 20px;

}



}


/* burger lõpp */
