.solutions_list {
	position: absolute;
    left: 55px;
    display: block;
    width: auto;
    padding: 0 20px;
    list-style: none;
    opacity: 1;
    font-size: 22px;
    margin: 0 0;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
}

.solutions_list li {
	display: block;
    margin: 0 0 22px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	cursor: pointer;
}

.hvr-underline-from-left {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1pxrgba(0,0,0,0);
    position: relative;
    overflow: hidden;
	font-weight: 500;
}

.hvr-underline-from-left:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    -webkit-transition-property: width;
    transition-property: width;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
	background: #132659!important;
}

.hvr-underline-from-left:hover:before,.hvr-underline-from-left:focus:before,.hvr-underline-from-left:active:before,.hvr-underline-from-left.active:before {
    width: 100%
}

.main-card {
    position: relative;
    width: 100%;
    height: 500px;
    margin: auto;
    font-family: 'DubaiW23', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1em;
    line-height: 1.5;
    color: #132659;
	background: url('boxes/bg.png');
	background-size: cover;
}

.main-card .card-content {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    padding: 50px;
}

.main-card .content-left {
    position: relative;
    width: 800px;
    height: 100%;
    overflow: hidden;
    background-color: #fff;
    filter: drop-shadow(1px 2px 3px black);
	margin-left: 10rem;
}

.main-card .content-left img {
    width: 100%;
    height: inherit;
    object-fit: cover;
    object-position: center;
}

.main-card .content-right {
    position: relative;
    width: calc(100% - 200px);
    height: 100%;
    padding-left: 35px;
}

.main-card .tag {
    position: relative;
    left: 100%;
    transform: translateX(-100%);
    width: fit-content;
    padding: 8px 25px;
    background-color: #005AEE;
}

.main-card .tag h6 {
    color: #fff;
    font-size: .75em;
    font-weight: 700;
    letter-spacing: 2px;
}

.main-card .mini-imgs {
    position: absolute;
    display: flex;
    bottom: 0;
    align-items: baseline;
	height: 200px;
    height: 190px;
}

.main-card .mini-imgs img {
    width: 190px;
    height: 175px;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    transition: 300ms;
	filter: drop-shadow(1px 1px 2px black);
}

.main-card .mini-imgs img:nth-child(2) {
    margin: 0 10px;
}

.mainBox {
    display:flex; 
	justify-content: flex-start;
	margin-top: 20px
}

/* Display this style when screen-width is lower than 992px */
@media only screen and (max-width: 992px) {

    .main-card {
        position: relative;
        width: 100%;
        height: auto;
        margin: auto;
    }

    .main-card .card-content {
        flex-direction: column;
    }

    .main-card .content-left {
        width: 100%;
        height: 300px;
		margin-left: 0rem;
		
    }

    .main-card .content-right {
        width: 100%;
        height: auto;
        padding: 175px 0 0;
    }

    .main-card .tag {
        left: 0;
        transform: translateX(0);
    }

    .main-card .mini-imgs {
        position: absolute;
        display: flex;
        top: 0;
        margin-top: 35px;
        height: 105px;
    }

}

/* Display this style when screen-width is lower than 500px */
@media only screen and (max-width: 500px) {

    .mainBox {
        flex-direction: row;
    }

    .main-card {
        height: 75vh;
    }

    .main-card .mini-imgs img:nth-child(2) {
        margin-top: 10px;
    }

    .main-card .mini-imgs img:nth-child(4) {
        margin-top: 10px;
    }

    .main-card .mini-imgs {
        flex-direction: column;
        align-items: center;
    }

    .mb1 {
        bottom: auto!important;
        left: 0!important;
    }
    
    .mb2 {
        bottom: 0!important;
        right: 0!important;
    }

    .main-card {
       margin: auto;
    }

    .main-card .card-content {
        padding: 25px;
    }

    .main-card .content-right {
        width: 100%;
        height: auto;
        padding: 115px 0 0;
    }

    .main-card .mini-imgs {
        margin-top: 20px;
		margin-left: 0px;
    	margin-right: 0px;
    }

    .main-card .mini-imgs img {
        width: 150px;
        height: 150px;
    }

}