@font-face {
  font-family: 'UEFA Supercup';
  src: url('./fonts/UEFASupercup-Light.woff2') format('woff2'),
  url('./fonts/UEFASupercup-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'UEFA Supercup';
  src: url('./fonts/UEFASupercup-Bold.woff2') format('woff2'),
  url('./fonts/UEFASupercup-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'UEFA Supercup';
  src: url('./fonts/UEFASupercup-Regular.woff2') format('woff2'),
  url('./fonts/UEFASupercup-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

html{
  height: 100%;
  font-family: 'UEFA Supercup', Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

:root {
  --bg-top-color: #184352;
  --bg-bottom-color: #fff;
}


.Container{
  width: 100%;
  /* height: 100vh; */
  min-height: -webkit-fill-available;
  display: flex;
  flex-direction: column;
  position: relative;
}
.Color_Block{
  width: 100%;
  display: flex;
  justify-content: center;
}
.Color_Block--green{
  background-color: var(--bg-top-color);
  align-items: flex-end;
  padding-bottom: 3.75rem;
}

.Color_Block--red{
  /* height: 50%; */
  background-color: var(--bg-bottom-color);
  justify-content: flex-start;
  padding-top: 3.75rem;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.Color_Block--red svg{
  max-width: 300px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 1;
}

.Color_Block--red svg path{
  fill: #A0ABF4;
}

.Become_Block{
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  /* margin-top: -22px; */
  /* margin-left: -58px; */
  padding: 11px 22px;
  transform: translate3d(-50%, -50%, 0);
  
  font-weight: bold;
  font-size: 22px;
  background-color: #fff;
  color: #3C4899;
  border-radius: 2px;

}

.Link{
  margin-top: 0rem;
  display: inline-block;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  /*border-bottom: 1px solid #fff;*/
  padding-bottom: 2rem;
}


.Link__Icon{
  position: relative;
  top: 5px;
  transform: translate3d(0, 0, 0);
  transition: all .15s ease-in-out;
}

.Link:hover .Link__Icon{
  transform: translate3d(1rem, 0, 0);
}

.Text__Block{
  margin-top: 2rem;
  max-width: 750px;
  text-align: left;
  color: var(--bg-top-color);
  line-height: 105%;
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
}

.Text__Block{
  margin-left: 20px;
  margin-right: 20px;
}

.Text__Block img{
  width: 50px;
  margin-right: 40px;
}

.Text__Block h2{
  font-weight: bold;
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 0.5rem;
  line-height: 100%;  
}

.Text__Block p {
  font-size: 14px;
  line-height: 95%;
}

.Text__Block a{
  margin-top: 1rem;
  display: inline-block;
  text-decoration: none;
  background-color: #E45856;
  border: 1px solid #E45856;
  border-radius: 0;
  padding: 9px 20px 8px;
  font-weight: normal;
  font-size: 18px;
  line-height: 100%;
  color: var(--bg-top-color);
  border-radius: 4px;
  transition: all .15s ease-out;
}

.Text__Block a:hover{
  background-color: #F8E5DC;
  color: #E45856;
}

.Footer{
  margin-top: 100px;
  /* position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%; */
}



.Footer__Content{
  text-align: center;
  color: var(--bg-top-color);
  font-size: 12px;
  line-height: 16px;
  position: relative;
  z-index: 3;
  padding: 0 16px;
  padding-bottom: 8px;
}

.Footer__Content .Footer__Text{}
.Footer__Content .Footer__Separator{}

.Footer__Content a{
  color: var(--bg-top-color);
  text-decoration: none;
}

.Logo--mug{
  max-width: 300px;
  width: 100%;
}


@media screen and (max-width: 462px) {
  .Logo--mug{
      width: 50%;
  }
  .Logo--o79{
      width: 80%;
  }

  .Become_Block{
      font-size: 20px;
      right: 0;
      left: 0;
      margin-left: 0;
      text-align: center;
  }

  .Link{
      font-size: 14px;
  }

  .Link__Icon{
      top: 8px;
  }

  .Footer__Content{
      font-size: 10px;
  }

  .Color_Block--green{
      height: 20%;
      align-items: center;
      padding: 0;
  }
  .Color_Block--red{
      padding-top: 1rem;
      height: 80%;
  }

  .Color_Block--green img{
      transform: translateY(-10px);
  }

  .Text__Block{
      padding-left: 1rem;
      padding-right: 1rem;
  }

  .Become_Block{
      top: 20%;
      font-size: 18px;
      padding: 6px 22px;
  }
}

@media screen and (max-width: 321px) {
  .Footer__Content{
      font-size: 9px;
  }
}