.advatages-items {
	display: flex;
	justify-content: space-between;
	gap: 8px;
  
	@media(max-width: 600px) {
	  gap: 20px;
		flex-wrap: wrap;
	}
  
	& .advatages-item {
	  display: flex;
	  flex-direction: column;
	  gap: 16px;
	  width: 32%;
    justify-content: space-between;
    
    @media(max-width: 768px) {
        width: calc(50% - 10px);
        flex-wrap: wrap;
    }
  
	  & .advatages-item__title {
		color: var(--Text-Accent);
		font-family: "Savoye LET";
		font-size: 66px;
		font-style: normal;
		font-weight: 400;
		line-height: 80%;
		text-align: center;
		margin-bottom: 4px;
  
		@media(max-width: 992px) {
		  font-size: 40px;
		  font-style: normal;
		  font-weight: 400;
		  line-height: 110%;
		}
	  }
  
	  & .advantages-item__text {
		font-family: 'Evolventa';
		font-size: 18px;
		font-style: normal;
		font-weight: 400;
            margin-top: 12px;
		line-height: 124%;
		letter-spacing: -0.48px;
		color: var(--Text-Primary);
		text-align: center;
  
		@media(max-width: 992px) {
		  font-size: 18px;
		  font-style: normal;
		  font-weight: 400;
		  line-height: 132%;
		  letter-spacing: -0.36px;
		}
  
		@media(max-width: 600px) {
		  font-size: 12px;
		  font-style: normal;
		  font-weight: 400;
		  line-height: 124%;
		  letter-spacing: -0.48px;
		  & p{
			margin-bottom: 5px;
		  }
		}
	  }
  
	  & .advantages-item__image {
		max-width: 464px;
		height: 472px;
		border-radius: 2px;
		overflow: hidden;
  
		@media(max-width: 1200px) {
		  height: 450px;
		}
  
		@media(max-width: 992px) {
		  height: 336px;
		}
  
		@media(max-width: 600px) {
		  height: auto;
		  max-width: initial;
		  & a {
			display: block;
		  }
			& img {
			height: auto;
			}
		}
  
		& img {
		  object-fit: cover;
		  width: 100%;
		  height: 100%;
		}
	  }
	}
  
}