@font-face {
  font-family: "Raleway";
  src: url(../fonts/Raleway-Regular.ttf) format("truetype");
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

:root {
  color-scheme: light !important;
}

html,
body,
head,
ul,
li,
a,
h1,
h2,
h3,
h4,
h5,
h6,
span,
label,
strong {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.42857143;
  color: #333;
  background: #414d64;
  font-variant-numeric: lining-nums;
}

a,
a:hover {
  text-decoration: none;
}

.container {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

img {
  max-width: 100%;
}

/* Spot the ball section CSS starts here */
.header {
  display: block;
  width: 100%;
  text-align: center;
  padding: 25px 0;
}

.header a {
  display: inline-block;
}

.header a img {
  display: inline-block;
}

.body-content {
  display: block;
  width: 100%;
  padding-bottom: 60px;
}

.body-content h1 {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #f3f4f5;
  margin-bottom: 30px;
}

.body-content .sample-img-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}

.body-content .sample-img-section img {
  display: inline-block;
  width: 30%;
  box-shadow: 10px 10px 9px rgba(0, 0, 0, 0.25);
}

.body-content h3 {
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 26px;
  font-weight: 500;
  margin: 20px 0 80px;
}

.body-content .spot-the-ball-form {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 100px;
}

.body-content .spot-the-ball-form .spot-ball-question-img {
  display: inline-block;
  width: 351px;
}

.body-content .spot-the-ball-form .spot-ball-question-img img {
  box-shadow: 10px 10px 9px rgba(0, 0, 0, 0.25);
}

.body-content .spot-the-ball-form form {
  display: inline-block;
  width: 30%;
  color: #fff;
}

.body-content .spot-the-ball-form form .checkboxes {
  display: block;
  width: 100%;
}

.body-content .spot-the-ball-form form .checkboxes span {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  font-size: 20px;
}

.custom-checkbox {
  display: flex;
  width: 100%;
  position: relative;
  height: 22px;
  align-items: center;
  margin-bottom: 16px;
}

.custom-checkbox input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  margin: 0;
  z-index: 3;
  opacity: 0;
  cursor: pointer;
}

.custom-checkbox input[type="radio"] ~ i {
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.custom-checkbox label {
  display: inline-block;
  margin: 0;
  padding-left: 44px;
}

.custom-checkbox input[type="radio"]:checked ~ i {
  background: #fff;
}

.custom-checkbox input[type="radio"]:checked ~ i::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 4px;
  width: 13px;
  height: 6px;
  border-left: 2px solid #414d64;
  border-bottom: 2px solid #414d64;
  transform: rotate(-45deg);
}

.body-content .spot-the-ball-form form .form-group {
  display: block;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}

.body-content .spot-the-ball-form form .form-group label {
  display: block;
  width: 100%;
  margin-bottom: 5px;
  font-size: 17px;
}

.body-content .spot-the-ball-form form .form-group input[type="text"] {
  display: block;
  width: 100%;
  height: 40px;
  border-radius: 5px;
  background: #efefef;
  border: none;
  padding: 10px;
  font-size: 16px;
  font-family: "Raleway", sans-serif;
  font-variant-numeric: lining-nums;
}

.body-content .spot-the-ball-form form .submit-btn {
  display: block;
  width: 100%;
  text-align: left;
}

.body-content .spot-the-ball-form form .submit-btn button {
  display: inline-block;
  background: #f2b200;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  height: 44px;
  width: 100%;
  cursor: pointer;
}

.body-content .solution-img {
  display: block;
  width: 100%;
  text-align: center;
}

.body-content .solution-img h3 {
  margin: 50px 0 30px;
}

.body-content .solution-img img {
  display: inline-block;
  width: 400px;
  box-shadow: 10px 10px 9px rgba(0, 0, 0, 0.25);
}
/* Spot the ball section CSS Ends here */

/* Responsive CSS starts Here */
@media only screen and (max-width: 575px) {
  .container {
    padding: 0 16px;
  }

  .header {
    padding: 15px 0;
  }

  .header a img {
    width: 120px;
  }

  .body-content {
    padding-bottom: 0;
  }

  .body-content h1 {
    font-size: 26px;
  }

  .body-content .sample-img-section {
    width: 100%;
    flex-wrap: wrap;
    gap: 32px;
  }

  .body-content .sample-img-section img {
    width: 90%;
  }

  .body-content h3 {
    margin: 10px 0 40px;
  }

  .body-content .spot-the-ball-form {
    flex-wrap: wrap;
    gap: 30px;
    background: #3b475f;
    padding: 25px 0;
    border-radius: 10px;
    margin-bottom: 30px;
  }

  .body-content .spot-the-ball-form .spot-ball-question-img {
    width: 90%;
  }

  .body-content .spot-the-ball-form form {
    width: 100%;
    padding: 25px 0;
    border-radius: 5px;
  }

  .body-content .spot-the-ball-form form .checkboxes {
    padding: 0 20px;
  }

  .body-content .spot-the-ball-form form .checkboxes .custom-checkbox {
    display: inline-block;
    width: 48%;
    margin-bottom: 26px;
  }

  .body-content .spot-the-ball-form form .form-group {
    padding: 0 20px;
    margin-top: 10px;
  }

  .body-content .spot-the-ball-form form .submit-btn {
    text-align: center;
    padding: 0 20px;
  }

  .body-content .solution-img {
    border-top: 1px solid #9d9d9d;
  }

  .body-content .solution-img h3 {
    font-size: 20px;
    margin: 25px 0 30px;
  }

  .body-content .solution-img img {
    width: 90%;
  }
}
