html{
	margin: 2px;
}
.logo {
    width: 100%;
    height: 48px;
    text-align: center;
	margin-top: 25px;
}

.card {
    background: #F8F8F8;
    display: flex;
    margin-bottom: 8px;
    margin-left: 10px;
    margin-right: 10px;
	text-decoration: none;
	transition: 0.3s;
}
.card:hover{
    background: #CFEAFE;
}

.card-img{
    padding-bottom: 24px;
    padding-top: 24px;
	 min-width: 120px;
	text-align: center;
}
.card-img img{
	margin: auto;
	transition: 0.3s;
}
.card-img_hide{
	display:none;
}
.card:hover .card-img_hide{
	display:block;
}
.card:hover .card-img_show{
	display:none;
}

span {
    font-family: PT Root UI;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 23px;
    color: #000000;
}
.card:hover span{  
      color: rgb(69, 145, 244);
  }

p {
    font-family: PT Root UI;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    color: #000000;
    opacity: 0.5;

}

section {
    margin-top: 33px;
    width: 100%;
}

.card-text {
    display: flex;
    flex-direction: column;
    padding-top: 24px;
}