/* work-sans-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/work-sans-v23-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* work-sans-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 600;
  src: url("./fonts/work-sans-v23-latin-600.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* work-sans-800 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 800;
  src: url("./fonts/work-sans-v23-latin-800.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* https://piccalil.li/blog/a-modern-css-reset */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
* {
  margin: 0;
  outline: 0;
  border: 0;
  font: inherit;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture,
svg {
  max-width: 100%;
  display: block;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  color: rgb(55, 61, 63);
  line-height: 1.5;
  font-size: 16px;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  background: rgba(197, 210, 211, 0.2784313725);
}

.main-content {
  padding: 0;
}
.main-content > section {
  padding: 4rem 0;
}

p {
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
  font-family: inherit;
}

h1 {
  font-size: 2rem;
}

h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.1rem;
  margin-bottom: 0;
  color: rgb(55, 61, 63);
}

#trialForm {
  margin: 1.25rem 0;
}

.contact {
  display: flex;
  gap: 0.25rem;
}
.contact .icon i {
  font-size: 2.25rem;
}
.contact .number {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  line-height: 1;
}
.contact .number .p {
  font-size: 1.4rem;
}
.contact .number .w {
  font-size: 15px;
}

.info-heading {
  max-width: 32rem;
  text-align: center;
  margin-bottom: 1.2rem;
  margin: 0 auto;
}
.info-heading h2 {
  margin-bottom: 0.25rem;
}

.container {
  max-width: 1200px;
  padding-left: 5%;
  padding-right: 5%;
}

form input,
form textarea,
form select {
  padding: 6px 10px;
  border-radius: 0.25rem;
  border: 1px solid rgb(193, 199, 201);
}
form label {
  text-wrap: nowrap;
}
form .form-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.5rem;
}
form .form-group {
  display: grid;
  gap: 1px;
  flex: 1 1 48%;
  margin: 2px 0 4px;
}
form .form-group:has(input[type=email]) {
  flex-basis: 100%;
}
form select {
  -web-kit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  padding-right: 45px;
  padding-left: 15px;
  flex-basis: 100%;
  background: url(img/dropdown.png) no-repeat 96% center;
  background-size: 12px 12px;
  background-color: white;
}
form .radio-group {
  display: flex;
  gap: 1rem;
}
form .btn {
  width: 100%;
}

#infoBox,
.info-box {
  color: red;
  font-size: 15px;
  padding: 4px 1rem 4px 10px;
  margin: 1rem 0 12px 0;
  background: rgba(255, 219, 219, 0.2705882353);
  border-radius: 4px;
  border-left: 2px solid red;
  font-weight: 400;
  width: fit-content;
  min-width: 50%;
}

.hero-section {
  position: relative;
  min-height: 95vh;
  background-color: #000;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.7) 100%), url(img/football-pitch.jpg), no-repeat;
  background-size: cover;
  background-position: center;
}
.hero-section .top-bar {
  color: white;
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  padding: 1.3rem 0;
  padding-inline: 5%;
}
.hero-section .top-bar .tbl {
  width: 129px;
  margin-right: initial;
}
.hero-section .hero-caption {
  max-width: 60ch;
  color: white;
  padding-top: 8rem;
}
.hero-section .hero-caption .lead {
  font-size: 21px;
  margin-bottom: 0.8rem;
}
.hero-section .hero-caption h1 {
  font-weight: 800;
  line-height: 1.3;
}
.hero-section .hero-caption .btn {
  margin-top: 2.5rem;
}

.about-section {
  background-color: white;
}
.about-section .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about-section .about-info {
  flex: 0 2 58%;
}
.about-section .about-info h2 {
  text-align: left;
}
.about-section .about-image {
  flex: 0 1 38%;
  border-radius: 12px;
  overflow: hidden;
}
.about-section .venue-cities {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  margin-bottom: 1rem;
  padding-left: 0;
}
.about-section .venue-cities li {
  font-weight: 400;
  padding: 2px 1.25rem;
  background: rgba(3, 110, 152, 0.0705882353);
  border: 2px solid rgba(0, 51, 97, 0.1215686275);
  border-radius: 4px;
  flex: 1 1 10rem;
  text-align: center;
}
.about-section .fomo {
  font-size: 15px;
  color: red;
}

.trial-features-section .container {
  max-width: 65rem;
}
.trial-features-section .feature-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 1.3rem;
}
.trial-features-section .feature-item {
  display: flex;
  gap: 10px;
  flex: 0 1 48%;
}
.trial-features-section .feature-icon {
  font-size: 1.2rem;
  color: rgb(38, 95, 170);
}
.trial-features-section p {
  font-size: 1rem;
}

.trial-pricing {
  background-color: white;
  margin-top: -4rem;
}
.trial-pricing .container {
  max-width: 59rem;
}
.trial-pricing .pricing-wrap {
  display: flex;
  gap: 1rem;
}
.trial-pricing .pricing-notes {
  padding: 1rem;
  background: rgba(255, 215, 2, 0.22);
  border: 1px solid rgba(214, 197, 110, 0.74);
  border-radius: 8px;
  flex: 1 1 auto;
}
.trial-pricing .pricing-notes .icon {
  font-size: 1.3rem;
}
.trial-pricing .pricing-notes p {
  font-size: 15px;
}
.trial-pricing .col {
  text-align: center;
  line-height: 1.4;
  padding: 2rem 1rem 2rem;
  border: 1px solid rgb(193, 199, 201);
  border-radius: 0.5rem;
  flex: 1 0 14rem;
}
.trial-pricing .price {
  margin: 1rem 0 2rem;
}
.trial-pricing .price .normal {
  text-decoration: line-through;
}
.trial-pricing .price .discount {
  font-weight: 600;
  font-size: 1.7rem;
  margin-top: -6px;
}
.trial-pricing .info {
  line-height: 1;
  margin: 2rem 0;
}
.trial-pricing .btn {
  color: #fff;
  padding: 4px 1rem;
}

h4 {
  margin-bottom: 0;
  color: rgb(55, 61, 63);
}

.reg-info-section {
  background-color: white;
}
.reg-info-section .info-items {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.reg-info-section .info-item {
  text-align: center;
  flex: 1 1 25%;
  padding: 0 1rem;
}
.reg-info-section .info-icon {
  color: white;
  padding-top: 6px;
  background: rgb(38, 95, 170);
  width: 38px;
  height: 38px;
  text-align: center;
  border-radius: 50%;
  margin: 1rem auto;
}
.reg-info-section h4 {
  margin-bottom: 0.5rem;
}

.reg-form-section .radio-group {
  margin: 14px 0 10px;
}
.reg-form-section .container {
  max-width: 45rem;
}
.reg-form-section .form-note {
  font-size: 15px;
}
.reg-form-section .form-note a {
  font-weight: 600;
  text-decoration: underline;
}
.reg-form-section .form-note a:hover {
  color: rgb(38, 95, 170);
}

.action-call {
  background-color: white;
  padding: 5rem 0 6rem !important;
}
.action-call .btn {
  margin-top: 2rem;
}

footer#footer {
  color: #fafafa;
}
footer#footer .contact .number {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
footer#footer .row {
  align-items: center;
  justify-content: space-between;
}
footer#footer ul {
  display: flex;
  gap: 1rem;
}

#back-to-top {
  display: block;
  position: fixed;
  width: 36px;
  height: 36px;
  right: 2rem;
  bottom: 2.5rem;
  font-size: 1.3rem;
  padding-left: 7px;
  padding-top: 1px;
  border-radius: 50%;
  border: 2px solid rgba(150, 150, 150, 0.9);
  color: rgba(150, 150, 150, 0.9);
  cursor: pointer;
  z-index: 999;
}

#back-to-top:hover {
  border: 2px solid rgb(165, 165, 165);
  bottom: 43px;
}

@media (max-width: 928px) {
  .trial-pricing {
    background-color: white;
    margin-top: -2rem;
  }
  .trial-pricing .pricing-wrap {
    align-items: initial;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .trial-pricing .pricing-notes {
    flex: 1 0 100%;
    height: auto;
    padding: 1rem 4rem 1rem 2rem;
    display: flex;
    gap: 1rem;
  }
  .price {
    margin: 1rem 0 2rem;
  }
  .price .normal {
    text-decoration: line-through;
  }
  .price .discount {
    font-weight: 600;
    font-size: 1.7rem;
    margin-top: -6px;
  }
  .info {
    line-height: 1;
    margin: 2rem 0;
  }
  .btn {
    color: #fff;
    padding: 4px 1rem;
  }
}
@media (max-width: 750px) {
  .main-content {
    padding-top: 0;
  }
  .main-content > section {
    padding: 2.5rem 0;
  }
  .hero-section {
    min-height: 95vh;
  }
  .hero-section .top-bar .tbl {
    width: 112px;
    margin: 2.5rem auto;
  }
  .hero-section .hero-caption {
    padding-top: 0rem;
    padding-bottom: 4rem;
    line-height: 1.4;
  }
  .hero-section .hero-caption .lead {
    margin-bottom: 1.2rem;
  }
  .about-section {
    padding-bottom: 1rem;
  }
  .about-section .inner {
    flex-direction: column;
  }
  .about-section .about-info {
    padding-right: 0;
  }
  .about-section .about-image {
    margin-top: 1rem;
    margin-bottom: 0;
  }
  .about-section .venue-cities {
    gap: 0.25rem;
  }
  .about-section .venue-cities li {
    flex: 1 1 11rem;
  }
  .trial-pricing {
    background-color: white;
    margin-top: -2rem;
  }
  .trial-pricing .pricing-wrap {
    align-items: initial;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .trial-pricing .pricing-notes {
    flex: 1 0 100%;
    height: auto;
  }
  .trial-pricing .price {
    margin: 1rem 0 2rem;
  }
  .trial-pricing .price .normal {
    text-decoration: line-through;
  }
  .trial-pricing .price .discount {
    font-weight: 600;
    font-size: 1.7rem;
    margin-top: -6px;
  }
  .trial-pricing .info {
    line-height: 1;
    margin: 2rem 0;
  }
  .trial-pricing .btn {
    color: #fff;
    padding: 4px 1rem;
  }
  h4 {
    margin-bottom: 0;
    color: rgb(55, 61, 63);
  }
  .reg-info-section {
    background-color: white;
  }
  .reg-info-section .info-items {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1rem;
  }
  .reg-info-section .info-item {
    text-align: center;
    flex: 1 1 25%;
    padding: 0 1rem;
  }
  .reg-info-section .info-icon {
    color: white;
    padding-top: 6px;
    background: rgb(38, 95, 170);
    width: 38px;
    height: 38px;
    text-align: center;
    border-radius: 50%;
    margin: 1rem auto;
  }
  .reg-info-section h4 {
    margin-bottom: 0.25rem;
  }
  .reg-info-section .container {
    max-width: 32rem;
  }
  .reg-info-section .info-item {
    flex-basis: 100%;
    margin-top: 0.25rem;
    margin-bottom: 1rem;
  }
  .reg-info-section .info-item h4 {
    margin-bottom: 2px;
  }
  .reg-info-section .info-item .info-icon {
    margin-bottom: 0.5rem;
  }
  .reg-form-section .radio-group {
    margin-inline: auto;
    max-width: fit-content;
  }
}
@media (max-width: 450px) {
  .hero-section {
    min-height: 90vh;
    padding-bottom: 2rem;
  }
  .hero-section .top-bar .tbl {
    width: 112px;
    margin: 2.5rem auto;
  }
  .hero-section .top-bar .contact {
    display: none;
  }
  .hero-section .hero-caption {
    padding-top: 0rem;
    padding-bottom: 1rem;
    line-height: 1.4;
  }
  .hero-section .hero-caption .lead {
    margin-bottom: 1.2rem;
  }
  .about-section {
    padding-bottom: 1rem;
  }
  .about-section .about-info {
    padding-right: 0;
  }
  .about-section .about-image {
    flex: 1 0 100%;
    margin-top: 2rem;
    margin-bottom: 0;
  }
  .about-section .venue-cities {
    gap: 0.25rem;
  }
  .about-section .venue-cities li {
    flex: 1 0 auto;
  }
  .trial-features-section .feature-item {
    flex: 0 1 100%;
  }
  .trial-pricing .pricing-wrap {
    flex-direction: column;
    gap: 1rem;
  }
  .trial-pricing .pricing-notes {
    order: 3;
    padding: 1rem;
  }
  .trial-pricing .pricing-table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .trial-pricing .pricing-table .col {
    margin-left: 0;
    margin-right: 0;
  }
  .reg-form-section .radio-group {
    margin-inline: auto;
    max-width: fit-content;
  }
  footer#footer .contact .number {
    display: grid;
  }
  footer#footer ul {
    margin-top: 1rem;
  }
}