@charset "utf-8";
/* CSS Document */
body{ 
  width:100%;
  padding:0; 
  margin:0; 
  background:#fff; 
  color:#fff; 
  font-family: 'Poppins', sans-serif;
}

a{ 
  display:inline-block;
  text-decoration:none;
  padding:0; 
  margin:0; 
  transition:all 500ms ease-in-out;
}

a:focus, a:hover{ 
  outline:none; 
  text-decoration:none; 
}

h1, h2, h3, h4, h5, h6{
  margin:0;
  padding:0;
}

ul,li{ 
  padding:0; 
  margin:0; 
  list-style:none; 
}

button:focus{
  outline:none;
}

img{
  max-width:100%;
  height:auto;
}

/* ===== common css ====== */
.common_btn{
  font-size:14px;
  color:#fff;
  line-height:16px;
  background:#393939;
  padding:12px 20px;
  position:relative;
  z-index:999;
}

.common_btn:before,
.common_btn2:before{
  content:"";
  position:absolute;
  width:0;
  height:0;
  background:#000;
  left:0;
  top:0;
  z-index:-1;
  transition:all 500ms ease-in-out;
}

.common_btn:hover:before,
.common_btn2:hover:before{
  width:100%;
  height:100%;
}

.common_btn:hover{
  color:#fff;
}

.common_btn2{
  font-size:14px;
  color:#fff;
  line-height:16px;
  background:#393939;
  padding:12px 20px;
  position:relative;
  z-index:999;
}

.common_btn2:before{
  background:#000;
  left:auto;
  right:0;
  top:auto;
  bottom:0;
}

.common_btn2:hover{
  color:#fff;
}

.text-common{
  font-size:14px;
  color:#000;
  line-height:24px;
  padding-bottom:20px;
}

/* ===== Header Starts ====== */
.navbar-default{ 
  background:#fff;
  border:none;
  padding:0;
  margin:0; 
  transition:all 600ms ease-in-out; 
}

.header-top{
  padding:15px 0;
  transition:all 600ms ease-in-out; 
}

.hd-logo{
  width:220px;
  transition:all 600ms ease-in-out; 
}

.hd-contact .block{
  display:inline-block;
  margin-right:25px;
}

.hd-contact .block:last-child{
  margin-right:0;
}

.hd-contact .block .icon{
  display:inline-block;
}

.hd-contact .block .text{
  display:inline-block;
  vertical-align:middle;
  padding-left:12px;
}

.hd-contact-title{
  font-size:16px;
  color:#010101;
  line-height:18px;
  font-weight:600;
  padding-bottom:5px;
}

.hd-contact-main{
  font-size:14px;
  color:#080808;
  line-height:16px;
  font-weight:500;
}

.hd-contact-main a{
  color:#080808;
}

.hd-contact-main a:hover{
  color:#000;
}

.hd-link{
  background:#010101;
/*   padding:15px 25px; */
}

.hd-link ul li.astm-search-menu a{
  width:45px;
  height:45px;
  line-height:45px;
  background:#765f47 !important;
  border-radius:50%;
}

.hd-search a{
  background:#765f47;
  width:50px;
  height:50px;
  line-height:50px;
  text-align:center;
  border-radius:50%;
}

.header-nav li.nav-item{
	float:left;
	text-align:center
}

.header-nav li.nav-item a{
	font-size:16px;
	color:#fff;
	line-height:22px;
	font-weight:500;
	padding:15px 43.52px;
}

.header-nav li.nav-item.active a,
.header-nav li.nav-item a:hover{
	background:#fff;
	color:#010101;
}

.header-nav li.has-submenu .heading{
	background:url(https://bakuhomes.com.au/wp-content/uploads/2025/04/down-arrow0102.png) no-repeat right center;
	padding-right:22px;
}

.header-nav li.has-submenu a:hover .heading{
	background:url(https://bakuhomes.com.au/wp-content/uploads/2025/04/down-arrow0103.png) no-repeat right center;
}

.header-nav li.nav-item a:hover .description{
	color:#060606;
}

.header-nav li.nav-item .description{
	display:block;
	font-size:14px;
	color:#EAEAEA;
}

.header-nav .submenu{
	position:absolute;
	width:100%;
	background:rgba(255,255,255,.96);
	left:0;
	top:100%;
	visibility:hidden;
	opacity:0;
	padding:20px 0;
}

.header-nav li.nav-item:hover .submenu{
	visibility:visible;
	opacity:1;
}

.header-nav .submenu li a{
	margin:0 20px;
	padding:0;
}

.header-nav .submenu li a:hover{
	background:none;
}

.header-nav .submenu li .sub-menu-title{
	display:block;
	color:#1c1c1c;
	padding-top:6px;
}

@media screen and (min-width:992px){
	.navbar-default.navbar-fixed{
		box-shadow:0 4px 6px rgba(0,0,0,.2);
	}
	
  .navbar-default.navbar-fixed .header-top{
    padding:10px 0;
  }

  .navbar-default.navbar-fixed .hd-logo{
    width:130px;
  }

}

.home-banner{
  margin-top:234px;
}

.home-banner .desc{
  left:0;
  bottom:35%;
}

.banner-sm-title{
  font-size:22px;
  line-height:24px;
  font-weight:600;
  padding-bottom:10px;
}

.banner-bg-title{
  font-size:45px;
  line-height:52px;
  padding-bottom:25px;
}

.banner-content a{
  font-size:16px;
  color:#fff;
  line-height:18px;
  font-weight:500;
  border:2px solid #000;
  padding:12px 20px;
  position:relative;
  z-index:999;
}

.banner-content a:hover{
  color:#fff;
}

.banner-content a:before{
  content:"";
  position:absolute;
  width:0;
  height:0;
  background:#090909;
  left:0;
  top:0;
  z-index:-1;
  transition:all 500ms ease-in-out;
}

.banner-content a:hover:before{
  width:100%;
  height:100%;
}

.banner-btm-panel{
  margin-top:-100px;
}

.banner-btm-box{
  background:#010101;
  padding:25px;
}

.banner-btm-panel .col-lg-6:nth-child(2) .banner-btm-box{
  background:#fff;
}

.banner-btm-box .icon{
  display:inline-block;
}

.banner-btm-box .text{
  display:inline-block;
  width:84%;
  vertical-align:top;
  padding-left:15px;
}

.banner-btm-title{
  font-size:20px;
  color:#0b0b0b;
  line-height:22px;
  font-weight:600;
  padding-bottom:15px;
}

.quick-search-panel,
.choose-panel,
.partner-logo-panel{
  padding:45px 0;
}

.quick-search-box{
  display:inline-block;
  vertical-align:middle;
  margin-right:85px;
}

.quick-search-box:last-child{
  margin-right:0;
}

.quick-search-title{
  display:inline-block;
  font-size:20px;
  color:#0d0d0d;
  line-height:25px;
  font-weight:600;
  vertical-align:middle;
  padding-right:12px;
}

.quick-search-box .form-check-input[type="radio"]{
  border-radius:0;
}

.quick-search-box .form-check-input[type="radio"]:focus{
  box-shadow:none;
}

.form-radio{
  display:inline-block;
  vertical-align:middle;
}

.form-radio .form-check{
  display:inline-block;
  vertical-align:middle;
  margin-right:8px;
}

.form-radio .form-check:last-child{
  margin-right:0;
}

.form-radio .form-check label{
  font-size:16px;
  color:#0d0d0d;
  line-height:18px;
  font-weight:500;
}

.form-radio .form-control{
  width:50px;
  height:42px;
  background:none;
  border-radius:0;
  font-size:16px;
  color:#0d0d0d;
  line-height:20px;
  padding:10px;
}

.form-radio .form-control:focus,
.quick-search-box .btn:focus{
  box-shadow:none;
}

.quick-search-box .btn{
  font-size:16px;
  color:#fff;
  line-height:18px;
  font-weight:500;
  background:#393939;
  border:none;
  border-radius:0;
  padding:12px 25px;
}

.quick-search-box .btn:hover{
  background:#010101;
  color:#fff;
}

.service-panel{
	padding-bottom:45px;
}

.service-box:before{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,.6);
  left:0;
  top:0;
  opacity:0;
  visibility:hidden;
  transition:all 500ms ease-in-out;
}

.service-box:hover:before,
.service-box:hover .service-content .upper{
  opacity:1;
  visibility:visible;
}

.service-content{
  left:0;
  bottom:0;
}

.service-content .upper{
  opacity:0;
  visibility:hidden;
  padding:20px;
  transition:all 500ms ease-in-out;
}

.service-content .lower{
  display:flex;
  background:#2b2b2b;
  justify-content:space-between;
  align-items:center;
}

.service-title{
  font-size:18px;
  color:#fff;
  line-height:24px;
  font-weight:600;
  padding-left:20px;
}

.service-btn a{
  background:#393939;
  text-align:center;
  padding:15px;
}

.service-box:hover .service-btn a{
  background:#010101;
}

.choose-panel{
  background:#f5f5f5;
}

.choose-img-content{
  left:0;
  bottom:0;
  padding:0 25px 25px;
}

.choose-bg-title{
  font-size:30px;
  color:#020202;
  line-height:36px;
  font-weight:600;
  padding-bottom:18px;
}

.choose-bg-title span{
  display:block;
  color:#fff;
}

.choose-sm-title{
  font-size:16px;
  color:#000;
  line-height:20px;
  font-weight:500;
}

.choose-bg-title.edge-title{
  font-size:50px;
  line-height:58px;
}

.choose-bg-title.studio-title span{
  color:#fff;
  text-shadow:0 7px 7px rgba(0,0,0,.5);
}

.choose-content{
  background:#fff;
  transition:all 500ms ease-in-out;
}

.choose-box.edge-box:hover .choose-content{
  background:#d2d2d2;
}

.choose-md-title{
  font-size:22px;
  color:#000;
  line-height:28px;
  font-weight:600;
  padding-bottom:20px;
}

.choose-box.edge-box .choose-md-title{
  font-size:30px;
  color:#010101;
  line-height:36px;
  transition:all 500ms ease-in-out;
}

/* .choose-box.edge-box:hover .choose-md-title{
  font-size:30px;
  color:#000;
  line-height:36px;
} */

.choose-box.edge-box .text-common{
  opacity:0;
  visibility:hidden;
  transition:all 500ms ease-in-out;
}

.choose-box.edge-box:hover .text-common{
  opacity:1;
  visibility:visible;
}

.footer-top{
  background:#393939;
  padding:50px 0 35px;
}

.footer-title{
  font-size:20px;
  color:#fff;
  line-height:22px;
  font-weight:600;
  padding-bottom:22px;
}

.ft-link li{
  line-height:0;
  margin-bottom:10px;
}

.ft-link li:last-child,
.ft-contact li:last-child{
  margin-bottom:0;
}

.ft-link li a,
.ft-contact li{
  font-size:14px;
  color:#fff;
  line-height:16px;
}

.ft-link li a:hover,
.ft-contact li a:hover{
  color:#a4a4a4;
}

.ft-contact li{
  margin-bottom:15px;
}

.ft-contact li span{
  display:inline-block;
  width:21px;
  text-align:center;
  margin-right:10px;
}

.ft-contact li a{
  color:#fff;
}

.footer-bottom{
  padding:20px 0;
}

.privacy_link li{
	line-height:0;
	border-right:1px solid #717171;
	margin-right:10px;
	padding-right:10px;
}

.privacy_link li:last-child{
	border-right:none;
	margin-right:0;
	padding-right:0;
}

.privacy_link li a{
	font-size:14px;
	color:#1c1c1c;
	line-height:16px;
}

.privacy_link li a:hover{
	color:#000;
}

.footer-bottom .text-common span{
  color:#717171;
  font-weight:600;
}

[data-animate-in] {
    opacity: 0;
    transition: transform 1s ease, opacity 0.8s ease
}

[data-animate-in="up"] {
    transform: translate3d(0, 24px, 0)
}

[data-animate-in="left"] {
    transform: translate3d(-25%, 0, 0)
}

[data-animate-in="right"] {
    transform: translate3d(25%, 0, 0)
}

[data-animate-in="down"] {
    transform: translate3d(0, -24px, 0)
}

[data-animate-in="fadeIn"] {
    transform: translate3d(0, 0, 0)
}

[data-animate-in].in-view {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transition: transform 0.8s ease, opacity 0.6s ease
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease
}

#back-button {
  display:inline-block;
  background-color:#030303;
  width:50px;
  height:50px;
  line-height:50px;
  text-align:center;
  border-radius:50%;
  position:fixed;
  bottom:25px;
  right:25px;
  opacity:0;
  visibility:hidden;
  z-index:1000;
  cursor:pointer;
  box-shadow:0 6px 16px rgba(0,0,0,.4);
}

#back-button.show {
  opacity:1;
  visibility:visible;
}

.search-results .content-area{
  padding:300px 0 40px;
}

.inner-banner{
  padding:275px 0 40px;
}

.inner-banner-img{
  margin-top:235px;
}

.inner-banner-title{
  font-size:35px;
  color:#1c1c1c;
  line-height:42px;
  font-weight:700;
}

.inner-title{
  font-size:35px;
  color:#010101;
  line-height:42px;
  font-weight:600;
}

.inner-md-title{
  font-size:22px;
  color:#1c1c1c;
  line-height:30px;
  font-weight:500;
}

.inner-sm-title{
	font-size:20px;
	color:#060606;
	line-height:28px;
	font-weight:500;
}

.neighbourhood-box-title{
  font-size:20px;
  color:#060606;
  line-height:28px;
  font-weight:600;
  padding-bottom:16px;
}

.inner-list li{
  font-size:14px;
  color:#2f2f2f;
  line-height:20px;
  font-weight:500;
  background:url(../images/tick-icon001.png) no-repeat left 4px;
  margin-bottom:10px;
  padding-left:28px;
}

.inner-list li:last-child{
  margin-bottom:0;
}

.contact-title{
  font-size:24px;
  color:#010101;
  line-height:26px;
  font-weight:600;
}

.contact-main{
  font-size:17px;
  color:#030303;
  line-height:24px;
  font-weight:500;
}

.contact-main a{
  color:#030303;
}

.contact-main a:hover,
.contact-box .phone:hover{
  color:#393939;
}

.contact-box .phone{
	font-size:26px;
	color:#030303;
	line-height:28px;
	font-weight:700;
}

.contact-form .block{
  margin-bottom:15px;
}

.contact-form .block p{
  margin-bottom:0;
}

.contact-form .block label{
  font-size:14px;
  color:#323232;
  line-height:18px;
  font-weight:500;
  margin-bottom:10px;
}

.contact-form .block .wpcf7-list-item label{
  font-size:14px;
  font-weight:400;
}

.contact-form .block .form-control{
  height:46px;
  border-radius:0;
  border:1px solid rgba(0,0,0,.15);
  background:#fff;
  font-size:16px;
  color:#494848;
  line-height:20px;
  font-weight:500;
  padding:10px 20px;
}

.contact-form .block .form-control::placeholder{
  color:#494848;
  opacity:1;
}

.contact-form .block .form-control::-ms-input-placeholder{
  color:#494848
}

.contact-form .block .form-control:focus,
.contact-form .block .btn:focus{
  box-shadow:none;
}

.contact-form .block textarea.form-control{
  height:105px;
  resize:none;
}

.contact-form .block select{
  background:url(../images/down-arrow02.png) no-repeat right 20px center, #fff !important;
}

.contact-form .block select option{
  color:#000;
}

.contact-form .block .wpcf7-list-item{
  display:block;
  margin-left:0;
}

.contact-form .block .btn{
  font-size:16px;
  color:#fff;
  line-height:18px;
  font-weight:500;
  text-transform:inherit;
  background:#393939;
  border-radius:0;
  padding:14px 30px;
}

.contact-form .block .btn:hover{
  background:#010101;
  color:#fff;
}

.contact-form .block .wpcf7-spinner{
  display:none;
}

.contact-form .block .wpcf7-not-valid-tip{
  font-size:14px;
  margin-top:5px;
}

.contact-form .wpcf7-response-output{
  font-size:14px;
  color:#000;
  border:none !important;
  margin:0 !important;
  padding:0 !important;
}

.accordion-item{
	background-color:transparent;
	border:none;
	margin-bottom:10px;
}

.accordion-item:last-child{
	margin-bottom:0;
}

.accordion-button{
	background:#393939;
	font-size:18px;
	color:#fff !important;
	line-height:26px;
	font-weight:500;
	text-transform:inherit;
	border-radius:0 !important;
	padding:10px 20px;
}

.accordion-button[aria-expanded="true"],
.accordion-button:hover{
	background:#010101;
	box-shadow:none;
}

.accordion-button:focus{
	box-shadow:none;
}

.accordion-button:after{
	filter:invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.accordion-body{
	border:1px solid rgba(0,0,0,.15);
}

.inner-testimonial{
	background:url(../images/quote-icon01.png) no-repeat left top;
	padding-left:55px;
}

.inner-test-content{
	font-size:20px;
	color:#1c1c1c;
	line-height:28px;
	font-weight:500;
}

.guarantee-box{
	min-height:430px;
}

.bk-quality-panel{
	background:url(../images/bedroom-img01.jpg) no-repeat center center;
	background-size:cover;
	padding:30px 0;
}

.cmr-care-box .text-box{
	min-height:586px;
}

.error404 .navbar-default{
	box-shadow:0 4px 6px rgba(0,0,0,.2);
}

.error404 .page-header{
	margin-top:230px;
}

.error404 .page-header .page-title{
	display:none;
}

.bg-color{
  background:#f7f7f7;
}

.inner-list.quality_list{
	min-height:396px;
}

.cta-title{
	font-size: 30px;
  	color: #1c1c1c;
  	line-height: 35px;
}

.cta-title:after{
  content: "";
  position: absolute;
  width: 61px;
  height: 2px;
  background:#464646;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}

.house-land-block .panel .text-box{
	min-height:335px;
}

.inovayt_sec .text-box{
	background:#393939;
	margin-top:-50px;
	padding:30px;
	position:relative;
	z-index:999;
}

.inovayt_sec .text-box a{
	font-size:15px;
	color:#fff;
	line-height:18px;
	font-weight:500;
	background:url(../images/right-arrow001.png) no-repeat right center;
	padding-right:20px;
}

.invt_finance_box .icon{
	display:inline-block;
}

.invt_finance_box .content{
	display:inline-block;
	width:80%;
	vertical-align:top;
	padding-left:15px;
}

.invt_finance_title{
	font-size:24px;
	color:#1c1c1c;
	line-height:30px;
	font-weight:600;
}

.inner_choose_box{
	min-height:350px;
}

.inner_choose_title{
	font-size:20px;
	color:#070707;
	line-height:26px;
	font-weight:600;
	min-height:68px;
}

.inner_choose_title:after{
	content:"";
	position:absolute;
	width:60px;
	height:2px;
	background:#a6a6a6;
	left:0;
	bottom:0;
}

.cta-btn{
  left:0;
  bottom:0;
  z-index:999;
}

.cta-btn li a{
  display:block;
  font-size:15px;
  color:#fff;
  line-height:17px;
  text-transform:uppercase;
  background:#010101;
  padding:15px 20px;
}

.cta-btn li:last-child a{
  background:#d2d2d2;
  color:#010101;
}

@media screen and (max-width:1366px){
	.header-nav li.nav-item a{
		padding:15px 28.55px;
	}
	
	.header-nav .submenu li a{
		padding:0;
	}
	
/* 	.banner-btm-box{
		min-height:255px;
	} */
	
  .quick-search-box{
    margin-right:31px;
  }

  .quick-search-box .btn{
    padding:12px 15px;
  }

  .primary-navigation li:last-child{
    margin-left:0 !important;
  }
	
  .guarantee-box{
	min-height:540px;
  }
	
	.cmr-care-box .text-box{
		min-height:548px;
	}
	
	.inner-list.quality_list{
		min-height:534px;
	}
	
	.house-land-block .panel .text-box{
		min-height:380px;
	}
	
	.inner_choose_box{
		min-height:425px;
	}
	
	.inner_choose_title{
		min-height:94px;
	}
}

@media screen and (max-width:991px){
	.navbar-default{
		border-bottom:1px solid rgba(0,0,0,.1);
	}
	
	.header-top{
		padding:12px 0;
	}
	
	.hd-logo{
		width:120px;
	}
	
	.home-banner{
		margin-top:96px;;
	}
	
	.home-banner .desc{
		bottom:8%;
	}
	
	.banner-btm-panel{
		margin-top:-15px;
	}
	
	.footer-bottom{
		padding-bottom:70px;
	}
	
	#back-button{
		right:20px;
		bottom:35px;
	}
	
	.inner-banner-img{
		margin-top:96px;
	}
	
	.inner-banner{
		padding:125px 0 30px;
	}
	
	.guarantee-box{
		min-height:770px;
	}
	
	.inner-list.quality_list{
		min-height:1075px;
	}
	
	.house-land-block .panel .text-box{
		min-height:672px;
	}
	
	.inner_choose_box{
		min-height:280px;
	}
	
	.inner_choose_title{
		min-height:68px;
	}
	
}

@media screen and (max-width:767px){
	.home-banner .desc{
		bottom:12%;
	}
	
	.banner-sm-title{
		font-size:18px;
		line-height:24px;
	}
	
	.banner-bg-title{
		font-size:28px;
		line-height:36px;
		padding-bottom:16px;
	}
	
	.common_btn,
	.common_btn2,
	.banner-content a,
	.quick-search-box .btn,
	.contact-form .block .btn{
		font-size:14px;
		line-height:16px;
		padding:10px 16px;
	}
	
	.banner-btm-panel{
		margin-top:35px;
	}
	
	.banner-btm-box{
		min-height:auto;
		padding:20px;
	}
	
	.banner-btm-title,
	.quick-search-title{
		font-size:18px;
		line-height:25px;
	}
	
	.text-common{
		font-size:13px;
		line-height:20px;
	}
	
	.quick-search-panel, 
	.choose-panel, 
	.partner-logo-panel{
		padding:30px 0;
	}
	
	.quick-search-box{
		display:block;
		margin-right:0;
		margin-bottom:12px;
	}
	
	.quick-search-box:last-child{
		margin-bottom:0;
	}
	
	.form-radio .form-check label{
		font-size:14px;
	}
	
	.service-panel{
		padding-bottom:30px;
	}
	
	.service-title{
		font-size:16px;
		line-height:22px;
	}
	
	.choose-bg-title,
	.choose-box.edge-box .choose-md-title,
	.inner-title{
		font-size:26px;
		line-height:32px;
	}
	
	.choose-sm-title{
		font-size:14px;
		line-height:18px;
	}
	
	.choose-box.edge-box .choose-md-title{
		padding-bottom:15px;
	}
	
	.choose-bg-title.edge-title{
		font-size:32px;
		line-height:38px;
	}
	
	.choose-md-title{
		font-size:20px;
		line-height:26px;
		padding-bottom:15px;
	}
	
	.footer-top{
		padding:30px 0 25px;
	}
	
	.footer-title{
		font-size:18px;
		line-height:20px;
		padding-bottom:18px;
	}
	
	.ft-link li a, 
	.ft-contact li{
		font-size:13px;
	}
	
	.ft-logo img{
		width:160px;
	}
	
	.inner-list.quality_list,
	.guarantee-box,
	.house-land-block .panel .text-box{
		min-height:auto;
	}
	
	.neighbourhood-box-title{
		font-size:17px;
		line-height:24px;
	}
	
	.inner-md-title{
		font-size:18px;
		line-height:25px;
	}
	
	.contact-form .block .form-control{
		height:42px;
		font-size:14px;
	}
	
	.inner-banner-title{
		font-size:28px;
		line-height:35px;
	}
	
	.cta-title{
		font-size:24px;
		line-height:32px;
	}
	
	.inner-sm-title,
	.inner-test-content{
		font-size:17px;
		line-height:25px;
	}
	
	.accordion-button{
		font-size:16px;
		line-height:26px;
	}
	
	.error404 .page-content img{
		width:220px;
	}
	
	.inner_choose_box{
		min-height:380px;
	}
	
	.inner_choose_title{
		min-height:94px;
	}
	
	.inovayt_sec .text-box{
		margin-top:-20px;
		padding:20px;
	}
	
	.invt_finance_title{
		font-size:20px;
		line-height:26px;
	}
	
	
}

@media screen and (max-width:575px){
	.home-banner img.big{
		height:260px;
		object-fit:cover;
	}
	
	.banner-btm-box .text{
		width:82%;
	}
	
	#logo-slider .owl-prev, 
	#logo-slider .owl-next{
		display:none !important;
	}
	
	.inner_choose_box,
	.inner_choose_title{
		min-height:auto;
	}
	
	
}
