html,
	    body {
	      position: relative;
	      height: 100%;
	    }

	    body {
	    	display: flex;
	    	align-items: center;
	    	justify-content:start;
	    	flex-direction: column;
	      background: #222;
	      font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
	      font-size: 14px;
	      color: #000;
	      margin: 0;
	      padding: 0 50px 50px 50px;

	    }
		.about{
			width: 80vw;
			margin: 30px auto;
			display: flex;
			align-items: start;
			justify-content: space-between;
			text-align: center;
		}
		.about_left{
			width: 100%;
			position: relative;
		}
		.about_left .experience{
			position: absolute;
			bottom: 0;
			left: 0;
			transform: translate(-20%,50%);
			background-color: #18181c;
			padding: 10px 20px;
		}
		.about_left .experience h1{
			font-size:30px;
			color:orange;
		}
		.about_left .experience h3{
			font-size: 17px;
		}
		.about img{
			width: 90%;
			padding: 0 10px;
		}
		.about_right{
			width:100%;
			display: flex;
			text-align: left;
			align-items: start;
			flex-wrap: wrap;
			justify-content: space-between;
		}
		.about_right .about_me{
			color:orange;
			font-size: 16px;
			margin-bottom: 5px;
			width: 100%;
		}
		.about_right .name{
			padding-top: 0;
			font-size: 30px;
			width: 100%;
			margin-bottom: 0;
		}
		.about_right p{
			color:#ccc;
			font-size: 14px;
			width: 100%;
		} 
		.about_right .right_inner{
			width:48%;
		}
		.right_inner h6{
			font-size: 18px;
			margin-bottom: 5px;
		}
		h2{
			padding-top: 20px;
			color: #FFF;
			font-size: 30px;
			font-weight: 400;
		}
		h4{
            color:orange ;
        }
		.service_container{
			width: 70vw;
			display: flex;
			justify-content: space-around;
			align-items: center;
			padding-top: 20px;
			flex-wrap: wrap;
			margin:0 auto;
		}
        .service_container h4{
            width: 100%;
            text-align: center;
            margin: 25px 0;
        }
		.service_container .service{
			width: 47%;
			background-color: #18181c;
			color: #ccc;
			padding: 50px 0;
			text-align: center;
			font-size: 25px;
			font-weight: bold;
			margin-bottom: 20px;
		}
        .service_container .service:hover{
            opacity: 80%;
        }
		.service p{
			margin-bottom: 0;
		}
		.service_gallery{
			width: 100%;
			display: flex;
			align-items: center;
			justify-content: center;
			flex-wrap: wrap;
		}
		.gallery_inner{
			width:50%;
			padding: 10px;
		}
		.gallery_inner img{
			width:100%;
		}
        .service_price{
            text-align: center;
            background-color:#fff;
            padding: 10px 0;
        }
        .service_price h5{
            color:#333;
        }
		.modal-backdrop{
			z-index: 1;
		}
		.txtcenter{
			text-align: center;
		}