/*Main Banner Start*/
.main-banner{
	-webkit-background-size: 52% 100%  !important;
	-moz-background-size: 52% 100%  !important;
	-o-background-size: 52% 100%  !important;
	background-size: 52% 100% !important;
}
@media only screen and (min-width: 601px) and (max-width: 1024px) {
	.main-banner{
		background-size: auto !important;
		background-position-x: 0% !important;
		background-image: unset !important;
	}
	.main-banner-img
	{
		max-width: 70%;
	}
}
@media only screen and (max-width: 600px){
	.main-banner{
		background-image:none !important;
		background-color: #E1ECFF !important;
	}
}
/*Main Banner End*/

@media only screen and (min-width: 991px){ 
.bg-size-contain {
    background-size: contain !important;
}
}

/*Unordered list having Blue color disc start*/

.bluedisc-unorderedlist ul{
	list-style: none !important;
	padding-left: 0;
}
body .bluedisc-unorderedlist li {
    list-style: none;
    position: relative;
    padding: 0px 0 0 20px;
    line-height: 20px;
    margin-top: 15px;
    font-size:16px !important;
}

body .bluedisc-unorderedlist li::before {
	content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    background-color: #0129ac;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    vertical-align: middle;
}
/*Unordered list having Blue color disc end*/

/*Horizontal list items*/
@media only screen and (min-width: 768px){ 
.hr-list{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
}