@media screen and (max-width:768px) {
    .col-2 > div:first-child {
        margin-bottom: 5rem;
    }
    .col-2 .pr-5 {
        padding-right: 0 !important;
    }
    .col-2 .pl-5 {
        padding-left: 0 !important;
    }
}

/* EMPLOYER REGISTRATION */
.packages-list > li {
    float: left;
    width: 33.33%;
}
.package {
    position: relative;
    margin: 1rem;
    padding: 2rem;
    border: 1px solid #ccc;
    border-radius: 2rem;
    cursor: pointer;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
    overflow: hidden;
}
.package:hover {
    border-color: #999;
}
.package.active {
    border-color: #d16829;
    background: #d16829;
    color: #fff;
}
.package.active .best-seller-icon {
    color: #d16829;
}
.package .best-seller {
    position: absolute;
    top: 0;
    left: 0;
    background: #;
}
.package h4 {
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}
.package h4 span {
    display: block;
    font-size: 1.8rem;
    color: #333 !important;
}
.package.best-seller .best-seller-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4rem 4rem 4rem 4rem;
    border-color: #ff0 transparent transparent #ff0;
    text-align: center;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}
.package.best-seller .best-seller-icon i {
    position: absolute;
    top: -3.2rem;
    left: -3.2rem;
    font-size: 2.5rem;
}
.package.active h4 span {
    color: #fff !important;
}
.packages-list > li:nth-child(1) .package h4 {
    color: #b9b9b9;
}
.packages-list > li:nth-child(2) .package h4 {
    color: #d4af37;
}
.packages-list > li:nth-child(3) .package h4 {
    color: #b9f2ff;
}
.packages-list > li:nth-child(2) .package {
    border-width: 0.3rem;
}
.package .fee {
    text-align: center;
}
.package .fee .amount {
    font-size: 3rem;
    font-weight: 600;
}
.package .fee .amount .unit {
    font-size: 2rem;
}
.package .features-list,
.package .addons-list {
    padding-left: 2rem;
}
.package .features-list > li,
.package .addons-list > li {
    margin-bottom: 1rem;
    list-style: circle outside;
    line-height: 1.5;
}
.package .addons-list > li {
    margin-bottom: 0;
}
.package .note {
    margin-top: 2rem;
    font-size: 1.4rem;
    font-style: italic;
}

@media screen and (max-width:768px) {
    .packages-list > li {
        width: 100%;
    }
}