/*
Theme Name: bds
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
.full-width .ubermenu-nav, .container, .row {
    max-width: 1200px !important;
    padding-left: 0px;
    padding-right: 0px;
}
.nav > li > a{
	font-family: Roboto !important;
	font-size: 13px;
}
#logo a {
    position: absolute;
    top: 0%;
    /* left: 50%; */
    /* transform: translateX(-50%); */
    width: 126px;
    height: 110px;
    border-radius: 0 0 5px 5px;
    background-color: #fff;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    transition: all .5s ease;
    z-index: 9999;
    padding:10px;
}
.stuck #logo a{
    height: 65px;
    background-color: transparent;
    padding: 0px;
}
.stuck .header-main .nav > li > a {
    line-height: 0px !important;
}
#logo img {
    max-height: 100px !important;
}
/* style for DangKy form */
.dktv {
    background: hsla(0, 0%, 100%, 0.3);
    padding: 7px;
}
.dktv > div {
    background: hsla(0, 0%, 100%, 0.8);
    padding: 20px 20px 5px;
}
.dktv h2 {
    font-size: 22px;
    font-family: Roboto;
}
.dktv h2:after {
    content: " ";
    height: 10px;
    width: 10%;
    display: inline-block;
    background-position-x: center;
    margin-top: 10px;
}
h2:after {
    content: " ";
    height: 22px;
    width: 100%;
    display: inline-block;
    background-position-x: center;
    margin-top: 0px;
}
.dktv p {
    font-family: Roboto;
    font-size: 15px;
}
input.wpcf7-form-control.wpcf7-submit {
    border-radius: 5px;
}
/* Section vị trí */
.cls-vitri h2, .cls-tienich h2, .cls-phankhu h2, .cls-canhomau h2, .cls-taisao h2, .cls-doingu h2, .cls-phanhoi h2{
    font-size: 35px;
    line-height: 45px;
    font-family: Roboto;
    margin-bottom: 0px;
}
.cls-vitri p, .cls-tienich p, .cls-phankhu p, .cls-canhomau p, .cls-taisao p, .cls-doingu p, .cls-phanhoi p{
    font-size: 15px; 
    margin-bottom: 32px;
    font-family: Roboto;
    padding-right: 20px;
}
a.breaking {
    width: 197px;
    height: 42px;
    text-decoration: none;
    line-height: 42px;
    color: #fff;
    background-color: #464b5c;
    display: block;
    font-family: Roboto;
    font-size: 14px;
    border-radius: 5px;
    padding-left: 17px;
    text-transform: uppercase;
    overflow: hidden;
    transition: 0.3s !important;
    text-align: left;
}
a.breaking span {
    padding-left: 70px;
}
a.breaking:hover {
    color: #fff;
    padding-left: 55px;
    letter-spacing: 2.5px;
}
/* Tiện ích */
.cls-tienich ul.nav.nav-divided.nav-uppercase.nav-size-normal.nav-center {
    margin-bottom: 25px;
}
.cls-tienich li.tab.has-icon {
    background: #fff;
    padding: 5px 20px;
    margin: 0px;  
}
.cls-tienich li.tab.has-icon a{
	color: #000;
}
.tabbed-content.cls-tabtienich ul li:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.tabbed-content.cls-tabtienich ul li:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.tabbed-content.cls-tabtienich li.tab.has-icon.active{
	background-color: #fecb41;
}
.tabbed-content.cls-tabtienich li.tab.has-icon.active a{
	color: #fff;
}
.nav-divided>li+li>a:after {
    top: 43%;
    height: 20px;
    margin-top: -7px;
    left: 0em;
}
.cls-tienich{
	/*background-color: transparent;
    background-image: linear-gradient(180deg, #ffffff 0%, rgba(29,47,90,0.41) 100%);*/
}
.cls-tienich h5, .cls-phankhu h5{
    font-family: Roboto;
    font-size: 22px;
    margin-bottom: 25px;
    text-align: left;
    line-height: 1.3;
}
.cls-tienich p{
	text-align: left;
}
.cls-tienich img.attachment-large.size-large {
    border-radius: 10px;
}
/* Định dạng checkbox */
@keyframes click-wave {
  0% {
    height: 40px;
    width: 40px;
    opacity: 0.35;
    position: relative;
  }
  100% {
    height: 200px;
    width: 200px;
    margin-left: -80px;
    margin-top: -80px;
    opacity: 0;
  }
}

input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  top: 13.33333px;
  right: 0;
  bottom: 0;
  left: 0;
  height: 20px;
  width: 20px;
  transition: all 0.15s ease-out 0s;
  background: #cbd1d8;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin-right: 0.5rem;
  outline: none;
  position: relative;
  z-index: 1000;
}
input[type="checkbox"]:hover {
  background: #9faab7;
}
input[type="checkbox"]:checked {
  background: #40e0d0;
}
input[type="checkbox"]:checked::before {
  height: 20px;
  width: 20px;
  position: absolute;
  content: '✔';
  display: inline-block;
  font-size: 16.66667px;
  text-align: center;
  line-height: 20px;
}
input[type="checkbox"]:checked::after {
  -webkit-animation: click-wave 0.65s;
  -moz-animation: click-wave 0.65s;
  animation: click-wave 0.65s;
  background: #40e0d0;
  content: '';
  display: block;
  position: relative;
  z-index: 100;
}
span.wpcf7-list-item-label {
    padding-top: 12px;
    font-size: 14px;
    font-family: Roboto;
}

span.wpcf7-list-item {
    display: flex;
    vertical-align: middle !important;
}
/* Kết thúc định dạng checkbox */
/* Định dạng Form Liên hệ */
#responsive-form{
     /*-- change this to get your desired form width --*/;
    margin:0 auto;
    width:100%;
    /*background-color: #cdcdcd;*/
}
.form-row{
    width: 100%;
}
.column-half, .column-full{
    float: left;
    position: relative;
    /*padding: 0.65rem;*/
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}
.column-half{
    width: 50%;
}
.column-full{
    width: 100%;
}
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}
/* Kết thúc định dạng form liên hệ */

.cls-phankhu h5{
	text-align: center;
}
.img-inner.image-zoom.image-cover.dark {
    border: 1px solid #fecb41;
    border-radius: 5px;
}
/* Style for call to action */
.cls-dangkytuvan p {
    font-family: Roboto;
    font-size: 16px;
}

.cls-dangkytuvan h3 {
    font-family: Roboto;
    font-size: 20px;
}
.cls-dangkytuvan .dktv {
    margin-top: 15px;
}
.cls-dangkytuvan .icon-box-text.last-reset {
    /* display: inline-flex; */
    margin-top: 10px;
    margin-left: 15px;
}
.cls-taisao h3{
	font-family: Roboto;
	margin-top: 5px;
}
.cls-taisao p {
    padding-top: 16px;
    color: #777;
}
.cls-taisao .col.medium-4.small-12.large-4 {
    background: #fff;
    margin: 10px;
    max-width: 31%;
    padding: 15px;
    border-radius: 5px;
}
.cls-taisao .col.medium-4.small-12.large-4:hover{
	box-shadow: 5px 5px 5px;
}
.cls-nv p{
	margin-bottom: 10px !important;
	color: #777;
}
.cls-doingu .box.has-hover.has-hover.box-vertical.box-text-bottom {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
}
.cls-doingu span.person-name, .cls-doingu span.person-title.is-small.thin-font.op-7 {
    color: #777;
    font-family: Roboto;
}
/* Phản hồi */
.cls-phanhoi .icon-box-img.testimonial-image.circle img {
    border-radius: 0px !important;
}
.cls-phanhoi .icon-box.testimonial-box.icon-box-center.text-center {
    background: #fff;
    padding: 0px;
    border-radius: 10px;
}
.cls-phanhoi .icon-box.testimonial-box.icon-box-center.text-center:hover{
	box-shadow: 5px 5px 5px;
}
.cls-phanhoi .icon-box-img.testimonial-image.circle {
    width: 100% !important;
}
p.goidien {
    margin-bottom: 13px;
    font-size: 24px;
    font-family: Roboto;
}
.cls-footer p{
    font-size: 15px;
    font-family: Roboto;
    margin-bottom: 5px;
}
@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/
	#logo a {
	    left: 35%;
	}
	.stuck #logo a{
	    height: 55px !important;
	    background-color: transparent;
	}
}

/* Hiệu ứng hover ảnh */
.img-inner.dark:hover::before{
    -webkit-animation: shine 1.75s;
    animation: shine 1.75s
}

@-webkit-keyframes shine {
    100% {
        left: 125%
    }
}

@keyframes shine {
    100% {
        left: 125%
    }
}

.img-inner.dark::before{
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg)
}
/* Contact Float fix */
.float-contact {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99999;
}
.chat-zalo {
    background: #8eb22b;
    border-radius: 20px;
    padding: 0 15px 0 0;
    color: white;
    display: block;
    margin-bottom: 6px;
	border: 1px solid #fff;
}
.chat-face {
    background: #125c9e;
    border-radius: 20px;
    padding: 0 15px 0 0;
    color: white;
    display: block;
    margin-bottom: 6px;
	border: 1px solid #fff;
}
.float-contact .hotline {
    background: #c63337 !important;
    border-radius: 20px;
    padding: 0 15px 0 0;
    color: white;
    display: block;
    margin-bottom: 6px;
	border: 1px solid #fff;
}
.chat-zalo a, .chat-face a, .hotline a {
    font-size: 15px;
    color: white;
    font-weight: 400;
    text-transform: none;
    line-height: 0;
}
.float-contact i.fa {
    margin-right: 5px;
    background: #ffffff;
    padding: 7px;
    width: 34px;
    margin-bottom: 2px;
    margin-top: 2px;
    margin-left: 2px;
    font-size: 20px;
    border-radius: 20px;
}
.float-contact i.fa.fa-comments{
	color: #8eb22b;
}
.float-contact i.fa.fa-facebook-square{
	color: #125c9e;
}
.float-contact i.fa.fa-phone-square{
	color: #c63337;
}
/* Kết thúc Contact Float */
.caption {
    bottom: 30px !important;
    font-size: 16px !important;
    text-align: center;
    font-family: Roboto;
	background-color: #eabe1abd !important;
}
.blog-wrapper.blog-single.page-wrapper .large-10.col {
    max-width: 750px;
	text-align: justify;
}
.cls-phanhoi img.attachment-thumbnail.size-thumbnail {
    padding: 0px;
}
.cls-phanhoi .icon-box-text.p-last-0 {
    padding: 10px;
}

.crp_related ul li {
    box-shadow: none;
    border-radius: 0px;
    border: 0px;
    padding: 0px;
}
span.crp_title {
    border-radius: 0px !important;
    background-color: #00000078 !important;
    min-height: 50px;
}
.crp_related {
    padding-top: 20px;
    border-top: 1px solid #ededed;
    margin-top: 20px;
}
.crp_related h3 {
    padding-bottom: 10px;
	font-family: Roboto;
}