:root {
	--accent-1: #3D4F9F;
	--accent-2: #4074F8;
  --accent-3: #ADB3CB;
  --accent-4: #8D96BD;
	--white: #fff;
  --font-family: "Roboto";
}
html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  margin: 0;
  font-family: var(--font-family);
}
/* features */
.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
.features {
  text-align: center;
  padding: 171px 0;
}  
.title {
  color: var(--accent-1);
  font-weight: 500;
}  
.title h2 {
  font-size: 10px;
  /* font-weight: 500; */
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.title h1 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 96px;
}

.features_items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 67px;
  max-width: 761px;
  margin: 0 auto 125px;
}
.features_item h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: 130%;
  color: var(--accent-2);
  margin-bottom: 32px;
}
.features_item img {
  margin-bottom: 16px;
}
.features_item p {
  font-size: 11px;
  font-weight: 500;
  line-height: 130%;
  color: var(--accent-3);
}
.buttons {
  display: flex;
  justify-content: space-between;
  max-width: 337px;
  width: 100%;
  margin: 0 auto;
  height: 43px;
}
.buttons a, .blog_text a {
  width: 113px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  padding: 13px 16px;
  display: block;
}
.button_left {
  background-color: #FFD7D7;
  color: #D43F3F;
}
.button_right {
  background-color: #D2E1FF;
  color: #3A79FF;
}
/* stats */
.stats {
  background: linear-gradient(90deg, #5E80FF 50%, #E9EFFF 0%);
}
.stats p {
  margin: 0;
}
.stats_items {
  display: flex;
  padding: 65px;
}
.stats img {
  margin-bottom: 20px;
}
.left {
  padding-right: 90px;
  text-align: right;
  width: 50%;
  color: var(--white);
}
.right {
  padding-left: 90px;
  width: 50%;
  color: #5E80FF;
}
.stats_items p:nth-child(2) {
  font-size: 48px;
  margin-bottom: 20px;
}
.stats_items p:nth-child(3) {
  font-size: 18px;
  font-weight: 500;
  max-width: 260px;
  letter-spacing: 0.6px;
}
.left p:nth-child(3) {
  margin: 0 0 0 auto;
}

/* blog */
.blog {
  padding-top: 100px;
  padding-bottom: 213px;
  
  /* margin: 0 auto;
  max-width: 958px;
  width: 100%;
  height: 394px; */
  text-align: center;
}
.blog_details {
  max-width: 958px;
  min-height: 394px;
  box-shadow: 0 15px 50px 0 rgb(239, 244, 255);
  margin: 0 auto;
  padding: 62px 41px 64px 35px;
  display: flex;
  gap: 67px;
}
.blog_images {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 13px;
  justify-content: start;
  margin: auto;
}
.img1 {
  border-radius: 5px;
  box-shadow: 0 15px 100px 0 rgb(229, 235, 248);
  background: linear-gradient(12.99deg, rgba(255, 199, 53, 0.44) 1.916%, rgba(255, 227,154, 0.93) 1.923%, rgba(255, 159, 90, 0) 68.245%), url(../img/img_1.png);
  height: 267px;
  width: 267px;
  grid-row: 1 / 3;
}
.img2 {
  border-radius: 5px;
  box-shadow: 0 15px 100px 0 rgb(229, 235, 248);
  background: linear-gradient(27.61deg, rgba(255, 53, 53, 0.48) 14.04%, rgba(255, 179, 90, 0) 68.007%), url(../img/img_2.png);
  grid-row: 1 / 2;
  height: 127px;
  width: 127px;
}
.img3 {
  border-radius: 5px;
  box-shadow: 0 15px 100px 0 rgb(229, 235, 248);
  background: linear-gradient(13.50deg, rgba(53, 170, 255, 0.68) 11.615%, rgba(90, 136, 255, 0) 96.871%), url(../img/img_3.png);
  grid-row: 2 / 3;
  height: 127px;
  width: 127px;
}
.header {
  color: var(--accent-1);
  font-size: 36px;
  margin-bottom: 35px;
}
.text {
  color: var(--accent-4);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 83px;
  letter-spacing: 0.03em;
  line-height: 1.15em;

  text-align: left;
  /* max-width: 380px; */
}
.blog_text {
  text-align: justify;
  /* max-width: 390px; */
}

@media screen and (max-width: 945px) {
  
  .features_items {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog_details {
    flex-direction: column;
  }
}
