html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline; }
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }
body {
    margin: 0;
    color: var(--bzo-body_typo-color);
    font-size: var(--bzo-body_typo-font-size);
    font-family:  var(--bzo-body_typo-font-family);
    line-height: var(--bzo-body_typo-line-height);
    background: var(--bzo-body-background);
    letter-spacing: var(--bzo-letter-spacing-body);
}
p{
    margin-bottom: 0px;
    line-height: var(--bzo-body_typo-line-height);
     font-family:  var(--bzo-body_typo-font-family);
}
a{
    color: var(--bzo-title_typo-color);
    text-decoration: unset;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
:focus {
    outline: none;
}
a.active, 
a:focus, 
a:hover{
    color: var(--bzo-main-color);
    text-decoration: none;
    transition: all 0.3s ease-out 0s;
}
a:hover{
    cursor: pointer;
}
iframe, video, audio{
    width: 100%;
}
a:focus {
    outline: none;
    outline: none;
    outline-offset: unset;
}
input:focus {     
       outline: 0;     
       outline-style: none;     
       outline-width: 0; 
}
 
select{
    height: 48px;
    line-height: 48px;
    border: 1px solid var(--bzo-border-color);
    padding: 0 20px;
    font-size: 16px;
    border-radius: 0;
    font-family: inherit;
}
input{
    height: 48px;
    line-height: 48px;
    border: 1px solid var(--bzo-border-color);
    padding: 0 20px;
    font-size: var(--bzo-body_typo-font-size);
    border-radius: 0;
    color: var(--bzo-body_typo-color);
    font-family:var(--bzo-body_typo-font-family);
}
input[type="checkbox"]{
    width: 14px;
    height: 15px;
    line-height: 15px;
    vertical-align: middle;
    margin: 0px;
    border-radius:0px;
    position: relative;
    margin-top: -3px;
}
.info-mailchimp input[type="checkbox"]{
    margin-top: -3px;
}
input[type="checkbox"]:before{
    content: "";
    width: 16px;
    height: 16px;
    background: #f5f5f5;
    border: 1px solid #727272;
    display: inline-block;
    vertical-align: top;
    margin: 0;
    z-index: 2;
    cursor: pointer;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    text-align: center;
    font-size: 14px;
    color: #fff;
    border-radius: 0px;
    position: absolute;
    top: -1px;
    left: -1px;
}
input[type="checkbox"]:checked{
    background: var(--bzo-main-color);
}
input[type="checkbox"]:checked:before{
    content: "\f00c";
    background: var(--bzo-main-color);
    border-color: var(--bzo-main-color);
}
input[type="text"]{
    max-width: 100%;
    font-family: var(--bzo-body_typo-font-family);
}
textarea{
    min-width: 50%;
    max-width: 100%;
    padding: 10px 20px;
    border: 1px solid var(--bzo-border-color);
    border-radius: 0;
    font-size: 14px;
    color: var(--bzo-body_typo-color);
    font-family: var(--bzo-body_typo-font-family);
}
img{
    max-width: 100%;
    height: auto;
}
h1{
    font-size: 36px;
}
h2{
    font-size: 30px;
}
h3{
    font-size: 24px;
}
h4{
    font-size: 18px;
}
h5{
    font-size: 16px;
}
h6{
    font-size: 14px;
}
h1, 
h2, 
h3{
    font-weight: 500;
    line-height: 1.15;
    margin-top: 20px;
    margin-bottom: 20px;
    color: var(--bzo-title_typo-color);
}
h4, h5, h6 {
    font-weight: 500;
    line-height: 1.1;
    margin-top: 10px;
    margin-bottom: 12px;
    color: var(--bzo-title_typo-color);
}
@media(max-width: 1200px){
    h1{
        font-size: 30px;
    }
    h2{
        font-size: 24px;
    }
    h3{
        font-size: 18px;
    }
    h4{
        font-size: 16px;
    }
    h5{
        font-size: 14px;
    }
}

/*i.la-twitter:before,
i.fa-twitter::before{
    content:"𝕏";
}*/
.bg-white{
  background-color: #fff;
}
/*Begin Class basic*/
.text-left{
    text-align: left;
}
.text-right{
    text-align: right;
}
.text-center{
    text-align: center;
}
.flex-wrapper {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
}
.flex_direction-row {
  flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
}
.flex_direction-column {
  flex-direction: column;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
}
.flex_wrap-wrap, 
.wrap-elementor-container .elementor-container
 {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.flex_wrap-nowrap {
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.flex-align-left, 
.justify_content-flex-start {
  justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
.flex-align-right, 
.justify_content-flex-end {
  justify-content: flex-end;
  -ms-justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.flex-align-center, 
.justify_content-center {
  justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
}
.justify_content-space-between {
  justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
}
.justify_content-space-around {
  justify-content: space-around;
  -ms-justify-content: space-around;
  -webkit-justify-content: space-around;
}
.align_items-flex-start {
  align-items: flex-start;
  -ms-align-items: flex-start;
  -webkit-align-items: flex-start;
}
.align_items-flex-end {
  align-items: flex-end;
  -ms-align-items: flex-end;
  -webkit-align-items: flex-end;
}
.align_items-center {
  align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
}
.align_items-baseline {
  align-items: baseline;
  -ms-align-items: baseline;
  -webkit-align-items: baseline;
}
.align_items-stretch {
  align-items: stretch;
  -ms-align-items: stretch;
  -webkit-align-items: stretch;
}
.align-content-center{
    align-content: center;
    align-items: center;
}
.align-content-flex-start{
    align-content: flex-start;
        align-items: flex-start;   
}
.align-content-flex-end{
    align-content: flex-end;
        align-items: flex-end;   
}
.title14, 
.title15, 
.title8, 
.title12, 
.title16, 
.title18, 
.title20, 
.title22, 
.title24, 
.title26, 
.title27, 
.title28, 
.title30, 
.title32, 
.title34, 
.title36, 
.title38,  
.title40, 
.title44, 
.title46, 
.title48, 
.title50,  
.title60,  
.title70,  
.title80, 
.title90, 
.title120, 
.title160, 
.title100, 
.title150 {
  margin: 0;
}
.title8 {
  font-size: 8px;
}
.title12 {
  font-size: 12px;
}
.title14 {
  font-size: 14px;
}
.title15 {
  font-size: 15px;
}
.title16 {
  font-size: 16px;
}

.title18 {
  font-size: 18px;
}
.title20 {
  font-size: 20px;
}
.title22 {
  font-size: 22px;
}
.title24 {
  font-size: 24px;
}
.title26 {
  font-size: 26px;
}
.title27 {
  font-size: 27px;
}
.title28 {
  font-size: 28px;
}
.title30 {
  font-size: 30px;
}
.title32 {
  font-size: 32px;
}
.title34 {
  font-size: 34px;
}
.title36 {
  font-size: 36px;
}
.title38 {
  font-size: 38px;
}
.title40 {
  font-size: 40px;
}
.title44 {
  font-size: 44px;
}
.title46 {
  font-size: 46px;
}
.title48 {
  font-size: 48px;
}
.title50 {
  font-size: 50px;
}
.title60 {
  font-size: 60px;
}
.title70 {
  font-size: 70px;
}
.title80 {
  font-size: 80px;
}
.title90 {
  font-size: 90px;
}
.title120 {
  font-size: 120px;
}
.title160 {
  font-size: 160px;
}
.title100 {
  font-size: 100px; 
}
.title150 {
  font-size: 150px;
}


.font-light {
  font-weight: 300;
}
.font-regular {
  font-weight: 400;
}
.font-medium{
  font-weight: 500;
}
.font-semibold{
  font-weight: 600;
}
.font-bold{
    font-weight: 700;
}
.font-extrabold{
  font-weight: 800;
}
.clearfix{
    clear: both;
}
.hide, 
.hidden{
    display: none !important;
}
.overflow-hidden{
    overflow: hidden!important;
}
.line-height24{
  line-height: 24px;
}
.line-height36{
  line-height: 36px;
}

.inline-block {
  display: inline-block !important;
  vertical-align: top;
}
.list-none {
  list-style: none;
  margin: 0;
  padding: 0;
}
.list-inline-block{
    padding: 0;
    margin: 0;
    list-style: none;
}
.list-inline-block > li{
    display: inline-block;
}
.list-block > li{
    display: block;
}

.logo-text{
    margin: 0;
}
.logo-inline-block .logo-text-wrapper a > *{
    display: inline-block;
    vertical-align: middle;
}
.btn-loadmore{
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.main-page-mega{
    margin: 80px 0;
}
#main-content{
    padding: 0px 0 70px;
}
@media(max-width: 1200px){
    #main-content{
      padding: 0 0 40px 0;
  }
}
.bzotech-scrollbar{
    overflow-y: scroll;
    scrollbar-width: none;
}
.bzotech-scrollbar::-webkit-scrollbar {
    width: 5px;
    left: 5px;
}
.text-uppercase{
  text-transform: uppercase;
}
.text-capitalize{
  text-transform: capitalize;
}
/* Track */
.bzotech-scrollbar::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 30px;
}

/* Handle */
.bzotech-scrollbar::-webkit-scrollbar-thumb {
    background:var(--bzo-main-color2);
    border-radius: 30px;
}

/* Handle on hover */
.bzotech-scrollbar::-webkit-scrollbar-thumb:hover {
    background: var(--bzo-main-color);
}
.box-content-custom>*:last-child{
    margin-bottom: 0px;
}
.zoomContainer{
    z-index: 999;
}
.zoomContainer .zoomWindow{
    background-color: #fff;
}
.elbzotech-hidden{
  overflow: hidden;
}
.elbzotech-border-radius{
  border-radius: 30px;
}

/*End Class basic*/
.error-message{
  color: #EA4335;
}
/*--- class color ---*/
.main-color{
    color: var(--bzo-main-color);
}
.main-color2{
    color: var(--bzo-main-color2);
}
.bg-color{
    background-color: var(--bzo-main-color);
}
.footer-text-color{
  color: var(--bzo--footer-text-color);
}
.footer-bg-color {
  background-color: var(--bzo--footer-bg-color)
}

.bg-color-darken{
  background: var(--bzo-main-color-mix-black);
}
.bg-main-color-mix-white{
  background: var(--bzo-main-color-mix-white);
}
.bg-main-color-mix-white2{
  background: var(--bzo-main-color-mix-white2);
}
.bg-main-color-mix-white3{
  background: var(--bzo-main-color-mix-white3);
}
.bg-color2{
    background-color: var(--bzo-main-color2);
}

.bg-color-lighten{
  background-color: var(--bzo-main-color-bg);
}  
.bg-color2-lighten{
  background-color: var(--bzo-main-color2);
}  
  
.bg-color-title{
  background-color: var(--bzo-title_typo-color2);
}
.color-white{
    color: #fff;
}
.color-body{
    color: var(--bzo-body_typo-color);
}
.color-title{
    color: var(--bzo-title_typo-color);
}
.color-title2{
    color: var(--bzo-title_typo-color2);
}
.color-gray{
    color: var(--bzo-gray-color);
}
.ui-widget{
  font-family: inherit!important;
  font-size:  inherit!important;
}
.font-body {
    font-family: var(--bzo-body_typo-font-family);
}
.font-title{
    font-family: var(--bzo-title_typo-font-family);
}

.border-color-main{
  border-color: var(--bzo-main-color) !important;
}
/*---------class color elementor ----------*/
.e-main-color{
    color: var(--bzo-main-color);
}
.e-main-color2{
    color: var(--bzo-main-color2);
}
.e-main-color-darken{
  color: var(--bzo-main-color-mix-black);
}
.e-bg-color{
    background-color: var(--bzo-main-color);
}
.e-bg-color2{
    background-color: var(--bzo-main-color2);
}
.e-bg-color-lighten{
  background-color: var(--bzo-main-color-bg);
}  

.e-bg-color-title{
  background-color: var(--bzo-title_typo-color);
}
.e-bg-color-title2{
  background-color: var(--bzo-title_typo-color2);
}
.e-color-body{
    color: var(--bzo-body_typo-color);
}
.e-color-title{
    color: var(--bzo-title_typo-color);
}
.e-color-white{
    color: #fff;
}
.e-color-gray{
    color: var(--bzo-gray-color);
}
.e-font-body {
    font-family: var(--bzo-body_typo-font-family);
}
.e-font-title{
    font-family: var(--bzo-title_typo-font-family);
}
.e-border-color-main{
  border-color: var(--bzo-main-color);
}

/*---------class hover color elementor ----------*/
.hover-e-main-color:hover{
    color: var(--bzo-main-color);
}
.hover-e-main-color-darken:hover{
  color: var(--bzo-main-color-mix-black);
}
.hover-e-main-color2:hover{
    color: var(--bzo-main-color2);
}
.hover-e-color-body:hover{
    color: var(--bzo-body_typo-color);
}
.hover-e-color-title:hover{
    color: var(--bzo-title_typo-color);
}
.hover-e-color-gray:hover{
    color: var(--bzo-gray-color);
}

/*--- define ---*/
.list-links-scroll .elbzotech-list-link-global,
.list-links-scroll .swiper-wrapper{
    display: flex;
    flex-wrap: nowrap;
    display: flex;
    flex-wrap: nowrap;
    animation-name: bzo-scroll;
    animation-duration: 45s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.list-links-scroll .elbzotech-list-link-global:hover,
.list-links-scroll .swiper-wrapper:hover{
    animation-play-state: paused;
}
.list-links-scroll .elbzotech-list-link-global a
.list-links-scroll .swiper-wrapper .swiper-slide{
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 100%;
    position: relative;
}
.list-links-scroll .elbzotech-list-link-global .title{
    white-space: nowrap;
}
.list-links-scroll-ver{
    overflow: hidden;
}
.list-links-scroll-ver .elbzotech-list-link-global,
.list-links-scroll-ver .swiper-wrapper{
    display: flex;
    flex-wrap: nowrap;
    display: flex;
    flex-wrap: nowrap;
    animation-name: bzo-scroll-ver;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.list-links-scroll-ver .elbzotech-list-link-global:hover,
.list-links-scroll-ver .swiper-wrapper:hover{
    animation-play-state: paused;
}
.list-links-scroll-ver .elbzotech-list-link-global a,
.list-links-scroll-ver .swiper-wrapper .swiper-slide{
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 100%;
    position: relative;
}

.list-links-scroll2{
    overflow: hidden;
}
.list-links-scroll2 .elbzotech-list-link-global,
.list-links-scroll2 .swiper-wrapper{
    display: flex;
    flex-wrap: nowrap;
    animation-name: bzo-scroll2;
    animation-duration: 65s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.list-links-scroll2 .elbzotech-list-link-global:hover,
.list-links-scroll2 .swiper-wrapper:hover{
    animation-play-state: paused;
}
.list-links-scroll2 .elbzotech-list-link-global a,
.list-links-scroll2 .swiper-wrapper .swiper-slide{
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 100%;
    position: relative;
}

@media(min-width: 1200px){
    .visible-nav-on-hover .display-swiper-navi-style1 .bzotech-swiper-navi .swiper-button-nav{
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        transform: scale(0.5) translateY(-50%);
    }
    .visible-nav-on-hover .display-swiper-navi-style1:hover .bzotech-swiper-navi .swiper-button-nav{
        opacity: 1;
        visibility: visible;
        transition: .3s;
        transform: scale(1) translateY(-50%);
    }
}

.banner-info-fill,
.banner-info-fill .adv-thumb-link,
.banner-info-fill .elbzotech-banner-info-global-thumb,
.banner-info-fill .elbzotech-banner-info-global-wrap{
    object-fit: fill;
    height: 100%;
}
.banner-info-fill .elbzotech-banner-info-global-thumb.elbzotech-hidden img{
    height: 100%;
}
.wrap{
    position: relative;
    overflow: hidden;
}
.bzotech-container {
  max-width: var(--bzo-container-width);
  margin-left:auto;
  margin-right:auto;
  padding-right: 60px;
  padding-left: 60px;
  width: 100%
}
.elementor-top-section.elementor-section-boxed>.elementor-container,
.e-con-boxed >.e-con-inner{
}
.content-page-default .e-con-boxed >.e-con-inner, 
.content-page-default .elementor-top-section.elementor-section-boxed>.elementor-container,
.widget-mega_page .e-con-boxed >.e-con-inner, 
.widget-mega_page .elementor-top-section.elementor-section-boxed>.elementor-container,
.mega-menu .elementor-top-section.elementor-section-boxed>.elementor-container,
.elementor-section .e-con-boxed >.e-con-inner, 
.e-con-boxed >.e-con-inner .e-con-inner 
{
    max-width: var(--content-width);
}
@media(max-width:1200px){
  .bzotech-container {   
      padding-right: var(--bzo-gutter);
      padding-left: var(--bzo-gutter);
  }
  .elementor-section.elementor-section-boxed>.elementor-container,
  .e-con-boxed >.e-con-inner{
      padding-left: 0px!important;
      padding-right: 0px!important;
  }
}
.bzotech-row{
  margin-right:var(--bzo-gutter-minus);
  margin-left: var(--bzo-gutter-minus);
  display: flex;
  flex-wrap: wrap;
}
.bzotech-col-lg-1, .bzotech-col-lg-10, .bzotech-col-lg-11, .bzotech-col-lg-12, .bzotech-col-lg-2, .bzotech-col-lg-3, .bzotech-col-lg-4, .bzotech-col-lg-5, .bzotech-col-lg-6, .bzotech-col-lg-7, .bzotech-col-lg-8, .bzotech-col-lg-9, .bzotech-col-md-1, .bzotech-col-md-10, .bzotech-col-md-11, .bzotech-col-md-12, .bzotech-col-md-2, .bzotech-col-md-3, .bzotech-col-md-4, .bzotech-col-md-5, .bzotech-col-md-6, .bzotech-col-md-7, .bzotech-col-md-8, .bzotech-col-md-9, .bzotech-col-sm-1, .bzotech-col-sm-10, .bzotech-col-sm-11, .bzotech-col-sm-12, .bzotech-col-sm-2, .bzotech-col-sm-3, .bzotech-col-sm-4, .bzotech-col-sm-5, .bzotech-col-sm-6, .bzotech-col-sm-7, .bzotech-col-sm-8, .bzotech-col-sm-9, .bzotech-col-xs-1, .bzotech-col-xs-10, .bzotech-col-xs-11, .bzotech-col-xs-12, .bzotech-col-xs-2, .bzotech-col-xs-3, .bzotech-col-xs-4, .bzotech-col-xs-5, .bzotech-col-xs-6, .bzotech-col-xs-7, .bzotech-col-xs-8, .bzotech-col-xs-9{
    position: relative;
    min-height: 1px;
    padding-right: var(--bzo-gutter);
    padding-left: var(--bzo-gutter);
    width: 100%;
}
.bzotech-col-sx-1 {
  width: 8.33333333%;
}
.bzotech-col-sx-2 {
  width: 16.66666667%
}
.bzotech-col-sx-3 {
  width: 25%;
}
.bzotech-col-sx-4 {
  width: 33.33333333%;
}
.bzotech-col-sx-5 {
  width: 41.66666667%;
}
.bzotech-col-sx-6 {
  width: 50%;
}
.bzotech-col-sx-7 {
  width: 58.33333333%;
}
.bzotech-col-sx-8 {
  width: 66.66666667%;
}
.bzotech-col-sx-9 {
  width: 75%;
}
.bzotech-col-sx-10 {
  width: 83.33333333%;
}
.bzotech-col-sx-11 {
  width: 91.66666667%;
}
.bzotech-col-sx-12 {
  width: 100%;
}
@media (min-width: 768px){
  .bzotech-col-sm-1 {
    width: 8.33333333%;
  }
  .bzotech-col-sm-2 {
    width: 16.66666667%
  }
  .bzotech-col-sm-3 {
    width: 25%;
  }
  .bzotech-col-sm-4 {
    width: 33.33333333%;
  }
  .bzotech-col-sm-5 {
    width: 41.66666667%;
  }
  .bzotech-col-sm-6 {
    width: 50%;
  }
  .bzotech-col-sm-7 {
    width: 58.33333333%;
  }
  .bzotech-col-sm-8 {
    width: 66.66666667%;
  }
  .bzotech-col-sm-9 {
    width: 75%;
  }
  .bzotech-col-sm-10 {
    width: 83.33333333%;
  }
  .bzotech-col-sm-11 {
    width: 91.66666667%;
  }
  .bzotech-col-sm-12 {
    width: 100%;
  }
}

@media (min-width: 992px){
  .bzotech-col-md-1 {
    width: 8.33333333%;
  }
  .bzotech-col-md-2 {
    width: 16.66666667%
  }
  .bzotech-col-md-3 {
    width: 25%;
  }
  .bzotech-col-md-4 {
    width: 33.33333333%;
  }
  .bzotech-col-md-5 {
    width: 41.66666667%;
  }
  .bzotech-col-md-6 {
    width: 50%;
  }
  .bzotech-col-md-7 {
    width: 58.33333333%;
  }
  .bzotech-col-md-8 {
    width: 66.66666667%;
  }
  .bzotech-col-md-9 {
    width: 75%;
  }
  .bzotech-col-md-10 {
    width: 83.33333333%;
  }
  .bzotech-col-md-11 {
    width: 91.66666667%;
  }
  .bzotech-col-md-12 {
    width: 100%;
  }
}
@media (min-width: 1200px){
  .bzotech-col-lg-1 {
    width: 8.33333333%;
  }
  .bzotech-col-lg-2 {
    width: 16.66666667%
  }
  .bzotech-col-lg-3 {
    width: 25%;
  }
  .bzotech-col-lg-4 {
    width: 33.33333333%;
  }
  .bzotech-col-lg-5 {
    width: 41.66666667%;
  }
  .bzotech-col-lg-6 {
    width: 50%;
  }
  .bzotech-col-lg-7 {
    width: 58.33333333%;
  }
  .bzotech-col-lg-8 {
    width: 66.66666667%;
  }
  .bzotech-col-lg-9 {
    width: 75%;
  }
  .bzotech-col-lg-10 {
    width: 83.33333333%;
  }
  .bzotech-col-lg-11 {
    width: 91.66666667%;
  }
  .bzotech-col-lg-12 {
    width: 100%;
  }
}


/*Begin Elementor Menu*/
.bzotech-navbar-nav{
    margin: 0;
    padding: 0;
    list-style: none;
}
.bzotech-navbar-nav > li{
    display: inline-block;
    font-size: 14px;
}
.bzotech-navbar-nav > li > a{
    position: relative;
    display: block;
    color: #fff;
    padding: 10px 19px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}
.bzotech-navbar-nav > li > a:hover{
    opacity: 0.8;
}
@media(max-width: 1580px){
  .bzotech-navbar-nav > li > a {
    padding: 10px 10px;
  }
}

.bzotech-navbar-nav li.menu-item-has-children{
    position: relative;
}


.bzotech-navbar-nav li.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    margin: 0;
    margin-top: 0px;
    transform: scaleY(1) translateZ(0);
}


.bzotech-navbar-nav .sub-menu .sub-menu{
    left: 100%;
    top: 0;
    border-radius: 0px;
}
.bzotech-navbar-nav .sub-menu > li > a {
    display: block;
    position: relative;
    font-size: 16px;
    line-height: 30px;
}
.bzotech-navbar-nav .sub-menu > li > a:hover{
    color: var(--bzo-main-color);
}

.bzotech-navbar-nav li.has-mega-menu .mega-menu {
    background: #fff;
    left: 0;
    opacity: 0;
    padding: 30px 15px 30px 15px;
    position: absolute;
    top: 100%;
    visibility: hidden;
    width: 100%;
    z-index: -1;
    text-align: left;  
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12);
    border-radius: 0px;
    transform-origin: 50% 0;
    transform: scaleY(0) translateZ(0);
    transition: all 0.2s ease-out 0s;
    -webkit-transition: all 0.2s ease-out 0s;
}
.bzotech-navbar-nav .sub-menu {
    background: #fff;
    left: 0px;
    list-style: none;
    opacity: 0;
    padding: 30px 0px;
    position: absolute;
    top: 100%;
    visibility: hidden;
    z-index: 999;
    text-align: left;
    margin: 0px;  
    transition: all 0.2s ease-out 0s;
    -webkit-transition: all 0.2s ease-out 0s;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12);
    min-width: 300px;
    border-radius: 0;    
    transform-origin: 50% 0;
    transform: scaleY(0) translateZ(0);
}
@media(min-width: 1201px){
    .bzotech-navbar-nav .sub-menu>li{
        padding: 0px 30px;
    }
}

.bzotech-navbar-nav li.has-mega-menu:hover > .mega-menu {
    margin: 0;
    opacity: 1;
    visibility: visible;
    margin-top: 0px;
    z-index: 999;
    transform: scaleY(1) translateZ(0);
}

.mega-menu .current-link{
    text-decoration: underline;
}
.indicator-icon{
    margin-left: 5px;
    cursor: pointer;
    position: relative;
    font-weight: 900;
    font-style: normal;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 14px;
}
.sub-menu .indicator-icon{
    float: right;
}
.indicator-icon:before {
    content: "\f107";
}
.menu-global-style-icon.position_content-left .indicator-icon:before {
    content: "\f105";
}
.menu-global-style-icon.position_content-right .indicator-icon:before {
    content: "\f104";
}
.sub-menu .indicator-icon::before {
    content: "\f105";
}
.bzotech_plus_icon .indicator-icon::before {
    content: '+';
}
.bzotech_fill_arrow .indicator-icon::before {
    content: '\f0d7';
}
.bzotech_fill_arrow .sub-menu .indicator-icon::before {
    content: '\f0da';
}
.bzotech_none .indicator-icon{
    display: none;
}
.bzotech-menu-toggler{
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    position: relative;
    display:block;
    overflow: hidden;
    cursor: pointer;
}
.bzotech-nav-identity-panel{
    display: none;
}
.menu-global-style- .bzotech-navbar-nav{
    display: flex;
    justify-content: center;
}

/*Menu fixed style*/

.fixed-header {
    background:#fff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
}
.menu-fixed-content.fixed-header{
    background: #fff;
    box-shadow: 0px 0px 20px -10px rgba(0, 0, 0, 0.5);
    width: 100%;
    left: 0 !important;
    margin: 0;
    max-width: 100%;
    display: block;
}
.fixed-header .vc_row[data-vc-full-width].vc_hidden{
    opacity: 1;
}
.fixed-header {
    position: fixed !important;
    top: -100px;
    left: 0px !important;
    z-index: 9999!important;
    -webkit-transition: top 0.4s ease-out 0s !important;
    transition: top 0.4s ease-out 0s !important;
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
}
.admin-bar .fixed-header.active {
    top: 32px;
}
.fixed-header.active {
    top: -1px;
}

.effect-line-bottom .bzotech-navbar-nav>li>a{
    position: relative;
}
.effect-line-bottom .bzotech-navbar-nav>li>a:after
{
    content: '';
    background: var(--bzo-main-color);
    position: absolute;
    bottom: 0;
    height: 3px;
    left: 50%;
    right: 50%;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    opacity: 0;
}
.effect-line-bottom .bzotech-navbar-nav>li:hover > a:after, 
.effect-line-bottom .bzotech-navbar-nav>li.current-menu-parent>a:after, 
.effect-line-bottom .bzotech-navbar-nav>li.current-menu-ancestor>a:after, 
.effect-line-bottom .bzotech-navbar-nav>li.current-menu-item>a:after
{
    left: 0;
    right: 0;
    opacity: 1;
}
.effect-line-top .bzotech-navbar-nav>li{
    position: relative;
}
.effect-line-top .bzotech-navbar-nav>li>a:after
{
    content: '';
    background: #c82811;
    position: absolute;
    top: 0;
    height: 3px;
    left: 50%;
    right: 50%;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    opacity: 0;
}
.effect-line-top .bzotech-navbar-nav>li>a:hover:after, 
.effect-line-top .bzotech-navbar-nav>li.current-menu-item>a:after
{
    left: 0;
    right: 0;
    opacity: 1;
}

.toggle-mobile-menu {
  display: none;
}

/*begin menu global style icon*/
.menu-global-style-icon.bg-overlay:after{
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10;
}
.menu-global-style-icon .bzotech-nav-identity-panel{
    display: flex;
}
.menu-global-style-icon .bzotech-menu-inner{ 
    background: #fff;
    width: 330px;
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9995;
    padding: 0px 0px 0px 0px;
    overflow-x: hidden;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
    max-width: 100%;
    box-shadow: 0px 0px 30px rgb(0 0 0 / 0.1);
    max-height: 100%;
    display: block;
    overflow: unset;
}
body.admin-bar .menu-global-style-icon .bzotech-menu-inner{
    top: 32px;
}
.menu-global-style-icon.position_content-left .bzotech-menu-inner{ 
   left: -450px;
}
.menu-global-style-icon.position_content-left .bzotech-menu-inner.menu-side-active{
    left: 0;
}
.menu-global-style-icon.position_content-right .bzotech-menu-inner{ 
   right: -450px;
}
.menu-global-style-icon.position_content-right .bzotech-menu-inner.menu-side-active{
    right: 0;
}

@media(min-width: 1201px){
    .close-menu-not-style-icon{
        display: none;
    }
}
.menu_mobile_style-left .close-menu-not-style-icon,
.position_content-left .close-menu{
   position: absolute;
    right: -35px;
    top: 0;
    line-height: 35px;
    height: 35px;
    width: 35px;
    cursor: pointer;
    font-size: 20px;
    z-index: 99999;
    background: var(--bzo-main-color);
    color: #fff;
    box-shadow: -15px 0px 30px 0px rgb(0 0 0 / 0.1);
    text-align: center;
}
.menu_mobile_style-right .close-menu-not-style-icon,
.position_content-right .close-menu{
    position: absolute;
    left: -35px;
    top: 0;
    line-height: 35px;
    height: 35px;
    width: 35px;
    cursor: pointer;
    font-size: 20px;
    z-index: 99999;
    background: var(--bzo-main-color);
    color: #fff;
    box-shadow: -15px 0px 30px 0px rgb(0 0 0 / 0.1);
    text-align: center;
}
.menu-global-style-icon .menu-open .la.la-reorder:before{
        content: "\f00d";
}
.menu-global-style-icon .bzotech-menu-inner .bzotech-navbar-nav{
    margin-top: 0px;
    padding-left: 0px;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
    position: relative;
    scrollbar-width: none;
}

.menu-global-style-icon .bzotech-menu-inner .bzotech-navbar-nav::-webkit-scrollbar {
    width: 0px;
}
.menu-global-style-icon .bzotech-menu-inner .bzotech-navbar-nav::-webkit-scrollbar-track {
    border-radius: 0px;
}
.menu-global-style-icon .bzotech-menu-inner .bzotech-navbar-nav::-webkit-scrollbar-thumb {
    background-color: var(--bzo-main-color);
}
.menu-global-style-icon .bzotech-menu-inner .bzotech-navbar-nav::-webkit-scrollbar-thumb:hover {
    background: var(--bzo-main-color);
}
.menu-global-style-icon .bzotech-navbar-nav > li > a{
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 16px;
    font-family: 500;
    border-top: 1px solid #e1e1e1;
}
.menu-global-style-icon .bzotech-navbar-nav > li > a:hover{
    color: var(--bzo-main-color);
}
.menu-global-style-icon .bzotech-navbar-nav > li {
    display: block;
    position: unset;
}

.menu-global-style-icon .bzotech-navbar-nav .sub-menu{
    width: 330px;
    position: fixed;
    opacity: 0;
    visibility: hidden;
    margin: 0;
    box-shadow: none;
    background: #fff;
    top: 0;
    bottom: 0;
    border-radius: 0;
    border-right: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
    box-shadow: -15px 0px 25px -15px #00000024;
}
.menu-global-style-icon li.has-mega-menu .mega-menu{
    width: calc(90% - 330px)!important;
    max-width: 100%!important;
    position: fixed;
    opacity: 0;
    visibility: hidden;
    margin: 0;
    box-shadow: none;
    background: #fff;
    top: 0;
    bottom: 0;
    border-radius: 0;
    border-right: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
    box-shadow: -15px 0px 25px -15px #00000024;
}
.menu-global-style-icon.position_content-left li.has-mega-menu .mega-menu,
.menu-global-style-icon.position_content-left .bzotech-navbar-nav .sub-menu
{
    box-shadow: 15px 0px 25px -15px #00000024;
}
.menu-global-style-icon li.has-mega-menu:hover .mega-menu{
    opacity: 1;
    visibility: visible;
    z-index: 999;
    margin-right: 0;
    margin-left: 0;
}
.menu-global-style-icon.position_content-right .bzotech-navbar-nav .sub-menu, 
.menu-global-style-icon.position_content-right .bzotech-navbar-nav .mega-menu
{
    right: 330px;
    left: auto!important;
    margin-right: 50px;
    transition: all 0s ease-out 0s!important;
    -webkit-transition: all 0s ease-out 0s!important;
}
.admin-bar .menu-global-style-icon.position_content-right .bzotech-navbar-nav .sub-menu, 
.admin-bar .menu-global-style-icon.position_content-right .bzotech-navbar-nav .mega-menu
{
    padding-top: 32px;
}
.menu-global-style-icon.position_content-left .bzotech-navbar-nav .sub-menu, 
.menu-global-style-icon.position_content-left .bzotech-navbar-nav .mega-menu
{
    left: 330px!important;
    right: auto!important;
    z-index: -1!important;
    margin-left: 50px;
    transition: all 0s ease-out 0s!important;
    -webkit-transition: all 0s ease-out 0s!important;
    display: none!important;
    visibility: hidden!important;
}
.menu-global-style-icon.position_content-left .bzotech-navbar-nav li:hover > .sub-menu, 
.menu-global-style-icon.position_content-left .bzotech-navbar-nav li:hover > .mega-menu {
    display: block!important;
    z-index: 100009!important;
     visibility: visible!important;
}
.menu-global-style-icon .bzotech-navbar-nav li:hover>.sub-menu 
.menu-global-style-icon .bzotech-navbar-nav .sub-open > .sub-menu,
{
    display: block;
    margin-right: 0;
    margin-left: 0;
}
.menu-global-style-icon .bzotech-navbar-nav .sub-menu{
    padding: 0px;
}
.menu-global-style-icon .bzotech-navbar-nav .sub-menu >li>a{
    padding: 8px 20px;
}
.menu-global-style-icon .indicator-icon{
    width: 30px;
    text-align: center;
    float: right;
}
@media (max-width: 1440px) {
    .menu-global-style-icon li.has-mega-menu .mega-menu{
       width: calc(100% - 330px)!important;
    }
}
@media (max-width: 1200px) {
    .menu-global-style-icon .bzotech-navbar-nav .sub-menu {
        width: 100%;
        position: unset;
        border-right: none;
        display: none;
        opacity: 1;
        visibility: visible;
        border-top: 1px solid #e1e1e1;
        border-right: none;
        border-left: none;
        transition: none!important;
    }
}
@media (max-width: 768px) {
    body.admin-bar .menu-global-style-icon .bzotech-menu-inner{
        top: 46px;
    }
}
/*End menu global style icon*/
@media (max-width: 1200px) {
   .menu-global-style- .bzotech-navbar-nav{
    flex-direction: column;
   }
    .btn-toggle-mobile-menu {
        position: absolute;
        top: 0;
        right: 0px;
        height: 55px;
        width: 55px;
        border-left: 1px solid #e1e1e1;
        line-height: 55px;
        z-index: 10;
        text-align: center;        
        font-size: 18px;
        transition: all 0.3s ease-out 0s;
        -webkit-transition: all 0.3s ease-out 0s;
    }
    .btn-toggle-mobile-menu::after {
        font-family: 'Line Awesome Free';
        content: "\f107";
        font-weight: 900;
    }
    .btn-toggle-mobile-menu.active::after {
        content: "\f106";
    }
    .btn-toggle-mobile-menu.active {
        background: #ebebeb;
    }
    .bzotech-menu-inner .indicator-icon{
        display: none;
    }
    .bzotech-menu-inner{
        position: absolute;
        top: 100%;
        width: 100vw;
        display: none;
        z-index: 9999;
        background: #fff;
        box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
        transition: none;
        -webkit-transition: none;
        text-align: left;
        overflow-x: auto;
        overflow-y: scroll;
        max-height: 350px;
        scrollbar-width: none;
    }
    .menu_mobile_style-right .bzotech-menu-inner,
    .menu_mobile_style-left .bzotech-menu-inner{ 
        background: #ffffff;
        width: calc(100% - 35px);
        position: fixed;
        top: 0;
        bottom: 0;
        z-index: 9995;
        padding: 0px 0px 0px 0px;
        overflow-x: hidden;
        transition: all 0.5s ease-out 0s;
        -webkit-transition: all 0.5s ease-out 0s;
        max-width: 100%;
        box-shadow: 0px 0px 30px rgb(0 0 0 / 0.2);
        max-height: 100%;
        display: block;
        overflow: unset;
        transition: all 0.4s ease-out 0s;
        -webkit-transition: all 0.4s ease-out 0s;
    }
    .menu_mobile_style-right .bzotech-menu-inner > .bzotech-navbar-nav > li,
    .menu_mobile_style-left  .bzotech-menu-inner > .bzotech-navbar-nav > li{
        background: #fff;
    }
    .menu_mobile_style-right .bzotech-menu-inner{ 
        right: -100%!important;

    }
    .menu_mobile_style-left .bzotech-menu-inner{ 
        left: -100%!important;
        right: auto!important;

    }
    .menu_mobile_style-right.active .bzotech-menu-inner{ 
        right: 0!important;

    }
    .menu_mobile_style-left.active .bzotech-menu-inner{ 
        left: 0px!important;
        right: auto!important;
    }
    .menu_mobile_style-right .bzotech-menu-inner .bzotech-navbar-nav,
    .menu_mobile_style-left .bzotech-menu-inner .bzotech-navbar-nav {
        overflow-y: scroll;
        overflow-x: hidden;
        height: 100%;
        position: relative;
        justify-content: flex-start!important;
    }

    .bzotech-menu-inner > .bzotech-navbar-nav  {
           text-align: left!important;
    }
    .bzotech-menu-inner > .bzotech-navbar-nav > li {
        display: block;
        width: 100%;
        margin: 0px !important;
        padding: 0!important;
        position: relative;
    }
    .bzotech-menu-inner > .bzotech-navbar-nav>li > a {
        display: block;
        font-weight: 500;
        font-size: 18px;
        height: 55px !important;
        line-height: 55px !important;
        padding: 0px 20px!important;
        padding-right: 70px!important;
        border-bottom: none!important;
        transition: none;
        -webkit-transition: none;
         margin: 0px!important;
         color: #000!important;
    }
    .bzotech-navbar-nav li.menu-item-has-children> a:before{
        display: none;
    }
    .bzotech-menu-inner > ul li:not(.has-mega-menu) ul{
        padding: 0;
    }
    .bzotech-menu-inner > ul li:not(.has-mega-menu) ul li > a {
        padding-left: 30px!important;
        border-top: 1px solid #e5e5e5;
        height: 55px;
        line-height: 55px;
    }
    .bzotech-menu-inner > ul li:not(.has-mega-menu) ul li:first-child > a {
         border-top: none!important;
    }
    .bzotech-menu-inner > ul li:not(.has-mega-menu) ul li.menu-item-depth-2 > a {
        padding-left: 45px!important;
    }
    .bzotech-menu-inner > ul li:not(.has-mega-menu) ul li.menu-item-depth-3 > a {
        padding-left: 60px!important;
    }
    .bzotech-menu-inner > ul li:not(.has-mega-menu) ul li.menu-item-depth-4 > a {
        padding-left: 75px!important;
    }
    .bzotech-menu-inner > ul li:not(.has-mega-menu) ul li.menu-item-depth-4 .sub-menu-item > a {
        padding-left: 90px!important;
    }
    .bzotech-navbar-nav .sub-menu{
        padding: 0px;
    }
    .toggle-mobile-menu {
        position: relative;
        padding: 0px;
        text-align: center;
        display: inline-block;
        font-size: 30px;
        height: 30px;
        line-height: 30px;
        color: #fff;
    }
    .bzotech-menu-global-container.active .toggle-mobile-menu i:before{
        content: "\f00d";
    }
    .toggle-mobile-menu:hover,
    .toggle-mobile-menu:focus
    {
        color: var(--bzo-main-color);
    }
   .toggle-mobile-menu.active .la-reorder:before {
    content: "\f191";
  }
  
  .menu-global-style- .sub-menu li
    {
    transition: none;
    -webkit-transition: none;
  }
  .menu-global-style- .sub-menu
   {
    background: #fff none repeat scroll 0 0;
    display: none;
    margin: 0!important;
    opacity: 1!important;
    visibility: visible!important;
    position: static!important;
    box-shadow: none!important;
    border-top: 1px solid #e1e1e1;
    transition: none;
    -webkit-transition: none;
    width: 100%;
    transform-origin: unset;
    transform: none;
  }
  .menu-global-style- .bzotech-navbar-nav > li > a
   {
    border-top: 1px solid #e1e1e1!important;
  }
  /*css bach*/
  .menu-global-style- .bzotech-navbar-nav>li> a:after
  {
    display: none;
  }
  .bzotech-navbar-nav li.has-mega-menu .mega-menu{
    position: unset;
    transition: none;
    display: none;
    box-shadow: none!important;;
    border-top: 1px solid #e1e1e1;
    opacity: 1!important;
    width: 100%!important;
    visibility: visible!important;
    margin: 0!important;
    transform-origin: unset;
    transform: none;
    transition: none;
    -webkit-transition: none;
  }
}

@media (max-width: 768px) {
    body.admin-bar .menu_mobile_style-left .bzotech-menu-inner,
    body.admin-bar .menu_mobile_style-right .bzotech-menu-inner{
        top: 46px;
    }
}
/*End Elementor Menu */
.btn-phone{
  padding: 8px 15px;
  background: #fff;
  border-radius: 30px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  font-weight: 700;
}
.site-logo{
  display: flex;
}
.site-header{
  padding: 12px 0; 
}
@media(max-width: 1200px){
  .header-center{
    order: 3;
  }
  .header-center .menu-global-style-{
    text-align: right;
  }
}
@media(max-width: 767px){
  .header-inner .btn-phone {
    gap: 0px;
    width: 35px;
    height: 35px;
    padding: 8px;
    margin-right: -25px;
  }
  .header-inner .btn-phone span{
    font-size: 0px;
  }
  .site-logo{
    max-width: 150px;
  }
  .site-header {
      padding: 10px 0;
  }
}
.bzo-form-dat-xe{
  background-image: url("./images/bg-form.jpg");
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
}
.bzo-form-dat-xe div.wpforms-container.wpforms-container-full{
    padding: 30px 24px;
    background: #fff;
    border-radius: 0px;
    margin: 120px 0px;
}

.bzo-form-dat-xe .wpforms-form{
  display: flex;
  gap:10px;
  flex-direction: column;
}
.bzo-form-dat-xe .wpforms-field-container .wpforms-page-1 .wpforms-field{
    width: calc(16.66% - 27px);
    padding: 0px!important;
}
.bzo-form-dat-xe .wpforms-field-container .wpforms-page-1 .wpforms-field-date-time{
    width: calc(33.333% - 27px);
}
.bzo-form-dat-xe .wpforms-field-container{
    width: 100%;
    position: relative;
}
.bzo-form-dat-xe .wpforms-submit-container{
       margin: 0px !important;
    text-align: right;
}
.bzo-form-dat-xe select,
.bzo-form-dat-xe input{
    width: 100%!important;
    max-width: 100%!important;
    border-radius: 0px !important;
    border-color: #E4E4E4 !important;
}
.bzo-form-dat-xe .wpforms-field-date-time .wpforms-field-row{
  flex-direction: row;
    flex-wrap: nowrap!important;
    width: 100%;
    max-width: 100%!important;
}
.bzo-form-dat-xe div.wpforms-container-full .wpforms-form .wpforms-pagebreak-left .wpforms-page-button{
    width: 100%;
  background-color: #01A546!important;
  color: #fff;
  border-radius: 0!important;
}
.bzo-form-dat-xe div.wpforms-container-full .wpforms-page-1 .wpforms-pagebreak-left .wpforms-page-button{

      margin-top: 29px;
}
.bzo-form-dat-xe .wpforms-submit{
    width: calc(50% - 12px);
  background-color: #01A546!important;
  color: #fff;
  border-radius: 0!important;
}
.bzo-form-dat-xe .wpforms-container .wpforms-field .wpforms-field-row .wpforms-field-row-block {
    padding: 0 5px;
}
.bzo-form-dat-xe .wpforms-container .wpforms-form .wpforms-field-label{
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    gap: 4px;
    align-items: center;
}
.bzo-form-dat-xe .info-chuyen .icon-diem-don:before,
.bzo-form-dat-xe .icon-diem-don .wpforms-field-label:before{
    content: '';
    width: 18px;
    height: 18px;
    background-image: url("./images/icon-diem-don.png");
    display: inline-flex;
    background-position: center;
    background-repeat: no-repeat;
}
.bzo-form-dat-xe .info-chuyen .icon-diem-den:before,
.bzo-form-dat-xe .icon-diem-den .wpforms-field-label:before{
    content: '';
    width: 18px;
    height: 18px;
    background-image: url("./images/icon-diem-den.png");
    display: inline-flex;
    background-position: center;
    background-repeat: no-repeat;
}
.bzo-form-dat-xe .info-chuyen .icon-date:before,
.bzo-form-dat-xe .icon-date .wpforms-field-label:before{
    content: '';
    width: 18px;
    height: 18px;
    background-image: url("./images/icon-date.png");
    display: inline-flex;
    background-position: center;
    background-repeat: no-repeat;
}
.bzo-form-dat-xe .info-chuyen .icon-so-nguoi:before,
.bzo-form-dat-xe .icon-so-nguoi .wpforms-field-label:before{
    content: '';
    width: 18px;
    height: 18px;
    background-image: url("./images/icon-so-nguoi.png");
    display: inline-flex;
    background-position: center;
    background-repeat: no-repeat;
}
.bzo-form-dat-xe{
    margin-bottom: 70px;
}

.bzo-form-dat-xe .wpforms-page-indicator.progress{
    display: none!important;
}

.bzo-form-dat-xe .wpforms-page-1{
    width: 100%;
    display: flex;
    gap: 33px;
    flex-wrap: wrap;
}

.bzo-form-dat-xe .wpforms-page-2 .wpforms-field-pagebreak{
    position: absolute;
    left: 0;
  z-index: 1;
  padding: 10px 0;
}

.bzo-form-dat-xe div.wpforms-container-full .wpforms-form .wpforms-field-html ul li{
    list-style: none!important;
     display: flex;
    align-items: center;
    gap: 5px;
}
.bzo-form-dat-xe div.wpforms-container-full .wpforms-confirmation-container-full{
    background: #ffffff;
    border: none;
    box-sizing: border-box;
    margin-bottom: 10px;
    font-size: 16px;
}

.bzo-form-dat-xe div.wpforms-container-full .wpforms-confirmation-container-full .title30{
    font-size: 30px;
}


@media(max-width: 1200px){
  .bzo-form-dat-xe .wpforms-field-container .wpforms-page-1 .wpforms-field{
      width: calc(50% - 17px);
  }
  .bzo-form-dat-xe .wpforms-field-container .wpforms-page-1 .wpforms-field-date-time{
       width: calc(50% - 17px);
  }
  .bzo-form-dat-xe .wpforms-field-container .wpforms-page-1 .wpforms-field-pagebreak{
       width: 100%;
  }
  .bzo-form-dat-xe div.wpforms-container-full .wpforms-page-1 .wpforms-pagebreak-left .wpforms-page-button{
    margin-top: 0px;
  }
}
@media(max-width: 767px){
  .bzo-form-dat-xe .wpforms-field-container .wpforms-page-1 .wpforms-field{
      width: 100%;
  }
  .bzo-form-dat-xe .wpforms-field-container .wpforms-page-1 .wpforms-field-date-time{
       width: 100%;
  }
  .bzo-form-dat-xe .wpforms-field-container .wpforms-page-1 .wpforms-field-pagebreak{
       width: 100%;
  }
  .bzo-form-dat-xe div.wpforms-container-full .wpforms-page-1 .wpforms-pagebreak-left .wpforms-page-button{
    margin-top: 0px;
  }
  .bzo-form-dat-xe div.wpforms-container.wpforms-container-full {
      margin: 50px 0px;
  }
}
@media(max-width: 600px){
  .bzo-form-dat-xe .wpforms-page-2 .wpforms-field-pagebreak {
      padding:  0;
      top: 0;
  }
  .bzo-form-dat-xe .wpforms-page-2 .info-chuyen {
      margin-top: 35px;
  }
}

.site-main .single-post{
  padding: 70px 0;
}
.single-post article.post {
  max-width: 1200px;
    margin: auto;
}
.single-post .title-single-post{
  margin-bottom: 30px;
}
.single-post-media-format{
  margin-bottom: 30px;
}
.single-post-media-format img{
  width: 100%;
}
.single-post .datetime-author{
  margin-bottom: 15px;
}
.bai-viet-lienquan{
  margin-top: 50px;
}

main.site-main{
    min-height: 40vh;
}
.main-page-blog .bzo-info{
    margin-bottom: 30px;
}
#main-content.main-page-blog{
    padding: 70px 0;
}
.content-page-default article ul{
    margin-left: 20px;
}
@media(max-width: 1200px){
    #main-content.main-page-blog{
        padding: 50px 0;
    }
    .bzo-info{
        gap: 16px;
    }
}
@media(max-width: 767px){
    .bzo-form-dat-xe .wpforms-page-1{
        gap: 20px;
    }
    .bzo-about, .bzo-service, .bzo-list-car, .bzo-guest-talk-about-us,
    .bzo-form-dat-xe{
        margin-bottom: 40px;
    }
    .title20{
        font-size: 18px;
    }
    div.bzo-about .bzo-about-row1{
        margin-bottom: 30px;
    }
    div.bzo-about .bzo-about-row2{
        gap: 20px;
    }
    div.bzo-about .bzo-info{
        gap: 4px;
    }
    footer .main-footer .title34{
        font-size: 22px;
    }
    div .bzo-info .description-info .title-post{
        line-height: 1.4;
    }
    div .bzo-guest-talk-about-us .swiper-pagination-bullet{
        width: 12px;
        height: 12px;
    }
    h2 {
        font-size: 22px;
    }
}