/*--
	Popup styles
--*/ 

   	*,
*:before,
*:after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.popup{
    background-color: #fff;
    width: 50%;
    padding: 30px 40px;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    border-radius: 8px;
    font-family: "Poppins",sans-serif;
    display: none; 
    text-align: center;
	z-index: 2;
	border: #d67212 2px solid;
}
.popup button{
    display: block;
    margin:  0 0 20px auto;
    background-color: transparent;
    font-size: 30px;
    color: #ffffff;
	background: #313131;
	border-radius: 100%;
	width: 40px;
	height: 40px;
    border: none;
    outline: none;
    cursor: pointer;
}
.popup h2{
	margin-top: -20px;
	color: #d67212;
	font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
}
.popup p{
    font-size: 14px;
    text-align: justify;
    margin: 20px 0;
    line-height: 25px;
	color: #666;
}

#lg {
    float: left;
    margin: 20px 35px 0 0;
    padding: 2px 2px;
    width: 230px;
    height: 212px;
    border: #666 1px solid;
}

.b-readmore{
    display: block;
    width: 150px;
    position: relative;
    margin: 10px auto;
    text-align: center;
    background-color: #313131;
		border-radius: 20px;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 0;
}

@media only screen and (max-width: 768px) {

.popup {
	width: 90%;
	padding: 10px 15px

}

.popup h2 {
    font-size: 25px;
	
}
.popup p {
    font-size: 15px;
    line-height: 35px;
}

}

.popup{
    display: none!important;
    
}

