.about-block {
  padding: 75px 0;
}

.about-block .container{
	display: flex;
	flex-direction: row;
	gap: 30px;
}

.about-image {
  width: 460px;
  height: 460px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 50px;
	display: flex;
	flex-shrink: 0;
}

.about-image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}

.about-content {
  width: 100%;
}

.about-desc p {
  font-weight: 500;
  font-size: clamp(14px, calc(0.00125 * 100vw + 13.6px), 16px);
  line-height: 145%;
  letter-spacing: 0%;
  color: var(--text_primary);
}

.about-desc li {
  font-weight: 500;
  font-size: clamp(14px, calc(0.00125 * 100vw + 13.6px), 16px);
  line-height: 145%;
  letter-spacing: 0%;
  color: var(--text_primary);
}

.about-button {
  margin-top: 40px;
}

.about-file {
  width: 32%;
  border-radius: 20px 20px 0 0;
}

.about-file_head {
  background: var(--bg_secondary);
  padding: 30px;
	border-radius: 20px 20px 0 0;
}

.about-file_name {
  margin-bottom: 30px;
}

.about-file_desc {
  color: var(--text_primary);
  margin-bottom: 20px;
}

.about-file_link {
  margin-left: auto;
  font-weight: 700;
  font-size: clamp(16px, calc(0.0025 * 100vw + 15.2px), 20px);
  line-height: 120%;
  letter-spacing: 0%;
  color: var(--third);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: var(--primary);
  text-transform: uppercase;
}

.about-file_foot {
  padding: 30px;
  border-radius: 0 0 20px 20px;
  border: 1px solid var(--stroke_thirdly);
}

.about-file_data {
  font-weight: 500;
  font-size: clamp(12px, calc(0.00125 * 100vw + 11.6px), 14px);
  line-height: 150%;
  letter-spacing: 0%;
  color: var(--text_primary);
}

.about-file_period {
  font-weight: 500;
  font-size: clamp(12px, calc(0.00125 * 100vw + 11.6px), 14px);
  line-height: 150%;
  letter-spacing: 0%;
  color: var(--text_primary);
  margin-top: 15px;
}

@media (max-width: 1200px) {
  .about-image {
    margin-bottom: 20px;
  }
  
  .about-file {
    width: 40%;
  }
}

@media (max-width: 992px) {
  .about-block {
    padding: 20px 0 !important;
  }
  .about-image {
    height: 350px;
	  width: 350px;
  }
  .about-button {
    margin-top: 20px;
  }
  .about-file_head {
    padding: 15px;
  }
  .about-file_name {
    margin-bottom: 15px;
  }
  .about-file_desc {
    margin-bottom: 10px;
  }
  .about-file_foot {
    padding: 15px;
  }
}

@media (max-width: 820px) {
  .about-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-content {
    width: 100%;
  }
  .about-file {
    width: 100%;
  }
}

@media (max-width: 700px) {
	.about-block .container{
		flex-direction: column;
		gap: 20px;
	}
	
	.about-image {
	  width: 100%;
  }
}

@media (max-width: 400px) {

	.about-image {
	  height: 250px;
  }
	.about-block .container{
		gap: 10px;
	}
}
/*# sourceMappingURL=block.css.map */