.sw-box {
	background: var(--color-white);
	padding: 30px;
	height: 100%;
	box-shadow: 0px 0px 18.4px rgba(0, 0, 0, 0.14);
    transition: all 0.5s ease;
}
.sw-box img {
    width: 40px;
    height: 40px;
}
@media only screen and (min-width: 768px) {
    .sw-box:hover {
        transform: translateY(-10px);
    }
}
@media only screen and (max-width: 767px) {
	.sw-box {
		padding: 15px 15px 25px;
	}
}
@media only screen and (max-width: 675px) {
    .sw-list {
        margin: 0 -10px;
    }
    .sw-list .col-6 {
        padding: 0 7px;
    }
}