@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

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

header .i-1 {
  position: absolute;
  left: 0;
  z-index: 9;
}
header .i-2 {
  position: absolute;
  right: 0;
  width: 800px;
  z-index: 810;
}

main {
  height: 100%;
}

main .center {
  display: flex;
  align-items: end;
  justify-content: center;
  height: 100%;
  padding-bottom: 6vh;
}
main .center .logo {
  flex: 1 0 20%;
  text-align: center;
}
main .center .logo img {
  height: 60vh;
}
main .center .button-container {
  display: flex;
  flex: 1;
}
main .center .buttons {
  --gap: 150px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--gap);
  padding: 150px 0;
  width: calc(100% - 200px);
  margin-right: 50%;
  margin-left: -30%;
  margin-bottom: 15%;
}
main .center .buttons::before, main .center .buttons::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 7px;
  background: linear-gradient(90deg, #115CA2, 0, #069FD4 100%);
}
main .center .buttons::before {
  top: 0;
}
main .center .buttons::after {
  bottom: 0;
}
main .center .buttons a {
  font-family: "PT Sans Narrow", "Tahoma";
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 0 50%;
  font-size: 42px;
  font-weight: 600;
  padding: 46px 60px;
  line-height: 1.6;
  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 .center .buttons a.btn-color {
  background: linear-gradient(171deg, #d43216 0%, #d94e33 29.71%, #b21e17 100%);
  color: #fff;
}
main .center .buttons a.btn-white {
  color: #d94529;
}

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

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: var(--radius);
  font-family: Tahoma;
  padding: 150px 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: 20px;
  font-size: 32px;
  color: #000;
  text-decoration: none;
  border-bottom: 5px solid #e95b20;
  padding-bottom: 15px;
}
.ex-container img {
  width: 250px;
}

#ex {
  padding-inline: 100px;
}

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