* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	outline: none;
	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased !important;
}

#stage {
    top: 0;
	width: 300px;
    left: 50%;
    transform: translateX(-50%);
	height: 300px;
	Background: #f2f7ff;
	position: absolute;
	overflow: hidden;
	font-family: 'Plus Jakarta Sans', Arial, Helvetica, sans-serif;
	font-weight: 400;
	font-style: normal;
    opacity: 0;
}

.title {
    color: #0B5FDE;
    width: 100%;
    height: 35px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cardContainer {
    position: absolute;
    left: 16px;
    top: 40px;
    height: 216px;
    width: 335px;
    transform: scale(0.8);
    transform-origin: left;
    overflow: hidden;
}

.card {
    position: relative;
    width: 165px !important;
    height: 216px;
    background-color: #fff;
    border-radius: 15px;
	cursor: pointer;
}

.slick-slide {
    margin: 0 2.5px;
}

.slick-list {
    margin: 0 -2.5px;
}

.cardTitle {
    top: 17px;
    left: 0;
    position: absolute;
    width: 100%;
    font-size: 12px;
    font-weight: 800;
    padding: 0 14px;
}

.cardImageOverflow {
    position: absolute;
    width: calc(100% - 6px);
    height: 100px;
    top: 43px;
    left: 3px;
    overflow: hidden;
}

.cardImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: .2s ease-in-out;
}

.cta {
    position: absolute;
    width: 142px;
    height: 46px;
    background-color: #ff6711;
    left: calc(50% - 71px);
    top: 154px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    transition: .2s ease;
}

.card:hover .cta {
    background-color: #D74E02;
}

.card:hover .cardImage{
    transform: scale(1.1);
}

.bottom {
    position: absolute;
    width: 100%;
    height: 35px;
    bottom: 0;
    left: 0;
    background-color: #0B5FDE;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 18px;
	cursor: pointer;
}

.disclaimer {
    color: #fff;
    font-weight: 700;
    font-size: 12px;
}

.slick-arrow {
	display: none !important;
}

.arrow {
    position: absolute;
    top: 142px;
    width: 20px;
    height: 38px;
    background-position: center;
    background-size: auto 70%;
    background-repeat: no-repeat;
    cursor: pointer;
}

.arrowLeft {
    left: 0;
    background-image: url('left.svg');
}

.arrowRight {
    right: 0;
    background-image: url('right.svg');
}

@media (min-width: 375px) {
    #stage {
        width: 375px;
    }

    .cardContainer {
        transform: none;
        left: 20px;
    }
}

@media (min-width: 600px) {
    #stage {
        width: 600px;
    }

    .cardContainer {
        width: 553px;
        left: 23.5px;
    }

    .card {
        width: 181px !important;
    }
}
