* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  position: relative;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  background: url("./images/bg.webp") no-repeat center / cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 1vh;
}

.header {
    position: absolute;
    left: 0;
    top:0;
    width: 100%;
    padding: 1.48vh;
    background-color: #111135;
    border-bottom: 0.1vh solid #2a2a49;
    display: flex;
    align-items: center;
}

.logo {
    height: 2.22vh;
    display: inline-block;
}
.logo img {
    height: 100%;
}

.center-wrapper {
    margin: -9vh 0 0;
    padding: 0 1vh;
    width: 100%;
    max-width: 69.5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.img-wrapper {
    height: 46.66vh;
}

.img-wrapper img {
    height: 100%;
}

.info-wrapper {
    overflow: hidden;
    position: relative;
    padding: calc(4.44vh + 0.1vh) calc(5.18vh + 0.1vh);
    border-radius: 2.96vh;
    background: 
        linear-gradient(#111135, #111135) padding-box,
        linear-gradient(135deg, #50F26A, #008BFF) border-box;
    border: 0.1vh solid transparent;
}



.info-wrapper:after, .info-wrapper:before {
    content: "";
    position: absolute;
    left: -50%;
    top: -50%;
    width: 50%;
    height: 50%;
    background-color: #50F26A;
    filter: blur(12.96vh);
}

.info-wrapper::before {
    left: auto;
    right: -60%;
    top: auto;
    bottom: -60%;
    background-color: #008BFF;
}

.info-item-flag {
    height: 9.26vh;
}

.info-item-flag img {
    height: 100%;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 2.1vh
}

.info-item-text {
    color: #50F26A;
    font-size: 2.4vh;
    font-weight: 800;
    line-height: 1;
    font-style: italic;
    letter-spacing: 0.04vh;
    text-transform: uppercase;
}

  .contacts-wrapper {
    margin: 1.48vh auto;
    color: #fff;
    font-weight: 800;
    font-size: 1.48vh;
    text-align: center;
    font-style: italic;
    letter-spacing: 0.32px;
    line-height: 1.2;
  }

    .contacts-wrapper a {
        color: #50F26A;
    }

  @media only screen and (min-width: 0) and (orientation: portrait) {
    .logo {
      height: 10.6vw;
    }
    .header {
      padding: 2.1vw  3.2vw;
      border-bottom: 0.32vw solid #2a2a49;
    }
    .img-wrapper {
        height: 76.8vw;
    }
    .info-wrapper {
        padding: calc(6.4vw + 0.1vw) calc(6.4vw + 0.1vw);
        border-radius: 8.5vw;
    }
    .info-item {
        align-items: flex-start;
        margin-bottom: 4.26vw;
    }
    .info-item-text {
        font-size: 4.26vw;
    }
    .info-item-flag {
        height: 10.6vw;
    }
    .info-wrapper:after {
        left: -40%;
        top: -40%;
        width: 40%;
    }
     .info-wrapper:before {
        right: -40%;
        bottom: -40%;
        width: 40%; 
    }
     .contacts-wrapper {
        margin: 4.2vw auto;
        font-size: 3.4vw;
     }
     .center-wrapper {
        width: 80vw;
     }
  }

