@web_primary: #1d1d1e;
@web_secondary: #61b5e5;
@web_big_area: #fff;

@red: #ab2727;
@white: #ffffff;
@black: #1d1d1e;
@dark_grey: #333333;
@mid_grey: #737371;
@light_grey: #999999;


@web_navbar_bg: @web_primary;

@web_primary_light_80: fade(@web_primary, 80%);
@web_primary_light_50: fade(@web_primary, 50%);
@web_primary_light_20: fade(@web_primary, 20%);
@web_secondary_light_80: fade(@web_secondary, 80%);
@web_secondary_light_50: fade(@web_secondary, 50%);
@web_secondary_light_20: fade(@web_secondary, 20%);


/*--------------------------------------*/
body {
    font-family: Arial, sans-serif !important;
    -webkit-font-smoothing: antialiased;
    color: @black;
    font-size: 1rem;
    font-weight: normal;
    font-style: normal;
    
}


h1, h2, h3, h4, h5, h6 {
    font-family: Arial, sans-serif !important;
    -webkit-font-smoothing: antialiased;
    font-weight: 300;
    letter-spacing: 0px;
    line-height: 1.4;
}  

li{font-size: 1rem;
    font-weight: normal;
    font-style: normal;}

:root {
  --line: @web_primary;
  --line-active: #fff;
}





.dowebs_link a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: inherit;
  margin: 0 var(--spacing, 0px);
  -webkit-transition: margin .25s;
  transition: margin .25s;
}
.dowebs_link a svg {
  width: 76px;
  height: 40px;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 7px) translateZ(0);
          transform: translate(-50%, 7px) translateZ(0);
  fill: none;
  stroke: var(--stroke, var(--line));
  stroke-linecap: round;
  stroke-width: 2px;
  stroke-dasharray: var(--offset, 69px) 278px;
  stroke-dashoffset: 361px;
  -webkit-transition: stroke 0.25s ease var(--stroke-delay, 0s), stroke-dasharray 0.35s;
  transition: stroke 0.25s ease var(--stroke-delay, 0s), stroke-dasharray 0.35s;
}
.dowebs_link a:hover {
  --spacing: 0px;
  --stroke: var(--line-active);
  --stroke-delay: .1s;
  --offset: 180px;
}


.web-skin .primary-color{
   background-color: @web_secondary !important; 
}


.web-skin .btn-primary{
    background-color: @web_secondary !important; 
    color: @white !important; 
}


.web-skin .btn-default{
    background-color: @web_secondary !important; 
    color: @white !important; 
}



p{
    font-size: 1rem;
    font-weight: 300;
}

.form-control{
    font-size: 0.8rem;
}


div.error {
    color: @red;
    font-size: 0.75rem
}

input[type=text].required, input[type=email].required, input[type=tel].required, input[type=password].required{
    background-image: url('/img/required.svg');
    background-repeat: no-repeat;
    background-position: right 0.4rem center;
    background-size: 0.4rem;
}


textarea.required {
    background-image: url('/img/required.svg');
    background-repeat: no-repeat;
    background-position: right 0.4rem bottom 0.8rem;
    background-size: 0.4rem;
}

.btn-primary.disabled, .btn-primary:disabled {
    border-color: @web_primary;
}

.btn-primary.focus, .btn-primary:focus{
    border-color: @web_primary;
}



.md-form.md-outline label{
  top: -5px;
}

.form-check-input[type="radio"].with-gap:checked + label::after, .form-check-input[type="radio"].with-gap:checked + label::before, .form-check-input[type="radio"]:checked + label::after, label.btn input[type="radio"].with-gap:checked + label::after, label.btn input[type="radio"].with-gap:checked + label::before, label.btn input[type="radio"]:checked + label::after{
    background-color: @web_primary;
    border: 2px solid @web_primary;
}


.md-form.md-outline input[type="date"]:focus:not([readonly]), .md-form.md-outline input[type="datetime-local"]:focus:not([readonly]), .md-form.md-outline input[type="email"]:focus:not([readonly]), .md-form.md-outline input[type="number"]:focus:not([readonly]), .md-form.md-outline input[type="password"]:focus:not([readonly]), .md-form.md-outline input[type="search-md"]:focus:not([readonly]), .md-form.md-outline input[type="search"]:focus:not([readonly]), .md-form.md-outline input[type="tel"]:focus:not([readonly]), .md-form.md-outline input[type="text"]:focus:not([readonly]), .md-form.md-outline input[type="time"]:focus:not([readonly]), .md-form.md-outline input[type="url"]:focus:not([readonly]), .md-form.md-outline textarea.md-textarea:focus:not([readonly]) {
    border-color: @web_primary;
    box-shadow: inset 0 0 0 1px @web_primary;
}

.input-group-text{
    font-size: 0.8rem;
}

.md-form.input-with-post-icon .input-prefix {
    right: 16px;
    left: initial;
}


.md-form .input-prefix {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: color .2s;
    transition: color .2s;
    color: rgba(0,0,0,0.87);
    pointer-events: none;
}

.form-control:disabled, .form-control[readonly] {
    background-color: @light_grey;
    opacity: 1;
}




.clear {
    clear: both;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

/*--------------------------------------*/
.test {
    border: 1px solid @red;
}

.test_black {
    border: 1px solid @black;
}

.vertical_center {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1001;
}

/*--------------------------------------*/
a,
a:visited {
    color: @web_primary;
}

a:active,
a:focus,
a:hover {
    color: @web_secondary;
}


.is-bg-grey, .is-wrapper > div.is-bg-grey{background-color: @web_big_area;}



.btn.btn-secondary:hover {
    background-color: @web_secondary  !important;
    border-color: @web_secondary  !important;
}

.btn.btn-primary:hover {
    background-color: @web_primary  !important;
    border-color: @web_primary  !important;
}

.sl-wrapper .sl-image .sl-caption {
    font-weight: 400;
}




.dropdown-menu {
    background-color: @white;
}

.dropdown .dropdown-menu .dropdown-item,
.dropleft .dropdown-menu .dropdown-item,
.dropright .dropdown-menu .dropdown-item,
.dropup .dropdown-menu .dropdown-item {
    padding: 0 0.5rem;
}

.dropdown .dropdown-menu.dropdown-primary .dropdown-item.active,
.dropdown .dropdown-menu.dropdown-primary .dropdown-item:active,
.dropdown .dropdown-menu.dropdown-primary .dropdown-item:hover,
.dropleft .dropdown-menu.dropdown-primary .dropdown-item.active,
.dropleft .dropdown-menu.dropdown-primary .dropdown-item:active,
.dropleft .dropdown-menu.dropdown-primary .dropdown-item:hover,
.dropright .dropdown-menu.dropdown-primary .dropdown-item.active,
.dropright .dropdown-menu.dropdown-primary .dropdown-item:active,
.dropright .dropdown-menu.dropdown-primary .dropdown-item:hover,
.dropup .dropdown-menu.dropdown-primary .dropdown-item.active,
.dropup .dropdown-menu.dropdown-primary .dropdown-item:active,
.dropup .dropdown-menu.dropdown-primary .dropdown-item:hover {
    background-color: @web_primary  !important;
    color: #fff !important;

}

.border_red{border:#ff0000 1px solid}




@media (min-width: 600px) {
    .navbar.scrolling-navbar {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .navbar.scrolling-navbar.top-nav-collapse {
        padding-top: 5px;
        padding-bottom: 5px
    }
}




.sticky-nav-desktop{
    margin-top: -3px;
}

.image_logo_desktop{
    position: relative;
    z-index: 1001;
}


.top-nav-collapse {
    background-color: fade(@white, 100%) !important;
}

.navbar:not(.top-nav-collapse) {
    background-color: fade(@white, 50%) !important;
    position: relative;
    z-index: 1002;

}


.dw_desktop_top a,
.dw_desktop_top a:visited {
    color: @web_primary;
}

.dw_desktop_top a:active,
.dw_desktop_top a:focus,
.dw_desktop_top a:hover {
    color: @web_secondary;
}


.dw_mobile_top {
    background: @white;
    font-size: 0.8rem;
}

.top_language_menu_mobile .dropdown-menu {
    min-width: 0;
    text-align: center;
}

.top_language_menu_mobile a,
.top_language_menu_mobile a:visited {
    color: @web_primary;
}

.top_language_menu_mobile a:active,
.top_language_menu_mobile a:focus,
a:hover {
    color: @web_secondary;
}

.sticky_nav_mobile_on .image_logo_mobile {
    max-height: 30px;
}



.web-skin .side-nav {
    background-color: @web_primary;
}

.dw_mobile_side_nav_logo {
    border-bottom: 1px solid @web_secondary_light_20
}

.side-nav .collapsible li a:hover,
.web-skin .side-nav .collapsible li .collapsible-header:hover,
.web-skin .side-nav .collapsible li .collapsible-header.active {
    background-color: @web_primary;
}


.web-skin .side-nav .collapsible li .collapsible-header {
    color: @white;
}


.side-nav .collapsible-body a {
    background-color: @web_primary_light_20;
}

.side-nav .collapsible a {
    height: 2.5rem;
    line-height: 2.5rem;
    font-size: 0.9rem;
    font-weight: 550;
}

.side-nav .collapsible-body a {
    padding-left: 2rem;
}


.web-skin .side-nav .collapsible li a:not(.collapsible-header),
.web-skin .side-nav .collapsible li a:not(.collapsible-header),
.web-skin .side-nav .collapsible li a:not(.collapsible-header) {
    color: @white  !important;
}


.web-skin .side-nav .collapsible li a:not(.collapsible-header).active,
.web-skin .side-nav .collapsible li a:not(.collapsible-header):active,
.web-skin .side-nav .collapsible li a:not(.collapsible-header):hover {
    color: @web_secondary  !important;
}

.side-nav .collapsible a.active,
.side-nav .collapsible a:hover {
    border-radius: 0;
    background: @web_primary_light_80;
}



.dw_mobile_bottom {
    background: @white;
    font-size: 0.8rem;
    line-height: 1.3rem;
}



.dw_desktop_top li {
    font-weight: 550;
}

.top_cp {
    background: @web_primary;
    color: @white;
    padding: 0.2rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.top_cp a {
    color: @white  !important;
}

.top_cp a:hover {
    color: @web_secondary  !important;
}

.top_cp .float-left i {
    color: @white  !important;
}

.top_language_menu_desktop .nav-link {
    padding: 0;
}

.top_language_menu_desktop .dropdown-menu {
    min-width: 0;
    text-align: center;
}

.top_language_menu_desktop a.nav-link,
.top_language_menu_desktop a.nav-link:visited {
    color: @white  !important;
}





.nav_left_logo {
    line-height: 50px;
}

.nav_left_logo .image_logo_desktop {
    max-height: 50px;
}

.nav_middle_menu {
    padding-left: 1rem;
}

.nav_right_button {
    line-height: 0px;

}

.nav_right_button .dropdown-menu{
    line-height: 0px;
}


.nav_right_button .dropdown-item{
    line-height: 0px;
}


.navbar-nav li {
    font-size: 0.9rem;
}

.navbar-nav .active a,
.navbar-nav .active a:visited {
    color: @web_secondary;
}

.dropdown .dropdown-menu .dropdown-item,
.dropleft .dropdown-menu .dropdown-item,
.dropright .dropdown-menu .dropdown-item,
.dropup .dropdown-menu .dropdown-item {
    font-weight: 400;
    font-size: 0.8rem;
}



.sticky_nav_desktop_on .navbar-brand{
    margin-left:42px; z-index: 1005; position:absolute; top:0px !important; max-width: 190px !important;
}



.sticky_nav_desktop_on .nav_left_logo {
    line-height: 50px;
}

.sticky_nav_desktop_on .nav_left_logo .image_logo_desktop {
    max-height: 40px;
}

.sticky_nav_desktop_on .nav_middle_menu {
    padding-left: 1rem;
}

.sticky_nav_desktop_on .nav_right_button {
    line-height: 50px;
    margin-top: -7px;

}

.sticky_nav_desktop_on .nav_right_button .top_1800{
   max-height: 50px;
    top:5px;
}



.sticky_nav_desktop_on .nav_right_button .btn {
    font-size: 0.85rem;
    padding: 5px 15px;
    line-height: 1.5em;
}

.sticky_nav_desktop_on .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
}

.sticky_nav_desktop_on .dropdown .dropdown-menu .dropdown-item,
.sticky_nav_desktop_on .dropleft .dropdown-menu .dropdown-item,
.dropright .dropdown-menu .dropdown-item,
.sticky_nav_desktop_on .dropup .dropdown-menu .dropdown-item {
    font-size: 0.7rem;
}

.sticky_nav_desktop_on .navbar-nav li {
    font-size: 0.8rem;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}




.breadcrumb {
    padding: 0.5rem 1rem;
    margin: 0;
    list-style: none;
    background-color: #eeeff0;
    border-radius: 0;
}

.breadcrumb-item {
    font-size: 0.8rem;
    font-weight: 400;
}


.carousel-multi-item .carousel-indicators li {
    width: 0.625rem;
    max-width: 0.625rem;
    height: 0.625rem;
}


.carousel-multi-item .carousel-indicators .active {
    width: 0.625rem;
    max-width: 0.625rem;
    height: 0.625rem;
}


.sublevel_image_top_slide.btn-floating {
    position: absolute;
    top: calc(50% - 24px);
    border-radius: none;
    box-shadow: none;
}

.sublevel_image_top_slide.btn-floating i {
    color: @web_primary_light_50;
    opacity: 1;
    font-size: 2rem;
    font-weight: 400;
}

.sublevel_image_top_slide.btn-floating:hover {
    opacity: 0.5;
}


.sublevel_image_top_slide.btn-floating.btn-prev {
    left: -40px;
}

.sublevel_image_top_slide.btn-floating.btn-next {
    right: -40px;
}





.card-title {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.card-body small {
    
}

.card-text {
    margin: 0.5rem 0;
    color: @mid_grey  !important;
    font-size: 1rem !important;
    font-weight: 400;
}

.card-title a,
.card-title a:visited {
    color: @web_primary;
}

.card-title a:active,
.card-title a:focus,
.card-title a:hover {
    color: @web_secondary;
}


.media_right_content h2 {
    margin-top: 0;
}

.media_right_content small {
    color: @light_grey;
}


.sublevel_image_full_introduction {
    color: @white;
    font-size: 0.9rem;
    margin: 0 1rem 1rem 1rem;
}





.content_interlace .content_interlace_item {
    float: left;
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    background-color: @white;

}

.content_interlace .content_interlace_item .content_interlace_content,
.content_interlace .content_interlace_item .content_interlace_image {
    width: 50%;
}

.content_interlace .content_interlace_item .content_interlace_image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}

.content_interlace .content_interlace_item .content_interlace_content {
    background: none;
    padding: 7rem;

}


.content_interlace_content .card-title a,
.content_interlace_content .card-title a:visited {
    color: @web_primary !important;
}


.content_interlace_content .card-title a:active,
.content_interlace_content .card-title a:focus,
.content_interlace_content .card-title a:hover {
    color: @web_secondary !important;
}




.content_interlace_content .card-text{
color: @black !important;
}




.content_interlace .content_interlace_item.item_image_right .content_interlace_image {
    position: absolute;
    right: 0px;
    top: 0;
    bottom: 0;
}


.accordion .card-header {
    background-color: @web_primary;
    padding: .75rem;
    border-bottom: none;
}


.accordion .card-header a {
    display: block;
}

.accordion .card-header h2 {
    font-size: 0.85rem;
    margin: 0;
    color: @white;
}


.accordion .card-header h2 i{
    color: @white;
}


.accordion .card-body {
    font-size: 0.9rem;
    color: @dark_grey
}


.google_map {
    width: 100%;
    height: 70vh;
    position: relative;
    overflow: hidden;
}

.google_map_pop_content {
    font-weight: 400;
    line-height: 1.2rem;
}

.google_map_pop_content h3 {
    font-size: 0.85rem;
    margin: 0.3rem 0;
    font-weight: bold;
}


.google_map_pop_content i {
    margin-right: 0.5rem;
}

.google_map_pop_content a {
    font-size: 0.75rem;
    color: @web_primary;
    text-decoration: none;
}

.google_map_pop_content a:hover {
    color: @web_secondary;
}



.bg_important_information .important_information {
    background: fade(@web_secondary, 70%);
    padding: 3rem 5rem;

    border-radius: 15px;
}

.bg_important_information .important_information_content {
    font-size: 1rem;
    line-height: 2.2;
    color: @dark_grey;
    font-weight: 500;
    max-width: 96%;
    margin: 0 auto;
}


.bg_important_information .important_information_content .fa-quote-left{color:@web_primary; font-size: 2.0rem}

.bg_important_information .important_information_content .fa-quote-right{color:@web_primary; font-size: 2.0rem}


.bg_important_information .testimonial_name {
    font-size: 2.0rem;
    color: @web_primary;
    text-transform: uppercase;
    font-weight: 800;
}

.sublevel_testimonial .testimonial_subname {
    font-size: 0.9rem;
    color: @web_secondary;
    text-transform: uppercase;
}


.sublevel_testimonial .carousel-indicators {
    bottom: 10px;
}


.testimonial-carousel .carousel-control.left::before {
    color: @web_primary;
    content: url(/img/svg/arrow_left_round.svg) !important;
    background-size: 30px 30px;
    height: 30px;
    width: 30px;
}


.testimonial-carousel .carousel-control.right::before {
    color: @web_primary;
    content: url(/img/svg/arrow_right_round.svg) !important;
    background-size: 30px 30px;
    height: 30px;
    width: 30px;
}



.testimonial-carousel .carousel-control:hover::before {
    color: @web_primary;
}

.carousel-indicators li {
    background-color: @web_primary;
}

.testimonial-carousel .carousel-control.right {
    right: 10%;
    top: 30%;
}

.testimonial-carousel .carousel-control.left {
    left: 10%;
    top: 30%;
}


.template_enquiry_form .subtitle{
    font-size: 0.8rem;
    color: @white;
}


.md-form.md-outline {
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
}





.pagination .page-item .page-link {
    font-weight: 400;
    font-size: 0.8rem
}

.pagination .page-item .page-link:hover {
    background-color: @web_primary;
}

.pagination .page-item.active .page-link {
    background-color: @web_primary;
}

.pagination .page-item.active .page-link:hover {
    background-color: @web_primary;
}





.footer {
    background: url(/img/bg-footer.png) top right no-repeat;
}

.footer_body {
    padding: 5rem 0;
    font-weight: 400;
    color: @web_primary;
}

.footer_body a {
    color: @web_primary;
}

.footer_body a:hover {
    color: @web_secondary;
}



.footer_info{
    margin: 0;
}

.contacts_info{
    margin-top: 2rem;
    font-weight: bolder;
    font-size: 1.2rem;
    line-height: 2rem;
}



.footer_social_media{
font-size: 2rem;
padding-right: 4rem;
}



.footer_wave {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer_wave svg {
    position: relative;
    display: block;
    width: calc(118% + 1.3px);
    height: 89px;
    transform: rotateY(180deg);
}

.footer_wave .shape-fill {
    fill: @white;
}


.footer_copyright {
    background: @web_primary;
    color: @white;
    font-weight: 400;
    font-size: 0.875rem;
}

.footer_copyright a {
    color: @white;
}

.footer_copyright a:hover {
    color: @web_secondary;
}

.second_line_sm {
    padding-left: 1rem;
}


.carousel-caption {
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

.carousel-control-next,
.carousel-control-prev {
    z-index: 11;
}

.is-arrow-down {
    z-index: 20;
}







.container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.container_full {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.container_1720 {
    width: 100%;
    max-width: 1720px;
    padding: 0;
    margin: 0 auto;
}

.container_1920 {
    width: 100%;
    max-width: 1920px;
    padding: 0;
    margin: 0 auto;
}

.container_1440 {
    width: 100%;
    max-width: 1440px;
    padding: 0;
    margin: 0 auto;
}

.container_1280 {
    width: 100%;
    max-width: 1280px;
    padding: 0;
    margin: 0 auto;
}

.container_960 {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

.lg_hidden {
    display: block;
}

.md_hidden {
    display: block;
}

.sm_hidden {
    display: block;
}

.xs_hidden {
    display: block;
}

.xl_hidden {
    display: none;
}


h1 {
    font-size: 2.1rem;
    font-weight: 800 !important;
    color: @web_primary;
    font-style: italic;
    text-transform: uppercase;

}

h2 {
    font-size: 2rem;

    font-weight: 400;
}

h3 {
    font-size: 1.8rem;
    font-weight: 400;
}


.card_border_less .card{
    box-shadow:none;
    text-align: center;
}


.card_border_less .card .card-title{
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 800;
    color: @web_secondary;
}



.card_border_less .card .card-text{
    line-height: 1.2rem
}



h1.card-title{
    text-transform: uppercase;
    font-size: 1.6rem;
    font-weight: bolder;
}



.slash_left_low_right_high_wrapper{
    position:relative; 
    background: url(/img/bg-logos.png) left bottom no-repeat @web_big_area;
}



.slash_left_low_right_high_top{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}


.slash_left_low_right_high_top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
    transform: rotateY(180deg);
}

.slash_left_low_right_high_top .shape-fill {
    fill: @white;
}



.slash_left_low_right_high_bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.slash_left_low_right_high_bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
    transform: rotateY(180deg);
}

.slash_left_low_right_high_bottom .shape-fill {
    fill: @white;
}


.slash_left_low_right_high_content{
    position: relative;
    padding: 100px 0 200px 0;
}


.homepage_section_title{
    text-align: center;
}

.homepage_section_title h1{
    font-size:2.8rem;
    text-transform: uppercase;
    font-weight:800 !important;
}

.homepage_section_title p{
    line-height: 1.2rem;
    font-weight:400 !important;
}


.homepage_section_title .line{
    width: 200px;
    border-bottom: 5px solid @web_secondary;
    margin: 0 auto 50px auto;
}




.homepage_our_courses{
    background: url("/img/bg-content.png") top center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}




.bg_important_information{
    background: url("/img/bg-important-information.jpg") center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}




.bg_our_projects h1, .bg_our_projects p{
    color: @white;
}


.bg_our_projects .card-body{
    background-color: @white;
}

.bg_our_projects .card{
   background-color: @white;
   border: 8px solid @white;
   border-radius: 8px;
}



.web-skin .carousel-multi-item .carousel-indicators li, 
.web-skin .carousel-multi-item .carousel-indicators li.active, 
.web-skin .carousel-multi-item .controls-top>a {
    background-color: @white;
}


.sublevel_image_top_slide.btn-floating i{
    color: @white;
}




.quotation_process{
    margin-top:220px;
    margin-bottom:50px;
}


.footer_centres{
    padding-top: 25px;
}

.footer_centres a,
.footer_centres a:visited{
    color: @black;
}

.footer_centres a:hover,
.footer_centres a:focus,
.footer_centres a:hover{
    color: @web_primary;
}


.footer_centres .mb-4{
    margin-bottom: 0.2rem !important;
}


.card {padding: 10px;}




/*
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
box.css fix 1024px
*/
@media (max-width: 1024px) {
    .is-content-1200 {
        max-width: 1200px !important;
    }

    /*-------------*/
}

/*
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
box.css fix 1024px
*/

/*
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
Extra large devices (large desktops, 1200px and up)
*/
@media (min-width: 1200px) {
    /* xl */

    .content_interlace .content_interlace_item .content_interlace_content {
        padding: 3em 2em;
    }


    /*-------------*/
}

/*
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
Large devices (desktops, 992px and up)
*/
@media (min-width: 992px) and (max-width: 1199.98px) {

    /* lg */
    .xl_hidden {
        display: block;
    }

    .md_hidden {
        display: block;
    }

    .sm_hidden {
        display: block;
    }

    .xs_hidden {
        display: block;
    }

    .lg_hidden {
        display: none;
    }

    h1 {
        font-size: 2.0rem;
        font-weight: 400;
    }

    h2 {
        font-size: 1.8rem;
        font-weight: 400;
    }

    h3 {
        font-size: 1.6rem;
        font-weight: 400;
    }

    .nav_left_logo {
        line-height: 50px;

    }

    .nav_left_logo .image_logo_desktop {
        max-height: 50px;
    }

    .nav_middle_menu {
        padding-left: 1rem;
    }

    .nav_right_button {
        line-height: 40px;
    }

    .nav_right_button .btn {
        font-size: 0.8rem;
        padding: 5px 15px;
        line-height: 1.5em;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }

    .dropdown .dropdown-menu .dropdown-item,
    .dropleft .dropdown-menu .dropdown-item,
    .dropright .dropdown-menu .dropdown-item,
    .dropup .dropdown-menu .dropdown-item {
        font-size: 0.7rem;
    }

    .navbar-nav li {
        font-size: 0.8rem;
    }


     .footer_social_media{
        padding-right: 3rem;
    }
    .footer {
    background: @white;
    }
    /*-------------*/
}

/*
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
Medium devices (tablets, 768px and up)
*/
@media (min-width: 768px) and (max-width: 991.98px) {

    /* md */
    .xl_hidden {
        display: block;
    }

    .lg_hidden {
        display: block;
    }

    .sm_hidden {
        display: block;
    }

    .xs_hidden {
        display: block;
    }

    .md_hidden {
        display: none;
    }

    h1 {
        font-size: 1.8rem;
        font-weight: 400;
    }

    h2 {
        font-size: 1.6rem;
        font-weight: 400;
    }

    h3 {
        font-size: 1.4rem;
        font-weight: 400;
    }


    .content_interlace .content_interlace_item {
        display: block;
    }

    .content_interlace .content_interlace_item .content_interlace_content,
    .content_interlace .content_interlace_item .content_interlace_image {
        display: block;
        width: 100%;
    }

    .content_interlace .content_interlace_item .content_interlace_image {
        height: 400px;
        border-radius: calc(.25rem - 1px);
    }


    .content_interlace .content_interlace_item .content_interlace_content {
        padding: 2rem 1em;
    }


    .content_interlace .content_interlace_item.item_image_right .content_interlace_image {
        position: relative;
        top: auto;
        bototm: auto;
        height: 400px;
    }


 .footer_social_media{
        padding-right: 2rem;
    }



.quotation_process{
    margin-top:60px;
}

 .footer {
    background: @white;
    }
    /*-------------*/
}

/*
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
Small devices (landscape phones, 576px and up)
*/
@media (min-width: 576px) and (max-width: 767.98px) {

    /* sm */
    .xl_hidden {
        display: block;
    }

    .lg_hidden {
        display: block;
    }

    .md_hidden {
        display: block;
    }

    .xs_hidden {
        display: block;
    }

    .sm_hidden {
        display: none;
    }

    h1 {
        font-size: 1.6rem;
        font-weight: 400;
    }

    h2 {
        font-size: 1.4rem;
        font-weight: 400;
    }

    h3 {
        font-size: 1.2rem;
        font-weight: 400;
    }

    .navbar:not(.top-nav-collapse) {
        background: @white  !important;
    }

    .footer_copyright {
        padding-bottom: 3.2rem;
    }

    .second_line_sm {
        display: block;
        padding-left: 0;
    }

    .content_interlace .content_interlace_item {
        display: block;
    }

    .content_interlace .content_interlace_item .content_interlace_content,
    .content_interlace .content_interlace_item .content_interlace_image {
        display: block;
        width: 100%;
    }

    .content_interlace .content_interlace_item .content_interlace_image {
        height: 400px;
        border-radius: calc(.25rem - 1px);
    }


    .content_interlace .content_interlace_item .content_interlace_content {
        padding: 2rem 1em;
    }


    .content_interlace .content_interlace_item.item_image_right .content_interlace_image {
        position: relative;
        top: auto;
        bototm: auto;
        height: 400px;
    }

    .sublevel_testimonial .testimonial {
        padding: 3rem 3rem;
        margin-left: 0;
        margin-right: 0;
    }


   
    .quotation_process{
    margin-top:60px;
}

     .footer {
    background: @white;
    }
    /*-------------*/
}

/*
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
Extra small devices (portrait phones, less than 576px)
*/
@media (max-width: 575.98px) {

    /* xs */
    .xl_hidden {
        display: block;
    }

    .lg_hidden {
        display: block;
    }

    .md_hidden {
        display: block;
    }

    .sm_hidden {
        display: block;
    }

    .xs_hidden {
        display: none;
    }

    h1 {
        font-size: 1.6rem;
        font-weight: 400;
    }

    h2 {
        font-size: 1.4rem;
        font-weight: 400;
    }

    h3 {
        font-size: 1.2rem;
        font-weight: 400;
    }

    .footer_copyright {
        padding-bottom: 3.2rem;
    }

    .second_line_sm {
        display: block;
        padding-left: 0;
    }

    .content_interlace .content_interlace_item {
        display: block;
    }

    .content_interlace .content_interlace_item .content_interlace_content,
    .content_interlace .content_interlace_item .content_interlace_image {
        display: block;
        width: 100%;
    }

    .content_interlace .content_interlace_item .content_interlace_image {
        height: 400px;
        border-radius: calc(.25rem - 1px);
    }




    .content_interlace .content_interlace_item .content_interlace_content {
        padding: 2rem 1em;
    }


    .content_interlace .content_interlace_item.item_image_right .content_interlace_image {
        position: relative;
        top: auto;
        bototm: auto;
        height: 400px;
    }


    .sublevel_testimonial .testimonial {
        padding: 3rem 3rem;
        margin-left: 0;
        margin-right: 0;
    }


    .footer_social_media{
        padding-right: 2rem;
    }

    

    .quotation_process{
    margin-top:60px;
    }

    .footer {
    background: @white;
    }


    /*-------------*/
}




/*-------------*/
/*-------------*/
/*-------------*/
.top_1800{
        max-width: 283px;
        top:10px;
    }

.top-nav-collapse .top_1800{
     top:5px;
    
}




@media (max-width: 1600px){
     .top_1800{
        max-width: 200px;
        top:30px;
    }
}


@media (min-width: 1400px) and (max-width: 1599.98px) {
     .top_1800{
        max-width: 180px;
        top:30px;
    }
}


@media (max-width: 1398px) {
     .top_1800{
        display: none;
    }
}

/*-------------*/






ul.af_list {
    list-style: none;
    padding: 0;
    margin: 0;
    border: solid 1px @web_primary;
    background: #fff !important;
    font-size: 13px !important;
    z-index: 1001;
    font-family: "Microsoft YaHei UI", "Microsoft YaHei", "微软雅黑", Heiti, "黑体", sans-serif;
    color: @web_primary;
}

ul.af_list li.af_item {
    cursor: pointer !important;
    padding: 0 5px !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
    border-bottom: 1px solid @web_primary !important;
    font-size: 13px !important;
     font-weight: 500 !important;
}


ul.af_list li.af_item.af_hover {
    background: @web_primary !important;
    color: #fff;
}

ul.af_list li.af_item .af_hl {
    font-weight: 500 !important;
}

ul.af_list li.af_empty {
    padding: 0 5px;
    border-bottom: 1px solid @web_primary;
    font-size: 13px !important;
}


ul.af_list li.af_footer {
    font-size: 0.8em !important;
    color: #999 !important;
    text-align: right !important;
    background: #fff !important;
    padding: 0 5px !important;
    font-weight: 300 !important;
}

ul.af_list li.af_footer a{
    color: #999 !important;
    text-decoration: none !important;
}


@media (max-width: 1650px){
    .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    }
}


@media (max-width: 1560px){
    .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 1rem;
    padding-right: 1rem;
    }
}


@media (max-width: 1500px){
    .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0.6rem;
    padding-right: 0.6rem;
    }
}


@media (max-width: 1090px){
    .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0.3rem;
    padding-right: 0.3rem;
    }
}



.card-img, .card-img-bottom, .card-img-top{
    width: auto !important;
    max-width: 100% !important;
}

.card {
    background-color: none !important;
    background: none !important;
}
/*-------------*/
/*-------------*/
.is-wrapper{height: auto !important;}
.is-wrapper > div{float: none !important;}


.homepage_fix{
background: transparent !important;
margin-bottom: -77px;
}

@supports (hanging-punctuation: first) and (font: -apple-system-body) and (-webkit-appearance: none) {
  .homepage_fix {
    margin-bottom: -76px;
  }
}


