.about-items .items-title {
  font-size: 14px;
  font-weight: var(--font-weight-3);
  text-transform: uppercase;
}


.about-item {
  display: flex;
  flex-direction: column;
  margin: 20px 0 20px 0;

  max-width: 1310px;
}

.about-item .item-image {
  height: 270px;
  
}
.about-item .item-image,
.about-item .item-description-container {
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.about-item.logo {
  background-color: var(--color-gr-blue-9);
  padding: 40px;
  border-radius: 30px;
  gap: 20px;
}

.about-item.logo .item-image {
  align-items: center;
  min-height: auto;
  width: auto;
  height: auto;
}

.about-item.logo img {
  width: 180px;
  height: 180px;
  box-shadow: 0px 20px 20px 0px #0000000D;
  border-radius: 90px;
}
.about-item.logo .item-description-container {
  width: 100%;
}
.about-item .item-title-container {
  display: flex;
  gap: 10px;
  align-items: center;
}
.about-item .item-number {
  font-size: 14px;
  font-weight: var(--font-weight-3);
  display: block;
  border-radius: 40px;
  min-width: 40px;
  min-height: 40px;
  background-color: var(--color-red-6);
  align-items: center;
  text-align: center;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-image {
	background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

	width: 100%;
}
.content-image-1 {
	height: 100%;
	background-image: url('/images/company/content/1.jpg');
}
.content-image-2 {
	height: 100%;
	background-image: url('/images/company/content/2.jpg');
  background-position: bottom center;
}
.content-image-3 {
	height: 100%;
	background-image: url('/images/company/content/3.jpg');
}
.content-image-4 {
	height: 100%;
	background-image: url('/images/company/content/4.jpg');
}
.content-image-5 {
	height: 100%;
	background-image: url('/images/company/content/5.jpg');
  background-position: top left;
}
.content-image-6 {
	height: 100%;
	background-image: url('/images/company/content/6.jpg');
  background-position: center center;
}
.content-image-7 {
	height: 100%;
	background-image: url('/images/company/content/7.jpg');
  background-position: center left;
}

.about-additional-container .additional-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 576px) {
	.about-item.logo {
    flex-direction: row;
    margin: 20px 0 20px 0;
    margin-bottom: 40px;
  }
}

@media (min-width: 768px) {
  .about-item {
    flex-direction: row;
    gap: 40px;
    margin: 20px 0 20px 0;
  }
  .about-item.logo {
    gap: 40px;
  }
  .about-items .about-item:nth-child(odd) {
    flex-direction: row-reverse;
  }
  .about-items .about-item:nth-child(even) {
    flex-direction: row;
  }
  .about-item .item-image {
    min-height: 320px;
    height: auto;
  }
  .about-item .item-image,
  .about-item .item-description-container {
    width: calc(50% - 20px);
  }
  .about-item.logo .item-description-container {
    width: calc(100% - 230px);
  }

  .about-item.logo .item-image {
    width: 180px;
  }

  .about-items .items-title, .about-item .item-number {
    font-size: 17px;
  }
  
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
    
}

@media (min-width: 1400px) {
    
}