* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

a,
a:hover {
	text-decoration: none;
}

button,
input {
	overflow: visible;
}

button:focus,
.form-control:focus {
	outline: none;
	box-shadow: none;
}

.vs_fs_50 {
	font-size: calc(1.1rem + 2vw);
}

.vs_fs_40 {
	font-size: calc(1.2rem + 1.2vw);
}

.vs_fs_14 {
	font-size: 14px;
}
.vs_fs_16{
	font-size: 16px;
}
.vs_fs_18{
	font-size: 18px;
}
.vs_fs_24 {
	font-size: 24px;
}
.vs_font_20{
	font-size: 20px;
}
.vs_fs-30{
	font-size: 30px;
}

.vs_orange {
	color: #FF8625;
}
.vs_black {
	color: #000;
}
.vs_white{
	color: #fff;
}
.vs_red {
	color: #ff0000;
}
.vs_gray{
	 color: gray;
}
.vs_blue {
    color: #165095;
}
.vs_l_green{
	 color: #73bd1b;
}
.vs_d_green{
	     color: #084444;
}
.vs_h_bg_blue{
	background: #0e0e0e !important;
}
.vs_bg_d_blue {
	background: #021f42;
}
.vs_bg_orange {
	background: #FF8625;
}
.vs_bg_l_green{
	background: #73bd1b;
}

.vs_light_blue {
	background: #eaf7f6;
}
.vs_bg_grey {
	background: #d8d9dc;
}
.vs_bg_l_grey {
	background-color: #f9f9f9;
}
.vs_br_l_green{
	border-color: #73bd1b !important;
}

.vs_br_orange{
	border-color:  #FF8625 !important;
}
.vs_rg_orange{
	background: radial-gradient(#ff8625, white);
}
.vs_ctm_btn {
	border-radius: 5px;
	border: none;
	padding: 10px 20px;
	background: #FF8625;
	font-weight: 500;
	color: #fff;
	position: relative;
	transition: all 0.3s;
	z-index: 1;
	overflow: hidden;
}


.vs_ctm_btn:before {
	background: #fff;
	content: '';
	position: absolute;
	z-index: -1;
	transition: all 0.3s;
	height: 0%;
	left: 0%;
	top: 0;
	transform: skew(140deg);
	transition-duration: 0.6s;
	transform-origin: top left;
	width: 0;
}

.vs_ctm_btn:hover:before {
	height: 100%;
	width: 100%;
}
.vs_ctm_btn a{
	color: #fff;
}
.vs_ctm_btn:hover,
.vs_ctm_btn:hover a {
	color: #FF8625;
}
.vs_hover_text:hover{
	color: #FF8625;
}
.vs_overlay_clr, .vs_overlay_clr_2 {
	position: relative;
}

.vs_overlay_clr:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	background: #000;
	opacity: 0;
}
.vs_overlay_clr_2:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	background: #0000006e;
	opacity: 0.3;
}
.vs_heading_bor{
	    border: 7px solid #ff8625;
    padding: 0;
}
.vs_img_150{
	width: 150px;
	object-fit: cover;
}
.vs_text_d_l:hover{
	text-decoration: underline;
}
.vs_comy_table .table>:not(:first-child) {
    border-top: 0px solid currentColor !important;
}


/*menu s*/

.vs_navbar {
	position: fixed;
	background: #ffffff;
	width: 100%;
	z-index: 999;
	padding: 0px 0px;
	transition: all 0.3s ease;
}


.vs_navbar.sticky {
	position: fixed;
	background: #ffffff;
	padding: 15px 0;
	box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
	top: 0;
}

.vs_navbar .vs_content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

nav.vs_navbar.sticky img {
	width: 115px;
	object-fit: cover;
}

nav.vs_navbar.sticky .vs_content {
	align-items: center;
}

.vs_logo img {
	    width: 100px;
    
    object-fit: cover;
}

.vs_navbar .vs_menu-list {
	display: inline-flex;
	margin-bottom: 0;
	align-items: center;
}

.vs_menu-list li {
	list-style: none;
}

.vs_menu-list li a {
	color: #000000;
	letter-spacing: 1px;
	margin-left: 20px;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 13px;
}

.vs_menu-list li a:hover {
	color: #FF8625;
}

.vs_icon {
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	display: none;
}

.vs_menu-list .vs_cancel-btn {
	position: absolute;
	right: 30px;
	top: 20px;
}

.vs_play_img img {
	width: 165px;
	margin: 5px;
}

.vs_menu_hover{
    position: relative;
    }
    .vs_submenu_hover { 
  visibility: hidden; /* hides sub-menu */
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
 /* width: 100%;*/
     width: 350px;
      padding: 10px 0;
  transform: translateY(-2em);
  z-index: -1;
  background: #ffffff;
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

.vs_menu_hover:focus .vs_submenu_hover,
.vs_menu_hover:focus-within .vs_submenu_hover,
.vs_menu_hover:hover .vs_submenu_hover {
  visibility: visible; /* shows sub-menu */
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s; /* this removes the transition delay so the menu will be visible while the other styles transition */
}
.vs_menu-list .vs_submenu_hover li{
	padding-block: 6px;
	transition: all 0.5s;
}
.vs_menu-list .vs_submenu_hover li:hover{
    background: #fff;
}
.vs_menu-list .vs_submenu_hover li:hover a{
	    color: #165095;
}


.vs_menu_hight_l{
    background: white;
    color: #165095 !important;
    font-weight: 600;
    padding: 5px;
    border-radius: 2px;
    box-shadow: 0px 0px 10px #ffffffa8;
}




/*menu e*/


   .vs_new_pro{
            background: linear-gradient(-45deg, #0094d8, #ff8625, #ffffff, #000000);
    background-size: 400% 400%;
    animation: Gradient_h 3s ease infinite, rocking_h 3s ease infinite;
    animation-delay: 2s;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ffffff;
    position: fixed;
    top: 140px;
    right: 0;
    z-index: 99999;
   }
   .vs_navbar.sticky .vs_new_pro {
    top: 98px;
	}
   .vs_new_pro a{
          color: #ffffff;
    font-weight: 600;
    font-size: 18px;
   }
 

@keyframes Gradient_h {

  0% {
    background-position: 0 50%;
}

  50% {
    background-position: 100% 50%;
}

  100% {
    background-position: 0 50%;
}
}

@keyframes rocking_h {

  0% {
    transform: rotate(0);
}

  25% {
    transform: rotate(0);
}

  50% {
    transform: rotate(2deg);
}
75% {
    transform: rotate(-2deg);
}
100% {
    transform: rotate(0);
}
}


/*home banner s*/

.vs_home_banner_slider .owl-stage-outer {
	position: relative;
	overflow: hidden;
	-webkit-transform: translate3d(0, 0, 0)
}

.vs_home_banner_slider .owl-item {
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-touch-callout: none;
}

.vs_home_banner_slider.owl-theme.owl-loaded.owl-drag {
	position: relative;
}

.vs_home_banner_slider.owl-theme .owl-nav {
	display: none;
}

.vs_banner_data {
	width: 80%;
	/*top: 50%;*/
	top: 64%;
	z-index: 99;
	left: 50%;
	transform: translate(-50%, -50%);
	position: absolute;
	background-color: #0000006b;
    padding-bottom: 3rem !important;
    padding: 0 25px;
    border-radius: 10px
}

.vs_home_b_s_img {
	height: 100vh;
	object-fit: cover;
	width: 100%
}


/*home banner E*/

.vs_all_logo_slider .owl-stage-outer {
	position: relative;
	overflow: hidden;
	-webkit-transform: translate3d(0, 0, 0)
}

.vs_all_logo_slider .owl-item {
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-touch-callout: none;
}

.vs_all_logo_slider.owl-theme.owl-loaded.owl-drag {
	position: relative;
}

.vs_all_logo_slider.owl-theme .owl-nav button {
	position: absolute;
	top: 50%;
	transform: translate(0%, -50%);
	border: none;
	background: transparent;
}

.vs_all_logo_slider.owl-theme .owl-nav button span {
	font-size: 85px;
	line-height: 0;
	color: #ff8625;
}

.vs_all_logo_slider.owl-theme .owl-nav .owl-next {
	right: 0;
}

.vs_all_logo_slider.owl-theme img {
	width: 150px;
	object-fit: cover;
}


/*vs_Service S*/

.vs_Service_icon i {
	font-size: 60px;
	color: #021f42;
}

.vs_Service_box {
	background: white;
	padding: 10px;
	border-radius: 10px;
	transition: all 0.9s;
}

.vs_Service_box:hover {
	box-shadow: 0px 0px 10px 0 #021f42;
}

.vs_Service_icon:hover {
	animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
	perspective: 1000px;
}

@keyframes shake {
	10%,
	90% {
		transform: translate3d(-1px, 0, 0);
	}
	20%,
	80% {
		transform: translate3d(2px, 0, 0);
	}
	30%,
	50%,
	70% {
		transform: translate3d(-4px, 0, 0);
	}
	40%,
	60% {
		transform: translate3d(4px, 0, 0);
	}
}


/*vs_Service E*/

.vs_project_tab .nav-link.active {
	color: #FF8625;
}

.vs_project_details img {
	transition: all 0.9s;
}

.vs_project_details img:hover {
	transform: scale(1.5);
}

.vs_project_details {
	/*border: 1px solid #999999;*/
	padding: 10px;
	background: white;
	/*box-shadow: 0px 0px 5px #000000d9;*/
}
.vs_project_details_btn{
	    position: absolute;
    width: 90%;
    bottom: 15px;
    left: 50%;
    transform: translate(-50%, -6px);
}
/*.vs_project_details hr{
	position: absolute;
    width: 90%;
    bottom: 65px;
    left: 50%;
    transform: translate(-50%, -6px);
}*/


.vs_img_250 {
	height: 250px;
	width: 100%;
	object-fit: cover;
}
.vs_prime_img figure{
	overflow: hidden;
}
.vs_prime_img img:hover {
    transform: scale(1.5) !important;
}
.vs_prime_img img{
	transition: all 0.9s;
}



.prodect_slider .owl-stage-outer{
         position:relative;
         overflow:hidden;
         -webkit-transform:translate3d(0,0,0)
         } 
         .prodect_slider .owl-item{
         min-height:1px;
         float:left;
         -webkit-backface-visibility:hidden;
         -webkit-touch-callout:none;
         }
         .prodect_slider.owl-theme.owl-loaded.owl-drag {
         position: relative;
         }

         .prodect_slider .owl-nav button {
         position: absolute;
         top: 50%;
         border: none;
         border-radius: 100%;
         width: 40px;
         height: 40px;
         outline: none;
         transform: translate(-50%, -50%);
         background: transparent;
         }
         .prodect_slider .owl-nav button.owl-prev {
         left: 40px;
         }
         .prodect_slider .owl-nav button.owl-next {
         right: 0;
         }
         .prodect_slider .owl-nav button span{
         	font-size: 60px;
    line-height: 0;
    color: white;
         }
         .prodect_slider img{
         	width: 100%;
         	height: 350px;
         	object-fit: cover;
         }


         .vs_img_80{
         	width: 80px;
    		object-fit: cover;
         }


.vs_newslatter {
	box-shadow: 0 0 10px 0 #021f4269;
	border-radius: 5px;
}

.vs_contact_mod .btn-close{
	    width: 1px;
    height: 1px;
    background-size: 10px;
}
.show{
	display: block;
}

.vs_footer_main a {
	color: #fff;
}

.vs_footer_main a:hover {
	color: #FF8625;
}
.vs_ftr_top img{
	width: 180px;
    object-fit: cover;
        filter: drop-shadow(2px 4px 6px black);
}
.vs_ftr_socl li{
    background: #165095;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.vs_fb_bg{
	background: #4267b2 !important;
}
.vs_tw_bg{
	background: #00a7e7 !important;
}
.vs_lin_bg{
	background: #0077b5 !important;
}
.vs_int_bg{
	background: #cf3aa1 !important;
}

/*vs_last_btn S*/
.vs_last_btn {
	position: fixed;
	bottom: 20px;
	right: 40px;
}

.vs_last_btn button {
	display: none;
}

.vs_last_btn button.show {
	display: block;
}
/*vs_last_btn E*/
/*vs_down_page_box S*/
.vs_down_page.show{
	visibility: hidden;
}

.vs_down_page {
	visibility: visible;
}

.vs_down_page{
          position: fixed;
    top: 50%;
    right: 30px;
    background: #0404046b;
    width: 43px;
    height: 85px;
    display: flex;
    /*align-items: center;*/
    justify-content: center;
    border-radius: 25px;
    z-index: 999999;
}

.vs_down_page_box span {
     width: 20px;
    height: 20px;
    display: block;
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
    transform: rotate(45deg);
    animation: animate 2s infinite;
    color: white;
    border-image: linear-gradient( to bottom, #ffeb3b, #ff8625 ) 1 30%;
}

.vs_down_page_box span:nth-child(2) {
  animation-delay: -0.2s;
}

.vs_down_page_box span:nth-child(3) {
  animation-delay: -0.4s;
}

@keyframes animate {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: rotate(45deg) translate(10px, 10px);
  }
  100% {
    opacity: 0;
  }
}
/*vs_down_page E*/

.vs_video_details{
    right: 0%;
    position: absolute;
    top: 50%;
    z-index: 9;
    background: #021f42;
    /*background: white;*/
    /*width: 500px;*/
    width: calc(7rem + 30);
    padding: 20px;
    transform: translate(0, -50%);
    color: #fff;
}



.vs_resi_p_img figcaption{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.vs_resi_p_img img{
	    transition: all 2s;
    filter: brightness(0.7);
}
.vs_resi_p_img img:hover{
	
	transform: scale(1.5);
}

.vs_com_box{
	    background: white;
    box-shadow: 0 4px 16px -2px rgb(0 0 0 / 10%), 0 0 0 1px rgb(0 0 0 / 2%);
    padding-bottom: 5px;
}


.vs_com_p_img {
	position: relative;
	overflow:hidden;
}
/*.vs_com_p_img img:hover{
	 transition: all 2s;
}
.vs_com_p_img img:hover{
	transform: scale(1.5);
}*/
.vs_com_p_img::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%,
	 rgba(255,255,255,.3) 100%);
	transform: skewX(-25deg);
}
.vs_com_p_img:hover::before {
	-webkit-animation: shine .75s;
	animation: shine .75s;
}



@keyframes shine {
	100% {
		left: 125%;
	}
}
.vs_com_p_img img{
	    height: 250px;
    object-fit: cover;
}
.vs_hover_bg:hover{
background: #fff;
}


.vs_dis_box{
	    background: white;
    box-shadow: 0 4px 16px -2px rgb(0 0 0 / 10%), 0 0 0 1px rgb(0 0 0 / 2%);
}

.vs_discount{
	position: absolute;
    top: 0px;
    background: #ff8625;
    width: 40px;
    display: flex;
    height: 40px;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.vs_sel_form{
	 background: white;
    box-shadow: 0 4px 16px -2px rgb(0 0 0 / 10%),
    0 0 0 1px rgb(0 0 0 / 2%);
}
.vs_all_banner{
    height: 65vh;
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 3rem;
}
.vs_pro_banner{
	    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgb(94 89 89 / 40%)),
	     url(../img/residen_banner.jpg);

}
.vs_about_banner{
	background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgb(94 89 89 / 40%)),
	     url(../img/about_banner.jpg);
}

.vs_lord_lo_box{
	    background: #165095;
    width: fit-content;
    padding: 12px;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 5px;
}
.vs_lord_lo_box img{
	    width: 40px;
    height: 40px;
    object-fit: cover;
}
.vs_lord_enq_from input{
	    padding: 4px !important;
    line-height: 0;
    height: 35px !important;
}
.vs_lord_enq_from label{
	padding-block: 4px;
	    font-size: 13px;
}
.vs_lord_table{
	background: #3c77bd;
    padding: 3rem;
    color: white;
}
.vs_lord_table thead{
	color: #fff;
	font-size: 20px;

}
.vs_lord_table tbody{
	color: #ebdfdf;
}
 .vs_lord_table tbody td{
	    vertical-align: middle;
}
.vs_comy_table .vs_comy_table_srcoll{
	    height: 350px;
    overflow: scroll;
}
.vs_comy_table tr{
	vertical-align: middle;
}


.vs_up_box{
	    box-shadow: 0 0 5px #ff8625;
    border-radius: 10px;
}
.vs_up_head{
	    background: #ff8625;
    color: white;
    padding-left: 20px;
    padding-block: 15px;
    box-shadow: 0px 0px 10px #165095;
    border-radius: 10px;
}


.vs_box_shadow {
    box-shadow: 0px 0px 11px 2px #42424214;  
}

.br_10{
	border-radius: 10px;
}
.vs_ex_button{
	    background: #165095 !important;
    border-radius: 5px !important;
    border: 1px solid #ff8704;
    box-shadow: 0 0 10px #ff862599;
    transition: all 0.5s;
}
.vs_ex_button:hover {
    background: #ff8625 !important;
    border-radius: 5px !important;
    border: 1px solid #165095;
    box-shadow: 0 0px 10px #165095 !important;
    transform: scaleY(1.1);
}
.vs_ex_btn_1{
	    background: #ff8625;
    color: white;
    font-size: 20px;
    font-weight: 500;
    padding: 5px 20px;
    border-radius: 5px;
    border: none;
    transition: all 0.5s;
}
.vs_ex_btn_1 img{
	width: 50px;
	object-fit: cover;
	    filter: invert(1);
}
.vs_ex_btn_1:hover{
	box-shadow: 0px 0px 10px #ff8625c2;
}
@keyframes shaker {
   10%,
   90% {
      transform: translate3d(-1px, 0, 0);
   }
   20%,
   80% {
      transform: translate3d(2px, 0, 0);
   }
   30%,
   50%,
   70% {
      transform: translate3d(-4px, 0, 0);
   }
   40%,
   60% {
      transform: translate3d(4px, 0, 0);
   }
}


   .vs_call_sheckg:hover {
    animation: shaker 0.82s cubic-bezier(.36, .07, .19, .97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}
footer{
	background-image: linear-gradient(rgb(2 31 66), rgb(22 80 149 / 88%)), url(../img/footer_banner.jpg)!important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}



@media (max-width:1199px) {
	.vs_navbar .vs_logo img {
		width: 115px;
	}
	.vs_menu-list li a {
		font-size: 14px;
	}
	body.disabled {
		overflow: hidden;
	}
	.vs_navbar {
		padding: 10px 0;
	}
	.vs_icon {
		display: block;
	}
	.vs_icon.hide {
		display: none;
	}
	.vs_navbar .vs_menu-list {
		position: fixed;
		height: 100vh;
		width: 100%;
		max-width: 340px;
		right: -100%;
		top: 0px;
		display: block;
		padding: 40px 0;
		text-align: center;
		background: #165095;
		transition: all 0.3s ease;
		overflow: auto;
	}
	.vs_navbar.show .vs_menu-list {
		right: 0%;
	}
	.vs_navbar .vs_menu-list li {
		margin-top: 35px;
	}
	.vs_navbar .vs_menu-list li a {
		font-size: 16px;
		margin-right: -100%;
		transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	}
	.vs_navbar.show .vs_menu-list li a {
		margin-right: 0px;
	}
	.vs_menu_hover ul{
        position: relative;
        padding: 10px 10px !important;
        background: #fff;
    }
    .vs_menu_overflow{
            overflow-y: scroll;
            height: 175px;
        }
        .vs_menu_hover ul a{
        color: #000;
    }
    .vs_menu_hover ul li{
    	margin-top: 5px !important;
    }
    .vs_menu_hover ul a:hover{
        color: #b90a0a;
    }



.vs_submenu_hover {
  position: absolute;
  top: 100%;
    left: 0%;
display: none;
width: 100%
}
.vs_menu_hover:focus .vs_submenu_hover,
.vs_menu_hover:focus-within .vs_submenu_hover,
.vs_menu_hover:hover .vs_submenu_hover
 {
  display: block;
}
}

@media (max-width: 991px) {
	/*nav.vs_navbar.sticky img {
		width: 90px;
	}*/
	.vs_project_details {
    padding-bottom: 20px;
}
.vs_Service_box h5{
	font-size: 16px;
}
}
@media (max-width: 767px) {
	.vs_video_details{
		position: relative;
		width: 100%;
    text-align: center;
    top: 0;
    transform: translate(0px, -6px);
	}
	.vs_project_details_btn {
    position: initial;
    width: 100%;
    bottom: 0;
    left: 0;
    transform: translate(0%, 0px);
}
	.vs_lord_lo_box {
	    width: 100%;
	}
}

@media (max-width: 599px) {
	.vs_testi_div {
		display: block;
	}
}



.mystyle1516{
	color: #F8F8F8;
  letter-spacing: 1px;
  margin-left: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 13px;
}
#form-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 100000;
}
.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border: 1px solid #000;
    width: 80%;
    max-width: 500px;
    text-align: center;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

/* Increase the font size and input size for better visibility */
.popup-content input {
    font-size: 18px;
    padding: 10px;
    width: 100%;
}

.popup-content label {
    display: block;
    text-align: left;
}
.get-price-offer{
	cursor: pointer;
}

.border-raius-40{border-radius:40px;}.border-raius-40::before{border-radius: 40px;}.border-raius-40::after{border-radius: 40px;}.cta-gd{background-color:#375e95;color:white;}


/*#borucherdownload{*/
/*    display: none;*/
/*  position: fixed;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background-color: rgba(0, 0, 0, 0.7);*/
/*  z-index: 1000;*/
/*}*/

/*#floordownload {*/
/*  display: none;*/
/*  position: fixed;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background-color: rgba(0, 0, 0, 0.7);*/
/*  z-index: 1000;*/
/*}*/


