@import url("https://fonts.googleapis.com/css?family=Manrope:500,400");

:root {
  --black: #101010;
  --white: #ffffff;
  --white2: #ffffff05;
  --font-size-s: 15px;
  --font-size-l: 21px;
  --font-size-h1: 114.7px;
  --font-size-h2: 48px;
  --font-size-h3: 29.82px;
  --font-size-h4: 21px;
  --font-family-gramatika_demo-regular: "Gramatika Demo-Regular", Helvetica;
  --font-family-manrope: "Manrope", Helvetica;
  --blue: #3B2AFF;
}
html, body {
  overflow-x: hidden;
}
body {
  font-family: var(--font-family-manrope);
  color: var(--white);
  background: var(--black);
  font-size: var(--font-size-s);
  line-height: 1.36em;
  position: relative;
}
.container {
  width: 1280px;
  margin: 50px auto;
  display: grid;
  gap: 100px;
  max-width: 100%;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}
h1, h2, h3, h4 {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-family: var(--font-family-gramatika_demo-regular);
}
h1, .h1 {
  font-size: var(--font-size-h1);
  line-height: var(--font-size-h1);
  grid-area: h1;
}
h2 {
  font-size: var(--font-size-h2);
  line-height: var(--font-size-h2);
  grid-area: h2;
}
h3, .h3 {
  font-size: var(--font-size-h3);
  line-height: var(--font-size-h3);
  grid-area: h3;
}
h4 {
  font-size: var(--font-size-h4);
  line-height: var(--font-size-h4);
  grid-area: h4;
}
h1, h2 span, h1 span, .h1 span {
  background: linear-gradient(90.17deg, #3B2AFF -2.59%, #50FF24 91.59%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
h3 span {
  background: linear-gradient(90.05deg, #3B2AFF -60.28%, #50FF24 257.94%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
img {
  max-width: 100%;
  height: auto;
  width: 100%;
  object-fit: contain;
}
ul {
  padding: 0;
  list-style-type: none;
}
ul li {
  margin-bottom: 15px;
  padding-left: 10px;
  position: relative;
}
ul li:last-child {
  margin-bottom: 0;
}
ul li:before {
  background: linear-gradient(90.17deg, #3B2AFF -2.59%, #50FF24 91.59%);
  content: '';
  border-radius: 50%;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
ul li span{
  font-size: var(--font-size-l);
  margin-right: 5px;
}
p {
  margin: 0;
}
.text {
  gap: 20px 30px;
  grid-area: text;
}
.inline {
  display: inline;
}

.header {
  display: grid;
  grid-auto-rows: 1fr;
  grid-template-columns: max-content auto auto;
  grid-template-rows: 1fr;
  gap: 30px;
  grid-template-areas: "sitename menu callback";
  justify-content: space-between;
  justify-items: stretch;
  align-items: center;
}

.sitename {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 0px 0px;
  grid-template-areas: "name"
    "desc";
  grid-area: sitename;
  font-family: var(--font-family-gramatika_demo-regular);
  gap: 10px;
}

.name {
  grid-area: name;
  font-size: 22.9px;
}

.desc {
  grid-area: desc;
  font-size: var(--font-size-l);
  font-weight: 500;
  line-height: 1.36em;
}
.header .desc {
  font-size: var(--font-size-s);
}

.menu {
  grid-area: menu;
  display: grid;
  gap: 20px;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
}

.callback {
  grid-area: callback;
  background: var(--blue);
  font-size: 18px;
  line-height: 18px;
  color: var(--white);
  font-family: var(--font-family-gramatika_demo-regular);
  border-radius: 229.39px;
  padding: 8px 15px;
  z-index: 999;
  text-align: center;
}






.first {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 20px;
  grid-auto-flow: row;
  grid-template-areas: "h2 h2 ."
    "text text ."
    "desc desc .";
  position: relative;
}
.first:after {
  content: '';
  height: 307px;
  right: -50px;
  top: -120px;
  width: 639px;
  position: absolute;
  background: url('/img/first.svg') no-repeat center;
}

.first h2 {
  width: 80%;
}

.first .text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-auto-flow: row;
  grid-template-areas: ". .";
  border: 0.46px solid;
  border-image-source: linear-gradient(287.41deg, #FFFFFF -32.38%, rgba(255, 255, 255, 0) 100.09%);
}



.second {  
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-auto-flow: row;
  gap: 20px;
  grid-template-areas:
    "h3 h3 ."
    "text text .";
}
.second.full_title {
  grid-template-areas: "h3 h3 h3" "text text .";
}

.second .text {  
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-auto-flow: row;
  grid-template-areas:
    ". .";
}


.title .grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: minmax(10px, auto);
  grid-auto-flow: row;
  gap: 20px; 
  justify-items: center;
  align-items: flex-start;
}

.title .grid div {
  -webkit-backdrop-filter: blur(20.645160675048828px) brightness(100%);
  backdrop-filter: blur(20.645160675048828px) brightness(100%);
  background-color: var(--white2);
  border-color: transparent;
  border-image: linear-gradient(to bottom, rgb(255, 255, 255), rgba(255, 255, 255, 0)) 1;
  border-radius: 7.8px;
  gap: 5px;
  padding: 6.881720542907715px 9.175626754760742px;
  position: relative;
  width: 75%;
  align-items: center;
  justify-items: start;
  border: 0.3px solid #949494;
}
.title .grid div:first-child {
  justify-self: end;
}
h4 + p {
  margin-top: 5px;
}
.title .grid div p {
  grid-area: text;
}
.title .grid div:nth-child(2n+1) {
  bottom: 30px;
}
.title .grid div:nth-child(2n) {
  top: -160px;
}



.third {  
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: auto;
  grid-auto-flow: row;
  gap: 20px;
}
.fourth {  
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  grid-auto-flow: row;
  gap: 20px;
  grid-template-areas:
    "h2 h2"
    "text text";
}
.fourth .text {  
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-auto-flow: row;
  grid-template-areas:
    ". .";
}



.five {
  display: grid; 
  grid-template-columns: 1fr 1fr 1fr; 
  grid-template-rows: 1fr 1fr; 
  grid-template-areas: 
    "h3 h3 h3"
    ". text text"; 
  position: relative;
  gap: 0px 45px;
}
.five:after {
  content: '';
  height: 776px;
  right: -50px;
  top: -260px;
  width: 1226px;
  position: absolute;
  background: url('/img/second.svg') no-repeat center;
}
.five .text {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-auto-flow: row;
  gap: 20px 45px;
  grid-template-areas:
    ". .";
}
.five h3 {
  position: relative;
  text-align: center;
}
.five h3:before, .five h3:after {
  background: background: linear-gradient(90.05deg, #3B2AFF -60.28%, #50FF24 257.94%);
  content: '';
  border-radius: 50%;
  width: 14.68px;
  height: 14.68px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -7.34px;
  margin: auto;
}
.five h3:after {
  right: -7.34px;
  left: auto;
}


.six {
  display: grid; 
  grid-template-columns: 1fr 1fr 1fr; 
  grid-template-rows: auto; 
  gap: 20px; 
  grid-template-areas: 
    "h2 h2 ."
    "desc desc ."
    "items items items"; 
}
.six .desc {
  font-weight: 400;
}
.six h2, .six .desc {
  width: 80%;
}
.six .items { 
  grid-area: items; 
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  grid-auto-flow: row;
  gap: 20px 45px;
  grid-template-areas:
    ". . .";
}
.six .items .item:nth-child(2) {
  margin-top: 60px;
}
.six .items .item:nth-child(3) {
  margin-top: 120px;
}
.six .items h3 {
  display: inline-block;
  padding: 5px 13px;
  background: linear-gradient(90.05deg, #3B2AFF -60.28%, #50FF24 257.94%);
  border-radius: 229.39px;
  margin-bottom: 20px;
}
.six .items .infos {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: min-content;
  grid-auto-flow: row;
  gap: 20px;
}

.seven {  
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-auto-flow: row;
  gap: 20px 80px;
  grid-template-areas:
    "h2 h2 h2" "oblako . server" "h3 h3 h3";
  justify-content: space-between; 
}
.seven h3 {
  font-size: 30px;
  margin-bottom: 10px;
}
.seven #oblako {
  grid-area: oblako; 
}
.seven #server {
  grid-area: server; 
}
.seven p {
  font-size: 10px;
}
.seven .fourth .text {
  gap: 20px 85px;
}
.seven .item {
  display: flex;
  flex-direction: column;
}
.seven .item ul {
  margin-top: 20px;
}
.seven > h3:last-child {
  margin-top: 20px;
  font-size: var(--font-size-h3);
}

.tariffs {
  display: grid; 
  grid-template-columns: 1fr 1fr 1fr; 
  grid-template-rows: 1fr; 
  grid-template-areas:
      "h2 h2 ."
      "content content .";
  gap: 50px;
}
.tariffs .content { 
  grid-area: content; 
  display: grid;
  grid-template-columns: 1fr 1fr; 
  grid-template-rows: 1fr 1fr; 
  gap: 50px;
}
.tariffs .content .item {
  padding: 35px;
  border-radius: 7.8px;
  border: 0.46px solid #fff; 
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.tariffs .content .item .top {
  display: grid;
  grid-template-columns: max-content 1fr; 
  grid-template-rows: 1fr; 
  grid-template-areas: "h4 ."; 
  gap: 20px;
  align-items: center;
  justify-items: start;
}
.tariffs .content .item .top h4 {
  background: linear-gradient(90.05deg, #3B2AFF -60.28%, #50FF24 257.94%);
  padding: 5px 15px;
  color: var(--white);
  border-radius: 229.39px;
}


.eight {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto;
  grid-auto-flow: row;
  gap: 80px;
}
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 0.3px solid #949494;
  padding: 35px;
  border-radius: 5.15px;
}
form a {
  text-decoration: underline;
}
form a:hover {
  text-decoration: none;
}
form label:not(.inline) {
  display: block;
}
form textarea {
  background: none;
  display: block;
  width: 100%;
  border: 0.5px solid #949494;
  padding: 15px;
  font-size: 16px;
  border-radius: 3px;
  margin-top: 10px;
  box-sizing: border-box;
  color: #fff;
  line-height: 1em;
}
form button {
  background: linear-gradient(90.05deg, #3B2AFF -60.28%, #50FF24 257.94%);
  font-size: 17px;
  font-family: var(--font-family-gramatika_demo-regular);
  padding: 8px 15px;
  color: var(--white);
  border: none;
  border-radius: 151.49px;
  margin: 0px auto;
  width: fit-content;
  cursor: pointer;
}

.default {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 20px;
  grid-auto-flow: row;
  grid-template-areas: "h2 h2"
    ". .";
  position: relative;
}

.logos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 100px;
  align-items: center;
  margin-top: 20px;
}

footer {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}
