@charset "utf-8"; 
/* 元指令建站 */
@media (min-width: 1400px) {
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1194px;
}
}
@media (min-width: 1680px) {
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1470px;
}
}

.overflow {
	white-space: nowrap;
	overflow: hidden;
	text-overflow:ellipsis;
}
.overflow-2 {
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}
.overflow-3 {
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
	width:auto !important;
	max-width: initial;
	margin: 0 auto;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}


/*--------animation---------*/
@keyframes fadeHeaderInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
@keyframes shadow {
    0% {
        transform: scale(1) translateY(0px);
    }
    100% {
        transform: scale(0.8) translateY(75px);
    }
}
@keyframes ghost {
    0% {
        transform: scale(1) translateY(0px)
    }
    100% {
        transform: scale(1) translateY(-40px)
    }
}
/*======================
1.General Code
========================*/
html {
    overflow-x: hidden;
}
button:focus,
*:focus {
    outline: none;
}
body {
	font-family: 'Roboto', "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0px;
    padding: 0px;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
    color: #000;
    background: #ffffff;
    border-color: #dfdfdf;
    overflow: hidden;
}
button {
    background: transparent;
    border: none;
    padding: 0;
}
label {
    line-height: normal;
}
hr{
    margin: 20px 0;
}
.p-relative {
    position: relative;
}
.before-none:after,
.after-none:after,
.none {
    display: none;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.overlay-bg-black{
    background: #000;
    opacity: 0.1;
}
.overlay-2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}
.image-fit{
    width: 100%;
    height: 100%;
}
.transform-center {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translate(0%, -50%);
    z-index: 1;
}
.bx-wrapper{
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
[class^="flaticon-"]:before,
[class*=" flaticon-"]:before {
    font-size: inherit;
    margin: 0;
}
.animate-img{
    position: relative;
    overflow: hidden;
}
.animate-img:hover img{
    transform: scale(1.03);
    transition: 0.5s;
}
.parallax{
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transition: border 0.3s ease-in, box-shadow 0.3s ease-in,background 0.3s, opacity 0.3s ease-in;
}
.normal-bg{
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: border 0.3s ease-in, box-shadow 0.3s ease-in,background 0.3s, opacity 0.3s ease-in;
}
/*section header*/
.section-header {
    padding-bottom: 30px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.section-header .section-heading{
    max-width: 800px;
    margin: 0 auto 0 0;
}
.section-header .section-heading h3:after{
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: #0782a3;
    margin-top: 20px;
}
.section-header .section-description {
    margin-top: 20px;
    position: relative;
}
.section-header .section-description p {
    margin-bottom: 0px;
}
.section-header.style-right{
    text-align: right;
}
.section-header.style-right .section-heading{
    margin: 0 0 0 auto;
}
.section-header.style-right .section-heading h3:after{
    margin: 20px 0 0 auto;
}
.our-slogan .our-slogan-con {
	position: relative;
}
.our-slogan .section-heading h3 {
	font-size: 32px;
}
.our-slogan .section-heading h3:after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: #ffffff;
    margin: 20px auto;
}
@media (max-width: 767px) {
.section-header .section-heading h3:after {
    margin-top: 10px;
}
.section-header .section-description {
    margin-top: 10px;
}
}
@media (max-width: 575px) {
.our-slogan .section-heading h3 {
    font-size: 24px;
}
}
/*Slick Arrow*/
.arrow-layout-2 .slick-arrow,
.arrow-layout-1 .slick-arrow{
    position: absolute;
    top: 50%;
    z-index: 10;
    transform: translate(0px, -50%);
    transition: 0.5s all;
    font-size: 0;
    overflow: hidden;
    z-index: 1;
}
.arrow-layout-1 .slick-arrow:after{
    width: 50px;
    height: 50px;
    border:1px solid #fff;
    background: transparent;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Font Awesome 5 Free';
	font-weight: 900;
}
.arrow-layout-1 .slick-arrow:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 0%;
    background: #0782a3;
    border-radius: 50%;
    z-index: -1;
    height: 100%;
    transition: 0.5s all;
}
.arrow-layout-1 .slick-arrow:hover:before{
    width: 100%;
}
.arrow-layout-1 .slick-prev{
    left: -100px;
}
.arrow-layout-1 .slick-next{
    right: -100px;
}
.arrow-layout-1 .slick-prev:after{
    content: "\f104";
}
.arrow-layout-1 .slick-next:after{
    content: "\f105";
}
.arrow-layout-1.slick-slider:hover .slick-prev{
    left: 100px;
}
.arrow-layout-1.slick-slider:hover .slick-next{
    right: 100px;
}

.arrow-layout-2 .slick-arrow{
    font-size: 0px;
    right: 16px;
    top: -80px;
}
.arrow-layout-2 .slick-arrow:after{
    background: #373838;
    border-color: #373838;
    color: #fff;
    font-family: 'Font Awesome 5 Free';
    padding: 16px;
    font-size: 20px;
	font-weight: 900;
}
.arrow-layout-2 .slick-prev{
    right: 65px;
}
.arrow-layout-2 .slick-next{
    right: 16px;
}
.arrow-layout-2 .slick-prev:after{
    content: "\f104";
}
.arrow-layout-2 .slick-next:after{
    content: "\f105";
}
.arrow-layout-2 .slick-arrow:hover:after{
    color: #fff;
    background: #0782a3;
}
@media (max-width: 1679px) {
.arrow-layout-1.slick-slider:hover .slick-prev {
    left: 30px;
}
.arrow-layout-1.slick-slider:hover .slick-next {
    right: 30px;
}
}
@media (max-width: 1199px) {
.arrow-layout-1 .slick-arrow:after{
    border:0px solid #fff;
	font-size: 30px;
	width: 30px;
    height: 30px;
}
.arrow-layout-1 .slick-prev{
    left: 0px;
}
.arrow-layout-1 .slick-next{
    right: 0px;
}
.arrow-layout-1.slick-slider:hover .slick-prev{
    left: 0px;
}
.arrow-layout-1.slick-slider:hover .slick-next{
    right: 0px;
}
}
/*slick bullets*/
.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 20px;
}
.slick-dots li {
    padding: 0;
    line-height: 0;
}
.slick-dots li button {
    font-size: 0;
    width: 12px;
    height: 6px;
    border-radius: 10px;
    background: #5f6061;
    margin: 0 5px;
    transition: 0.6s all;
    border: 2px solid #5f6061;
}
.slick-dots li.slick-active button {
    width: 24px;
    height: 6px;
    border-radius: 50px;
    background: #0782a3;
    border: 2px solid #0782a3;
}
@media (max-width: 767px) {
.our-yzlcms-advantage .slick-dots li button {
    background: #ffffff;
    border: 2px solid #ffffff;
}
.our-yzlcms-advantage .slick-dots li.slick-active button {
    background: #0782a3;
    border: 2px solid #0782a3;
}
}
/*pagination*/
.page-item:first-child .page-link{
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}
.page-item:last-child .page-link{
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}
.page-link:focus{
    box-shadow: none;
    z-index: 1;
}
.page-item .page-link{
    padding: 8px 20px;
    font-size: 14px;
    line-height: 1.5;
    border: 2px solid #eee;
    color: #020202;
    border-radius: 0;
}
.page-item:hover .page-link,
.page-item.active .page-link{
    background-color: #0782a3;
    border-color: #0782a3;
    color: #fff;
}
/*======================
1.1 Typography
========================*/
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 500;
    color: #000;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a{
    color: inherit;
}
h1 {
    font-size: 50px;
    line-height: normal;
}
h2 {
    font-size: 30px;
}
h3 {
    font-size: 28px;
}
h4 {
    font-size: 24px;
}
h5 {
    font-size: 18px;
}
h6 {
    font-size: 16px;
}
p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
	font-weight: 300;
}
a {
    color: #0782a3;
    text-decoration: none;
}
a:focus,
a:hover {
    color: #0782a3;
    text-decoration: none;
}
dl,
ol,
ul {
    margin: 0;
    padding: 0;
}
ul li,
ol li {
    margin: 0px;
    position: relative;
	padding:0;
	list-style:none;
}
ul.custom{
    list-style: none;
    padding: 0;
}
ul.custom-flex{
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
blockquote {
    background-color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    padding: 30px;
    padding-left: 70px;
    border-left: 2px solid #0782a3;
}
blockquote span{
    width: 50px;
    height: 50px;
    background: #0782a3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    font-size: 16px;
    margin-right: 0;
    position: absolute;
    left: 0;
    top: 0;
}
blockquote p {
    font-size: 16px;
    font-style: italic;
    margin: 0;
    font-weight: 500;
    word-break: break-word;
    margin-bottom: 0;
}
blockquote h6 {
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 16px;
}

iframe{
    border:none;
    width: 100%;
}
img {
    max-width: 100%;
    transition: 0.5s;
}
table th,
table td {
    border: 1px solid #dfdfdf;
    padding: 16px;
}
table {
    border: 1px solid #dfdfdf;
    padding: 16px;
    width: 100%;
}
.fs-12 {
    font-size: 12px;
}
.fs-14 {
    font-size: 14px;
}
.fs-16 {
    font-size: 16px;
}
.fs-18 {
    font-size: 18px;
}
.fs-20 {
    font-size: 20px;
}
.fw-100 {
    font-weight: 300;
}
.fw-400 {
    font-weight: 500;
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 500;
}
.fw-700 {
    font-weight: 500;
}
@media (max-width: 767px) {

}
/*======================
1.2 Space margins and padding
========================*/
.no-margin {
    margin: 0;
}
.no-padding {
    padding: 0;
}
.full-width {
    width: 100%;
}
.full-height {
    height: 100%;
}
.section-padding {
    padding: 80px 0;
}
.section-padding-top{
    padding-top:80px;
}
.section-padding-bottom{
    padding-bottom:80px;
}
.padding-10 {
    padding: 10px;
}
.padding-15 {
    padding: 16px;
}
.padding-20 {
    padding: 20px;
}
.mb-xl-20 {
    margin-bottom: 20px;
}
.mb-xl-30 {
    margin-bottom: 30px;
}
.mb-xl-40 {
    margin-bottom: 40px;
}
.mb-xl-80 {
    margin-bottom: 80px;
}
.pb-xl-20 {
    padding-bottom: 20px;
}
@media (max-width: 1199px) {
.section-padding {
    padding: 60px 0;
}
.section-padding-top{
    padding-top:60px;
}
.section-padding-bottom{
    padding-bottom:60px;
}
}
@media (max-width: 767px) {
h3 {
    font-size: 24px;
}
.padding-20 {
    padding: 16px;
}
.fs-18 {
    font-size: 16px;
}
.section-padding {
    padding: 40px 0;
}
.section-padding.footer {
    padding: 40px 0 0 0;
}
.section-padding-top{
    padding-top:40px;
}
.section-padding-bottom{
    padding-bottom:40px;
}
}
@media (max-width: 575px) {
.padding-20 {
    padding: 10px;
}
}
/*==================
1.3. Forms
====================*/
.form-control-custom::placeholder{
    font-size: 14px;
}
.form-control-custom {
    line-height: 40px;
	height: 40px;
    padding: 0 16px;
    border-radius: 0;
    width: 100%;
    background: #f5f5f5;
    font-size: 14px;
    border-radius: 50px;
	z-index: 1;
}
.form-control-custom:focus {
    box-shadow: none;
}

.btn-height,
button.btn-height{
    height: 40px;
    line-height: 1;
    padding: 0;
}
label.submit{
    height: 16px;
    width: 100%;
    clear: both;
}
.custom-select{
    background-image: none;
}
.custom-select:focus{
    box-shadow: none;
}
.group-form .form-control-custom,
.group-form .form-control-custom:not(:last-child){
    border-radius: 50px;
    padding: 0 60px 0 16px;
}
.group-form .form-control-custom:focus{
    z-index: 0;
}
.group-form .form-control-custom.custom-select:focus{
    z-index: 10;
}
.group-form .input-group-append{
    position: absolute;
    height: 40px;
    width: 50px;
    background: #ff693a;
    color: #fff;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 0px 50px 50px 0px;
	cursor: pointer;
    z-index: 9;
}
.group-form .custom-select{
    padding: 0 30px 0 10px;
}
.group-form .custom-select:after{
    border-bottom-color: #fff;
    border-right-color: #fff;
}
.group-form .custom-select:before{
    content: '';
    background: #5f6061;
    width: 30px;
    height: 40px;
    display: block;
    position: absolute;
    right: 0;
    top: -2px;
    border-radius: 0px 50px 50px 0px;
    margin-top: 0;
}
textarea.form-control {
    height: auto;
    padding: 20px 16px 0;
}
label.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
label.custom-checkbox {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    cursor: pointer;
    user-select: none;
    line-height: normal;
    font-size: 14px;
}
label.custom-checkbox:last-child {
    margin-bottom: 10px;
}
/* Create a custom checkbox */
label.custom-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #d4d4db;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 0px;
}
/* On mouse-over, add a grey background color */
label.custom-checkbox:hover input ~ .checkmark {
    background-color: #fff;
    border: 1px solid #0782a3;
}
/* When the checkbox is checked, add a blue background */
label.custom-checkbox input:checked ~ .checkmark {
    background-color: #0782a3;
    border: 1px solid #0782a3;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
/* Show the checkmark when checked */
label.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}
/* Style the checkmark/indicator */
label.custom-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.topbar .form-control-custom {
    line-height: 30px;
	height: 30px;
	background: #ffffff;
}
.topbar .form-control-custom:focus {
    box-shadow: none;
}
.topbar .group-form .input-group-append {
    height: 30px;
}
.topbar .group-form .input-group-append i {
    font-size: 13px;
}

/*==================
1.4. Buttons
====================*/
.btn-first{
    display: inline-block;
    padding: 12px 40px;
    position: relative;
    transition: 0.5s all;
    background: transparent;
    color: inherit;
    border: 1px solid transparent;
    font-size: 16px;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    border-radius: 50px;
    text-transform: uppercase;
}
.navigation .btn-first{
    font-size: 18px;
	padding: 6px 20px;
}
.btn-submit{
    border-color: #0782a3;
    color: #0782a3;
    background: #fff; 
}
.btn-small:before,
.btn-submit:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: #036b87;
    width: 0%;
    transition: 0.5s all;
    z-index: -1;
    border-radius: 50px;
}
.btn-small:hover,
.btn-submit:hover{
    color: #fff;
}
.btn-small:focus,
.btn-submit:focus{
    background-color: #036b87;
    color: #fff;
}
.btn-small:hover:before,
.btn-submit:hover:before{
    width: 100%;
}
.btn-second{
    display: inline-block;
    padding: 0px 20px;
    position: relative;
    transition: 0.5s all;
    background: transparent;
    color: inherit;
    border: 1px solid transparent;
    font-size: 14px;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    border-radius: 50px;
    text-transform: uppercase;
}
.btn-small{
    background: #0782a3;
    border-color: #0782a3;
    color: #fff;
}
.btn-small:hover,
.btn-small:focus{
    border-color: #0782a3;
}
@media (max-width: 767px) {
.btn-first{
    padding: 6px 30px;
}
}
/*==================
1.5. Section-Colors-&-Backgrounds
====================*/
.bg-light-white {
    background-color: #f5f5f5;
}
.bg-custom-white {
    background-color: #ffffff;
}
.bg-custom-blue{
    background: #0782a3;
}
.bg-light-black{
    background: #5f6061;
}
/*Colors*/
.text-custom-black {
    color: #000000;
}
.text-custom-white {
    color: #ffffff;
}
.text-custom-blue {
    color: #0782a3;
}
.text-light-dark{
    color: #333333;
}
.text-light-black{
    color: #5f6061;
}
.text-yellow{
    color: #fdb714;
}
/*======================
1.6 Modal & Popups
========================*/
/*======================
1.7 Accordion
========================*/
.custom-accordion .card{
    background: #ffffff;
    border-color: #fff;
    border-radius: 0;
}
.custom-accordion .card .card-header{
    padding: 0;
    background: #ededed;
    border-color: #ededed;
    border-radius: 0;
}
.custom-accordion .card .card-header .collapsebtn{
    font-size: 16px;
    font-weight: 500;
    display: flex;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    align-items: center;
    padding: 10px 16px;
    width: 100%;
    background: #0782a3;
    color: #fff;
    cursor: pointer;
}
.custom-accordion .card .card-header .collapsebtn.collapsed{
    background: #ededed;
    border-color: #ededed;
    color: #000;
}
.custom-accordion .card .card-header .collapsebtn:before{
    content: '-';
    background: #fff;
    color: #376bff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 16px;
    font-size: 20px;
    display: flex;
    align-items: center;
    line-height: normal;
    padding: 0 6px;
}
.custom-accordion .card .card-header .collapsebtn.collapsed:before{
    content: '+';
    background: #5f6061;
    color: #fff;
    padding: 0 4.5px;
}
.custom-accordion .card .card-body{
    padding: 16px 0;
}
/*======================
2. Homepages
========================*/
/*topbar*/
.topbar .left-side>ul>li>a,
.topbar .right-side>ul>li>a{
    padding: 4px 10px;
    display: block;
    text-transform: uppercase;
    font-size: 12px;
}

.topbar.bg-custom-blue {
    padding: 10px 0px;
}
.topbar .left-side {
	line-height: 30px;
}
.topbar .left-side i {
	margin-right: 10px;
    font-size: 16px;
}
.topbar .left-side>ul>li:first-child>a{
    padding-left: 0;
}
.topbar .right-side>ul>li:last-child>a{
    padding-right: 0;
}
.topbar .left-side>ul>li:hover>a,
.topbar .right-side>ul>li:hover>a{
    color: #fff;
}
.topbar .right-side>ul{
    justify-content: flex-end;
}
.topbar .right-side>ul>li>select{
    background: transparent;
    color: #fff;
    border: none;
}
.topbar .right-side>ul>li>select>option{
    color: #0782a3;
}
.topbar .input-group {
	width: 40%;
    float: right;
}
@media (max-width: 991px) {
.topbar .input-group {
	width: 60%;
}
}
@media (max-width: 767px) {
.topbar.bg-custom-blue {
    padding: 16px 0px;
}
.topbar .input-group {
	width: 100%;
}
.topbar .left-side {
    text-align: center;
	margin-bottom: 5px;
}
}
/*Navigation*/
.header .navigation.sticky{
    animation-name: fadeHeaderInDown;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 22;
    background: #fff;
    animation-duration: 1s;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    animation-fill-mode: both;
}
.navigation .main-navigation{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navigation .main-navigation .logo{

}
.navigation .main-navigation .logo img{
    margin: 16px 0;
    height:40px;	
}
@media (max-width: 767px) {
.navigation .main-navigation .logo img{
    height:30px;	
}
}
.navigation .main-navigation .main-menu .logo{
    display: none;
}
.navigation .main-navigation .hamburger-menu {
    display: none;
    align-items: center;
    cursor: pointer;
}
.navigation .main-navigation .hamburger-menu .menu-btn span {
    background: #000;
    height: 2px;
    width: 25px;
    margin-bottom: 5px;
    display: block;
    transition: 0.3s;
}
.navigation .main-navigation .hamburger-menu .menu-btn span:last-child {
    margin-bottom: 0;
}
.navigation .main-navigation .hamburger-menu .menu-btn.active {
    position: relative;
    top: -4px;
    transition: 0.3s;
}
.navigation .main-navigation .hamburger-menu .menu-btn.active span:first-child {
    transform: rotate(45deg);
    transition: 0.3s;
    position: relative;
    top: 7.4px;
}
.navigation .main-navigation .hamburger-menu .menu-btn.active span:nth-child(2) {
    display: none;
}
.navigation .main-navigation .hamburger-menu .menu-btn.active span:last-child {
    transform: rotate(-45deg);
    transition: 0.3s;
}
.navigation .main-navigation .main-menu .cta-btn,
.navigation .main-navigation .main-menu{
    display: flex;
    align-items: center;
}
.navigation .main-navigation .main-menu .cta-btn{
    margin-left: 16px;
}
.navigation .main-navigation .main-menu>.yzlcms-menu>ul>.menu-item.active>a{
    color: #0782a3;
    font-weight: 500;
}
.navigation .main-navigation .main-menu>.yzlcms-menu>ul>.menu-item{
    padding: 22px 0;
}
.navigation .main-navigation .main-menu>.yzlcms-menu>ul>.menu-item>a{
    text-transform: uppercase;
    padding: 0px 16px;
    position: relative;
	font-size: 16px;
}
.navigation .main-navigation .main-menu>.yzlcms-menu>ul>.menu-item:last-child>a{
    padding: 0 0 0 16px;
}
.menu-item-has-children>a>.arrow:after,
.menu-item-has-megamenu>a>.arrow:after{
    display: inline-block;
    margin-left: .55em;
    content: "\f107";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}
.menu-item-has-children .sub-menu{
    position: absolute;
    top: 100%;
    left: 50px;
    right: 0;
    width: 160%;
	min-width:200px;
    opacity: 0;
    visibility: hidden;
    background: #0782a3;
    transition: 0.3s all;
    z-index: 1;
}
.menu-item-has-children .sub-menu .sub-menu{
    width: 120%;
}
.menu-item-has-children:hover>.sub-menu{
    opacity: 1;
    visibility: visible;
    left: 0;
}
.menu-item-has-megamenu .megamenu .megamenu-nav ul>.menu-item>a,
.menu-item-has-children .sub-menu>.menu-item>a{
    display: block;
    border-bottom: 1px solid #ffffff;
    padding: 12px 18px;
    position: relative;
}
.menu-item-has-megamenu .megamenu .megamenu-nav ul>.menu-item:last-child>a,
.menu-item-has-children .sub-menu>.menu-item:last-child>a{
    border-bottom: 0px solid #ffffff;
}
.menu-item-has-megamenu .megamenu .megamenu-nav ul>.menu-item ul .menu-item a,
.menu-item-has-children .sub-menu>.menu-item ul .menu-item a{
    padding: 12px 26px;
}
.menu-item-has-megamenu .megamenu .megamenu-nav ul>.menu-item>a,
.menu-item-has-children .sub-menu>.menu-item.active>a,
.menu-item-has-children .sub-menu>.menu-item:hover>a{
    background: #4e4e4e;
    color: #fff;
}
.menu-item-has-children .sub-menu .menu-item-has-children>a>.arrow:after{
    position: absolute;
    right: 16px;
    transform: rotate(-90deg);
    top: 12px;
}
.menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu{
    left: 100%;
    top: 0;
}
/*megamenu*/
.menu-item-has-megamenu{
    position: static;
}
.menu-item-has-megamenu .megamenu{
    position: absolute;
    top: 100%;
    left: 50px;
    right: 0;
    width: 97.4%;
    opacity: 0;
    visibility: hidden;
    background: #0782a3;
    transition: 0.3s all;
    padding-bottom: 10px;
}
.menu-item-has-megamenu:hover>.megamenu{
    opacity: 1;
    left: 16px;
    visibility: visible;
}
.menu-item-has-megamenu .megamenu .megamenu-nav ul>.menu-item{
    margin-bottom: 10px;
}
/*Main Slider*/
.main-banner .slide-item{
    height: 800px;
    position: relative;
    z-index: 1;
    margin: 0;
}
.main-banner .slide-item:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #000;
    opacity: 0;
}
.slider-content .yzlcms-banner-tit{
    font-size: 36px;
	margin-bottom: 20px;
}
.slider-content .yzlcms-banner-des{
	margin-bottom: 40px;
	font-size: 18px;
}
.slider-content ul{
    margin-bottom: 20px;
}
.slider-content ul li{
    display: flex;
    align-items: center;
    font-size: 20px;
    margin-bottom: 10px;
}
.slider-content ul li i{
    color: #0782a3;
    font-size: 22px;
    margin-right: 16px;
    width: 27px;
    height: 22px;
    text-align: center;
}
@media (min-width: 992px) {
.menu-item-has-children .sub-menu>.menu-item>a span {
    display: none;
}
}

@media (max-width: 1199px) {
	.main-banner .slide-item{
		height: 600px;
	}
	.slider-content {
		padding:0 25px;
	}
.slider-content .yzlcms-banner-tit {
    font-size: 30px;
	margin-bottom: 10px;
}
.slider-content .yzlcms-banner-des {
    margin-bottom: 30px;
	font-size: 16px;
}
}
@media (max-width: 991px) {
	.main-banner .slide-item{
		height: 500px;
	}
}
@media (max-width: 767px) {
	.main-banner .slide-item{
		height: 400px;
	}

	.slider-content .yzlcms-banner-tit {
    font-size: 24px;
}
.slider-content .yzlcms-banner-des {
    margin-bottom: 20px;
    font-size: 16px;
}
}
@media (max-width: 575px) {
.slider-content .yzlcms-banner-tit {
    font-size: 20px;
}
}
/*About us*/
.about-us .about-left-side .section-header{
    padding-bottom: 0;
}
.about-us .about-left-side .section-header .text-custom-black {
	margin-bottom: 20px;
}
.about-us .about-left-side .text-light-dark {
	font-weight: 300;
}
.about-us .about-left-side ul{
    columns: 2;
    margin-bottom: 16px;
}
.about-us .about-left-side ul li{
    font-size: 14px;
    margin-bottom: 5px;
}
.about-us .about-left-side ul li i{
    margin-right: 10px;
}
.about-us .about-left-side .signature span {
    margin-bottom: 10px;
    display: block;
}
.about-us .about-right-side .about-img{
    position: relative;
    overflow: hidden;
    width: 100%;
}
.about-us .about-right-side .about-img:before{
    content: '';
    background: #0782a3;
    display: block;
    height: calc(50% - 40px);
    top: 0%;
    z-index: 0;
    position: absolute;
    width: 50%;
    right: 0;
    left: auto;
}
.about-us .about-right-side .about-img:after{
    content: '';
    background: #0782a3;
    display: block;
    height: calc(50% - 40px);
    bottom: 0%;
    z-index: -1;
    position: absolute;
    width: 50%;
    right: auto;
    left: 0;
}
.about-us .about-right-side .about-img img{
    padding: 40px;
    position: relative;
}
@media (max-width: 1199px) {
.about-des {
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
}
.about-us .about-right-side .about-img img {
    padding: 0px;
}
.about-us .about-right-side .about-img:before{
    display: none;
}
.about-us .about-right-side .about-img:after{
    display: none;
}
}
@media (max-width: 991px) {
.about-us .about-right-side .about-img img{
    padding: 20px 0 0 0;
	width:100%;
}
}
@media (max-width: 767px) {
.about-us .about-left-side .section-header .text-custom-black {
    margin-bottom: 10px;
}
}
/*Hotel grid*/
.slide-item{
    margin: 4px 0;
}
.cruise-grid,
.flights-grid,
.yzlcms-grid{
    position: relative;
    overflow: hidden;
}
.flights-grid .flights-grid-wrapper .flights-grid-caption .heading-sec .left-side .title h4
.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .title,
.yzlcms-grid .yzlcms-grid-wrapper .yzlcms-grid-caption .title{
    letter-spacing: 0.04em;
    line-height: 30px;
}
.flights-grid .flights-grid-wrapper .flights-grid-caption .heading-sec .left-side .title h4 span,
.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .title small,
.yzlcms-grid .yzlcms-grid-wrapper .yzlcms-grid-caption .title small{
    font-size: 10px;
    text-transform: uppercase;
    display: block;
    margin-top: 4px
}
.flights-grid .flights-grid-wrapper .flights-grid-caption .heading-sec .right-side .price,
.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .price ,
.yzlcms-grid .yzlcms-grid-wrapper .yzlcms-grid-caption .price {
    color: #7db921;
    font-size: 18px;
    text-transform: uppercase;
    text-align: right;
    line-height: 1;
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
}
.flights-grid .flights-grid-wrapper .flights-grid-caption .heading-sec .right-side .price small,
.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .price small,
.yzlcms-grid .yzlcms-grid-wrapper .yzlcms-grid-caption .price small{
    display: block;
    color: #838383;
    font-size: 0.5em;
    margin-bottom: 5px;
}
.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .feedback,
.yzlcms-grid .yzlcms-grid-wrapper .yzlcms-grid-caption .feedback{
    margin: 5px 0;
    border-top: 1px solid #f5f5f5;
    padding: 5px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f5f5f5;
}
.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .action,
.flights-grid .flights-grid-wrapper .flights-grid-caption .action,
.yzlcms-grid .yzlcms-grid-wrapper .yzlcms-grid-caption .action{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .action a,
.flights-grid .flights-grid-wrapper .flights-grid-caption .action a,
.yzlcms-grid .yzlcms-grid-wrapper .yzlcms-grid-caption .action a{
    padding: 0px 20px;
}
.ratings span{
    cursor: pointer;
}
.yzlcms-grid-caption {
	border-top: 1px solid #e7e5e5;
}
/*flights grid*/
/* .flights-grid .flights-grid-wrapper .flights-grid-caption .heading-sec{
    display: flex;
    justify-content: space-between;
}
.flights-grid .flights-grid-wrapper .flights-grid-caption .heading-sec .left-side{
    display: flex;
} */
.flights-grid .flights-grid-wrapper .flights-grid-caption .heading-sec .left-side i{
    border: 1px solid #5f6061;
    width: 35px;
    height: 35px;
    line-height: 1.7333em;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}
.flights-grid .flights-grid-wrapper .flights-grid-caption .heading-sec .right-side .price{
    position: relative;
    top: 0;
    right: 0;
}
.flights-readmore {
	margin-top: 60px;
}
@media (max-width: 767px) {
.flights-readmore {
	margin-top: 40px;
}
}
/*Cruise Grid*/
.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .time{
    margin-top: 10px;
    text-transform: uppercase;
}
.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .time>div{
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .time>div>i{
    position: relative;
    top: 2px;
    margin-right: 5px;
    color: #838383;
}
/*car grid*/
.yzlcms-grid .yzlcms-grid-wrapper.car-grid .image-sec{
    height: 160px;
    width: 100%;
    background-color: #fff;
}
.yzlcms-grid .yzlcms-grid-wrapper.car-grid .image-sec img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
/*our-work-sec*/
.our-work-sec .row{
    margin: 0 -5px;
}
.our-work-sec .row>div{
    padding: 0 5px 10px;
}
.our-work-sec .work-sec.first-box{
    height: calc(100% - 10px);
}
.our-work-sec .work-sec .text-wrapper{
    width: 100%;
    background: 0 0;
    background: linear-gradient(to bottom,transparent,#000);
    position: absolute;
    left: 0;
    bottom: 0;
    line-height: 1;
    padding: 100px 20px 20px 20px;
}
.our-work-sec .work-sec .text-wrapper h2{
    text-transform: uppercase;
    transform: translateY(20px) translateZ(0);
    transition: all .3s cubic-bezier(.77,0,.175,1);
}
.our-work-sec .work-sec .text-wrapper p{
    opacity: 0;
    transform: translateY(20px) translateZ(0);
    transition: all .3s cubic-bezier(.77,0,.175,1);
}
.our-work-sec .work-sec:hover .text-wrapper h2{
    transform: translateY(-5px) translateZ(0);
}
.our-work-sec .work-sec:hover .text-wrapper p{
    opacity: .8;
    transition-delay: .2s;
    transform: translateY(0) translateZ(0);
}
/*Our Services*/
.service-yzlcon .service-wrapper{
    display: flex;
    align-items: center;
}
.service-yzlcon .service-wrapper .service-img{
    flex: 0 0 280px;
    width: 280px;
}
.service-yzlcon .service-wrapper .service-text{
    flex: 0 0 calc(100% - 280px);
    max-width: calc(100% - 280px);
    width: 100%;
}
.service-yzlcon .service-wrapper .service-text h5{
	margin-top: 6px;
    margin-bottom: 16px;
	font-size: 18px;
}
.service-yzlcon .service-wrapper .service-text p{
    margin-bottom: 16px;
	font-size: 16px;
}
@media (max-width: 767px) {
.service-yzlcon .service-wrapper{
    display: block;
}
.service-yzlcon .service-wrapper .service-img{
    flex: 0 0 100%;
    width: 100%;
}
.service-yzlcon .service-wrapper .service-text{
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
}
.service-yzlcon .service-wrapper .service-text h5{
	font-size: 16px;
}
}
/*our-yzlcms-advantage*/
.our-yzlcms-advantage{

}
.our-yzlcms-advantage .yzlcms-advantage-block .inner-yzlcon {
    position: relative;
	background: #ffffff;
    overflow: hidden;
    transition: all 500ms ease;
}
.our-yzlcms-advantage .yzlcms-advantage-block .inner-yzlcon .image {
	margin:20px;
}
.our-yzlcms-advantage .yzlcms-advantage-block .image .overlay-box {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
}
.our-yzlcms-advantage .yzlcms-advantage-block .image .overlay-box:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0;
    top: 100%;
    transition: all 900ms ease;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #0782a3 100%);
}
.our-yzlcms-advantage .yzlcms-advantage-block .inner-yzlcon:hover .overlay-box:before {
    opacity: 1;
    top: 0%;
}
.our-yzlcms-advantage .yzlcms-advantage-social-box {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}
.our-yzlcms-advantage .yzlcms-advantage-social-box li {
    position: relative;
    left: -70px;
    margin-bottom: 10px;
    transition: all 900ms ease;
}
.our-yzlcms-advantage .yzlcms-advantage-social-box li a {
    position: relative;
    width: 36px;
    height: 36px;
    z-index: 1;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    background-color: #ffffff;
}
.our-yzlcms-advantage .yzlcms-advantage-social-box li .social-name {
    position: relative;
    opacity: 0;
    visibility: hidden;
    margin-left: -32px;
    text-transform: capitalize;
    display: inline-block;
    border-radius: 0px 50px 50px 0px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    padding: 4px 14px 4px 16px;
    top: -1px;
}
.our-yzlcms-advantage .yzlcms-advantage-social-box li:last-child {
    margin-bottom: 0px;
}
.our-yzlcms-advantage .yzlcms-advantage-block .inner-yzlcon:hover .image .overlay-box .yzlcms-advantage-social-box li,
.our-yzlcms-advantage .yzlcms-advantage-block .inner-yzlcon:hover .image .overlay-box .yzlcms-advantage-social-box li:nth-child(2),
.our-yzlcms-advantage .yzlcms-advantage-block .inner-yzlcon:hover .image .overlay-box .yzlcms-advantage-social-box li:nth-child(3),
.our-yzlcms-advantage .yzlcms-advantage-block .inner-yzlcon:hover .image .overlay-box .yzlcms-advantage-social-box li:nth-child(4) {
    left: 0px;
}
.our-yzlcms-advantage .yzlcms-advantage-block .inner-yzlcon:hover .image .overlay-box .yzlcms-advantage-social-box li:nth-child(2) {
    transition-delay: 500ms;
}
.our-yzlcms-advantage .yzlcms-advantage-block .inner-yzlcon:hover .image .overlay-box .yzlcms-advantage-social-box li:nth-child(3) {
    transition-delay: 750ms;
}
.our-yzlcms-advantage .yzlcms-advantage-block .inner-yzlcon:hover .image .overlay-box .yzlcms-advantage-social-box li:nth-child(4) {
    transition-delay: 1000ms;
}
.our-yzlcms-advantage .yzlcms-advantage-social-box li:hover .social-name {
    opacity: 1;
    margin-left: -9px;
    visibility: visible;
}
.our-yzlcms-advantage .yzlcms-advantage-social-box li.youtube a {
    color: #ff0000;
}
.our-yzlcms-advantage .yzlcms-advantage-social-box li.linkedin a {
    color: #0077b5;
}
.our-yzlcms-advantage .yzlcms-advantage-social-box li.facebook a {
    color: #3b5998;
}
.our-yzlcms-advantage .yzlcms-advantage-social-box li.twitter a {
    color: #1da1f2;
}
.our-yzlcms-advantage .yzlcms-advantage-social-box li.youtube .social-name {
    background-color: #ff0000;
}
.our-yzlcms-advantage .yzlcms-advantage-social-box li.linkedin .social-name {
    background-color: #0077b5;
}
.our-yzlcms-advantage .yzlcms-advantage-social-box li.facebook .social-name {
    background-color: #3b5998;
}
.our-yzlcms-advantage .yzlcms-advantage-social-box li.twitter .social-name {
    background-color: #1da1f2;
}
.our-yzlcms-advantage .yzlcms-advantage-block .lower-content {
    _border: 1px solid #f5f5f5;
    padding: 0 20px 20px 20px;
    transition: 0.3s all;
    background-color: #fff;
}
.our-yzlcms-advantage .yzlcms-advantage-block .lower-content h4 {
    margin-bottom: 20px;
	font-size: 20px;
    font-weight: bolder;
}
.our-yzlcms-advantage .yzlcms-advantage-block:hover .lower-content{
    transform: translateY(-5px);
}
.our-yzlcms-advantage .yzlcms-advantage-block .icon-yzlcon {
    position: relative;
    width: 40px;
    height: 40px;
    line-height: 38px;
    margin: 0 auto;
    text-align: center;
    border-radius: 50%;
    margin-top: -10px;
    top: -10px;
    display: none;
    background-color: #0782a3;
    border: 1px solid #0782a3;
    transition: all 500ms ease;
    cursor: pointer;
}
.our-yzlcms-advantage .yzlcms-advantage-block .inner-yzlcon:hover .icon-yzlcon {
    color: #0782a3;
    background-color: #ffffff;
}
/*why choose us / testimonials*/
.why-choose-box .why-choose-wrapper .why-choose-img:before{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70px;
    height: 70px;
    background: #fff;
    margin: 0;
    border-radius: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
}
.why-choose-box .why-choose-wrapper .why-choose-img>.row{
    margin: 0 -10px;
}
.why-choose-box .why-choose-wrapper .why-choose-img>.row>div{
    padding: 10px;
    cursor: pointer;
}
.why-choose-box .why-choose-wrapper .why-choose-img .text-wrapper{
    width: 100%;
    background: 0 0;
    background: linear-gradient(to bottom,transparent,#000);
    position: absolute;
    left: 0;
    bottom: 0;
    line-height: 1;
    padding: 0px 10px 10px 10px;
}
.why-choose-box .why-choose-wrapper .why-choose-img .text-wrapper h6{
    text-transform: uppercase;
    transform: translateY(10px) translateZ(0);
    transition: all .3s cubic-bezier(.77,0,.175,1);
}
.testimonial-box .testimonial-wrapper .testimonial-author{
    border-radius: 50%;
    border: 4px solid #eee;
}
.testimonial-box .testimonial-wrapper .slick-current .testimonial-author{
    border-color: #0782a3;
        transform: scale(1.03);
    margin: 1px 0;
}
.testimonial-box .testimonial-wrapper .testimonial{
    position: relative;
    padding-left: 100px;
}
.testimonial-box .testimonial-wrapper .testimonial:before{
    content: "\f10d";
    font-family: 'Font Awesome 5 Free';
    font-weight: 500;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 65px;
    line-height: 1;
    color: #0782a3;
    padding: 0 12px;
}
.testimonial-box .testimonial-wrapper .slick-dots{
    margin-top: 10px;
}
/*our articles*/
.blog-details .post .post-wrapper .blog-meta .post-meta-yzlcon .post-meta .post-date,
.our_articles .post .post-wrapper .post-img .post-date {
    text-align: center;
    width: 80px;
    margin-top: 0px;
    z-index: 1;
    position: absolute;
    left: 20px;
    top: 20px;
    text-transform: capitalize;
}
.blog-details .post .post-wrapper .blog-meta .post-meta-yzlcon .post-meta .post-date .year,
.our_articles .post .post-wrapper .post-img .post-date .year{
    background-color: #2b2c2c;
}
.blog-details .post .post-wrapper .blog-meta .post-meta-yzlcon .post-meta .post-date .date,
.our_articles .post .post-wrapper .post-img .post-date .date {
    font-size: 30px;
    line-height: 1.1;
    padding: 7px 0;
}
.our_articles .post .post-wrapper .blog-meta .post-heading h2{
    margin-bottom: 10px;
	font-size: 18px;
    line-height: 1.8;
}
.our_articles .post .post-wrapper .blog-meta .post-heading p{
    font-size: 16px;
}
.our_articles .post .post-wrapper .post-footer{
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f5f5f5;
    background: #fff;
}
.our_articles .post .post-wrapper .post-footer>a{
    text-transform: uppercase;
}
/*footer*/
.footer{
    background-color: #2b2b2b;
}
.footer>.container>.row>div:last-child .footer-yzlcon{
    margin-bottom: 0;
}
.footer .footer-yzlcon h4 {
    font-size: 20px;
	margin-bottom: 20px;
}
.footer .footer-yzlcon h4:after{
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: #fff;
    margin-top: 20px;
}
.footer .footer-yzlcon .socials li{
    margin-right: 16px;
}
.footer .footer-yzlcon .socials li a{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 2px solid #fff;
    width: 36px;
    height: 36px;
    font-size: 16px;
    line-height: 34px;
    border-radius: 100%;
}
.footer .footer-yzlcon .socials li:hover a{
    background-color: #0782a3;
    border-color: #0782a3;
    color: #fff;
}
.footer .footer-yzlcon .links li {
    margin-bottom: 5px;
	font-weight: 300;
}
.footer .footer-yzlcon .links li:before {
    background: #fff;
    height: 5px;
    content: '';
    width: 5px;
    display: inline-block;
    margin-top: 0px;
    vertical-align: middle;
    margin-right: 3px;
	border-radius: 50%;
}
.footer .footer-yzlcon .links li:hover:before {
    background: #0782a3;
}
.footer .footer-yzlcon .links li:hover a {
	color:#0782a3;
}
.footer .footer-yzlcon .instagram{
    display: flex;
    flex-wrap: wrap;
}
.footer .footer-yzlcon .instagram li{
    width: 33%;
    height: 68px;
}
/*copyright*/
.copyright{
    background-color: #1f1f1f;
    text-align: center;
	padding: 30px 0;
}
.copyright p{
	line-height: 36px;
    font-weight: 500;
    margin: 0;
	font-size:16px;
}
.copyright p a{
	font-size:16px;
	color:#ffffff;
}
.copyright p a:hover{
	color: #0782a3;
}
/*back to top*/
#back-top {
    text-align: center;
    display: none;
}
#back-top a {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 0px;
    text-align: center;
    line-height: 36px;
    border: #0782a3 solid 1px;
    color: #ffffff;
    border-radius: 50%;
    background: #0782a3;
    transition-duration: 0.3s;
    font-size: 22px;
    box-shadow: rgba(0, 0, 0, 0.05) 0 0 10px;
    position: fixed;
    z-index: 100;
    bottom: 20px;
    right: 20px;
}
@media (max-width: 575px) {
.copyright p {
    line-height: 30px;
}
.footer .footer-yzlcon h4 {
    font-size: 18px;
    margin-bottom: 16px;
}
.footer .footer-yzlcon h4:after {
    margin-top: 16px;
	width: 60px;
}
.footer .footer-yzlcon .links li {
    font-size: 16px;
}
}
/*======================
3. Blog
========================*/
/*
========
breadcrumb
=========================================
*/
.breadcrumb__content {
  text-align: center;
}
.breadcrumb {
  margin-bottom: 0;
  margin-top: 17px;
  color:#fff;
  display: block;
  flex-wrap: inherit;
}
.breadcrumb a {
	color:#fff;
}
.breadcrumb-area {
  height: 500px;
  display: flex;
  align-items: center;
  z-index: 1;
    background-size: cover;
    background-position: center center;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-area {
    height: 400px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-area {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-area {
    height: 300px;
  }
}
.breadcrumb__content .yzlcms-locmenu {
  list-style-type: none;
  font-size: 32px;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 0;
  line-height: 1.3;
  font-weight: 500;
}
.breadcrumb__content .yzlcms-menu {
  list-style-type: none;
  font-size: 60px;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 0;
  line-height: 1.3;
}
@media (max-width: 1679px) {

}
@media (max-width: 1199px) {

}
@media (max-width: 991px) {
.breadcrumb__content .yzlcms-locmenu {
    font-size: 26px;
}
.breadcrumb__content .yzlcms-menu {
    font-size: 26px;
}
}
@media (max-width: 767px) {
  .breadcrumb__content h3 {
    font-size: 25px;
  }
.breadcrumb__content .yzlcms-locmenu {
    font-size: 24px;
}
.breadcrumb__content .yzlcms-menu {
    font-size: 28px;
}
}
.breadcrumb__content nav ol li, .breadcrumb__content nav ol a {
  line-height: 1;
  color: #ffffff;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
}
.breadcrumb__content nav ol li.active, .breadcrumb__content nav ol a.active {
  color: #ffffff;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: var(--bs-breadcrumb-divider, ">");
  color: #fff;
  font-size: 16px;
}
/*sidebar*/
.sidebar_wrap .sidebar .sidebar_widgets{
    padding: 20px;
    background: #fff;
    border: #eee solid 1px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
.sidebar_wrap .sidebar .sidebar_widgets .widget_title {
    margin: -20px -20px 20px;
    padding: 20px;
}
.sidebar_wrap .sidebar .sidebar_widgets .categories li{
    position: relative;
    margin-bottom: 10px;
}
.sidebar_wrap .sidebar .sidebar_widgets .categories li:last-child{
    margin-bottom: 0px;
}
.sidebar_wrap .sidebar .sidebar_widgets .categories li a{
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sidebar_wrap .sidebar .sidebar_widgets .categories li.on a{
    color: #0782a3;
}
.sidebar_wrap .sidebar .sidebar_widgets .popular_post li .post .post-wrapper{
    width: 100%;
    display: flex;
    align-items: center;
}
.sidebar_wrap .sidebar .sidebar_widgets .popular_post li .post .post-wrapper .popular_post_img{
    flex: 0 0 100px;
    width: 100px;
    height: 66px;
	border: #eee solid 1px;
}
.sidebar_wrap .sidebar .sidebar_widgets .popular_post2 li .post .post-wrapper .popular_post_img{
    flex: 0 0 100px;
    width: 100px;
    height: 66px;
}
.sidebar_wrap .sidebar .sidebar_widgets .popular_post li .post .post-wrapper .popular_post_title{
    flex: 0 0 calc(100% - 100px);
    max-width: calc(100% - 100px);
    padding: 5px 16px;
    width: 100%;
}
.sidebar_wrap .sidebar .sidebar_widgets .popular_post li .post .post-wrapper .popular_post_title h6{
    margin-bottom: 10px;
}
.blog-details .post-details-tags-social .tags a,
.sidebar_wrap .sidebar .sidebar_widgets .tags a{
    display: inline-block;
    padding: 5px 20px;
    border: #eee solid 2px;
    margin: 0 5px 10px 0;
    background: #ffffff;
    font-weight: 500;
    border-radius: 50px;
    color: #212529;
}
.blog-details .post-details-tags-social .tags a:hover,
.sidebar_wrap .sidebar .sidebar_widgets .tags a:hover{
    border-color: #0782a3;
    color: #0782a3;
}
.section-yzlcms-tags .tags a,
.section-yzlcms-tags .tags a{
    display: inline-block;
    padding: 5px 20px;
    border: #eee solid 2px;
    margin: 0 5px 20px 0;
    background: #ffffff;
    font-weight: 500;
    border-radius: 50px;
    color: #212529;
}
.section-yzlcms-tags .tags a:hover,
.section-yzlcms-tags .tags a:hover{
    border-color: #0782a3;
    color: #0782a3;
}
@media (max-width: 991px) {
  .sidebar_wrap {
    margin-top: 30px;
  }
.sidebar_wrap .sidebar .sidebar_widgets .widget_title {
    padding: 16px 20px;
}
}
@media (max-width: 767px) {
.section-yzlcms-tags .tags a, .section-yzlcms-tags .tags a {
    padding: 2px 20px;
}
}
/*======================
4. Blog Details
========================*/
.blog-details .post .post-wrapper .post-img,
.blog-details .post .post-wrapper .blog-meta .blog-video iframe{
    height: 450px;
}
.blog-details .post .post-wrapper .blog-meta .post-meta-yzlcon{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.blog-details .post .post-wrapper .blog-meta .post-meta-yzlcon .post-meta{
    display: flex;
}
.blog-details .post .post-wrapper .blog-meta .post-meta-yzlcon .post-meta .post-date{
    position: absolute;
    right: 0;
    height: 75px;
    margin-top: 0;
    left: 20px;
    top: 20px;
}
.blog-details .post .post-wrapper .blog-meta .post-heading .yzlcms-title{
    font-size: 18px;
    font-weight: 500;
	margin-bottom: 20px;
	line-height: 1.6;
}
.blog-details .post .post-wrapper .blog-meta .post-pro-img {
	margin-top: 10px;
	margin-bottom: 20px;
}
.blog-details .post .post-wrapper .blog-meta .post-pro-img .yzlcms-title{
    font-size: 18px;
    font-weight: 500;
	margin-bottom: 20px;
	line-height: 1.6;
}
.blog-details .post .post-wrapper .blog-meta .post-pro-img .post-pro-image img {
	border: 1px solid #e7e5e5;
}
.blog-details .post .post-wrapper .blog-meta .post-heading2 .yzlcms-title{
    font-size: 20px;
}
.blog-details .post .post-wrapper .blog-meta .post-heading .yzlcms-title2{
    font-size: 24px;
}
.blog-details .post .post-wrapper .blog-meta .post-heading .yzlcms-title:after{
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: #0782a3;
    margin-top: 20px;
}
.blog-details .post .post-wrapper .blog-meta .post-pro-img .yzlcms-title:after{
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: #0782a3;
    margin-top: 20px;
}
.blog-details .post .post-wrapper .blog-meta .post-author{
    display: flex;
    align-items: center;
    margin-right: 16px;
    flex-wrap: wrap;
    width: auto;
    border: none;
}
.blog-details .post .post-wrapper .blog-meta .post-author .author-img {
    margin-right: 16px;
    flex: 0 0 40px;
    max-width: 40px;
    height: 40px;
    border-radius: 50%;
}
.blog-details .post .post-wrapper .blog-meta .post-pro-img .post-pro-con p{
    font-size: 16px;
	margin-bottom: 16px;
}
.blog-details .post .post-wrapper .blog-meta .post-pro-img .post-pro-con p i{
    font-size: 16px;
	margin-right: 10px;
	width: 18px;
    text-align: center;
}
.blog-details .post-details-tags-social .tags-box{
    display: flex;
    align-items: flex-start;
}
.blog-details .post-details-tags-social .tags{
    margin-left: 16px;
}
.blog-details .tags span{
	display: inline-block;
    margin: 3px 0 3px 0;
}
.blog-details .tags a{
	display: inline-block;
    margin: 3px 10px 3px 0;
}
.blog-details .post-details-tags-social .social-media-box ul{
    justify-content: flex-end;
}
.blog-details .post-details-tags-social .social-media-box ul li{
    display: flex;
    align-items: center;
    margin-left: 16px;
}
.blog-details .post-details-tags-social .social-media-box ul li a{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 1;
}
.blog-details .post-details-tags-social .social-media-box ul li .social-number{
    padding: 2px 10px;
    border-radius: 0px 16px 16px 0;
    margin-left: -8px;
    z-index: 0;
    font-size: 14px;
}
.fb{
    background-color: #3b5998;
}
.tw{
    background-color: #1da1f2;
}
.yt{
    background-color: #ff0000;
}
.ldin{
    background-color: #0077b5;
}
.blog-details .post-author{
    display: flex;
    align-items: center;
    width: 100%;
}
.blog-details .post-author .author-img{
    flex: 0 0 150px;
    max-width: 150px;
    height: 150px;
    margin-right: 16px;
    border-radius: 0%;
}
.blog-details .post-author .author-caption{
    flex: 0 0 calc(100% - 165px);
    max-width: calc(100% - 165px);
    width: 100%;
    position: relative;
}
.blog-details .post-author .author-caption h5{
    margin-bottom: 10px;
}
.blog-details .post-author .author-caption .authorpost{
    top: 0;
    position: absolute;
    right: 0;
}
.pagination-btn .yzlcms-near ul {
    justify-content: space-between;
}
@media (max-width: 991px) {
.blog-details .post .post-wrapper .blog-meta .post-pro-img .post-pro-con {
	margin-top: 20px;
}
}
@media (max-width: 767px) {
.blog-details .post .post-wrapper .blog-meta .post-heading .yzlcms-title {
    font-size: 18px;
	margin-bottom: 10px;
}
.blog-details .post .post-wrapper .blog-meta .post-heading .yzlcms-title:after {
    margin-top: 10px;
}
.blog-details .post .post-wrapper .blog-meta .post-heading .yzlcms-title2 {
    font-size: 20px;
}

}
@media (max-width: 575px) {
.blog-details .post .post-wrapper .blog-meta .post-meta-yzlcon {
    margin-bottom: 10px;
}
.blog-details .post .post-wrapper .blog-meta .post-heading .yzlcms-title {
    font-size: 16px;
}
.blog-details .post .post-wrapper .blog-meta .post-pro-img {
    margin-top: 0px;
}
.blog-details .post .post-wrapper .blog-meta .post-pro-img .yzlcms-title {
    font-size: 16px;
}
.blog-details .post .post-wrapper .blog-meta .post-pro-img .post-pro-con p {
    margin-bottom: 10px;
}
}
/*======================
5. Listing
========================*/
.listing-top-heading{
    border-bottom: 2px solid #0782a3;
    background: #fff;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.listing-top-heading h6{
    padding: 20px 0;
	font-size: 28px;
}
.listing-top-heading .sort-by{
    display: flex;
    align-items: center;
}
.listing-top-heading .sort-by span{
    white-space: nowrap;
    margin-right: 16px;
}
.listing-top-heading .sort-by .custom-select{
    margin-bottom: 0;
    background: #fff;
}
.checkbox-group .form-group{
    margin-bottom: 1px;
    background: #eee;
    padding: 16px;
}
.checkbox-group .form-group label{
    margin-bottom: 0;
    line-height: 1.5;
}
.checkbox-group button{
    margin-top: 20px;
}
.widget_range .irs--round .irs-from,
.widget_range .irs--round .irs-to,
.widget_range .irs--round .irs-single {
    background-color: transparent;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
}
.widget_range .irs--round .irs-from,
.widget_range .irs--round .irs-to,
.widget_range .irs--round .irs-single {
  background: #0782a3;
}
.widget_range .irs--round .irs-from:before,
.widget_range .irs--round .irs-to:before,
.widget_range .irs--round .irs-single:before {
  border-top-color: #0782a3;
}
.widget_range .irs--round .irs-handle {
  border: none;
  width: 16px;
  height: 16px;
  top: 30px;
  background-color: #0782a3;
  cursor: pointer;
}
.widget_range .irs--round .irs-bar {
  background-color: #0782a3;
}
@media (max-width: 767px) {
.listing-top-heading h6{
	font-size: 20px;
}
}
/*======================
6. Listing Detail
========================*/
.listing-details-inner .detail-slider-for .slide-item{
    height: 450px;
    position: relative;
    margin: 0;
}
.listing-details-inner .detail-slider-for .slide-item .popup:before{
    position: absolute;
    top: 50%;
    opacity: 0;
    color: #fff;
    font-size: 26px;
    font-family: "Font Awesome 5 Free";
    font-weight: 500;
    content: "\f002";
    pointer-events: none;
    z-index: 9000;
    transition: 0.4s;
    transform: translate(0px, -50%);
    left: 0;
    right: 0;
    text-align: center;
}
.listing-details-inner .detail-slider-for .slide-item .popup:after{
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: #01b7f29c;
    content: '';
    transition: 0.4s;
}
.listing-details-inner .detail-slider-for .slide-item:hover .popup:after,
.listing-details-inner .detail-slider-for .slide-item:hover .popup:before{
    opacity: 1;
}
.listing-details-inner .listing-meta-sec .yzlcms-type ul li{
    text-transform: uppercase;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}
.listing-details-inner .listing-meta-sec .yzlcms-type ul li:last-child{
    margin-bottom: 0;
}
.listing-details-inner .listing-meta-sec .listing-testimonial .tesimonial-item .testimonial-author{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 16px;
}
.listing-details-inner .listing-meta-sec .amenities .icon-yzlcon{
    background-color: #f5f5f5;
    height: 42px;
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 1px;
}
.listing-details-inner .listing-meta-sec .amenities .icon-yzlcon i{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    float: left;
    background: #0782a3;
    color: #fff;
    height: 42px;
    font-size: 2em;
    margin-right: 16px;
}
.listing-details-inner .need-help ul li{
    position: relative;
}
.listing-details-inner .need-help ul li i{
    margin: 5px;
}
.listing-details-inner .listing-meta-sec .travel-info>.row>div{
    border-right: 1px solid #fff;
}
.listing-details-inner .listing-meta-sec .travel-info .head{
    border-bottom: 1px solid #fff;
}
.listing-details-inner .listing-meta-sec .travel-info .travel-info-body .date-wrapper{
    display: flex;
    align-items: center;
}
.listing-details-inner .listing-meta-sec .travel-info .travel-info-body .date-wrapper .icon{
    margin-right: 10px;
    position: relative;
    top: -3px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.listing-details-inner .listing-meta-sec .travel-info .travel-info-body .date-wrapper .text p{
    line-height: 0.5;
}
/*======================
7. Booking
========================*/
/*======================
8. About Us
========================*/
.about-counter{
    padding: 120px 0;
}
.about-counter .counter-yzlcon .counter-yzlcon-inner{
    width: 100%;
    position: relative;
    background: #fff;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 3px 10px 0px rgba(0, 0, 0, 0.08);
}
.about-counter .counter-yzlcon .counter-yzlcon-inner .counter .icon{
    margin-bottom: 10px;
}
.about-counter .counter-yzlcon .counter-yzlcon-inner .counter .count{
    font-size: 42px;
    line-height: 1.8;
    font-weight: bolder;
}
@media (max-width: 991px) {
.about-counter .counter-yzlcon {
    margin: 16px 0;
}
}
@media (max-width: 767px) {
.about-counter {
    padding: 80px 0;
}
}
/*======================
9. 404
========================*/
.page-404{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
}
.page-404 .page-404-text{
    width: 100%;
    text-align: center;
    border: 10px solid #fff;
    margin: 0 auto;
    border-radius: 8px;
}
.page-404 .page-404-text .text-wrapper h1{
    font-size: 12vw;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 10px;
}
.page-404 .page-404-text .text-wrapper h6{
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
/*======================
10. Coming Soon
========================*/
.coming-soon{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
}
.coming-soon .coming-soon-img{
    min-height: 450px;
}
.coming-soon .coming-soon-text{
    padding: 80px 40px;
    background-color: #fff;
    text-align: center;
}
.coming-soon .coming-soon-text h1{
    font-size: 60px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 10.5px;
}
.coming-soon .coming-soon-text .counter {
    display: flex;
    justify-content: center;
    margin: 0px 0px 30px;
}
.coming-soon .coming-soon-text .counter .counter-yzlcon {
    text-align: center;
    width: 25%;
    padding: 0 16px;
    margin: 0 16px;
    position: relative;
    background-color: #0782a3;
}
.coming-soon .coming-soon-text .counter .counter-yzlcon .inner-yzlcon {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 0px;
    margin-bottom: 10px;
    font-size: 50px;
    line-height: 1;
    margin-top: 20px;
    font-weight: 500;
}
.coming-soon .newsletter-form .group-form .input-group-append{
    pointer-events: all;
    width: 80px;
}
.coming-soon .coming-soon-contact ul li{
    text-align: center;
    width: 33.33%;
    margin-bottom: 20px;
}
.coming-soon .social-media ul{
    justify-content: center;
}
.coming-soon .social-media ul li{
    margin: 0 10px;
    font-size: 22px;
}
/*======================
11. Contact Us
========================*/
.contact-info-box:hover{
    background: #fff;
}
.contact-info-box {
    background: #fff;
    padding: 30px 0;
    text-align: center;
    max-width: 310px;
    margin: 0 auto;
}
.contact-info-box i {
    height: 75px;
    width: 75px;
    color: #fff;
    background: #0782a3;
    border-radius: 50%;
    line-height: 75px;
    font-size: 30px;
    margin-bottom: 25px;
    display: inline-block;
}
.contact-info-box h6 {
    line-height: 26px;
}
/*======================
12. Faqs
========================*/
.faqs .custom-accordion .card .card-body{
    padding: 16px;
}
/*======================
13. Gallery
========================*/
.gallery .tabs .nav-tabs{
    justify-content: center;
}
.gallery .gallery-item{
    height: auto;
    position: relative;
    overflow: hidden;
}
.gallery .gallery-item .popup:before{
    position: absolute;
    top: 50%;
    opacity: 0;
    color: #fff;
    font-size: 26px;
    font-family: "Font Awesome 5 Free";
    font-weight: 500;
    content: "\f002";
    pointer-events: none;
    z-index: 9000;
    transition: 0.5s all;
    transform: translate(-100%, -50%);
    left: 0;
    right: 0;
    text-align: center;
    line-height: 0.5;
}
.gallery .gallery-item .popup:after{
    position: absolute;
    top: 0;
    left: 0px;
    right: 0;
    bottom: 0;
    opacity: 0;
    background-color: #0782a3;
    content: '';
    transition: 0.5s all;
    margin: 10px;
    transform: translateX(-100%);
}
.gallery .gallery-item:hover .popup:before,
.gallery .gallery-item:hover .popup:after{
    opacity: 1;
    transform: translateX(0%);
}


@media (max-width: 1200px) {
	/*navigation*/
	.navigation .main-navigation .main-menu>.yzlcms-menu>ul>.menu-item>a{
		padding: 0 10px;
	} 
	.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .time .departure{
		text-align: right;
	    float: right;
	    justify-content: flex-end;
	}
	.mb-lg-20 {
		margin-bottom: 20px;
	}
	.mb-lg-30 {
		margin-bottom: 30px;
	}
	.mb-lg-40 {
		margin-bottom: 40px;
	}
	.mb-lg-80 {
		margin-bottom: 80px;
	}
}
@media (max-width: 992px) {
	.section-header.style-right{
		text-align: left;
	}
	.section-header.style-right .section-heading h3:after {
	    margin: 20px 0 0 0;
	}
	/*navigation*/
	.navigation .main-navigation .main-menu .logo{
	    display: block;
	    margin: 20px 10px;
	}
	.navigation .main-navigation .hamburger-menu{
		display: flex;
	}
	.navigation .main-navigation .main-menu .cta-btn{
		display: none;
	}
	.navigation .main-navigation .main-menu .cta-btn>a{
		width: 100%;
	}
	.navigation .main-navigation .main-menu{
		display: block;
		position: fixed;
		left: -320px;
		width: 320px;
		height: 100vh;
		top: 0;
		padding: 10px 0 0 0;
		background: #3c3c3c;
		transition: 0.5s all;
		overflow: auto;
		z-index: 100;
	}
	.navigation .main-navigation .main-menu.active{
		left: 0;
	}
	.navigation .main-navigation .main-menu>.yzlcms-menu>ul{
		display: block;
	}
	.navigation .main-navigation .main-menu>.yzlcms-menu>ul>.menu-item{
		padding: 0;
		margin: 10px;
	}
	.navigation .main-navigation .main-menu>.yzlcms-menu>ul>.menu-item>a{
		padding: 10px 16px;
		display: block;
		background: #fff;
	}
.navigation .main-navigation .main-menu>.yzlcms-menu>ul>.menu-item:last-child>a {
    padding: 10px 16px;
}
	.menu-item-has-children>a>.arrow:after, 
	.menu-item-has-megamenu>a>.arrow:after{
		position: absolute;
		right: 16px;
	}
	.menu-item-has-children .sub-menu .menu-item-has-children>a>.arrow:after{
		transform: rotate(0deg);
	}
	.menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu,
	.menu-item-has-megamenu:hover>.megamenu,
	.menu-item-has-megamenu .megamenu,
	.menu-item-has-children .sub-menu{
		opacity: 1;
		visibility: visible;
		left: 0;
		width: 100%;
		position: relative;
		display: none;
		padding: 0;
	}
	.menu-item-has-children .sub-menu>.menu-item.open>a,
	.menu-item-has-megamenu.open>a{
		background: #fff;
		color: #0782a3;
    	font-weight: 500;
	}
	.menu-item-has-children .sub-menu>.menu-item>a{
		background: #4e4e4e;
    	color: #fff;
	}
	.mb-md-20 {
		margin-bottom: 20px;
	}
	.mb-md-30 {
		margin-bottom: 30px;
	}
	.mb-md-40 {
		margin-bottom: 40px;
	}
	.mb-md-80 {
		margin-bottom: 80px;
	}
}
@media (max-width: 767px) {
	/*General*/
	.banner-tabs{
		margin-top: 0;
		padding-top: 110px;
	}
	.section-header{
		display: block;
	}
	.main-banner .slick-dots{
		margin-top: -30px;
	}
	.slider-content h1{
		font-size: 40px;
	}
	.section-header .section-btn{
		display: none;
	}
	/*blog*/
	.blog-details .post-details-tags-social .tags-box{
		justify-content: center;
		margin-bottom: 10px;
	}
	.blog-details .post-details-tags-social .social-media-box ul{
		justify-content: center;
	}
	.blog-details .post-author{
		display: block;
	}
	.blog-details .post-author .author-caption{
		flex: 0 0 calc(100% - 0px);
    	max-width: calc(100% - 0px);
	}
	.coming-soon .coming-soon-text h1{
		font-size: 40px;
	}
	.coming-soon .coming-soon-text .counter .counter-yzlcon .inner-yzlcon{
		font-size: 28px;
		margin-top: 10px;
	}
	.coming-soon .coming-soon-text .counter .counter-yzlcon{
		margin: 0 5px;
	}
	.mb-sm-20 {
		margin-bottom: 20px;
	}
	.mb-sm-30 {
		margin-bottom: 30px;
	}
	.mb-sm-40 {
		margin-bottom: 40px;
	}
	.mb-sm-80 {
		margin-bottom: 80px;
	}
}
@media (max-width: 576px) {
	/*topbar*/
	.topbar .left-side>ul,
	.topbar .right-side>ul{
		justify-content: center;
	}
	.tabs .nav-tabs{
		display: block;
	}
	.tabs .nav-tabs .nav-item .nav-link.active:before{
		display: none;
	}
	/*Navigation*/
	.navigation .main-navigation .main-menu{
		width: 280px;
	}
	/*our services*/
	.service-yzlcon .service-wrapper{
		display: block;
	}
	.service-yzlcon .service-wrapper .service-img,
	.service-yzlcon .service-wrapper .service-text{
		flex: 0 0 calc(100% - 0px);
    	max-width: calc(100% - 0px);
	}
	.coming-soon .coming-soon-text .counter{
		flex-wrap: wrap;
	}
	.coming-soon .coming-soon-text .counter .counter-yzlcon{
		margin: 0 5px 10px;
		width: 100px;
	}
	.coming-soon .coming-soon-contact ul{
		justify-content: center;
	}
	.coming-soon .coming-soon-contact ul li{
		width: auto;
		padding: 0 16px;
	}
	.mb-xs-20 {
		margin-bottom: 20px;
	}
	.mb-xs-30 {
		margin-bottom: 30px;
	}
	.mb-xs-40 {
		margin-bottom: 40px;
	}
	.mb-xs-80 {
		margin-bottom: 80px;
	}
	#page404 .txt{
		margin: 0 0 0 -190px;
	}
}
@media (max-width:450px){
	blockquote{
		padding: 16px;
	}
	blockquote p{
		font-size: 14px;
	}
	.blog-details .post .post-wrapper .blog-meta .post-meta-yzlcon .post-meta .post-date{
		position: absolute;
		top: 20px;
		right: 20px;
		margin-top: 0;
	}
	.blog-details .post-details-tags-social span,
	.blog-details .post-details-tags-social .social-media-box ul li .social-number,
	.blog-details .post-author .author-caption .authorpost{
		display: none;
	}
	.blog-details .post-details-tags-social .tags{
		margin-left: 0;
	}
	.comment-box .children{
		padding-left: 0;
	}
	/*coming soon*/
	.coming-soon .main .counter .counter-yzlcon{
		margin: 0 10px;
	}
	.coming-soon .main .counter .counter-yzlcon .inner-yzlcon{
		width: 50px;
		height: 50px;
	}
	.about-us .about-left-side ul{
		columns: 1;
	}
	.about-us .about-right-side .about-img:before,
	.about-us .about-right-side .about-img:after{
		height: calc(50% - 20px;)
	}
}

/*video*/
.html_overflow {
    overflow: hidden;
}
.body_overflow {
    height: 100%;
    overflow: hidden;
}
.video-bg {
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #0b0b0b;
    opacity: .6;
    -moz-opacity: 0.6;
    filter: alpha(opacity=60);
    position: fixed;
    z-index: 990;
    left: 0;
    top: 0;
    display: none;
}
.video-bg.open {
    display: block;
}
.video-play1 {
    width: 640px;
    height: 480px;
    position: fixed;
    z-index: 99999;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
}
.video-play-con {
    overflow: hidden;
}
.video-close {
    height: 30px;
    overflow: hidden;
}
.video-close span {
    float: right;
    font-size: 24px;
    line-height: 32px;
    color: #ffffff;
    opacity: .8;
    filter: alpha(opacity=80);
    cursor: pointer;
}

@media (max-width: 767px) {
.video-play1 {
    width: 80%;
    height: auto;
}
.lbvideo {
    max-width: 100% !important;
    height:auto !important;	
}
}

.about-img {
    position: relative;
}
.about-img span {
  background: #fff;
  color: #0782a3;
  font-size: 25px;
  display: block;
  z-index: 9;
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  cursor: pointer;
}

.about-img span i {
  z-index: 3;
  position: relative;
}

.about-img span:before,
.about-img span:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.about-img span:before {
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
}

.about-img span:after {
  transition: all 200ms;
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    -ms-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    -ms-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    -ms-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    -ms-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.yzlcms_tag_des {
	margin-bottom:80px;
}

@media (max-width:1199px) {
.yzlcms_tag_des {
	margin-bottom:60px;
}	
}

@media (max-width:767px) {
.yzlcms_tag_des {
	margin-bottom:40px;
}	
}

@media (max-width: 575px) {
.about-img span:before, .about-img span:after {
    width: 60px;
    height: 60px;
}
.about-img span {
    font-size: 16px;
}
}

.yzlcms-near {
	margin-top:20px;
}

.yzlcms-kefu {
	position: fixed;
	z-index: 999999999;
	right: 20px;
	bottom: 200px;
}
.yzlcms-kefu-con {
	position: relative;
	float: right;
}
.yzlcms-kefu .a {
	display: block;
	width: 60px;
	height: 60px;
	background-color: #0b94b9;
	margin-bottom: 4px;
	cursor: pointer;
	outline: none;
	text-decoration: none;
	text-align: center;
}
.yzlcms-kefu .a.active, .yzlcms-kefu .a:hover {
	background: #444444;
}
.yzlcms-kefu .a .i {
	display: none !important;
	width: 44px;
	height: 44px;
}
.yzlcms-kefu .a-whatsapp {
	background: #0b94b9 url(../images/icon_whatsapp.png) center center no-repeat;
	background-size: 26px;
}
.yzlcms-kefu .a-whatsapp:hover {
	background: #444444 url(../images/icon_whatsapp.png) center center no-repeat;
	background-size: 26px;
}
.yzlcms-kefu .a-skype {
	background: #0b94b9 url(../images/icon_skype.png) center center no-repeat;
	background-size: 26px;
}
.yzlcms-kefu .a-skype:hover {
	background: #444444 url(../images/icon_skype.png) center center no-repeat;
	background-size: 26px;
}
.yzlcms-kefu .a-line {
	background: #0b94b9 url(../images/icon_line.png) center center no-repeat;
	background-size: 26px;
}
.yzlcms-kefu .a-line:hover {
	background: #444444 url(../images/icon_line.png) center center no-repeat;
	background-size: 26px;
}
.yzlcms-kefu .a-phone {
	background: #0b94b9 url(../images/icon_phone.png) center center no-repeat;
	background-size: 26px;
}
.yzlcms-kefu .a-phone:hover {
	background: #444444 url(../images/icon_phone.png) center center no-repeat;
	background-size: 26px;
}
.yzlcms-kefu .a-qrcode {
	background: #0b94b9 url(../images/icon_wechat.png) center center no-repeat;
	background-size: 26px;
}
.yzlcms-kefu .a-qrcode:hover {
	background: #444444 url(../images/icon_wechat.png) center center no-repeat;
	background-size: 26px;
}
.yzlcms-kefu .a-top {
	background: #D2D3D6 url(../images/icon_top.png) center center no-repeat;
	background-size: 26px;
}
.yzlcms-kefu .a-top:hover {
	background: #444444 url(../images/icon_top.png) center center no-repeat;
	background-size: 26px;
}
.yzlcms-kefu .a span {
	display: block;
	width: 100%;
	text-align: center;
	color: #fff;
	font-size: 12px;
	padding-top: 4px;
}
.yzlcms-kefu .a-top {
	display: none;
}
.yzlcms-kefu .d {
	display: none;
	width: 240px;
	background: #f5f5f5;
	position: absolute;
	right: 60px;
	box-shadow: 0px 2px 5px 0px rgba(161, 163, 175, 0.11);
}
.qrcode-img img {
	width: 150px;
	margin: 0 auto;
}
.yzlcms-kefu .d-whatsapp {
	top: 0px;
}
.yzlcms-kefu .d-skype {
	top: 64px;
}
.yzlcms-kefu .d-line {
	top: 128px;
}
.yzlcms-kefu .d-phone {
	top: 192px;
}
.yzlcms-kefu .d-qrcode {
	top: 256px;
}
.yzlcms-kefu .d .inner-con {
	padding: 4px 20px;
}
.yzlcms-kefu .d-service-item {
	padding: 4px 0;
	overflow: hidden;
}
.yzlcms-kefu .d-service-item .circle {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	overflow: hidden;
	background: #F1F1F3;
	display: block;
	float: left;
}
.yzlcms-kefu .d-service-item .i-qq {
	width: 44px;
	height: 44px;
	background: url(../images/qq.png) no-repeat center 2px;
	display: block;
}
.yzlcms-kefu .d-whatsapp .d-service-item .i-tel {
	width: 44px;
	height: 44px;
	background: url(../images/whatsapp.png) no-repeat center center;
	display: block;
}
.yzlcms-kefu .d-skype .d-service-item .i-tel {
	width: 44px;
	height: 44px;
	background: url(../images/skype.png) no-repeat center center;
	display: block;
}
.yzlcms-kefu .d-line .d-service-item .i-tel {
	width: 44px;
	height: 44px;
	background: url(../images/line.png) no-repeat center center;
	display: block;
}
.yzlcms-kefu .d-phone .d-service-item .i-tel {
	width: 44px;
	height: 44px;
	background: url(../images/phone.png) no-repeat center center;
	display: block;
}
.yzlcms-kefu .d-service-item p {
	float: none;
	width: 140px;
	line-height: 22px;
	font-size: 16px;
	margin-left: 0px;
	margin-bottom: 0px;
	color:#222222;
	font-weight: 500;
}
.yzlcms-kefu .d-service-item p.number {
	color:#292929;
	font-weight: 300;
}
.yzlcms-kefu .d-service-item p.number a {
	color:#292929;
	font-weight: 300;
}
.yzlcms-kefu .d-service-item p.number a:hover {
	color:#333;
}
.yzlcms-kefu .d-service-item .text {
	float: left;
	width: 140px;
	line-height: 22px;
	font-size: 16px;
	margin-left: 12px;
}
.yzlcms-kefu .d-service-intro {
	padding-top: 10px;
}
.yzlcms-kefu .d-service-intro p {
	float: left;
	line-height: 27px;
	font-size: 12px;
	width: 50%;
	white-space: nowrap;
	color: #888;
	margin-bottom: 0px;
}
.yzlcms-kefu .d-service-intro i {
	height: 27px;
	width: 14px;
	margin-right: 5px;
	vertical-align: top;
	display: inline-block;
}
.yzlcms-kefu .d-qrcode {
	text-align: center;
	width: 180px;
}
.yzlcms-kefu .d-qrcode .inner-con {
	padding: 16px 0;
}
.yzlcms-kefu .d-qrcode p {
	font-size: 14px;
	color: #222222;
	line-height: 1;
	padding-top: 16px;
	margin-bottom: 0px;
	font-weight: 500;
}
.yzlcms_links span,.yzlcms_links a {
	display: inline-block;
	padding: 3px 3px;
	color:#cbcaca;
}
.yzlcms_links a:hover {
	color: #1d75fa;
}
.yzlcms_links .yzlcms_wrap {
	width: 90%;
    max-width: 1440px;
    margin: 0 auto;
}
.yzlcms_links .links_tit {
    font-size: 16px;
    color: #333;
	line-height: 36px;
    height: 36px;
}
.yzlcms_links .links_list {
	text-align: left;
	overflow: hidden;
}
.yzlcms_links .links_list ul li {
    _float: left;
	font-weight: 300;
	display: inline-block;
    padding: 0px 16px 0px 0;
}
.yzlcms_links .links_list ul li a {
	_font-size: 14px;
    _line-height: 26px;
    color: #333333;
}
.yzlcms_links .links_list ul li a:hover {
    color: #0782a3;
}
@media (max-width:991px) {
.yzlcms_menu {
    display: block;
}
.yzlcms-kefu {
	right: 10px;
	bottom: 120px;
}
}
@media (max-width:767px) {
.yzlcms-kefu {
	right: 4px;
	bottom: 100px;
}
.yzlcms-kefu .a {
	width: 40px;
	height: 40px;
	background-size: 20px !important;
}
.yzlcms-kefu .a-line {
	display: none !important;
}
.yzlcms-kefu .a-qrcode {
	display: none !important;
}
.yzlcms-kefu .d-whatsapp {
	display: none !important;
}
.yzlcms-kefu .d-skype {
	display: none !important;
}
.yzlcms-kefu .d-line {
	display: none !important;
}
.yzlcms-kefu .d-phone {
	display: none !important;
}
.yzlcms-kefu .d-qrcode {
	display: none !important;
}
.yzlcms_links {
	padding-bottom: 30px;
}
}

.yzlcms_page { width: 100%;text-align:center;margin: 50px 0 0 0;font-weight: 300;}
.yzlcms_page ul li { display:inline-block;font-size: 16px; line-height: 32px; border: 1px solid #d0cfcf; margin: 0 5px 5px 0;color: #333333;}
.yzlcms_page ul li.active,.yzlcms_page ul li:hover { background:#0782a3; border: 1px solid #0782a3;}
.yzlcms_page ul li a,.yzlcms_page ul li span{display:inline-block; padding:0 10px;color: #333333;font-weight: 500;}
.yzlcms_page ul li:hover a,.yzlcms_page ul li:hover span,.yzlcms_page ul li.active span {color:#ffffff;}


@media (max-width:1199px) {
.yzlcms_page { margin: 30px 0 0 0;}
}
@media (max-width:767px) {
.yzlcms_page { margin: 10px 0 0 0;}
}

.showcon { font-size:16px;line-height: 1.8;color: #222222;}
.showcon p { font-size:16px;line-height: 1.8;color: #222222;margin-bottom:16px;}
.showcon img { max-width:100% !important; height:auto !important;}

@media (max-width:767px) {
.showcon { }
.showcon p { margin-bottom:10px;}
}

.showcon ul.list-paddingleft-2 {
    margin: 0 !important;
    padding: 0 0 0 15px !important;
    list-style: inherit !important;
}
.showcon ul.list-paddingleft-2 li {
    display: list-item !important;
    margin-left: 20px !important;
    list-style: inherit !important;
    /* font-size: 20px; */
}
.showcon hr {
    border-bottom: 1px solid #e2e2e3;
    border-top: 0 none;
    margin: 30px 0;
    padding: 0;
}
.showcon audio {
    max-width: 100% !important;
}
.showcon video {
    max-width: 100% !important;
    background: #000000;
}
.showcon iframe {
    max-width: 100% !important;
    border: none !important;
}
.showcon table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100% !important;
    max-width: 100% !important;
    height:auto !important;
}
.showcon td, .showcon th {
    padding: 5px 10px !important;
    border: 1px solid #666666 !important;
    word-break: break-all !important;
}
@media(max-width:991px){
.showcon video {
    height:auto !important;
}
.showcon iframe {
    height:auto !important;
}
}

