@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

* {
	margin:0px;
	padding:0px;
	outline:none;
}
ul {
	list-style:none;
}
a {
	text-decoration:none;
}
a:hover, a:focus {
	text-decoration:none;
}
img {
	border:none;
}
h1,h2,h3,h4,h5,h6,ul,li,p,strong,ol,span,strong {
	padding:0px;
	margin:0px;
}
h1,h2,h3,h4,h5,h6 {
	font-family: 'Montserrat', sans-serif;
}
body {
	font-size:14px;
	color:#000;
	font-family: 'Montserrat', sans-serif;
	box-sizing:border-box;
	overflow-x:hidden;
}
/*************************/
#header {
	padding:12px 0;
	background:#fff;
    box-shadow: 0px 8px 30px 8px rgba(42, 67, 113, 0.15);
	border-top: 3px solid #5857a6;
	border-bottom: 1px solid #e5e5e5;
}
.area_wrap {
	padding-left:35px;
	padding-right:35px;
}
.header_top {
	display: flow-root;
}
.TopHeadCont {
	float: right;
}
.TopHeadCont li {
	display: inline-block;
}
.headHeading {
 	text-align: right;
}
.headCont li {
	display: inline-block;
}
.headCont li:nth-child(1){
 	height: 40px;
 	line-height: 40px;
 	border: 1px solid #e5e5e5;
 	border-right: none;
 	padding:0 10px 0 15px;
 	border-radius: 25px 0 0 25px;
 }
.headCont li:nth-child(2){
	width: 40px;
	height: 40px;
	background: #5857a6;
	text-align: center;
	line-height: 40px;
	color: #fff;
	border-radius: 0 25px 25px 0;
	font-size: 20px;
	margin-right: 10px;
}
.headCont:hover li a {
	color:#5857a6;	
}
.headCont li a {
	padding:0px;
	color: #66707f;
	font-size: 14px;
}
/************************/
#header.header-scrolled {
	padding:8px 0 0 0;
	display:block;
	transition: all ease 0.4s;
}
#header .logo {
	width:40%;
}
#header .logo img {
	width:100%;
	height:auto;
	-moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.header-scrolled .logo img {
	width:85% !important;
	height:auto;
	display:block;
	-moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.header_menu {
	/* padding: 15px 0; */
    /* display: flex; */
	display: flow-root;
}
.main-nav > ul {
	margin-top:15px;
}
.main-nav > ul > li {
	position: relative;
	white-space: nowrap;
	float: left;
}
.main-nav a {
	display: block;
	position: relative;
	color: #66707f;
	padding: 10px 15px;
	transition: 0.3s;
	font-size: 15px;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
}
.main-nav a:hover, .main-nav .active > a, .main-nav li:hover > a {
	color: #e31e24;
	text-decoration: none;
}
.main-nav .drop-down ul {
	display: block;
	position: absolute;
	left: 0;
	top: calc(100% + 30px);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	padding: 10px 0;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: ease all 0.3s;
}
.main-nav .drop-down:hover > ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}
.main-nav .drop-down li {
	min-width: 180px;
	position: relative;
}
.main-nav .drop-down ul a {
	padding: 7px 20px;
	font-size: 14px;
	color: #66707f;
}
.main-nav .drop-down ul a:hover, .main-nav .drop-down ul .active > a, .main-nav .drop-down ul li:hover > a {
	color: #e31e24;
}
.main-nav .drop-down > a:after {
	content: "\f107";
	font-family: FontAwesome;
	padding-left: 10px;
}
.main-nav .drop-down .drop-down ul {
	top: 0;
	left: calc(100% - 30px);
}
.main-nav .drop-down .drop-down:hover > ul {
	opacity: 1;
	top: 0;
	left: 100%;
}
.main-nav .drop-down .drop-down > a {
	padding-right: 35px;
}
.main-nav .drop-down .drop-down > a:after {
	content: "\f105";
	position: absolute;
	right: 15px;
}
/*******************/
.mobile-nav {
	position: fixed;
	top: 0;
	bottom: 0;
	z-index: 9999;
	overflow-y: auto;
	left: -260px;
	width: 260px;
	padding-top: 18px;
	background: rgba(19, 39, 57, 0.8);
	transition: 0.4s;
}
.mobile-nav a {
	display: block;
	position: relative;
	color: #fff;
	padding: 10px 20px;
	font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
	color: #74b5fc;
	text-decoration: none;
}
.mobile-nav .drop-down > a:after {
	content: "\f078";
	font-family: FontAwesome;
	padding-left: 10px;
	position: absolute;
	right: 15px;
}
.mobile-nav .active.drop-down > a:after {
	content: "\f077";
}
.mobile-nav .drop-down > a {
	padding-right: 35px;
}
.mobile-nav .drop-down ul {
	display: none;
	overflow: hidden;
}
.mobile-nav .drop-down li {
	padding-left: 20px;
}
.mobile-nav-toggle {
	position: fixed;
	right: 0;
	top: 0;
	z-index: 9998;
	border: 0;
	background: none;
	font-size: 24px;
	transition: all 0.4s;
	outline: none !important;
	line-height: 1;
	cursor: pointer;
	text-align: right;
}
.mobile-nav-toggle i {
	margin: 18px 18px 0 0;
	color: #004289;
}
.mobile-nav-overly {
	width: 100%;
	height: 100%;
	z-index: 9997;
	top: 0;
	left: 0;
	position: fixed;
	background: rgba(19, 39, 57, 0.8);
	overflow: hidden;
	display: none;
}
.mobile-nav-active {
	overflow: hidden;
}
.mobile-nav-active .mobile-nav {
	left: 0;
}
.mobile-nav-active .mobile-nav-toggle i {
	color: #fff;
}
/*****************************/
.slider_banner {
	margin-top:9%;
}
/*****************************/
.hm_prd_hed {
	padding: 30px 0;
    background: #f7f7f7;
    position: relative;
}
.hm_prd_hed:before {
    position: absolute;
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid dashed dashed;
    border-color: #f7f7f7 transparent transparent;
    border-width: 20px 20px 0;
    left: 50%;
    bottom: -20px;
}
.midd_sec_hed h4 {
    font-size: 22px;
    color: #5857a6;
    text-align: center;
	font-weight:bold;
	text-transform:capitalize;
	letter-spacing:1px;
    line-height: 30px;
	padding: 0 15% 0;
}
.hm_prd_sec {
	padding:60px 0;
	background-image: url(../images/product_banner.png);
    background-position: 100% 100%;
    background-repeat: no-repeat;
}
.product_item {
	border:6px solid #f7f7f7;
	-webkit-transition:0.5s;
	margin-bottom:30px;
}
.product_item .product_dtl h4 {
	background:#f7f7f7;
	position:relative;
	z-index:0;
	height:40px;
	font-size:18px;
	padding:5px;
	overflow: hidden
}
.product_item .product_dtl h4 a {
	text-transform:capitalize;
	color:#000;
	transition:0.5s;
	-webkit-transition:0.5s;
	position:absolute;
	top:50%;
	left:50%;
	text-align:center;
	display:block;
	transform: translate(-50%,-50%);
	width:100%;
	line-height:30px;
}
.product_item .product_dtl h4:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: -50px;
    background: #ee1c25;
    z-index: -1;
    transition: 0.5s;
    -webkit-transition: 0.5s;
}
.product_item:hover {
    border-color: #e31e25;
}
.product_item:hover .product_dtl h4:after {
    bottom: 0;
}
.product_item:hover .product_dtl h4 a {
	color:#fff;
}
/*****************************/
.hm_abt_sec {
	padding:100px 0;
	background-image: url(../images/abt_effect.png);
    background-position: 100% 100%;
    background-repeat: no-repeat;
}
.hm_abt_bx {
	padding-top:25px;
	position:relative;
}
.abt_before {
	position:absolute;
	content:"";
	background:#cacae2;
	top:-10px;
	z-index:-1;
	left:-60px;
	display:none;
	width:70%;
	height:80%;
}
.abt_before:before {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #fff;
    content: "";
    top: -3px;
    left: -15px;
    position: absolute;
    transform: rotate(135deg);
}
.abt_before:after {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #e31e25;
    content: "";
    top: 10px;
    left: 0;
    position: absolute;
    transform: rotate(-45deg);
}
.abt_cont_section {
	position:relative;
	padding:60px 40px;
}
.abt_hed_sec {
	padding:10px 0;
	background:#fff;
	position:relative;
}
.abt_hed_sec h1 {
	font-size:40px;
	font-weight:bold;
}
.abt_hed_sec h1 span {
	color:#ee1c25;
	font-weight:bold;
}
.abt_cont_para {
	padding:30px 0 20px 80px;
	position:relative;
}
.abt_cont_para:before {
	position:absolute;
	content:"";
	height:140%;
	width:8px;
	left:33px;
	top:-46%;
	border-radius:50px;
	background:#000;
	z-index:-1;
}
.abt_cont_para p {
	font-size:18px;
	line-height:30px;
	padding-bottom:20px;
}
.hm_abt_anch {
	float:right;
}
.hm_abt_anch a {
	text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    padding: 14px 50px;
    color: #fff;
	font-weight:bold;
	letter-spacing:1px;
    max-width: 100%;
    background-color: #2d3192;
    border-radius: 10px;
    box-shadow: 0px 3px 0px 0px rgba(77, 82, 86, 0.25);
}
.hm_abt_anch:hover a {
	background:#ee1d26;
	color:#fff;
}
/*****************************/
.hm_app_sec {
    background-image: url(../images/application-banner.png);
    overflow: hidden;
    background-attachment: fixed;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
}
.hm_app_hed {
	padding-bottom:30px;
}
.hm_app_hed h2 {
    letter-spacing: 1px;
    text-align: center;
    color: #fff;
	font-size:30px;
	padding-bottom:5px;
	position:relative;
}
.hm_app_hed h2:after {
	position: absolute;
    content: '';
    bottom: 0;
    margin: 0 auto;
    left: 0;
    width: 15%;
    right: 0;
    height: 2px;
    background: #fff;
    display: inline-block;
}
.machine_dtl h6 {
    padding: 18px 10px;
    text-align: center;
    font-size: 15px;
    background: #fff;
}
/*****************************/
.hm_machine {
	padding:60px 0 60px 0;
}
.hm_machine_dtl {
	box-shadow: 8px 10px 11px 0px #ccc;
	padding:30px 20px;
}
.hm_machine_dtl h3 {
	font-size: 26px;
    color: #5857a6;
    font-weight: bold;
    text-transform: capitalize;
    letter-spacing: 1px;
	padding-bottom:15px;
}
.hm_machine_dtl p {
    font-size: 14px;
    line-height: 30px;
}
/*****************************/
.hm_clint_sec {
	padding:40px 0 100px 0;
}
.client-head {
	padding-bottom:30px;
}
.client-head h2 {
	letter-spacing: 1px;
    text-align: center;
    color: #1c589b;
	font-size:30px;
	padding-bottom:5px;
	position:relative;
}
.client-head h2:after {
	position: absolute;
    content: '';
    bottom: 0;
    left: 0;
	right:0;
    width: 10%;
    height: 2px;
    background: #1c589b;
	margin:0 auto;
    display: table;
}
.client img {
	border:1px solid #ccc;
	margin:0 10px;
	padding:5px;
}
/*****************************/
.hm_footer_main {
	padding:60px 0 60px 0;
	background:#1b1b1b;
}
.hm_footer_main .foot_cont_dtl {
    margin-top: -90px;
    margin-bottom: 15px;
    background: #fff;
    color: #2f4d5a;
    border-top: 4px solid #67b0d1;
    text-align: center;
    padding: 40px 20px;
}
.foot_cont_dtl h4 {
	font-size: 22px;
    color: #e31e24;
    text-align: center;
	font-weight:bold;
	text-transform:capitalize;
	letter-spacing:1px;
    line-height: 30px;
	padding-bottom:15px;
}
.foot_cont_dtl p {
    color: #7a7a7a;
    line-height: 22px;
    letter-spacing: 0.25px;
    padding-bottom: 10px;
}
.foot_cont_dtl p span {
	color:#000;
	font-weight:bold;
}
.social-icon ul {
    margin: 0 auto;
	margin-top:20px;
    display: table;
}
.social-icon ul li {
    float: left;
    padding: 0 8px;
}
.social-icon ul li a i {
    font-size: 14px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    transition: all .8s;
	color:#fff;
    -webkit-transition: 0.8s ease;
}
.icon1 i {
    background: #4d6bb3;
    color: #fff;
    border: 1px solid #4d6bb3;
}
.icon2 i {
    background: #2ba63a;
    color: #fff;
    border: 1px solid #2ba63a;
}
.icon3 i {
    background: #ed2a24;
    color: #fff;
    border: 1px solid #ed2a24;
}
.icon5 i {
    background: #0078b5;
    border: 1px solid #5857a6;
}
.social-icon ul li a:hover i {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
    border-radius: 5px;
}
.foot_link h4 {
	font-size: 22px;
    color: #fff;
	text-transform:capitalize;
	letter-spacing:1px;
	padding-bottom:10px;
}
.foot_link ul li a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 26px;
    opacity: 0.75;
	letter-spacing:0.25px;
}
.foot_link ul li a i {
	margin-right:5px;
}
.foot_link ul li a:hover {
    opacity: 1;
    color: #fff;
}
.foot-add {
	padding-bottom: 20px;
}
.foot-icon {
	float: left;
}
.foot-icon i {
	font-size: 14px;
    color: #fff;
    background: #ed2a24;
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
}
.foot-para {
	padding-left: 40px;
}
.foot-para p a {
	color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 26px;
	font-family: 'Montserrat', sans-serif;
}
.foot-para h6 {
	padding-bottom: 5px;
	font-size: 15px;
	color: #050708;
	font-weight: bold;
}
.footer_middle {
    background: #fff;
    /* text-align: center; */
	padding-bottom:20px;
}
.foot_btn {
    width: 100%;
    background: #ed2a24;
    padding: 20px 0;
    position: relative;
    z-index: 1;
    top: -32px;
}
.foot_menu ul {
	margin:0 auto;
	display:table;
}
.foot_menu ul li {
	float:left;
	border-right: 2px solid #f7f7f7;
}
.foot_menu ul li a:hover {
	color:#000;
}
.foot_menu ul li a {
	padding:0 15px;
	color:#fff;
	font-size:16px;
	letter-spacing:1px;
}
.foot_last p {
	/* text-align:center; */
	font-size:16px;
	display:block;
}
.foot_last p a {
	color:#ed2a24;
}
/*****************************/
.inn_abt_banner {
	position:relative;
	background-position:center;
	background-size:cover;
	background:url(../images/about-banner.png) no-repeat;
	height:350px;
}
.inn_abt_hed h1 {
	padding-top:200px;
	text-transform:uppercase;
	color:#fff;
	letter-spacing:2px;
	font-weight:bold;
	text-align:center;
	font-size:36px;
}
.inn_about_main {
	padding:80px 0;
}
.inn_abt_mg img {
	margin-top: -130px;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
	border-radius:0 50px 0 50px;
	margin-bottom:50px;
}
.inn_abt_mg1 img {
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
	border-radius:0 50px 0 50px;
	margin-bottom:50px;
}
.inn_abt_dtl h3 {
	font-size:26px;
	color: #5857a6;
    font-weight: bold;
    text-transform: capitalize;
    letter-spacing: 1px;
    padding-bottom: 5px;
}
.inn_abt_dtl span {
    font-size: 18px;
	font-weight:bold;
	display:block;
    padding-bottom: 10px;
}
.inn_abt_bx_para {
	border-bottom: 5px solid #ed2a24;
    padding: 15px;
    margin-bottom: 20px;
    background: rgba(244,244,244,.6);
}
.inn_abt_bx_para p {
	font-size: 14px;
    line-height: 30px;
}
.abt_heding {
	display:inline-block;
}
.abt_circle img {
	width:40px;
	height:40px;
}
.abt_circle {
    float: left;
    background: #2d3192;
    line-height: 60px;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    text-align: center;
    vertical-align: middle;
    -webkit-box-shadow: 4px 4px 0px 0px rgba(204,204,204,1);
    -moz-box-shadow: 4px 4px 0px 0px rgba(204,204,204,1);
    box-shadow: 4px 4px 0px 0px rgba(204,204,204,1);
}
.abt_heding h4 {
	display:table;
	vertical-align:middle;
	padding-left:25px;
	padding-top:15px;
	font-weight:bold;
	font-size:20px;
}
.inn_abt_bx_para ul {
	padding-top:5px;
}
.inn_abt_bx_para ul li i {
	margin-right:10px;
}
.inn_abt_bx_para ul li {
	font-weight:bold;
	line-height:26px;
}
/*****************************/
.inn_contact_main {
	padding:80px 0 0 0;
	position:relative;
	z-index:1;
	display:block;
}
.inn_cont_dtl {
	background-color: transparent;
    background-image: linear-gradient(145deg, #0039e4 0%, #2d3192 100%);
	padding: 60px 60px 60px 60px;
	border-radius: 15px 15px 15px 15px;
	position:relative;
	margin-bottom:-70px;
}
.cont_dtl {
	padding-bottom:25px;
}
.cont_dtl h2 {
	font-weight:bold;
	color:#fff;
	font-size: 30px;
	padding-bottom:10px;
}
.cont_dtl p {
	font-size:14px;
	line-height:27px;
	color:#fff;
}
.cont_mg {
	float:left;
	background-image: linear-gradient(145deg, #0039e4 0%, #2d3192 100%);
    line-height: 40px;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    text-align: center;
    vertical-align: middle;
    -webkit-box-shadow: 1px 2px 0px 0px rgba(204,204,204,1);
    -moz-box-shadow: 1px 2px 0px 0px rgba(204,204,204,1);
    box-shadow: 1px 2px 0px 0px rgba(204,204,204,1);
}
.cont_mg i {
	font-size:18px;
	display:block;
	line-height:40px;
	color:#fff;
}
.cont_bx {
	padding-left:55px;
}
.cont_bx h6 {
	font-weight:bold;
	color:#f2f2f2;
	font-size:18px;
	padding-bottom:5px;
}
.cont_bx span {
	font-size:14px;
	line-height:27px;
	color:#fff;
}
.cont_add {
	padding-bottom:15px;
}
.cont_form {
	padding:15px 30px;
}
.cont_frm_hed h4 {
	color:#333;
	font-weight:bold;
	padding-bottom:20px;
	position:relative;
	padding-left:20px;
}
.cont_frm_hed h4:after {
	position: absolute;
    content: "";
    width: 7px;
    height: 7px;
	border-radius:50px;
    background: #2d3192;
    top: 12px;
    left: 0;
}
input[type=text], [type=email], [type=number], textarea, select {
	color: #7e7e7e;
    border: 1px solid #bbbbbb;
    border-radius: 23px;
    padding: 12px 20px;
	width:100%;
}
.butn-bg {
	font-size: 16px;
    background: #ed2a24;
    color: #fff;
    padding: 5px 25px;
    border-radius: 50px;
    border: 0px;
    cursor: pointer;
	line-height:40px;
	margin: 0 auto;
    display: block;
}
.butn-bg i {
    line-height: 40px;
	font-size:20px;
    text-align: center;
    display: inline-block;
    margin-left: 14px;
}
.butn-bg:hover {
	background-image: linear-gradient(145deg, #0039e4 0%, #2d3192 100%);
	color:#fff;
	box-shadow: 5px 5px 0px 0px rgba(204,204,204,1);
}
/*****************************/
.inn_prod_banner {
	position:relative;
	background-size: 100% 100%;
    background: url(../images/product--banner.png) center no-repeat;
	height:350px;
}
.inn_prod_toilet_soap_banner {
	position:relative;
	background-size: 100% 100%;
    background: url(../images/toilet-soap-banner.png) center no-repeat;
	height:350px;
}
.inn_prod_detergent_banner {
	position:relative;
	background-size: 100% 100%;
    background: url(../images/detergent-soap-banner.png) center no-repeat;
	height:350px;
}
.inn_abt_hed h1 {
	padding-top:200px;
	text-transform:uppercase;
	color:#fff;
	letter-spacing:2px;
	font-weight:bold;
	text-align:center;
	font-size:36px;
}
.inn_product_main {
	padding:80px 0;
}
.product_banner_mg {
	background-image: url(../images/product-shape.png);
    background-position: center right;
    background-repeat: no-repeat;
}
.product_banner_mg1 {
	background-image: url(../images/product-shape1.png);
    background-position: center left;
    background-repeat: no-repeat;
}
.inn_prd_dtl {
    box-shadow: 8px 10px 11px 0px #ccc;
    padding: 30px 20px;
	background:#f2f2ff;
}
.inn_prd_dtl h3 {
    font-size: 26px;
    color: #2d3192;
    font-weight: bold;
    text-transform: capitalize;
    letter-spacing: 1px;
    padding-bottom: 10px;
	position:relative;
	padding-left:30px;
}
.inn_prd_dtl h3:after {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50px;
    background: #ed2a24;
    top: 12px;
    left: 0;
}
.inn_prd_dtl h3:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    border-radius: 50px;
    background: #ed2a24;
    top: 15px;
    left: 0;
}
.inn_prd_dtl p {
    font-size: 14px;
    line-height: 26px;
}
.prd_mch_lst {
	padding-top:10px;
}
.prd_mch_lst p span {
	font-weight:bold;
	color:#ed2a24;
	letter-spacing:0.50px;
	font-size:15px;
}
hr.tall {
    margin: 30px 0;
    background-image: -webkit-linear-gradient(left, transparent, #5857a6, transparent);
    background-image: linear-gradient(to right, transparent, #5857a6, transparent);
    border: 0;
    height: 1px;
}
.inn_prd_bx img {
	/* margin-top:15px; */
    margin-bottom: 15px;
    border-radius: 15px;
    padding: 15px;
    border: 2px solid #f3f2f2;
}
/*****************************/
.inn_quote_main {
	padding:80px 0;
}
.quote_frm_hed {
	text-align:center;
	padding-bottom:20px;
}
.quote_frm_hed h4 {
	color:#333;
	font-weight:bold;
	font-size:18px;
	padding-bottom:10px;
	display:inline-block;
	position:relative;
	padding-left:20px;
	padding-right:20px;
}
.quote_frm_hed h4:after {
	position: absolute;
    content: "";
    width: 7px;
    height: 7px;
	border-radius:50px;
    background: #2d3192;
    top: 8px;
    left: 0;
}
.quote_frm_hed h4:before {
	position: absolute;
    content: "";
    width: 7px;
    height: 7px;
	border-radius:50px;
    background: #2d3192;
    top: 8px;
    right: 0;
}
.btm-watsap {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 99;
}
/*****************************/
.inn_video_main {
	padding:80px 0;
}
/*****************************/
.video-wrapper {
    position: relative;
}
.video-wrapper video {
	border:2px solid #f2f2ff;
}
.video-wrapper img {
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.video-wrapper .video-play-button {
    position: absolute;
    z-index: 10;
    top: 40%;
    left: 50%;
    display: block;
    box-sizing: content-box;
    width: 25px;
    height: 45px;
    padding: 20px;
    border-radius: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.video-wrapper .video-play-button span {
    position: relative;
    display: block;
    z-index: 3;
    top: 10px;
    left: 5px;
    width: 0;
    height: 0;
    border-left: 18px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;;
}
.video-wrapper .video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f70000;
    animation: pulse-border 1500ms ease-out infinite;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.video-wrapper .video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f70000;
    transition: all 200ms;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
@keyframes pulse-border {
	0% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}
	100% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		opacity: 0;
	}
}
.video-wrapper {
	padding-bottom:20px;
}
.video-wrapper h5 {
    color: #fff;
    font-size: 16px;
	text-align:center;
	padding-top:10px;
    padding-bottom: 10px;
	position:relative;
	background:#1b1b1b;
}
/*****************************/
.nb-form {
	position: fixed;
	z-index: 9999;
	width: 300px;
	background: #FFF;
	right: 20px;
	bottom: -475px;
	transition: all .8s cubic-bezier(.22, .67, .43, 1.22) .2s;
	border-radius: 10px 10px 0 0;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

.nb-form:hover {
	bottom: 0px;
}

.title {
	background: #bf261c;
	font-size: 16px !important;
	padding: 7px 15px !important;
	color: #fff !important;
	border-radius: 10px 10px 0 0;
	text-align: center;
}

.new-form form {
	padding: 0 15px 15px 15px;
}

.new-form input,
.new-form textarea {
	font-size: 12px;
	margin-bottom: 10px;
	padding: 6px;
	border: none;
	border-radius: 4px;
	color: #fff;
	border-bottom: 1px solid #f0f0f0;
}

.new-form input:focus,
.new-form textarea:focus {
	outline: none;
	box-shadow: none;
}

.new-form input[type='submit'] {
	display: block;
	width: 120px;
	padding: 0 20px;
	height: 35px;
	line-height: 35px;
	border-radius: 20px;
	cursor: pointer;
	transition: all .4s ease;
	color: #fff !important;
	border: none;
	font-size: 15px;
	margin: 0 15px;
	float: left;
}

.new-form input[type='submit']:hover {
	box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.07), 0 1px 7px 0 rgba(0, 0, 0, 0.02), 0 3px 1px -1px rgba(0, 0, 0, 0.1);
}

.new-form textarea {
	min-height: 70px;
}

.new-form ::-webkit-input-placeholder {
	color: #999;
}

.new-form ::-moz-placeholder {
	color: #999;
}

.new-form :-ms-input-placeholder {
	color: #999;
}

.new-form :-moz-placeholder {
	color: #999;
}

.new-form input[type='submit'] {
	background: #ed2a24;
}

.new-form input[type='submit']:hover {
	background: #000;
}

#mrova-contactform-input {
	width: 95%;
	padding: 5px;
	border: 1px solid #ccc;
	margin-bottom: 10px;
	color: #333;
	font-weight: normal;
	margin-top: 0px;
}

#mrova-contactform-textarea {
	width: 95%;
	height: 70px;
	padding: 5px;
	border: 1px solid #ccc;
	margin-bottom: 10px;
	color: #333;
	font-weight: normal;
}

select.form-select {
	width: 95%;
	font-weight: normal;
	color: #999;
	margin-bottom: 10px;
	border-radius: 0px;
	padding: 3px 6px;
	border-radius: 4px;
	height: 29px !important;
	font-size: 12px;
}

@media screen and (max-width: 676px) {
	.nb-form .message {
		display: none;
	}
	.nb-form form {
		padding-top: 15px;
	}
	.nb-form {
		right: 50%;
		bottom: -320px;
		left: 50%;
		transform: translateX(-50%);
	}

}

.blink_me {
	animation: blinker 1s linear infinite;
}

@-webkit-keyframes blinker {
	0% {
		background-color: #5857a6;
	}
	49% {
		background-color: #5857a6;
	}
	50% {
		background-color: #ed2a24;
	}
	99% {
		background-color: #ed2a24;
	}
	100% {
		background-color: #5857a6;
	}
}

@-moz-keyframes blinker {
	0% {
		background-color: #5857a6;
	}
	49% {
		background-color: #5857a6;
	}
	50% {
		background-color: #ed2a24;
	}
	99% {
		background-color: #ed2a24;
	}
	100% {
		background-color: #5857a6;
	}
}

@keyframes blinker {
	0% {
		background-color: #5857a6;
	}
	49% {
		background-color: #5857a6;
	}
	50% {
		background-color: #ed2a24;
	}
	99% {
		background-color: #ed2a24;
	}
	100% {
		background-color: #5857a6;
	}
}

.open-button {
	background-color: #555;
	color: white;
	padding: 16px 20px;
	border: none;
	cursor: pointer;
	opacity: 1;
	position: fixed;
	bottom: 0px;
	right: 28px;
	width: 280px;
	z-index: 9;
	transition: all 0.4s;
}

.form-popup {
	display: none;
	position: fixed;
	bottom: 0;
	right: 15px;
	z-index: 9999;
	transition: all 0.4s;
	border-radius: 10px 10px 0 0;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

.form-container {
	max-width: 300px;
	padding: 10px;
	background-color: white;
}

.form-container .cancel {
	background-color: #1b1b1b;
	width: 120px;
	padding: 0 20px;
	height: 35px;
	line-height: 35px;
	border-radius: 20px;
	cursor: pointer;
}

.form-popup h5 {
	background-color: #5857a6;
	color: #fff;
	margin: 0px;
	padding: 15px;
	font-size: 16px;
	line-height: 24px;
	border-radius: 10px 10px 0 0;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}
/*****************************/