/**
 * Installation Day Section
 */

.installation-day-section {
	background: var(--white);
}
.installation-day-section .col {
	width: 50%;
}
.installation-day-section .card-block {
    width: 100%;
    background: var(--gray);
    border-radius: 30px;
    padding: 34px 34px 34px 17px;
    display: flex;
	column-gap: 12px;
	row-gap: 15px;
	height: 100%;
}
.installation-day-section .icon {
	width: 176px;
	height: 176px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.installation-day-section .icon img {
	display: block;
}
.installation-day-section .card-block .sub-title {
	color: var(--blue);
}
.installation-day-section .card-block p {
	margin-bottom: 0;
}

@media only screen and (max-width: 1199px) {
	.installation-day-section .card-block {
		padding: 25px;
	}
	.installation-day-section .icon{
		width: 136px;
    	height: 136px;
	}
	.installation-day-section .col {
		width: 100%;
	}
}
@media only screen and (max-width: 767px) {

    .installation-day-section .card-block {
        border-radius: 18px;
        flex-direction: column;
        text-align: center;
    }
    .installation-day-section .icon {
        width: 100px;
        height: auto;
    }
}
