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

body {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: url(../img/bg.jpg) 50%/cover;
  overflow: hidden;
}

header .i-1 {
  position: absolute;
  left: 0;
  z-index: 9;
}
header .i-2 {
  position: absolute;
  right: 0;
  z-index: 8;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
main .logo {
  text-align: center;
}
main .buttons {
  --gap: 150px;
  position: relative;
  display: flex;
  justify-content: center;
  gap: var(--gap);
  padding: 60px 60px;
  width: calc(100% - 200px);
  margin: 250px auto 0;
}
main .buttons::before, main .buttons::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 16px;
  background: linear-gradient(90deg, #115CA2, 0, #069FD4 100%);
}
main .buttons::before {
  top: 0;
}
main .buttons::after {
  bottom: 0;
}
main .buttons a {
  font-family: Tahoma;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 0 50%;
  font-size: 30px;
  font-weight: 700;
  padding: 46px 60px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 150px;
  background: #fff;
  color: #000;
  box-shadow: 4px 4px 6px 0 rgba(0, 0, 0, 0.3);
}
main .buttons a.btn-color {
  background: linear-gradient(171deg, #e63c32 0%, #e9512b 29.71%, #f28c1a 100%);
  color: #fff;
}
main .buttons a.btn-white span {
  background: linear-gradient(171deg, #e63c32 0%, #e9512b 29.71%, #f28c1a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

footer .i-1 {
  position: absolute;
  bottom: -5px;
  left: 0;
  z-index: 9;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: var(--radius);
  font-family: Tahoma;
  padding: 250px 350px;
  max-width: 1200px;
  box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: 0.25s;
  z-index: 99;
  pointer-events: none;
}
.modal.is-active {
  top: 50%;
  opacity: 1;
  pointer-events: inherit;
}
.modal .h1 {
  font-size: 50px;
  color: #E2000F;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
}
.modal .qr {
  margin: 60px 0;
}
.modal .link {
  font-size: 40px;
  text-align: center;
}
.modal .close {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 50px;
}

.ex-container {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.ex-container a {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 40px;
  color: #000;
  text-decoration: none;
  border-bottom: 5px solid #e95b20;
  padding-bottom: 30px;
}

#ex {
  padding-inline: 100px;
}