*{
  margin:0;
  padding:0;
}


body {
  font-family: Arial, Helvetica, sans-serif;
}

header {
  width: 100%;
  background-color:#012062;
  text-align: center;
  cursor:pointer;
}

h1{
  color: #fff;
  padding: 20px;
  font-weight: lighter;
  font-size: 30px;
}

.titles button{
  border: none;
  padding: 10px 60px;
  border-radius: 20px;
  font-size: 20px;
  color:#012062;
  font-weight: bold;
  cursor: pointer;
  background-color: #E9EFFD;
}

.main-holder {
  margin-top: 1rem;
  position: relative;
  display: grid;


}

.blue-image img{
  width: 75%;
}

.football-player img{
  width: 40%;
  display: block;
  float: right;
}

.green-line{
  width: 90px;
  height: 5px;
  background-color: #012062;
  margin: 20px auto;
}

.titles{
  position: absolute;
  left: 10% ;
  top:20px;
  text-align: center;
}

.titles h2{
  color: #fff;
  font-size: 60px;
  font-weight: bold;
  line-height: 70px;

}

.titles span{
  font-size: 28px;
  color:#E9EFFD;
  margin:20px 0;
  display: inline-block;
}

.bookmaker-holder{
  padding: 10px 0;
}

.bookmaker{
  display: grid;
  grid-template-columns: 40px auto;
  margin-top:10px;
  position: relative;

}

.bookmaker:hover{
  background-color: #2F487E;
}

label{
  color: #FFF;
  padding: 12px;
  font-size: 22px;
  margin-left: 45px;
  cursor: pointer;
}

input[type="checkbox"]{
  align-self: center;
  justify-self:right;
  width: 27px;
  height: 27px;
  border-radius: 3px;
}

.checked{
  background-color: #4244E5;
}

.icons-holder{
  width: 100%;
  display: grid;
  grid-template-columns: 33% 33% 33%;
  align-items: center;

}
.icon{
  text-align: center;
}

.icon img{
  width: 280px;
  align-self: center;
}

.title{
  color: #012062;
  font-size: 24px;
  font-weight: bold;
}

.text{
  font-size: 20px;
  width: 80%;
  display: inline-block;
  margin-top: 10px;
}

.select-bookmakers{
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.book-title{
  text-align: center;
  color: #012062;
  margin-bottom: 20px;
  margin-top: 60px;
  font-size: 50px;
}

.last-btn{
  margin-bottom: 100px;
  border: none;
  padding: 10px 0;
  border-radius: 20px;
  font-size: 20px;
  background-color:#012062;
  font-weight: bold;
  width: 200px;
  color:#fff;
  text-align: center;
  cursor: pointer;
  margin-top: 80px;
}

.select-table{
  background-color: #012062;
  width: 420px;
  position: absolute;
  left: calc(50% - 210px);
  top: 0;
  padding-bottom: 10px;
  border-radius: 10px;
}


.left-img{
  width: 100%;
}
.btn-holder{
  width: 100%;
  text-align: center;
  margin-top: 220px;
}

.btn-holder span{
  display:none;
  margin-top: 10px;
  margin-bottom: 90px;
  font-size: 14px;
  color:#E34D44;
  /* display: inline-block; */
  font-weight: bold;
}

.blue-image{
  position: relative;
  z-index: -1;
}

.rights{
  width:100%;
  background-color: #012062;
  text-align: center;
  position: relative;
}

.rights span{
  padding: 20px 0;
  font-size: 12px;
  display: inline-block;
  color: #fff;
}

.bookmaker input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 13px;
  left: 13px;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 5px;
  cursor: pointer;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

input:checked ~ .checkmark:after {
  display: block;
}

.checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid black;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.wrapper{
  width: 80%;
  margin: 0 auto;
}


@media only screen and (max-width: 1366px) {
  .titles{
    left:8%;
    top:2%;
  }
  .titles h2{
    font-size: 40px;
    line-height: inherit;
  }
  .titles span{
    font-size: 20px;
    margin: 14px 0;
  }
  .btn-holder{
    margin-top:220px;
  }
  .book-title{
    margin-top:50px;
    font-size: 45px;
  }
  .select-table{
    top: -5px;
  }
}
@media only screen and (max-width: 1024px) {
  .titles{
    left:5%;
    top: 5%;
  }

.btn-holder{
  margin-top:60px;
}
  .select-table{
    top: -14px;
  }

  label{
    padding: 10px;
    font-size: 18px;
  }

  .checkmark{
    top: 8px;
  }

  .wrapper{
    width: 100%;
  }




}
@media only screen and (max-width: 768px) {
  .main-holder{
    grid-template-columns: 100%;
  }

  .football-player img{
    display: none;
  }

  .icons-holder{
    grid-template-columns: 100%;
    margin-top: 50px;
  }
  
  .last-btn
  
  {
    margin-top:10px;
  }

  .titles{
    top: 0;
    text-align: center;
    position: static;
  }

  .titles h2{
    font-size: 45px;
  }

  .titles span{
    font-size: 20px;
  }

  .football-player{
    text-align: center;
  }

  .select-table{
    width: 320px;
    left: calc(50% - 160px)
  }

  .book-title{
    font-size: 36px;
  }

  .bookmaker-holder{
    padding: 0;
  }

  label{
    padding: 5px;
    font-size: 16px;
  }

  .checkmark{
    top: 4px;
    height: 22px;
    width: 22px;
  }
  .checkmark:after{
    left: 7px;
    top: 3px;
  }

  .btn-holder{
    margin-top:30px;
  }

  .blue-image{
    background-color: #012980;
  }


}

@media only screen and (max-width: 688px) {

  .football-player img{
    margin-left: 0;
    margin-top: 0;
    width: 100%;
  }


  .btn-holder{
    margin-top: 100px;
  }
  .last-btn{
    width: 150px;
    font-size: 18px;
  }
}
@media only screen and (max-width: 411px) {
  .titles{
    left: calc(50% - 90px);

  }
  .titles h2{
    line-height: inherit;
    font-size: 28px;
  }
  .titles span{
    font-size: 14px;
  }

  .titles button{
    padding: 6px 30px;
    font-size: 16px;
  }
  .football-player img{
    width: 100%;
  }

  .select-table{
    width: 300px;
    left:calc(50% - 150px);
    border-radius: 0;
  }


}
