/* .scholarships {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 40px;
	max-width: 1000px;
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
  }
  .scholarships a {
	text-decoration: none;
  }
  @media (max-width: 700px) {
	.scholarships {
	  display: flex;
	  flex-direction: column;
	}
  }
  .scholarships > a > div {
	color: #fff;
	font-size: 18px;
	padding: 10px;
	border-radius: 10px;
	background-color: rgb(37, 155, 255);
	background: linear-gradient(
	  135deg,
	  rgba(37, 155, 255, 1) 17%,
	  rgba(253, 1, 114, 1) 100%
	);
	transition: 0.3s ease-in-out;
  }
  .scholarships > a > div:hover {
	background: #259bff;
  } */
  .scholarships {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 40px;
	max-width: 1000px;
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
  }
  .scholarships a {
	text-decoration: none;
  }
  @media (max-width: 700px) {
	.scholarships {
	  display: flex;
	  flex-direction: column;
	}
	.col70 {
		width: 100%;
	}
  }
  .scholarships > a > div {
	color: #fff;
	font-size: 18px;
	padding: 10px;
	border-radius: 10px;
	background-color: rgb(37, 155, 255);
	background: linear-gradient(
	  135deg,
	  rgba(37, 155, 255, 1) 17%,
	  rgba(253, 1, 114, 1) 100%
	);
	transition: 0.3s ease-in-out;
  }
  .scholarships > a > div:hover {
	background: #259bff;
  }
  .ukraina-wrapper {
	/* display: flex; 
	flex-wrap: wrap; 
	justify-content: space-between;  */
	background-color: #e1dbc9; 
	width: 80%; 
	margin-left: 10%;
  }
  .ukraina-wrapper .row {
	display: flex; 
	flex-wrap: wrap; 
	justify-content: space-between;
  }
  .kk-wrapper {
	display: block;
	color:#800000; 
	padding: 16px 0px; 
	background-color: #f1b709; 
	width: 80%; 
	margin-left: 10%; 
	text-align: center;
	text-decoration: none;
  }
  .kk-wrapper h2 {
	margin-top: 12px;
	margin-bottom: 16px;
  }
  .kk-wrapper > span {
	background-color: #800000;
	color: #fff; 
	padding: 5px 23px;
	text-decoration: none;
	font-size: 18px;
  
  }
  .kk-wrapper > span:hover {
	transition: ease-in-out 0.3s;
	text-decoration: underline;
  }