@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;500;700;900&display=swap");
:root {
  /** colours **/
  --clr-black-500: hsl(0, 0, 5%);
  --clr-black-500-trans: hsla(0, 0, 5%, 98%);
  --clr-grey-000: hsl(0, 0%, 98%);
  --clr-grey-100: hsl(0, 0%, 88%);
  --clr-grey-200: hsl(0, 0%, 78%);
  --clr-grey-300: hsl(0, 0%, 68%);
  --clr-grey-400: hsl(0, 0%, 58%);
  --clr-grey-500: hsl(0, 0%, 48%);
  --clr-grey-500-trans: hsla(0, 0%, 48%, 10%);
  --clr-grey-600: hsl(0, 0%, 38%);
  --clr-grey-700: hsl(0, 0%, 28%);
  --clr-grey-800: hsl(0, 0%, 18%);
  --clr-grey-900: hsl(0, 0%, 8%);
  --clr-white-500: hsla(0, 0%, 100%, 100%);
  --clr-white-500-trans: hsla(0, 0, 100%, 75%);
  /** brand colours **/
  --clr-blue-000: hsl(220, 100%, 98%);
  --clr-blue-100: hsl(222, 100%, 88%);
  --clr-blue-200: hsl(222, 100%, 78%);
  --clr-blue-300: hsl(222, 100%, 68%);
  --clr-blue-400: hsl(222, 100%, 58%);
  --clr-blue-500: hsl(222, 100%, 48%);
  --clr-blue-500-trans25: hsla(222, 100%, 48%, 25%);
  --clr-blue-600: hsl(222, 100%, 38%);
  --clr-blue-600-trans10: hsla(222, 100%, 25%, 10%);
  --clr-blue-700: hsl(222, 100%, 28%);
  --clr-blue-800: hsl(222, 100%, 18%);
  --clr-blue-900: hsl(222, 100%, 8%);
  --clr-blue-900-trans50: hsla(222, 100%, 8%, 50%);
  --clr-blue-900-trans: hsla(222, 100%, 8%, 75%);
  --clr-green-000: hsl(104, 100%, 98%);
  --clr-green-100: hsl(104, 100%, 88%);
  --clr-green-200: hsl(104, 100%, 78%);
  --clr-green-300: hsl(104, 100%, 68%);
  --clr-green-400: hsl(104, 100%, 58%);
  --clr-green-500: hsl(104, 100%, 48%);
  --clr-green-600: hsl(104, 100%, 38%);
  --clr-green-700: hsl(104, 100%, 28%);
  --clr-green-800: hsl(104, 100%, 18%);
  --clr-green-900: hsl(104, 100%, 8%);
  /** fonts **/
  --fc-primary: var(--clr-black-500);
  --fc-secondary: var(--clr-white-500);
  --fc-tertiary: var(--clr-blue-200);
  --ff-primary: Montserrat, sans-serif;
  --fs-initial: 10px;
  --fw-light: 100;
  --fw-medium: 500;
  --fw-bold: 700;
  --fw-bolder: 900;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  height: auto;
  max-width: 100%;
}

body {
  background-color: #ffffff;
  color: var(--fc-primary);
  font-family: var(--ff-primary);
  font-size: calc(var(--font-size-initial) * 1.6vw);
  font-weight: var(--fw-medium);
  text-align: center;
  width: 100%;
}

.container {
  display: grid;
  grid-template-areas: "header" "main" "footer";
  margin: auto;
  min-height: 100vh;
  width: 100%;
}

main {
  align-items: center;
  background-color: var(--clr-blue-000);
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='12' viewBox='0 0 40 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 6.172L6.172 0h5.656L0 11.828V6.172zm40 5.656L28.172 0h5.656L40 6.172v5.656zM6.172 12l12-12h3.656l12 12h-5.656L20 3.828 11.828 12H6.172zm12 0L20 10.172 21.828 12h-3.656z' fill='%230052fe' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
  display: flex;
  flex-direction: column;
  grid-area: main;
}

.content__container {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-weight: 500;
  padding: 0 0 1.2rem 0;
  text-align: center;
  width: 100%;
}
@media (min-width: 600px) {
  .content__container {
    padding: 3rem 0;
  }
}
@media (min-width: 1200px) {
  .content__container {
    max-width: 1600px;
  }
}

/** column when small, row when medium or larger */
.content__box {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 94%;
  min-width: 48%;
  padding: 3rem 0;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 600px) {
  .content__box {
    align-items: center;
    width: 100%;
    padding: 0 1rem;
  }
}
@media (min-width: 1200px) {
  .content__box {
    width: 1200px;
  }
}

header {
  align-items: center;
  background-color: var(--clr-blue-000);
  display: flex;
  flex-direction: column;
  grid-area: header;
  justify-content: center;
  padding: 2rem 0 0 0;
}
header img {
  max-height: 80px;
  max-width: 200px;
  mix-blend-mode: multiply;
  height: auto;
  margin-bottom: 0.8rem;
  margin-top: 0.6rem;
}
@media (min-width: 1200px) {
  header img {
    max-height: 100px;
    max-width: 250px;
  }
}

nav {
  align-self: stretch;
  margin-top: 2.6vw;
}

.top-nav {
  background-color: var(--clr-blue-900);
  display: flex;
  flex-direction: row;
  justify-content: center;
  overflow: hidden;
}

.top-nav a {
  color: var(--fc-secondary);
  display: block;
  float: left;
  font-size: 0.72rem;
  padding: 1rem 2rem;
  text-align: center;
  text-decoration: none;
  transition: 1s;
}
@media (min-width: 1200px) {
  .top-nav a {
    font-size: 0.9rem;
  }
}

.top-nav a:hover {
  background-color: var(--clr-green-500);
  color: var(--fc-primary);
}

.top-nav a:hover .nav-icons {
  color: var(--fc-primary);
}

.top-nav a.active {
  background-color: var(--clr-blue-500);
}

.top-nav .nav-icons {
  color: var(--fc-primary);
  display: block;
}
@media (min-width: 600px) {
  .top-nav .nav-icons {
    display: inline-block;
    margin-right: 0.36rem;
  }
}

.top-nav .navigation__hamburger-icon {
  display: none;
}

@media all and (max-width: 600px) {
  .top-nav {
    flex-direction: column;
  }

  .top-nav a {
    display: none;
  }

  .top-nav a.navigation__hamburger-icon {
    float: right;
    display: block;
  }

  .top-nav.responsive {
    position: relative;
    right: 0;
    top: 0;
  }

  .top-nav.responsive a {
    float: none;
    display: block;
    text-align: center;
  }
}
.hero {
  align-items: center;
  align-self: start;
  background: linear-gradient(rgba(21, 36, 66, 0.75), rgba(21, 36, 66, 0.75)), url(../images/hero/hero-image.webp);
  background: linear-gradient(rgba(21, 36, 66, 0.75), rgba(21, 36, 66, 0.75)), url(../images/hero/hero-image.jpg);
  background-color: var(--clr-blue-900-trans);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  height: 25vh;
  width: 100%;
}
@media (min-width: 900px) {
  .hero {
    min-height: 30vh;
  }
}
@media (min-width: 1200px) {
  .hero {
    min-height: 35vh;
  }
}
.hero .hero__text a {
  background-color: var(--clr-blue-900-trans50);
  border: 2px solid var(--clr-blue-600);
  border-radius: 12px;
  color: var(--clr-white-500);
  display: block;
  font-size: calc(var(--fs-initial) * 1.6);
  font-weight: var(--fw-medium);
  padding: 1.6rem 1rem;
  text-decoration: none;
  text-shadow: 1px 1px 1px black;
  transition: all 1.2s;
  width: 80vw;
}
@media (min-width: 600px) {
  .hero .hero__text a {
    border-radius: 24px;
    padding: 1.6rem 4rem;
    width: auto;
  }
}
@media (min-width: 1200px) {
  .hero .hero__text a {
    font-size: calc(var(--fs-initial) * 1.6);
  }
}
.hero .hero__text a:after {
  background-color: transparent;
  color: var(--clr-grey-200);
  content: ">>";
  padding-left: 0.6rem;
}
.hero .hero__text a:hover {
  background-color: var(--clr-blue-900);
}
.hero .hero__text a:hover::after {
  color: var(--clr-green-500);
}

footer {
  align-items: center;
  background: #152442;
  background: linear-gradient(180deg, #152442 0%, #131c30 87%, #121a2b 100%);
  display: flex;
  flex-direction: column;
  grid-area: footer;
  -ms-grid-area: footer;
}

.footer__upper,
.footer__lower {
  padding: 0 1.2rem;
}

.footer__upper {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  padding-top: 3vw;
}
.footer__upper > * {
  padding-bottom: 2.4rem;
}
@media (min-width: 750px) {
  .footer__upper {
    align-items: stretch;
    flex-direction: row;
    justify-content: space-between;
  }
  .footer__upper > * {
    width: 30%;
  }
}

@media (min-width: 750px) {
  .footer__links {
    padding-right: 4rem;
    text-align: left;
  }
  .footer__links h3 {
    text-align: left;
  }
}
.footer__links li {
  display: flex;
}
.footer__links li:first-of-type {
  border-top: 1px dotted var(--clr-blue-900);
}
.footer__links li a {
  border-bottom: 1px dotted var(--clr-blue-900);
  color: white;
  font-weight: var(--fw-light);
  font-size: 0.9rem;
  max-width: 1200px;
  padding: 1rem 0;
  text-align: center;
  text-decoration: none;
  width: 100%;
}
.footer__links li a.sr-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  font-style: 0.1rem;
  height: 1px !important;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px !important;
  word-wrap: normal !important;
}
@media (min-width: 750px) {
  .footer__links li a {
    padding: 0.4rem 0;
    text-align: left;
  }
}
.footer__links li a:hover {
  background-color: var(--clr-blue-500);
  color: var(--clr-blue-100);
  font-weight: bold;
  padding-left: 0;
  transition: 1s;
}
@media (min-width: 750px) {
  .footer__links li a:hover {
    padding-left: 1.6rem;
  }
}

.footer__middle {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 40%;
  text-align: center;
}
.footer__middle > * {
  height: auto;
}

.footer__social {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-bottom: 2rem;
  width: 100%;
}
@media (min-width: 600px) {
  .footer__social {
    padding-bottom: 3rem;
  }
}
.footer__social .footer__social-icons {
  display: flex;
  flex-direction: row;
}
.footer__social a {
  color: var(--clr-green-500);
  font-size: 2.4rem;
  margin: 0 0.6rem;
  transition: 500ms ease-in-out;
}
.footer__social a:hover {
  color: var(--clr-blue-200);
}

.footer__testimonial {
  display: flex;
  flex-direction: column;
}
.footer__testimonial p {
  font-size: 0.9rem;
  color: var(--clr-white-500);
  font-weight: var(--fw-light);
  line-height: 1.2rem;
  padding: 0 1.2rem;
  text-align: center;
}
.footer__testimonial p::before {
  content: '"';
}
.footer__testimonial p::after {
  content: '"';
}

p.footer__testimonial__testimonee {
  color: var(--clr-blue-200);
  font-size: 10px;
  font-weight: var(--fw-medium);
  padding-top: 0.2rem;
}
p.footer__testimonial__testimonee::before, p.footer__testimonial__testimonee::after {
  content: "";
}

.footer__address {
  font-weight: var(--fw-light);
  font-size: 0.9rem;
}
@media (min-width: 750px) {
  .footer__address {
    text-align: right;
    width: 25%;
  }
}
.footer__address address {
  color: var(--clr-white-500);
  font-style: normal;
  line-height: 1.2rem;
  padding-left: 1.2rem;
}

.footer__lower {
  display: flex;
  flex-direction: row;
  font-size: 0.8rem;
  max-width: 1200px;
  padding: 0 1rem;
  width: 100%;
}
.footer__lower > * {
  max-width: 50%;
  min-width: 50%;
  width: 50%;
}
.footer__lower p {
  color: var(--clr-blue-300);
  padding: 0;
}
@media (min-width: 1200px) {
  .footer__lower p {
    padding: 0;
  }
}

.footer__copyright p {
  text-align: left;
}

.footer__designed-by p {
  text-align: right;
}
.footer__designed-by p a {
  color: goldenrod;
  display: inline-block;
}
.footer__designed-by p a:hover {
  background-color: transparent;
  color: goldenrod;
  text-decoration: underline;
}

/* global h1 (main heading) style initialisation */
h1 {
  color: var(--clr-black-500);
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  font-weight: var(--fw-bolder);
  padding-bottom: 1.2rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 600px) {
  h1 {
    font-size: 1.2rem;
    padding-top: 2rem;
  }
}
h1::after {
  background-color: var(--clr-green-500);
  color: var(--clr-green-500);
  content: "";
  display: inline-block;
  height: 6px;
  line-height: 1rem;
  margin-top: 0.4rem;
  width: 100%;
}

/* global h2 (sub-heading) styles */
h2 {
  font-size: 1.2rem;
  font-weight: var(--fw-bolder);
  text-align: center;
  text-transform: uppercase;
  width: auto;
}

/* global h3 styles */
h3 {
  align-self: start;
  border-bottom: 5px solid var(--clr-blue-100);
  color: var(--clr-black-500);
  display: flex;
  text-align: left;
  width: auto;
}
h3::after {
  content: ":";
}

/* global h4 (footer) styles */
h4 {
  color: var(--clr-blue-100);
  font-size: 0.9rem;
  padding-bottom: 0.8rem;
  text-transform: uppercase;
}
h4::before {
  background-color: var(--clr-blue-400);
  content: "";
  display: inline-block;
  height: 8px;
  margin-right: 0.4rem;
  width: 8px;
}

/* global p styles */
p {
  color: var(--fc-primary);
  font-size: calc(var(--fs-initial) * 1.25);
  line-height: calc(var(--fs-initial) * 2.5);
  padding-bottom: 1rem;
  /* Global a inside a p */
}
@media (min-width: 600px) {
  p {
    text-align: left;
  }
}
p a {
  color: inherit;
  font-weight: var(--fw-bold);
  text-decoration: none;
  transition: all 1s;
}
p a:hover {
  color: var(--clr-blue-500);
}

input[type=button],
input[type=submit],
input[type=reset],
.btn {
  background-color: var(--clr-blue-100);
  border: none;
  border-radius: 0.4rem;
  color: var(--clr-blue-900);
  cursor: pointer;
  font-family: var(--ff-primary);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1rem;
  margin-top: 2rem;
  padding: 1.2rem 1.6rem;
  transition: padding 3s, color 1s, border-radius 5s;
  width: auto;
}
input[type=button]:hover,
input[type=submit]:hover,
input[type=reset]:hover,
.btn:hover {
  background-color: var(--clr-blue-900);
  border-radius: 2rem;
  color: var(--clr-blue-100);
  padding-left: 10rem;
  padding-right: 10rem;
}

.b-rad-1 {
  border-radius: 1rem;
}

.d-block {
  display: block;
}

.sr-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px !important;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px !important;
  word-wrap: normal !important;
}

.img__container {
  align-items: center;
  border: 10px solid var(--clr-grey-200);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: 1s ease;
}
.img__container:hover {
  border: 10px solid var(--clr-blue-900);
}
.img__container img {
  display: block;
}
@media (min-width: 600px) {
  .img__container img {
    align-self: flex-start;
    justify-self: flex-start;
  }
}
.img__container:hover .img__overlay {
  transform: scale(1);
}
.img__container .img__overlay {
  align-items: center;
  background-color: var(--clr-blue-900-trans);
  bottom: 0;
  color: white;
  display: flex;
  font-size: 1rem;
  height: 100%;
  justify-content: center;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  transform: scale(0);
  transition: 1s ease;
  width: 100%;
}
@media (min-width: 750px) {
  .img__container .img__overlay {
    font-size: 1.2rem;
  }
}
.img__container .img__overlay-icon {
  color: var(--clr-blue-300);
  font-size: 1rem;
  margin-right: 0.4rem;
}
.img__container .img__overlay-text {
  color: var(--clr-white-500);
  display: flex;
  height: 100%;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.img__container .img__overlay-text a {
  align-items: center;
  align-self: center;
  color: white;
  display: flex;
  font-weight: var(--fw-light);
  height: 100%;
  justify-content: center;
  justify-self: center;
  position: relative;
  text-decoration: none;
  top: 0%;
  width: 100%;
}
.img__container .img__overlay-text a:hover {
  color: var(--clr-green-500);
  font-weight: var(--fw-medium);
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-color: inherit;
}

.blue-trans-box {
  background-color: var(--clr-blue-500-trans);
  border-radius: 1rem;
  margin-bottom: 1.6rem;
  padding: 1.2rem 0;
}
@media (min-width: 600px) {
  .blue-trans-box {
    padding: 1.2rem 2rem;
  }
}

#home .content__container {
  align-items: stretch;
  display: flex;
  flex-direction: row;
}

#home .content__box {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  width: 96%;
}
@media (min-width: 750px) {
  #home .content__box {
    max-width: 45%;
  }
}
#home .content__box .img__container {
  margin-bottom: 2rem;
}
#home .content__box .img__container picture {
  height: auto;
}
@media (min-width: 600px) {
  #home .content__box .img__container {
    margin-bottom: 0;
  }
}
#home .content__box h1,
#home .content__box h2,
#home .content__box h3 {
  align-self: center;
  border-bottom: 0;
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  font-weight: var(--fw-bold);
  margin-bottom: 0;
  padding-bottom: 0;
  text-align: center;
  text-transform: uppercase;
}
#home .content__box h1::after,
#home .content__box h2::after,
#home .content__box h3::after {
  background-color: var(--clr-green-500);
  color: var(--clr-green-500);
  content: "";
  display: inline-block;
  height: 6px;
  line-height: 1rem;
  margin-top: 0.4rem;
  width: 100%;
}
@media (min-width: 600px) {
  #home .content__box h1,
#home .content__box h2,
#home .content__box h3 {
    padding-bottom: 1rem;
    padding-top: 1.6rem;
  }
}
#home .content__box p {
  max-width: 500px;
}
#home .content__box p:first-of-type {
  padding-top: 1.2rem;
}
@media (min-width: 900px) {
  #home .content__box p:first-of-type {
    padding-top: 0;
  }
}

#home .one-of-four,
#home .two-of-four,
#home .three-of-four,
#home .four-of-four {
  padding-top: 2rem;
}

#home .one-of-four,
#home .two-of-four,
#home .three-of-four {
  border-bottom: 2px dashed var(--clr-grey-100);
}

@media (min-width: 800px) {
  #home .one-of-four {
    border-bottom: 2px dashed var(--clr-grey-100);
    padding-top: 0;
  }

  #home .two-of-four {
    border-bottom: 2px dashed var(--clr-grey-100);
    border-left: 2px dashed var(--clr-grey-100);
    padding-top: 0;
  }

  #home .three-of-four {
    border-bottom: 0;
    padding-bottom: 0;
    padding-top: 2.4rem;
  }

  #home .four-of-four {
    border-left: 2px dashed var(--clr-grey-100);
    padding-bottom: 0;
    padding-top: 2.4rem;
  }
}
.events-links-p {
  display: flex;
  flex-direction: column;
  text-align: center;
}

@media (min-width: 900px) {
  .events-links-p {
    flex-direction: row;
  }
}
.events-links {
  border: 1px solid #000c29;
  margin: 0 0.8rem 0.6rem 0.8rem;
  padding: 1rem 1.6rem;
  background-color: #000c29;
  color: white;
  border-radius: 0.25rem;
}

.events-links:hover {
  background-color: #0049f5;
  color: white;
}

.stay {
  border-bottom: 1px solid var(--clr-blue-200);
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}
@media (min-width: 600px) {
  .stay {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .stay > * {
    min-width: 40%;
  }
}
.stay .img__container {
  align-self: center;
  border-radius: 1rem;
  display: flex;
  justify-self: center;
  max-width: 420px;
}
.stay picture {
  display: flex;
  flex-direction: column;
  max-width: 420px;
}
.stay picture img {
  border-radius: 0.38rem;
  width: 100%;
}

.stay:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.stay h2 {
  color: var(--clr-grey-600);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-transform: capitalize;
}
.stay h2::after {
  background-color: var(--clr-blue-100);
  color: var(--clr-blue-500);
  content: "";
  display: block;
  height: 2px;
  margin: auto;
  margin-top: 1rem;
  width: 50px;
}
@media (min-width: 750px) {
  .stay h2::after {
    display: none;
  }
}

.stay img {
  display: block;
  height: auto;
  width: 100%;
}

.stay__intro {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.stay__text p {
  padding-bottom: 1rem;
}
@media (min-width: 600px) {
  .stay__text p {
    padding-left: 2rem;
  }
}

.stay__text p:first-of-type {
  font-weight: var(--fw-bold);
}

.courses {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 600px) {
  .courses {
    gap: 2rem;
  }
}

.course {
  display: flex;
  justify-content: center;
  max-width: 45%;
}
.course img {
  border-top-left-radius: 0.4rem;
  border-top-right-radius: 0.4rem;
  opacity: 0.7;
}
@media (min-width: 600px) {
  .course {
    max-width: 33%;
  }
}
@media (min-width: 1200px) {
  .course {
    max-width: calc(100% * 0.21);
  }
}
.course a {
  text-decoration: none;
}
.course a:hover p {
  background-color: var(--clr-green-500);
  color: var(--clr-blue-900);
  font-weight: var(--fw-bold);
}
.course a:hover img {
  opacity: 1;
}
.course a:hover img:hover {
  transition: opacity 1s ease;
}

.course p {
  background-color: var(--clr-blue-900);
  border-bottom-left-radius: 0.4rem;
  border-bottom-right-radius: 0.4rem;
  color: var(--clr-white-500);
  font-size: 0.6rem;
  font-weight: var(--fw-medium);
  margin-top: -0.3rem;
  padding: 0.6rem 0;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 600px) {
  .course p {
    font-size: 0.84rem;
  }
}

.contact__form {
  color: var(--fc-primary);
  display: flex;
  flex-direction: column;
  font-family: var(--ff-primary);
  padding: 4rem 0 0 0;
  width: 100%;
}
@media (min-width: 600px) {
  .contact__form {
    padding: 4rem 1.2rem 0 1.2rem;
  }
}
.contact__form input[type=text],
.contact__form input[type=email],
.contact__form textarea {
  border: 5px solid var(--clr-blue-100);
  font-weight: var(--fw-bold);
  outline: none;
  padding: 1rem;
}
.contact__form input[type=text]:focus,
.contact__form input[type=email]:focus,
.contact__form textarea:focus {
  border: 5px solid var(--clr-blue-800);
  color: var(--fc-primary);
  font-family: var(--ff-primary);
}
.contact__form input[type=text]:focus::placeholder,
.contact__form input[type=email]:focus::placeholder,
.contact__form textarea:focus::placeholder {
  color: var(--clr-blue-900);
  font-weight: var(--fw-bold);
}
.contact__form input,
.contact__form label,
.contact__form textarea {
  margin: auto;
  width: 100%;
}
.contact__form input {
  margin-bottom: 2rem;
}
.contact__form label {
  color: var(--clr-blue-800);
  font-size: 0.72rem;
  font-weight: var(--fw-bolder);
  letter-spacing: 0.1rem;
  padding-bottom: 0.2rem;
  text-align: left;
  text-transform: uppercase;
}
.contact__form textarea {
  margin-bottom: 2rem;
  min-height: 30vh;
  padding: 1rem;
}
.contact__form textarea:focus {
  outline: 0;
}

form,
::placeholder,
label,
button {
  color: var(--clr-blue-100);
  font-family: var(--ff-primary);
}

textarea {
  color: var(--clr-blue-100);
  font-family: var(--ff-primary);
}

::placeholder {
  font-weight: var(--fw-medium);
}

.contact__form-first-name label,
.contact__form-second-name label {
  align-self: flex-start;
  display: flex;
  flex-direction: column;
}

@media (min-width: 600px) {
  .contact__form-name {
    display: flex;
    flex-direction: row;
    margin-right: 1rem;
  }
  .contact__form-name label {
    text-align: left;
  }
  .contact__form-name > * {
    min-width: calc(100% / 2);
  }
  .contact__form-name .contact__form-first-name {
    display: flex;
    flex-direction: column;
    margin-right: 1rem;
  }
  .contact__form-name .contact__form-first-name,
.contact__form-name .contact__form-second-name {
    display: flex;
    flex-direction: column;
  }
}
.lclc-hero {
  border-radius: 1rem;
}

.tournament-info {
  background-color: var(--clr-blue-600-trans10);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  padding: 1rem 1rem 3rem 1rem;
  width: 100%;
}
.tournament-info h2,
.tournament-info h3 {
  color: var(--clr-blue-900);
  margin-bottom: 1rem;
}
.tournament-info h2 {
  color: var(--clr-black-500);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  padding: 1rem 0;
  text-transform: capitalize;
}
.tournament-info h3 {
  font-size: 0.8rem;
  text-transform: lowercase;
  width: 50%;
}
@media (min-width: 600px) {
  .tournament-info h3 {
    font-size: 1rem;
  }
}

.tournament-info__details {
  display: flex;
  flex-direction: column;
}
.tournament-info__details .tournament-info__details__icons {
  display: flex;
  flex-wrap: wrap;
}
.tournament-info__details .tournament-info__details__icons .detail {
  align-items: center;
  background-color: var(--clr-blue-100);
  border-radius: 0.4rem;
  color: var(--clr-blue-900);
  display: flex;
  flex-direction: column;
  margin: 0 0.4rem 1.2rem 0.4rem;
  min-height: 100px;
  padding: 1.2rem 0.6rem;
  text-align: center;
  width: calc(50% - 0.8rem);
}
@media (min-width: 600px) {
  .tournament-info__details .tournament-info__details__icons .detail {
    flex-direction: row;
    padding: 1.2rem 0.8rem;
  }
}
@media (min-width: 800px) {
  .tournament-info__details .tournament-info__details__icons .detail {
    padding: 1.2rem;
  }
}
.tournament-info__details .tournament-info__details__icons .detail .icon {
  border-radius: 50%;
  color: var(--clr-blue-900);
  font-size: 1.6rem;
  padding: 0.8rem;
}
@media (min-width: 600px) {
  .tournament-info__details .tournament-info__details__icons .detail .icon {
    font-size: 2rem;
    min-width: 84px;
  }
}
.tournament-info__details .tournament-info__details__icons .detail .icon > * {
  margin: auto;
}
.tournament-info__details .tournament-info__details__icons .detail .icon svg {
  margin-top: -0.3rem;
}
@media (min-width: 600px) {
  .tournament-info__details .tournament-info__details__icons .detail .icon svg {
    margin-top: 0.5rem;
  }
}
.tournament-info__details .tournament-info__details__icons .detail p {
  color: var(--clr-blue-900);
  font-size: 0.72rem;
  line-height: 1rem;
  padding-bottom: 1rem;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}
@media (min-width: 600px) {
  .tournament-info__details .tournament-info__details__icons .detail p {
    font-size: 0.8rem;
    padding-bottom: 0;
  }
}
@media (min-width: 1000px) {
  .tournament-info__details .tournament-info__details__icons .detail p {
    font-size: 0.92rem;
    padding-inline: 2rem;
    text-align: left;
  }
}

.tournament-info__schedule {
  display: flex;
  flex-direction: column;
}
.tournament-info__schedule .days {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 800px) {
  .tournament-info__schedule .days {
    align-items: stretch;
    flex-direction: row;
    justify-content: space-around;
  }
}
.tournament-info__schedule .days p {
  text-align: center;
}
.tournament-info__schedule .day {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-items: stretch;
  margin-bottom: 1.2rem;
}
.tournament-info__schedule .day > * {
  max-width: 300px;
}
@media (min-width: 600px) {
  .tournament-info__schedule .day {
    border-radius: 0.8rem;
    display: flex;
    flex-direction: column;
    padding: 0;
  }
}
.tournament-info__schedule .day p {
  font-size: 0.8rem;
  width: 100%;
}
.tournament-info__schedule .day p.date {
  background-color: var(--clr-blue-900);
  border-top-left-radius: 0.8rem;
  border-top-right-radius: 0.8rem;
  color: var(--clr-white-500);
  display: flex;
  justify-content: center;
  font-weight: var(--fw-medium);
  padding: 1rem 0;
  text-transform: capitalize;
}
.tournament-info__schedule .day p.course {
  background-color: var(--clr-blue-500);
  color: var(--clr-white-500);
  font-size: 0.64rem;
  margin-top: -0.3rem;
  padding: 0.6rem 0;
  text-transform: uppercase;
}
@media (min-width: 600px) {
  .tournament-info__schedule .day p.course {
    font-size: 0.8rem;
  }
}
.tournament-info__schedule .day p.tee-time {
  background-color: var(--clr-blue-900);
  border-bottom-left-radius: 0.8rem;
  border-bottom-right-radius: 0.8rem;
  color: var(--clr-white-500);
  font-size: 0.7rem;
  padding: 0.6rem 0;
}

.tournament-info__media {
  display: flex;
  flex-direction: column;
}
.tournament-info__media .videos {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-around;
}
@media (min-width: 900px) {
  .tournament-info__media .videos {
    flex-direction: row;
  }
}
.tournament-info__media .videos iframe {
  border: 10px solid var(--clr-blue-100);
  margin-bottom: 2rem;
  height: 180px;
  width: 320px;
}
@media (min-width: 500px) {
  .tournament-info__media .videos iframe {
    margin-bottom: 0;
    height: 225px;
    width: 400px;
  }
}
@media (min-width: 800px) {
  .tournament-info__media .videos iframe {
    margin-bottom: 0;
    height: 338px;
    width: 600px;
  }
}
@media (min-width: 1000px) {
  .tournament-info__media .videos iframe {
    margin-bottom: 0;
    height: 450px;
    width: 800px;
  }
}
@media (min-width: 1400px) {
  .tournament-info__media .videos iframe {
    margin-bottom: 0;
    height: 562px;
    width: 1000px;
  }
}
.tournament-info__media .videos iframe:last-of-type {
  margin-bottom: 0;
}

.tournament-info__prices {
  display: flex;
  flex-direction: column;
}
.tournament-info__prices .prices {
  align-items: stretch;
  display: flex;
  flex-direction: row;
  flex: 1 1 0;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-around;
  padding: 0;
}
@media (min-width: 600px) {
  .tournament-info__prices .prices {
    flex-wrap: wrap;
  }
}
.tournament-info__prices .prices .price {
  background-color: var(--clr-blue-900);
  border: 1px solid var(--clr-grey-200);
  border-radius: 1rem;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  margin: 0 0.6rem;
  min-width: 200px;
  padding: 2rem 0rem;
}
@media (min-width: 600px) {
  .tournament-info__prices .prices .price {
    padding: 2rem 1.2rem;
  }
}
.tournament-info__prices .prices .price p {
  color: var(--clr-blue-100);
  font-size: 0.64rem;
  font-weight: var(--fw-medium);
  line-height: 1.4rem;
  padding: 0 0.8rem;
  text-align: center;
}
@media (min-width: 600px) {
  .tournament-info__prices .prices .price p {
    font-size: 0.96rem;
  }
}
.tournament-info__prices .prices .price p.cost {
  color: var(--clr-white-500);
  display: block;
  font-size: 1.4rem;
  font-weight: var(--fw-bold);
  margin-bottom: 0.6rem;
}
@media (min-width: 600px) {
  .tournament-info__prices .prices .price p.cost {
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }
}
.tournament-info__prices .prices .price a.accommodation-details {
  border-radius: 0.4rem;
  border: 2px solid var(--clr-blue-100);
  color: var(--clr-blue-100);
  cursor: pointer;
  font-family: var(--ff-primary);
  font-size: 0.75rem !important;
  font-weight: var(--fw-bold);
  letter-spacing: 0.05rem;
  margin-top: 2rem;
  margin-inline: auto;
  padding: 1.2rem 0.8rem;
  transition: padding 3s, color 1s, border-radius 5s;
  text-decoration: none;
  text-transform: uppercase;
  max-width: 75%;
  width: auto;
}
.tournament-info__prices .prices .price a.accommodation-details:hover {
  background-color: var(--clr-blue-100);
  border-radius: 2rem;
  color: var(--clr-blue-900);
}

.tournament-info__button {
  display: flex;
  justify-content: center;
}
.tournament-info__button a {
  background-color: var(--clr-blue-500);
  border-radius: 0.6rem;
  color: var(--clr-white-500);
  display: block;
  font-size: 0.8rem;
  padding: 2rem 4rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 1s ease;
}
@media (min-width: 600px) {
  .tournament-info__button a {
    width: 500px;
  }
}
.tournament-info__button a:hover {
  background-color: var(--clr-blue-700);
}
@media (min-width: 600px) {
  .tournament-info__button a {
    font-size: 1rem;
  }
}

.courses {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.course {
  display: flex;
  justify-content: center;
  max-width: 45%;
  padding: 0.1rem;
}
.course img {
  opacity: 0.7;
}
@media (min-width: 600px) {
  .course {
    max-width: 33%;
  }
}
@media (min-width: 1200px) {
  .course {
    max-width: calc(100% * 0.21);
  }
}
.course a {
  text-decoration: none;
}
.course a:hover p {
  background-color: var(--clr-green-500);
  color: var(--clr-blue-900);
  font-weight: var(--fw-bold);
}
.course a:hover img {
  opacity: 1;
}
.course a:hover img:hover {
  transition: opacity 1s ease;
}

.course p {
  background-color: var(--clr-blue-900);
  color: var(--clr-white-500);
  font-weight: var(--fw-medium);
  padding: 0.6rem 0;
  text-align: center;
  text-transform: uppercase;
}

.friends {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 600px) {
  .friends {
    flex-direction: row;
  }
}
.friends .friend {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 600px) {
  .friends .friend {
    width: 30%;
  }
}
.friends .friend h2 {
  background-color: var(--clr-white-500);
  border: 2px solid var(--clr-blue-100);
  color: var(--clr-grey-800);
  font-size: 0.84rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.1rem;
  padding: 1rem 0;
}
.friends .friend img {
  align-self: center;
  justify-self: center;
  margin: auto;
  mix-blend-mode: multiply;
}
.friends .friend:hover {
  background-color: var(--clr-white-500);
}
.friends .friend:hover h2 {
  font-weight: var(--fw-bold);
}

.past-events {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2.6rem;
  justify-content: center;
  padding-top: 3rem;
}

.past-event {
  align-items: stretch;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  text-align: center;
}
.past-event img {
  border-radius: 1rem;
}
.past-event .past-event__overlay {
  align-items: center;
  background-color: var(--clr-blue-900-trans);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 5rem 3rem;
  position: absolute;
  text-align: center;
  top: 0;
  transition: background-color 1s ease;
  width: 100%;
}
.past-event .past-event__overlay p {
  color: var(--clr-green-500);
  font-size: 1.2rem;
  text-align: center;
  text-shadow: 1px 1px 1px #000;
}
.past-event .past-event__overlay p.date {
  color: var(--clr-white-500);
  display: flex;
  font-size: 2rem;
  font-weight: var(--fw-bold);
  height: 80%;
  justify-content: center;
  text-transform: uppercase;
}
.past-event .past-event__overlay:hover {
  background-color: transparent;
}

.past-trip .day {
  padding-bottom: 3rem;
}
.past-trip .day .past-event-images {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}
.past-trip .day .past-event-images img {
  border: 10px solid var(--clr-blue-100);
  justify-content: center;
  width: 100%;
}

/*# sourceMappingURL=style.css.map */
