@media (min-width: 320px) {
	#about-company {
    background-color: var(--main-basic);
    padding: 25px 0px 45px;
    color: var(--white);
    overflow: hidden;
    position: relative;
    background-image: url("./img/about-back.png");
    background-size: cover;
    background-position: center;
  }

  #about-company .h6 {
    margin-bottom: 16px;
  }

  #about-company .body1 {
    margin-bottom: 32px;
  }
  #about-company .about-more {
    color: var(--white);
    font-size: 16px;
    line-height: 1.5;
    text-decoration: none;
    font-family: "Unbounded";
    font-weight: 200;
  }
  #about-company .about-more:hover::after {
    -webkit-transform: rotate(56deg);
    -ms-transform: rotate(56deg);
    transform: rotate(56deg);
  }

  #about-company .about-more::after,
  {
    content: url("./img/arrow-white.svg");
    display: inline-block;
    position: relative;
    margin-left: 34px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
}
@media (min-width: 768px) {
	#about-company {
    	padding: 56px 0px 45px 0px;
  	}
	#about-company .content-block {
    	max-width: 402px;
	}
}