@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

body,
html {
  padding: 0;
  margin: 0;
  min-width: 350px;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  flex-flow: column;
  background: #fff;
  color: #000;
  font-weight: 400;
  position: relative;
  min-height: 100vh;
}

body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(images/bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}

a {
  color: #0d1141;
  text-decoration: none;
  transition: all .3s;
}

a:hover {
    opacity: 0.7;
}

h1 {
  font-style: normal;
  font-weight: 800;
  font-size: 72px;
  line-height: 1.5;
  font-feature-settings: 'salt' on, 'liga' off;
  background: linear-gradient(90.37deg, #75E3EA -1.52%, #D6B1FF 94.18%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin: 0 0 35px 0;
}

.wrapper-2 {
  width: calc(100% - 40px);
  max-width: 1590px;
  margin: 0 auto;
}

main {
  flex-grow: 1;
  display: flex;
  margin-bottom: 300px;
  flex-flow: column;
}

main .wrapper-2 {
  flex-grow: 1;
  margin: 0 auto;
  display: flex;
  flex-flow: column;
  justify-content: center;
}

p {
  margin: 0;
  margin-bottom: 20px;
}

header {
  margin-top: 50px;
  margin-bottom: 50px;
}

.contact {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.block {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.block-l {
  max-width: 100%;
  width: 350px;
  opacity: 0.6;
  margin: 0 15px 30px 15px;
}

.contact-icon {
  margin-right: 8px;
}

.contact span {
  opacity: 0.6;
}

.foot-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 15px;
}

.foot-item__icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 12px;
}

footer {
  margin-bottom: 45px;
}

.ellipse-1 {
    background-image: url(images/ellipse-1.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: auto;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    z-index: -1;
}

.ellipse-2 {
    background-image: url(images/ellipse-2.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: auto;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    z-index: -1;
}

@media screen and (max-width: 800px) {
    h1 {
        font-size: 24px;
    }
}
