* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #04050A;
}

.header {
  background: url(../img/1_block-bg.png) center center/cover no-repeat;
  padding-top: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.header .logo img {
  width: 139px;
  margin-bottom: 40px;
}
.header h3 {
  text-transform: uppercase;
  color: #3DDC97;
  font-size: 18px;
  background-color: rgba(61, 220, 151, 0.1);
  border: 1px solid rgba(61, 220, 151, 0.2);
  padding: 5px 16px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 24px;
}
.header h2 {
  font-size: 70px;
  color: #f8f8f8;
  font-weight: bold;
  margin-bottom: 24px;
  letter-spacing: -2px;
}
.header p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 48px;
  color: #f8f8f8;
}
.header .img-head {
  width: 100%;
  z-index: 1;
  margin-top: -50px;
  transition: 0.5s all;
}
.header .img-head:hover {
  transform: scale(1.05);
}

.btn-gr {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  position: relative;
}

.btn-green {
  background: #3DDC97;
  color: #04050A;
  padding: 11px 20px;
  border-radius: 12px;
  width: auto;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin: 0 9px;
  box-shadow: rgba(255, 255, 255, 0.04) 0px 0px 12px 0px inset, rgba(65, 221, 153, 0.15) 0px 2px 4px 0px, rgba(65, 221, 153, 0.13) 0px 8px 8px 0px, rgba(65, 221, 153, 0.08) 0px 17px 10px 0px, rgba(65, 221, 153, 0.02) 0px 31px 12px 0px, rgba(65, 221, 153, 0) 0px 48px 13px 0px;
  transition: 0.5s all;
}
.btn-green img {
  width: 24px;
  margin-right: 8px;
}
.btn-green:hover {
  background-color: #6AFFBE;
  transform: scale(1.03);
  color: #04050A;
}




.items-block {
  background: url(../img/2_block-bg.png) center top/cover no-repeat;
  padding: 100px 0;
  text-align: center;
}
.items-block h3 {
  text-transform: uppercase;
  color: #3DDC97;
  font-size: 18px;
  background-color: rgba(61, 220, 151, 0.1);
  border: 1px solid rgba(61, 220, 151, 0.2);
  padding: 5px 16px;
  border-radius: 20px;
  width: 220px;
  margin: 0 auto;
  margin-bottom: 24px;
}
.items-block .items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.items-block .items .item img {
  width: 100%;
  transition: 0.5s all;
}
.items-block .items .item img:hover {
  transform: scale(1.05);
}
.items-block .items .item h4 {
  color: #f8f8f8;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 12px;
}
.items-block .items .item p {
  color: #747881;
  font-size: 14px;
  margin: 0;
}
.items-block .txt {
  margin-top: 100px;
  color: #747881;
}

h2 {
  font-size: 48px;
  color: #f8f8f8;
  font-weight: bold;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 40px;
  color: #747881;
}

.footer-block {
  padding: 128px 0;
}
.footer-block .container {
  background: url(../img/3_block-bg.png) center center/cover no-repeat;
  border-radius: 24px;
  padding: 84px;
  text-align: center;
}
.footer-block .container h1 {
  color: #f8f8f8;
  font-weight: 800;
}
.footer-block .container .img {
  width: 90px;
  margin-bottom: 32px;
}
.footer-block .container p {
  color: #747881;
  margin-bottom: 40px;
}

.footer-top {
  padding-bottom: 50px;
}
.footer-top .container-p {
  margin-top: 30px;
}
.footer-top .container-p .p-text {
  font-size: 12px;
  padding: 0;
  margin: 0;
  color: #747881;
}

.footer {
  background: url(../img/4_block-bg.png) center center/cover no-repeat;
  padding: 32px 0;
}
.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .container .logo-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .container .logo img {
  width: 139px;
}
.footer .container p {
  margin: 0;
  margin-left: 50px;
  color: #747881;
  font-size: 14px;
}
.footer .container .media {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .container .media img {
  width: 36px;
  margin: 0 8px;
  transition: 0.5s all;
}
.footer .container .media img:hover {
  filter: brightness(1.8);
}
.footer .container .media .fg {
  height: 24px;
  width: 1px;
  margin: 0 8px;
  background-color: rgba(61, 220, 151, 0.1);
}

.header .img-head_m {
  display: none;
}

@media (max-width: 991px) {
  .header .logo img {
    margin-bottom: 30px;
  }
  .header h3 {
    margin-bottom: 20px;
  }
  .header h2 {
    font-size: 55px;
  }
  .header p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .header .img-head {
    display: none;
  }
  .header .img-head_m {
    display: block;
    width: 100%;
    margin-top: 50px;
  }
  .items-block .items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .footer-block .container {
    padding: 74px 24px;
  }
  h1 {
    font-size: 28px;
  }
  .footer {
    padding: 48px 0;
  }
  .footer .container {
    flex-direction: column;
  }
  .footer .container .logo-block {
    flex-direction: column;
    margin-bottom: 32px;
  }
  .footer .container .logo-block p {
    margin: 0;
  }
  .footer .container .logo-block .logo img {
    margin-bottom: 32px;
  }
  .btn-gr {
    flex-direction: column;
  }
  .btn-gr a {
    width: 100%;
    margin: 10px 0;
  }
  .header h2 {
    font-size: 40px;
  }
}
@media (max-width: 550px) {
  .items-block .items {
    grid-template-columns: repeat(1, 1fr);
  }
  .items-block .items .item img {
    width: 70%;
  }
  .items-block {
    background: url(../img/2_block-bg_m.png) center top/contain no-repeat;
  }
  .footer-block .container {
    width: 90%;
    margin: 0 auto;
  }
  .items-block .items .item h4 {
    font-size: 16px;
  }
  .footer-block {
    padding: 70px 0;
  }
  .footer-block .container {
    background: url(../img/3_block-bg_m.png) center center/cover no-repeat;
  }
  .header {
    padding-bottom: 100px;
  }
  .header h3 {
    font-size: 16px;
    width: 140px;
  }
  .items-block h3 {
    font-size: 16px;
    width: 280px;
  }
}/*# sourceMappingURL=style.css.map */