/** code by webdevtrick ( https://webdevtrick.com ) **/
.main1{
    padding: 32px 0;
}

.main1 h1{
    font-size: 42px;
    color: #333;
    font-weight: 700;
}

.main1 p{
    font-size: 18px;
    color: #687074;
    width: 70%;
    margin: 15px auto;
}

.main1 p a {
	text-decoration: none;
	color: #ec1c23;
	font-weight: 900;
}

.main1 ul{
    margin-top: 70px;
}

.main1 ul li{
    padding: 2px 10px;
    /* border: 2px solid #333; */
    margin-right: 10px;
    margin-bottom: 22px;
    font-weight: 700;
    cursor: pointer;
    transition: all .5s ease;
	color: #333;
	font-family: 'Dubai Regular';
	font-size:16px;
	border-right-style: solid;
	display: none;
}

.main1 ul li:last-child{
	border-right-style: none;
}


.main1 ul li.active,
.main1 ul li:hover{
    background-color: #fff;
    color: #e85816;
    /* border: 2px solid #ec1c23; */
}

.main1 ul li:last-of-type{
    margin-right: 0 ;
}

.main1 ul li:nth-of-type(3),
.main1 ul li:nth-of-type(4),
.main1 ul li:nth-of-type(5){
    flex-grow: 1
}



.main1 .container-fluid{
  overflow: hidden;
  padding: 0px;
}

.main1 .container-fluid .col-md-4{
    padding: 1px;
    float: left;
    transition: all 5s ease-in-out
}

.main1 .container-fluid img{
    width: 100%
}

@media (max-width: 767px){
    .main1 .container-fluid img{
        margin-bottom: 0px
    }
	
	.main1 ul li{
	    border-right-style: none;
}
}