* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Manrope", serif;
}

body {
  background-color: #F0F0F0;
}

.header {
  padding-top: 72px;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .container ul {
  display: flex;
  gap: 40px;
}
.header .container ul li {
  list-style-type: none;
}
.header .container ul li a {
  color: #1E1E1E;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
}

.bg-block {
  margin: 70px 0;
}
.bg-block .bg-block_text {
  border-radius: 60px;
  background: url(../img/bg-1.jpg) center center/cover no-repeat;
  padding-top: 300px;
  padding-bottom: 80px;
  padding-left: 30px;
  padding-right: 30px;
  text-align: center;
}
.bg-block .bg-block_text h1 {
  font-size: 64px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  width: 100%;
  max-width: 990px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.bg-block .bg-block_text h1 span {
  color: #FD0E0E;
}
.bg-block .bg-block_text p {
  font-size: 20px;
  font-weight: 500;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  margin-bottom: 40px;
  color: #fff;
}
.bg-block .bg-block_text a {
  width: 300px;
}
.bg-block .bg-block_text-footer {
  background: url(../img/bg-2.jpg) center center/cover no-repeat;
  padding-top: 74px;
}
.bg-block .bg-block_text-footer h2 {
  text-transform: uppercase;
  color: #fff;
  width: 100%;
  max-width: 990px;
  margin: 0 auto;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: bold;
}

.btn-blue {
  border-radius: 40px;
  background-color: #0E36FD;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 32px;
  padding-right: 42px;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: bold;
  box-shadow: 0px 11px 35px -11px rgb(14, 54, 253);
  text-decoration: none;
  justify-content: center;
  width: auto;
  display: inline-block;
  transition: 0.3s all;
}
.btn-blue img {
  width: 30px;
  margin-right: 20px;
}
.btn-blue:hover {
  color: #fff;
  transform: scale(1.05);
}

.h2 {
  color: #1E1E1E;
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 80px;
}

.bl {
  padding: 90px 0;
}

.bl-1 .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}
.bl-1 .items-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin: 0 auto;
  width: 67%;
}
.bl-1 .item {
  border-radius: 60px;
  padding-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 54px;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  box-shadow: 0px 40px 48px 0px rgba(0, 0, 0, 0.05);
}
.bl-1 .item img {
  width: 60px;
  margin-bottom: 36px;
}
.bl-1 .item p {
  font-size: 24px;
  margin-bottom: 0;
}
.bl-1 .item h3 {
  margin-bottom: 36px;
  width: 60px;
  height: 60px;
  background-color: #FD0E0E;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  border-radius: 999px;
}
.bl-1 .item .strong {
  font-weight: bold;
}
.bl-1 .item .rev .top {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 30px;
}
.bl-1 .item .rev .top img {
  width: 80px;
  height: 80px;
  margin-bottom: 0;
}
.bl-1 .item .rev .top .txt h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #1E1E1E;
}
.bl-1 .item .rev .top .txt h5 {
  color: #1E1E1E;
  opacity: 0.7;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}
.bl-1 .item .rev p {
  font-size: 20px;
  margin-bottom: 0;
}

.btn-g {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.footer {
  background-color: #DCDCDC;
  padding: 80px 0;
}
.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .container .footer-left {
  display: flex;
  align-items: center;
  gap: 60px;
}
.footer .container a {
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  color: #000000;
}
.footer .container a:hover {
  color: #0E36FD;
}
.footer .container .color {
  color: #0E36FD;
}

.container-header {
  display: none;
}

@media (max-width: 1200px) {
  .bl-1 .items {
    grid-template-columns: repeat(1, 1fr);
  }
  .bl-1 .items-2 {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 991px) {
  .footer .container {
    flex-direction: column;
    text-align: center;
  }
  .footer .container a {
    font-size: 16px;
  }
  .footer .container .footer-left {
    margin-bottom: 80px;
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }
  .header {
    display: none;
  }
  .bg-block .bg-block_text p, .bl-1 .item p, .bl-1 .item .rev p, .bg-block .bg-block_text p {
    font-size: 16px;
  }
  .btn-blue {
    font-size: 16px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .bg-block .bg-block_text {
    padding-top: 230px;
  }
  .bg-block .bg-block_text h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .bg-block .bg-block_text a {
    display: none;
  }
  .bg-block .bg-block_text p {
    margin-bottom: 0px;
  }
  .bg-block .bg-block_text {
    padding-bottom: 30px;
  }
  .container-header {
    display: block;
  }
  .bg-block {
    margin-bottom: 0px;
  }
  .bg-block .bg-block_text-footer h2 {
    font-size: 24px;
    margin-bottom: 22px;
  }
  .bg-block .bg-block_text-footer {
    padding-top: 264px;
  }
  .bg-block .bg-block_text {
    background: url(../img/bg-1-m.jpg) center center/cover no-repeat;
    width: 95%;
    margin: 0 auto;
  }
  .bg-block .bg-block_text-footer {
    background: url(../img/bg-2-m.jpg) center center/cover no-repeat;
    width: 95%;
    margin: 0 auto;
  }
  .bg-block .bg-block_text-footer p {
    margin-bottom: 45px;
  }
  .bg-block .bg-block_text-footer a {
    display: block;
  }
  .bl {
    padding: 40px 0;
  }
  .container-header {
    margin-bottom: 50px;
  }
  .container-header a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .btn-g a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .bl-1 .items, .bl-1 .items-2 {
    gap: 24px;
  }
  .btn-g {
    margin-top: 40px;
  }
  .bg-block {
    margin-top: 50px;
  }
  .bl-1 .item .rev .top {
    gap: 24px;
  }
  .bl-1 .item .rev .top .txt h4 {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .footer {
    margin-top: 80px;
  }
  .bg-block .bg-block_text-footer {
    padding-bottom: 50px;
  }
  .bg-block .bg-block_text p {
    line-height: 29px;
  }
}/*# sourceMappingURL=style.css.map */