@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100&display=swap");
/**
*
* Testing
*
**/
.icon {
  height: 80px;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
  /* Icon 4 */
}
.icon.active #nav-icon span {
  background: #2ca2c5;
}
.icon #nav-icon {
  width: 30px;
  position: relative;
  margin-top: -20px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 99;
}
.icon #nav-icon span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #fff;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.icon #nav-icon span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
.icon #nav-icon span:nth-child(2) {
  top: 10px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
.icon #nav-icon span:nth-child(3) {
  top: 20px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
.icon #nav-icon.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -3px;
  left: 8px;
}
.icon #nav-icon.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.icon #nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 18px;
  left: 8px;
}

.nav {
  position: absolute;
  left: 0;
  right: 100px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  height: 80px;
}
@media (max-width: 575px) {
  .nav {
    justify-content: center;
    width: 100%;
  }
}
.nav .logo {
  padding: 15px;
  height: 100%;
}
@media (max-width: 575px) {
  .nav .logo {
    height: 80%;
  }
}
.nav .side {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav .navList {
  height: 100%;
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding-top: 10px;
}
@media (max-width: 575px) {
  .nav .navList {
    display: none;
  }
}
.nav .navList a {
  text-decoration: none;
  color: white;
}
.nav .navList a:hover {
  opacity: 0.8;
}
.nav .navList li {
  margin-left: 30px;
}
.nav .navList .searchIco {
  margin-top: -5px;
  height: 25px;
  filter: invert(1);
}

.pageNav {
  z-index: 4;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
.pageNav * {
  transition: all 0.5s;
}
.pageNav ul {
  list-style: none;
  padding-right: 15px;
}
.pageNav ul .pageNavLink {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 15px;
  margin-top: 15px;
  padding: 10px;
  cursor: pointer;
  position: relative;
}
.pageNav ul .pageNavLink .title {
  right: 50px;
  opacity: 0;
  border-radius: 30px;
  position: absolute;
  min-width: 100px;
  text-align: end;
  font-size: 0.9rem;
  font-weight: 300;
}
.pageNav ul .pageNavLink .title * {
  transition: all 0.25s;
}
.pageNav ul .pageNavLink .title:after {
  content: "";
  border-bottom: 3px solid #2ca2c5;
  position: absolute;
  bottom: -5px;
  width: 0%;
  margin-left: auto;
  margin-right: auto;
  right: 0;
  transition: all 0.5s;
}
.pageNav ul .pageNavLink .circle {
  background: rgba(255, 255, 255, 0.301);
  height: 10px;
  width: 10px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid rgba(255, 255, 255, 0.493);
}
.pageNav ul .pageNavLink .circle .text {
  display: none;
  font-size: 0.8rem;
  color: white;
}
.pageNav ul .pageNavLink.active .title {
  opacity: 1;
}
.pageNav ul .pageNavLink.active .title:after {
  content: "";
  border-bottom: 3px solid #2ca2c5;
  position: absolute;
  bottom: -5px;
  width: 40%;
  margin-left: auto;
  margin-right: auto;
  right: 0;
  transition: all 0.5s;
}
.pageNav ul .pageNavLink.active .circle {
  transform: scale(1.5);
  background: rgba(29, 29, 29, 0.651);
}
.pageNav ul .pageNavLink.active .circle .text {
  display: block;
}
.pageNav ul .pageNavLink:hover .title {
  opacity: 1;
}
.pageNav ul .pageNavLink:hover .title:after {
  width: 40%;
}
.pageNav ul .pageNavLink:hover .circle {
  transform: scale(1.5);
  background: rgba(29, 29, 29, 0.651);
}
.pageNav ul .pageNavLink:hover .circle .text {
  display: block;
}

.search-overlay {
  z-index: -1000;
  overflow: hidden;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.search-overlay.s--active {
  z-index: 9999;
}

.search {
  position: relative;
  margin-top: 5px;
  margin-left: 30px;
  width: 50px;
  height: 50px;
  perspective: 1000px;
}
.search:not(.s--active) {
  cursor: pointer;
}
.search.s--hidden {
  opacity: 0;
}
.search.s--cloned {
  position: absolute;
  left: 50%;
  top: 50%;
  right: auto;
  bottom: auto;
  margin-left: -25px;
  margin-top: -25px;
  margin-right: 0;
  margin-bottom: 0;
}
.search.s--moving {
  transition: transform 0.4s cubic-bezier(0.56, -0.49, 0.58, 0.9);
}
.search__bg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: white;
  transition: all 0.6s ease;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
}
.search.s--active .search__bg {
  transform: translate3d(-50%, -50%, 0) scale(111.36);
}
.search__box {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  border: 4px solid #000;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  transition: all 0.45s ease;
  border-radius: 50%;
}
.search.s--active .search__box {
  width: 510px;
  height: 100px;
  border-radius: 50px;
}
.search__input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  pointer-events: none;
  opacity: 0;
  color: #000;
  font-size: 40px;
  transition: opacity 0s;
}
.search__input::placeholder {
  color: rgba(63, 63, 63, 0.4);
}
.search.s--active .search__input {
  padding: 0 90px 23px 40px;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.18s 0.48s;
}
.search__line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 4px;
  border-radius: 2px;
  background: #000;
  transform-origin: 0 50%;
  transform: translate(6px, 6px) rotate(45deg);
  transition: all 0.48s;
}
.search__line:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: inherit;
  height: inherit;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
  opacity: 0;
  transition: opacity 0.3s;
}
.search.s--active .search__line:before {
  opacity: 1;
  transition: opacity 0.3s 0.42s;
}
.search.s--active .search__line {
  width: 36px;
  height: 6px;
  transform: translate(180px, 11px) rotate(-45deg);
}
.search__close {
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 30px;
  pointer-events: none;
}
.search.s--active .search__close {
  right: 44px;
  top: 33px;
  pointer-events: auto;
  cursor: pointer;
}

.sideNav {
  position: fixed;
  z-index: 6;
  top: 0;
  bottom: 0;
  right: -300px;
  width: 280px;
  transition: all 0.5s;
}
.sideNav.show {
  right: 0;
  transition: all 0.5s;
}
.sideNav .navMenu {
  background-color: #fff;
  height: 100%;
  max-height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
  transition: all 0.5s;
  padding-bottom: 30px;
  padding-right: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sideNav .navMenu.show {
  right: 0;
}
.sideNav .navMenu .logo {
  margin-top: 15px;
}
.sideNav .navMenu .logo img {
  padding: 10px;
  width: 200px;
}
.sideNav .navMenu .navList {
  list-style: none;
  padding: 0;
  display: grid;
  grid-gap: 15px;
  align-items: flex-end;
  text-align: right;
  padding-right: 30px;
}
.sideNav .navMenu .navList li {
  position: relative;
}
.sideNav .navMenu .navList li a {
  text-decoration: none;
  color: black;
  position: relative;
  font-size: 1.2rem;
}
.sideNav .navMenu .navList li a:after {
  content: "";
  border-bottom: 3px solid #2ca2c5;
  position: absolute;
  bottom: -5px;
  width: 0%;
  margin-left: auto;
  margin-right: auto;
  right: 0;
  transition: all 0.5s;
}
.sideNav .navMenu .navList li a:hover:after {
  width: 75%;
  transition: all 0.5s;
}
.sideNav .navMenu .navList li a.active {
  font-weight: 600;
}
.sideNav .navMenu .navList li a.active:after {
  content: "";
  border-bottom: 3px solid #2ca2c5;
  position: absolute;
  bottom: -5px;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
  right: 0;
}
.sideNav .navMenu .socialLinks {
  padding-bottom: 30px;
  padding-right: 30px;
  text-align: right;
}
.sideNav .navMenu .socialLinks img {
  width: 30px;
}

.navMegaMenu .megaContent {
  padding: 30px;
  background-color: white;
  position: absolute;
  left: -100%;
  top: 0;
  bottom: 0;
  right: 100%;
  z-index: 99;
  overflow: hidden;
  border-right: 1px solid #2ca2c5;
}
.navMegaMenu .megaContent a {
  color: black;
  text-decoration: none;
  transition: all 0.5s;
}
.navMegaMenu .megaContent a:hover {
  color: #2ca2c5;
  transition: all 0.5s;
}
.navMegaMenu .megaContent.active {
  left: 0;
  right: 280px;
  transition: all 0.5s;
}
.navMegaMenu .megaContent .title {
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
  position: relative;
}
.navMegaMenu .megaContent .title:after {
  content: "";
  border-bottom: 4px solid #2ca2c5;
  position: absolute;
  bottom: -5px;
  width: 150px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
}
.navMegaMenu .megaContent .content {
  margin-top: 40px;
}
.navMegaMenu .megaContent .content table {
  border-collapse: collapse;
  width: 100%;
}
.navMegaMenu .megaContent .content table th {
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
}
.navMegaMenu .megaContent .content table tr {
  border-bottom: 1px solid #dadada;
  padding-bottom: 10px;
  height: 60px;
  font-size: 0.9rem;
}

html,
body {
  overflow: hidden;
  margin: 0;
  padding: 0;
  font-family: Montserrat;
}

.background {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
  will-change: transform;
  backface-visibility: hidden;
  height: 130vh;
  position: fixed;
  width: 100%;
  transform: translateY(30vh);
  transition: all 1.2s cubic-bezier(0.22, 0.44, 0, 1);
}
.background:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.background:first-child {
  background-image: url(https://i.postimg.cc/kXq9Qmnj/bgd1.jpg);
  transform: translateY(-15vh);
}
.background:first-child .content-wrapper {
  transform: translateY(15vh);
}
.background:nth-child(2) {
  background-image: url(https://i.postimg.cc/W14vywqg/photo-1424746219973-8fe3bd07d8e3.jpg);
}
.background:nth-child(3) {
  background-image: url(https://i.postimg.cc/TY0xQ41T/photo-1433840496881-cbd845929862.jpg);
}

/* Set stacking context of slides */
.background:nth-child(1) {
  z-index: 3;
}

.background:nth-child(2) {
  z-index: 2;
}

.background:nth-child(3) {
  z-index: 1;
}

.content-wrapper {
  height: 100vh;
  transform: translateY(40vh);
  will-change: transform;
  backface-visibility: hidden;
  transition: all 1.7s cubic-bezier(0.22, 0.44, 0, 1);
}

.background.up-scroll {
  transform: translate3d(0, -15vh, 0);
}
.background.up-scroll .content-wrapper {
  transform: translateY(15vh);
}
.background.up-scroll + .background {
  transform: translate3d(0, 30vh, 0);
}
.background.up-scroll + .background .content-wrapper {
  transform: translateY(30vh);
}

.background.down-scroll {
  transform: translate3d(0, -130vh, 0);
}
.background.down-scroll .content-wrapper {
  transform: translateY(40vh);
}
.background.down-scroll + .background:not(.down-scroll) {
  transform: translate3d(0, -15vh, 0);
}
.background.down-scroll + .background:not(.down-scroll) .content-wrapper {
  transform: translateY(15vh);
}

/**
*
* Testing
*
**/
.container .fifa-video {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  left: 0;
  right: 0;
  top: 0;
}

.content-wrapper {
  display: flex;
  margin-left: 24px;
  color: #fff;
  align-items: flex-end;
  font-family: Montserrat;
  text-transform: uppercase;
  will-change: transform;
  text-align: left;
  position: relative;
}
.content-wrapper .hero {
  text-align: center;
  width: 100%;
  font-family: "Exo 2";
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.content-wrapper .hero .title {
  font-size: 8rem;
  line-height: 7rem;
  text-shadow: 4px 5px 16px black;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .content-wrapper .hero .title {
    font-size: 3rem;
    line-height: 2.8rem;
  }
}
.content-wrapper .hero .fc-24 {
  text-shadow: 1px 1px 22px green, -1px -1px 22px green;
}
.content-wrapper .hero .btn-register {
  --b: 3px;
  /* border thickness */
  --s: 0.15em;
  /* size of the corner */
  --c: #fff;
  margin-top: 30px;
  text-decoration: none;
  padding: calc(0.05em + var(--s)) calc(0.3em + var(--s));
  color: var(--c);
  --_p: var(--s);
  background: conic-gradient(from 90deg at var(--b) var(--b), #0000 90deg, var(--c) 0) var(--_p) var(--_p)/calc(100% - var(--b) - 2 * var(--_p)) calc(100% - var(--b) - 2 * var(--_p));
  transition: 0.3s linear, color 0s, background-color 0s;
  outline: var(--b) solid #0000;
  outline-offset: 0.2em;
}
.content-wrapper .hero .btn-register:hover,
.content-wrapper .hero .btn-register:focus-visible {
  --_p: 0px;
  outline-color: var(--c);
  outline-offset: 0.05em;
}
.content-wrapper .hero .btn-register:active {
  background: var(--c);
  color: #fff;
}
.content-wrapper .hero .btn-register {
  font-family: system-ui, sans-serif;
  font-weight: bold;
  font-size: 4rem;
  cursor: pointer;
  border: none;
  margin: 0.1em;
}
@media (max-width: 575px) {
  .content-wrapper .hero .btn-register {
    font-size: 2rem;
  }
}
.content-wrapper.wrapper2 {
  justify-content: flex-end;
  margin-right: 25px;
  align-items: flex-end;
  font-family: Montserrat;
  text-transform: uppercase;
  will-change: transform;
  text-align: right;
}
.content-wrapper .title {
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.5;
  margin: 0;
}
.content-wrapper .subtitle {
  font-size: 2rem;
  font-weight: lighter;
  margin: 0;
  line-height: 1.5;
}
.content-wrapper .title2 {
  font-weight: 700;
  font-size: 1.2rem;
}
.content-wrapper .subtitle2 {
  font-weight: 300;
  width: 50%;
  font-size: 0.8rem;
  line-height: 1.5;
}

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