:root {
    --primary-font: "Vidaloka";
    --secondary-font: "Commissioner";
    --text-font: "DM Sans";
    --primary-color: #0081DD;
    --primary-color-rgb: 0, 129, 221;
    --primary-green: #11994a;
    --primary-green-rgb: 17, 153, 74;
    --primary-red: #991111;
    --primary-yellow: #fdfae4;
    --primary-dark-yellow: #e4dfc5;
    --primary-black: #151515;
    --primary-blue: #0A66C2;
    --primary-dark-blue: #19486a;
    --primary-dark-blue-rgb: 25, 72, 106;
    --primary-light-blue: #F1F8FD;
    --secondary-color: #646464;
    --black-color: #000000;
    --white-color: #fff;
}

/*==========================
 <--start-header-area 导航栏样式 -->
===========================*/

.header-area {
    padding: 0 148px 0;
    background: linear-gradient(0deg, rgba(1, 0, 37, 0), #010025);
    position: fixed !important;
    left: 0;
    top: 0;
    z-index: 992;
    width: 100%;
}

.header-menu-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo-view {
    height: 100%;
    margin-right: 12px;
}

.header-logo {
    position: relative;
    height: 60px;
    padding-right: 12px;
}

.header-logo img {
    height: 100%;
}

.header-menu ul {
    display: flex;
    justify-content: end;
}

.header-menu ul li {
    display: inline-block;
    margin-right: 60px;
    text-align: right;
    position: relative;
    font-size: 16px;
    cursor: pointer;
    padding: 37px 0;
    color: #fff;
}

.header-menu ul li:last-child {
    margin-right: 0;
}

/* .header-menu a {
    display: inline-block;
    color: #333;
    padding: 37px 0;
    transition: 0.5s;
} */

/* .header-menu a:hover {
    color: var(--primary-color);
} */

/* .header-menu ul li i {
    display: inline-block;
    color: #555555;
    font-size: 18px;
    margin-left: 6px;
    position: relative;
    top: 1px;
    transition: 0.5s;
} */

/* .header-contact {
    text-align: center;
    position: relative;
}

.header-contact:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 101px;
    right: -5px;
    top: -37px;
    background: #E5E5E5;
    display: inline-block;
}

.header-contact img {
    margin-right: 11px;
}

.header-contact a {
    font-size: 22px;
    display: inline-block;
    font-weight: 500;
    color: #232323;
    font-family: 'Rubik', sans-serif;
} */

/* .header-cart-button {
    display: inline-block;
    position: relative;
}

.count {
    position: absolute;
    top: -35px;
    left: 15px;
}

.count h5 {
    font-size: 13px;
    position: relative;
    z-index: 1;
    color: #fff;
}

.count h5:before {
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    top: 22px;
    right: -3px;
    background: #7EB63B;
    border-radius: 50px;
    z-index: -1;
    display: inline-block;
}

.header-button {
    display: inline-block;
} */

.col-lg-2.text-right {
    text-align: right;
}

/* .header-button a {
    background: #7EB63B;
    color: #fff;
    display: inline-block;
    padding: 12px 35px;
    margin-left: 34px;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    border: 1px solid #7EB63B;
}

.header-button a:hover {
    color: #7EB63B;
}

.header-button a:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #fff;
    transform: scale(0);
    z-index: -1;
    border-radius: 5px;
    transition: 0.5s;
}

.header-button a:hover:before {
    transform: scale(1);
} */

.sticky {
    left: 0;
    margin: auto;
    position: fixed !important;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    background: #fff !important;
    transition: .5s !important;
    z-index: 922;
    /* -webkit-animation: 300ms running fadeInDown; */
    /* animation: 500ms running fadeInUp; */
    /* animation-name: slideInDown; */
}

.sticky .header-menu ul li {
    color: #666;
}

.header-menu ul li.active {
    color: var(--primary-green);
    font-weight: 800;
}

.mobile-menu ul li.active {
    color: var(--primary-green);
}

.header-menu ul li:hover {
    /* transform: rotate(-180deg); */
    color: var(--primary-green);
    font-weight: 800;
}

/*sub-menu*/
.header-menu ul li.menu-item-has-children {
    position: relative;
}

.header-menu ul li .sub-menu {
    position: absolute;
    width: 200px;
    display: block;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    top: 0;
    z-index: 2;
    /* box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3); */
    /* border-top: 4px solid var(--primary-green); */
    border-radius: 5px 5px 0 0;
    padding-top: 100px;
}

.header-menu ul li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}

.header-menu ul li .sub-menu.hidden-sub {
    opacity: 0;
    visibility: hidden;
}

.header-menu ul li .sub-menu li {
    display: block;
    padding: 6px 19px;
    color: #232323;
    width: 200px;
    text-align: left;
    background-color: #fff;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
}

.header-menu ul li .sub-menu li:hover {
    background: var(--primary-green);
    color: #fff;
}

/*==========================
 <--start-slider-section 首页视频样式 -->
===========================*/
.slider-section {
    height: 800px;
    position: relative;
    z-index: 2;
    background: #F1F8FD;
}

.slider-section .container {
    z-index: 3;
    position: relative;
    max-width: 100%;
    padding: 0 160px;
}

.slider-section video.background-image {
    position: absolute;
    /* left: 1px; */
    top: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    border: none;
    object-fit: cover;
    /* object-fit: fill; */
    /* object-position: 60px; */
}

.slider-content {
    animation: 3.1s running fadeInUp;
}

.slider-section .slider-content h1,
h3 {
    color: var(--white-color);
    text-align: left;
}

.slider-content h1 {
    font-size: 40px;
    line-height: 56px;
    width: 50%;
    font-family: HarmonyOSBold;
}

.slider-content h3 {
    color: var(--white-color);
    font-size: 20px;
    line-height: 32px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 20px;
    width: 50%;
}

.slider-content p {
    color: #fff;
    width: 45%;
    padding: 19px 0 0px;
}

.solar-button {
    margin-top: 38px;
    position: relative;
    display: inline-block;
}

.solar-button a {
    background: var(--primary-green);
    color: #fff;
    padding: 13px 30px;
    display: inline-block;
    border-radius: 5px;
    font-size: 16px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    border: 2px solid var(--primary-green);
}

.solar-button a:hover {
    color: var(--primary-green);
}

.solar-button a:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #fff;
    transform: scale(0);
    z-index: -1;
    transition: 0.5s;
    border-radius: 5px;
}

.solar-button a:hover:before {
    transform: scale(1);
}

.solar-button i {
    font-size: 15px;
    display: inline-block;
    margin-left: 15px;
    background: #fff;
    color: #7EB63B;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 50px;
    text-align: center;
    transition: 0.5s;
}

.solar-button a:hover i {
    color: #fff;
    background: #7EB63B;
}

/* 视频介绍模块 */
.introduct-section {
    background: url(../image/videoIntroduction.png);
    background-size: cover;
    background-repeat: no-repeat;
    /* height: 600px; */
    padding: 80px 0;
}

.introduct-section .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-width: 100%;
    padding: 0;
}

.introduct-section .video-left {
    position: relative;
    height: 480px;
    /* width: 400px; */
    width: 480px;
    background-color: var(--white-color);
    padding: 10px;
}

.introduct-section .video-left img {
    width: 100%;
    height: 100%;
    vertical-align: top;
}

.introduct-section .video-left .about-one__video-link {
    position: absolute;
    /* top: 83px; */
    /* right: -38px; */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.about-one__video-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 23px;
    color: var(--white-color);
    background-color: var(--primary-green);
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.about-one__video-icon:hover {
    background-color: var(--white-color);
    color: var(--primary-green);
}

.about-one__video-icon:before {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    content: "";
    border: 1px solid #dddddd;
}

.about-one__video-icon:after {
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
    content: "";
    border: 1px solid #dddddd;
}

.about-one__video-link .ripple,
.about-one__video-icon .ripple:before,
.about-one__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: 160px;
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--primary-green-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--primary-green-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--primary-green-rgb), 0.6);
    animation: rippleMove 3s infinite;
    z-index: 1;
}

.about-one__video-icon .ripple:before {
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.about-one__video-icon .ripple:after {
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.introduct-section .video-right {
    display: flex;
    /* flex-grow: 1; */
    justify-content: start;
    margin-left: 120px;
}

.introduct-section .video-right .section-title {
    padding-bottom: 0;
}

.introduct-section .video-right .section-title:last-child {
    margin-left: 60px;
}

.introduct-section .video-right .section-title__title {
    color: #fff;
    position: relative;
    margin-top: 0;
    margin-bottom: 60px;
    font-size: 40px;
    line-height: 1;
    z-index: 1;
}

.introduct-section .video-right .section-title__title span {
    display: block;
    z-index: 2;
    position: relative;
}

.introduct-section .video-right .section-title__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 24px;
    background: linear-gradient(90deg, var(--primary-green), rgba(var(--primary-green-rgb), 0));
    z-index: 1;
}

.introduct-section .video-right .section-title .about-one__text {
    display: flex;
    flex-direction: column;
}

.introduct-section .video-right .section-title .about-one__text a {
    font-size: 24px;
    margin-bottom: 32px;
    color: #eee;
}

.introduct-section .video-right .section-title .about-one__text a:last-child {
    margin-bottom: 0;
}

.introduct-section .video-right .section-title .about-one__text a:hover {
    color: var(--primary-green);
}

/*--------------------------------------------------------------
# About One 视频标签视窗
--------------------------------------------------------------*/
.about-one {
    position: relative;
    display: block;
    padding: 100px 0;
    z-index: 1;
    background-color: var(--primary-dark-blue);
    /* background: url(../image/videobackground.png); */
    /* background-size: cover; */
    /* background-repeat: no-repeat; */
}

.about-one .container {
    max-width: 100%;
    padding: 0 160px 0 240px;
}

.about-one .aboutone-row {
    justify-content: space-between;
}

.about-one__left {
    position: relative;
    display: block;
    margin-right: 100px;
}

.about-one__shape-3 {
    position: absolute;
    top: 170px;
    left: -335px;
    opacity: 0.1;
    z-index: 2;
}

.about-one__shape-3 img {
    width: auto;
}

.about-one__img-box {
    position: relative;
    display: block;
}

.about-one__img {
    position: relative;
    display: block;
    z-index: 1;
    height: 600px;
    background: url(../picture/about-one-img-1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    object-fit: fill;
}

.about-one__img img {
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
}

.about-one__img-2 {
    position: absolute;
    right: -131px;
    bottom: -26px;
    z-index: 2;
    /* width: 600px; */
    /* height: 360px; */
}

.about-one__img-2 img {
    /* width: auto; */
    width: 100%;
    /* width: 320px; */
}

.about-one__right {
    position: relative;
    display: block;
    margin-left: 120px;
}

.about-one .about-one__right .section-title {
    /* margin-bottom: 29px; */
    padding-bottom: 14px;
}

.about-one .section-title__tagline {
    color: #eee;
}

.about-one .about-one__right .section-title__title {
    margin-top: 16px;
    color: #fff;
}

.about-one .about-one__right .section-title__title.mt-title {
    margin-top: 24px;
}

.about-one__right .section-title__icon {
    color: var(--primary-green);
    margin-bottom: 12px;
}

.about-one__right .about-one__text {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #ddd;
    padding-bottom: 36px;
}

.about-one__right .about-one__text.no-border {
    border-bottom: none;
}

.about-one__right .about-one__text a {
    margin-bottom: 10px;
    color: #eee;
    font-size: 18px;
}

.about-one__right .about-one__text a:last-child {
    margin-bottom: 0;
}

.about-one__right .about-one__text a:hover {
    color: var(--primary-green);
}

.about-one__icon-and-big-text {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 31px;
    padding-bottom: 33px;
    border-bottom: 1px solid #dddddd;
}

.about-one__icon {
    position: relative;
    display: inline-block;
}

.about-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 62px;
    color: var(--primary-black);
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.about-one__icon:hover span {
    transform: scale(0.9);
}

.about-one__big-text {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    /* letter-spacing: var(--govity-letter-spacing-two); */
    color: var(--govity-base);
    margin-left: 20px;
}

.about-one__btn-box-and-signature {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.about-one__signature {
    position: relative;
    display: block;
    margin-left: 30px;
}

.about-one__signature img {
    width: auto;
}

@-webkit-keyframes rippleMove {
    70% {
        box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
    }
}

@keyframes rippleMove {
    70% {
        box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
    }
}

/************************* 
    05. Services Section
*************************/
.services-section {
    background-image: url(../image/services-bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
}

.about-divider {
    width: 120px;
    border: 2px solid #000;
    margin-bottom: 60px;
}

.services-section h6,
.skill-content h6 {
    color: var(--primary-color);
    font-size: 16px;
    font-family: HarmonyOSRegular;
}

.services-section h2 {
    color: #000;
    font-size: 44px;
    font-family: HarmonyOSBold;
}

.section-box {
    align-items: stretch;
    padding-top: 40px;
}

.section-box .card {
    height: 100%;
    padding: 30px;
    border: none;
    border-radius: 0;
    background-color: transparent;
    transition: all .5s;
}

.section-box .card:hover {
    background-color: #fff;
    cursor: pointer;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.section-box .card .card-title-wrap i {
    font-size: 31px;
    line-height: 32px;
    padding: 15px;
    width: 60px;
    text-align: center;
    height: 60px;
    background-color: #B8E1C9;
    color: var(--primary-color);
    border-radius: 30px;
    transition: all .5s;
    margin-right: 15px;
}

.section-box .card:hover .card-title-wrap i {
    /* background-color: #fff; */
    /* color: #fff; */
}

.section-box .card .card-body .card-divider {
    width: 100%;
    border: 1px solid #B8E1C9;
    margin-bottom: 15px;
    display: block;
}

.section-box .card .card-title {
    color: #000;
}

.section-box .card .card-body .card-list span i {
    color: var(--primary-color);
    padding-right: 10px;
}

.section-box .card .card-body .card-list span {
    color: #000;
    padding-top: 10px;
    font-family: HarmonyOSRegular;
}

.about-button {
    padding-top: 20px;
}

.about-button a {
    /* background: var(--primary-color); */
    color: #fff;
    padding: 13px 30px;
    display: inline-block;
    border-radius: 5px;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    /* border: 2px solid var(--primary-color); */
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-button a img {
    margin-left: 8px;
}

.about-button a .hover-img {
    /* display: none; */
}

.about-button a:hover {
    /* border: 1px solid var(--primary-color); */
    /* background-color: #fff; */
    color: var(--primary-color);
}

.about-button a:hover .hover-img {
    display: inline-block;
}

.about-button a:hover .white-img {
    display: none;
}

/*==========================
 <--start-information-section -->
===========================*/
/* .row.information {
    margin-top: -81px;
    position: relative;
}

.single-information-box {
    border-radius: 10px;
    filter: drop-shadow(-2.113px 4.532px 12.5px rgba(16, 28, 2, 0.08));
    background-color: #ffffff;
    padding: 12px 28px 39px;
    position: relative;
    z-index: 1;
}

.single-information-box:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: #7EB63B;
    z-index: -1;
    transition: 0.5s;
    border-radius: 10px;
}

.single-information-box:hover:before {
    width: 100%;
}

.information-icon img {
    transition: 0.5s;
}

.single-information-box:hover .information-icon img {
    filter: brightness(1) invert(1);
}

.information-icon {
    background: #000;
    width: 63px;
    height: 63px;
    text-align: center;
    line-height: 63px;
    border-radius: 50px;
    float: left;
    margin-top: 55px;
    margin-right: 20px;
    transition: 0.5s;
}

.single-information-box:hover .information-icon {
    background: #fff;
}

.information-content h4 {
    font-size: 20px;
    margin-bottom: -6px;
    transition: 0.5s;
}

.single-information-box:hover .information-content p,
.single-information-box:hover .information-content h4 {
    color: #fff;
}

.information-content p {
    transition: 0.5s;
} */


/*==========================
 <--start-section-title-->
===========================*/
.section-title {
    padding: 0 0 32px;
    animation: 3.1s running fadeInUp;
}

.section-title h4 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    color: #7eb63b;
    margin: 0;
    margin-bottom: -8px;
}

.section-title h1 {
    font-size: 43px;
    font-weight: 600;
    line-height: 46px;
}

p.desc-one {
    width: 90%;
    padding: 22px 0 0;
}

/*==========================
 <--start-about-section -->
===========================*/
.about-section {
    padding: 130px 0 100px;
    position: relative;
    /* background: url('../image/testimonial-one-bg.jpg'); */
    /* background-size: 100% 100%; */
    /* background-repeat: no-repeat; */
}

.about-section .testimonial-one__bg {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.about-thumb {
    margin-left: -60px;
}

.about-list-item ul li i {
    display: inline-block;
    background: #7eb63b;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    margin-right: 14px;
    margin-bottom: 17px;
}

.solar-contact {
    display: inline-block;
}

.solar-conatct-box {
    display: -webkit-box;
    padding: 0 0 0 28px;
}

.solar-contact-icon {
    padding-right: 18px;
    padding-top: 4px;
}

.solar-contact-content a {
    color: #666666;
    display: inline-block;
}

/*===============================
 <--start-why-choose-us-section-->
=================================*/
/* .why-choose-us-section {
    background: #f8f8f8;
    padding: 60px 0 0px;
    display: flex;
}

.why-choose-us-section .container {
    margin: 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

.why-choose-us-section .container .container-row {
    width: 100%;
}

.why-choose-us-section .section-title {
    padding: 0 0 60px;
}

.why-choose-us-section .section-title h4 {
    color: var(--primary-color);
}

.why-choose-us-section .section-title h1 {
    color: #000;
}

.card-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.card-row-item {
    margin-bottom: 20px;
}

.video-row-item {
    width: 50%;
    position: relative;
}

.video-view .glightbox {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.video-view .white {
    color: #ffffff;
    border-radius: 50%;
    display: block;
    -webkit-animation: ripple-white 1s linear infinite;
    animation: ripple-white 1s linear infinite;
    -webkit-transition: .5s;
    width: 96px;
    margin: 0 auto;
    height: 96px;
    line-height: 1;
}

.video-view .video-dialog {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    z-index: 5;
}

.video-view::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 5;
    background: rgba(0, 0, 0, .5);
}

.video-view .big {
    font-size: 6rem;
} */

@-webkit-keyframes ripple-white {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1);
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 30px rgba(255, 255, 255, 0);
    }
}

@keyframes ripple-white {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1);
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 30px rgba(255, 255, 255, 0);
    }
}

/* .why-choose-us-box {
    border-radius: 8px;
    background-color: #ffffff;
    text-align: center;
    padding: 17px 36px 43px;
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.why-choose-us-box h4 {
    color: #000;
}

.why-choose-us-box:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    background: var(--primary-color);
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 8px;
    transition: 0.5s;
}

.why-choose-us-box.video-view:before {
    content: "";
    display: none;
}

.why-choose-us-box:hover:before {
    height: 100%;
}

.why-choose-us-box.video-view {
    padding: 0;
    border-radius: 8px;
}

.why-choose-us-box.video-view video {
    width: 100%;
    height: 100%;
    object-fit: fill;
    position: relative;
    z-index: 1;
    border-radius: 8px;
}

.why-choose-us-desc p {
    color: #333;
    margin-bottom: 8px;
    font-size: 18px;
}

.why-choose-us-icon {
    background: var(--primary-color);
    width: 72px;
    height: 72px;
    text-align: center;
    line-height: 65px;
    border-radius: 50px;
    margin: 13px auto 31px;
    transition: 0.5s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-us-box:hover .why-choose-us-icon {
    background: #fff;
}

.why-choose-us-icon img {
    width: 70%;
    height: 70%;
    transition: 0.5s;
}

.why-choose-us-box:hover .why-choose-us-icon img {
    opacity: 0;
}

img.why-choose-icon-2 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: 0.5s;
}

.why-choose-us-box:hover img.why-choose-icon-2 {
    opacity: 1;
}

.why-choose-us-content h4 {
    font-size: 24px;
    transition: 0.5s;
}

.why-choose-us-box:hover .why-choose-us-desc p,
.why-choose-us-box:hover .why-choose-us-content h4 {
    color: #fff;
}

.why-choose-us-desc p {
    transition: 0.5s;
} */

/* ==============================
    轮播图css
================================= */
.offer-section {
    padding-top: 20px;
    /* background-color: #F8FCFF; */
    background-color: var(--primary-yellow);
}

.service {
    /* padding: 80px 0; */
    background-color: transparent;
    padding: 120px 160px 0;
}

.service:last-child {
    padding-bottom: 120px;
}

.service .container {
    margin: 0;
    padding: 0;
    max-width: 100%;
}

.service .section-title {
    padding: 0 0 60px;
}

.service .section-title h4 {
    color: var(--primary-color);
}

.service .section-title h1 {
    color: #000;
}

.service .service__item1-inner {
    min-height: 70vh;
    max-height: 70vh;
    display: flex;
    position: relative;
    justify-content: start;
}

.service .service__item1-inner.inner-right {
    justify-content: end;
}

.service .service__item1-thumb {
    /* overflow: hidden; */
    width: 50%;
    position: relative;
}

.service .service__item1-thumb::after {
    content: "";
    width: calc(100%);
    height: 100%;
    position: absolute;
    background-color: var(--primary-green);
    z-index: 0;
    bottom: -10px;
    border-radius: 12px;
}

.service .service__item1-thumb.borderLeft .thumb-image {
    /* border-bottom-left-radius: 32px; */
    /* border-top-left-radius: 32px; */
}

.service .service__item1-thumb.borderRight .thumb-image {
    /* border-bottom-right-radius: 32px; */
    /* border-top-right-radius: 32px; */
}

.service .service__item1-thumb.borderLeft::after {
    /* border-bottom-left-radius: 32px; */
    /* border-top-left-radius: 32px; */
    right: -10px;
}

.service .service__item1-thumb.borderRight::after {
    /* border-bottom-right-radius: 32px; */
    /* border-top-right-radius: 32px; */
    left: -10px;
    /* right: -10px; */
}

.service .service__item1-thumb .thumb-image {
    overflow: hidden;
    display: flex;
    height: 100%;
    width: 100%;
    float: right;
    position: relative;
    z-index: 1;
    border-radius: 12px;
}

.service .service__item1-thumb .thumb-image img {
    transition: 1s;
    transform: scale(1);
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.service .service__item1-thumb .thumb-image:hover img {
    transform: scale(1.1);
}

.service .service__item1-content {
    /* padding: 0px 180px 40px 160px; */
    /* height: 100%; */
    width: 55%;
    background-color: var(--primary-green);
    border-radius: 8px;
    position: absolute;
    z-index: 3;
    top: 50%;

    transform: translate(0, -50%);
}

.service .service__item1-content.borderLeft {
    left: 0;
}

.service .service__item1-content.borderRight {
    right: 0;
}

.service .service__item1-content.moveLeft {
    animation: slideInLeftMove 1s linear;
}

.service .service__item1-content.moveRight {
    animation: slideInRightMove 1s linear;
}

/* .service .service__item1-thumb.moveLeft {
    animation: ImageLeftMove 0.8s linear;
}
.service .service__item1-thumb.moveLeft {
    animation: ImageLeftMove 0.8s linear;
} */

/* .service .service__item1-line {
    position: absolute;
    height: 20px;
    width: calc(55% - 160px);
    background-color: #fff;
    right: calc(45% + 160px);
    bottom: 0;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-yellow));
    display: none;
}

.service .service__item1-line.line-right {
    right: 0;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-green));
} */

@keyframes slideInLeftMove {
    0% {
        transform: translate3d(-100%, 0, 0) translate(0, -50%);
    }

    100% {
        transform: translate3d(0, 0, 0) translate(0, -50%);
    }
}

@keyframes slideInRightMove {
    0% {
        transform: translate3d(100%, 0, 0) translate(0, -50%);
    }

    100% {
        transform: translate3d(0, 0, 0) translate(0, -50%);
    }
}

/* @keyframes ImageLeftMove {
    0% {
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes ImageRightMove {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
} */

.service__item1 {
    background-color: #fff;
    /* box-shadow: 0px 4px 15px rgba(228, 226, 238, 0.8); */
}

@media (max-width: 992px) {
    .service__item1-inner {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
    }
}

.service__item2-inner {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: 2px solid #D9D9D9;
    border-radius: 0.25rem;
}

.service__item2-thumb {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 80px;
    height: 80px;
    background-color: #D9D9D9;
    border-radius: 0.25rem;
}

.service__item1-content .common-header {
    padding: 60px 40px;
    position: relative;
    z-index: 3;
    background-color: var(--primary-green);
    border-radius: 8px;
}

.service__item1-content .back-number {
    font-size: 160px;
}

.service__item1-content.borderLeft .back-number {
    position: absolute;
    left: 0;
    top: -1em;
    line-height: 1;
    color: var(--primary-dark-yellow);
    z-index: 0;
    font-family: HarmonyOSBold;
}

.service__item1-content.borderRight .back-number {
    position: absolute;
    right: 0;
    top: -1em;
    line-height: 1;
    color: var(--primary-dark-yellow);
    z-index: 0;
    font-family: HarmonyOSBold;
}

.service__item1-content .firstTitle {
    color: var(--white-color);
    font-size: 40px;
    line-height: 52px;
    margin-bottom: 24px;
    font-family: HarmonyOSBold;
}

.service__item1-content .subtitle {
    color: var(--white-color);
    font-size: 40px;
    font-family: HarmonyOSBold;
    line-height: 52px;
    margin-bottom: 36px;
}

.service__item1-content .secondTitle {
    color: var(--white-color);
    font-size: 20px;
    line-height: 36px;
    margin-bottom: 20px;
    max-height: 280px;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(204, 204, 204, .5) transparent;
}

.service__item1-content .secondTitle:last-child {
    margin-bottom: 0;
}

.service:nth-child(2n) .service__item1-inner .firstTitle {
    text-align: left;
}

.service:nth-child(2n) .service__item1-inner .subtitle {
    text-align: left;
}

.service:nth-child(2n) .service__item1-inner .secondTitle {
    text-align: left;
}

.service__item1-content .thirdTitle {
    color: #666;
    font-size: 20px;
    font-family: HarmonyOSMedium;
    line-height: 28px;
}

.service__item2:hover .service__item2-inner {
    background-color: #fff;
}

.service__item2:hover .service__item2-thumb {
    background-color: #C09B6C;
}

.service__aminities-item {
    gap: 10px;
}

.service__aminities-name {
    gap: 10px;
    flex: 1.6;
}

@media (min-width: 576px) {
    .service__aminities-name {
        flex: 1.1;
    }
}

.service__aminities-name:after {
    font-size: 1.25rem;
    content: ":";
    color: #000;
    font-family: "Bai Jamjuree", sans-serif;
    font-weight: 700;
    right: 0;
}

@media (min-width: 576px) {
    .service__aminities-name:after {
        right: 30px;
    }
}

@media (min-width: 992px) {
    .service__aminities-name:after {
        right: 0;
    }
}

@media (min-width: 1200px) {
    .service__aminities-name:after {
        right: 10px;
    }
}

@media (min-width: 1400px) {
    .service__aminities-name:after {
        right: 30px;
    }
}

.service__aminities-name i,
.service__aminities-name svg {
    color: #C09B6C;
}

.service__aminities-value {
    font-size: 1.25rem;
    flex: 1;
    line-height: 1.3;
}

.service__details {
    background-color: #F8F5F0;
    border-radius: 0.25rem;
}

@media (min-width: 992px) {
    .service__details-content .room__feature {
        max-width: 80%;
    }
}

.service__video-wrapper {
    border-radius: 0.25rem;
}

.service__video-wrapper img {
    object-fit: cover;
}

.service__video-wrapper::after {
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.service__slider-prev,
.service__slider-next {
    font-size: 24px;
}

@media (min-width: 992px) {
    .service__wrapper--home1 {
        padding-inline: 8%;
    }
}

@media (min-width: 992px) {

    .service__slider-prev,
    .service__slider-next {
        width: 60px;
        height: 60px;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
        border-radius: 4px;
        display: inline-grid;
        place-items: center;
        position: absolute;
        /* top: 50%; */
        z-index: 1;
    }
}

@media (max-width: 992px) {

    .service__slider-prev,
    .service__slider-next {
        display: none;
    }
}

/* 碳排放模块样式 */
.carbon-section {
    background: url(../image/carbonBackground.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 88px 0 0;
    position: relative;
}

.carbon-section .carbon-dialog {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
    left: 0;
    top: 0;
}

.carbon-section .container {
    max-width: 100%;
    padding: 0 160px;
    position: relative;
    z-index: 1;
}

.carbon-section .section-title {
    padding-bottom: 0;
}

.carbon-section .section-title h1 {
    margin-top: 0;
    font-size: 40px;
    line-height: 60px;
    color: #fff;
}

.carbon-section .carbon-select {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.carbon-section .carbon-select .carbon-select-item {
    background-color: var(--white-color);
    color: var(--primary-green);
    font-size: 20px;
    text-align: center;
    width: 180px;
    height: 52px;
    line-height: 52px;
    cursor: pointer;
    border-right: 1px solid #eee;
}

.carbon-section .carbon-select .carbon-select-item.active {
    color: var(--white-color);
    background-color: var(--primary-green);
}

.carbon-section .carbon-select .carbon-select-item:first-child {
    border-top-left-radius: 26px;
    border-bottom-left-radius: 26px;
}

.carbon-section .carbon-select .carbon-select-item:last-child {
    border-top-right-radius: 26px;
    border-bottom-right-radius: 26px;
    border-right: none;
}

.carbon-section .carbon-data {
    display: flex;
    justify-content: space-between;
    margin-top: 65px;
    margin-bottom: 60px;
    width: 100%;
}

.carbon-section .carbon-data .carbon-data-item {
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, .3);
    border-radius: 50%;
    box-shadow: inset 0px -1px 0 0 #fff;
    color: rgba(255, 255, 255, .7);
    font-size: 48px;
    text-align: center;
    /* line-height: 240px; */
    position: relative;
    /* margin-right: 67px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carbon-section .carbon-data .carbon-data-item .carbon-name {
    margin-bottom: 20px;
}

.carbon-section .carbon-data .carbon-data-item:last-child {
    margin-right: 0;
}

.carbon-section .carbon-data .carbon-data-item .hover-data {
    /* opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    color: var(--primary-green);
    border-radius: 50%; */
    font-size: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    /* transition: .3s; */
    font-family: HarmonyOSBold;
    color: #fff;
}

.carbon-section .carbon-data .carbon-data-item .hover-data .hover-data-unit {
    font-size: 44px;
    line-height: 1;
    position: relative;
    top: 5px;
    font-family: HarmonyOSBold;
}

.carbon-section .carbon-data .carbon-data-item:hover {
    background-color: var(--white-color);
    color: var(--primary-green);
}

.carbon-section .carbon-data .carbon-data-item:hover .hover-data {
    color: var(--primary-green);
}

.carbon-section .carbon-totalNumber {
    color: #fff;
    font-size: 24px;
    margin-bottom: 40px;
}

.carbon-section .carbon-totalNumber.hidden-total {
    display: none;
}

.carbon-section .carbon-totalNumber .bold-number {
    font-family: HarmonyOSBold;
    font-size: 32px;
}

.carbon-section .carbon-bottomInfo {
    padding-bottom: 60px;
    color: rgba(255, 255, 255, .5);
    font-size: 18px;
}

.carbon-section .carbon-bottomInfo a {
    color: rgba(255, 255, 255, .5);
}

.carbon-section .carbon-bottomInfo a:hover {
    color: #fff;
}

.carbon-section .box-item {
    width: 6vw;
    height: 6vw;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1vw;
    border-radius: 60% 40% 56% 42% / 47% 68% 34% 54%;
    box-shadow: inset 0.5vw 0.5vw 0.8vw rgba(253, 253, 253, 0.2),
        0.8vw -1.1vw 1vw rgba(15, 97, 49, 0.1), 0.8vw -1.1vw 2vw rgba(15, 97, 49, 0.1),
        inset -0.8vw -0.8vw 1.2vw rgba(253, 253, 253, 0.8);
    color: rgba(255, 255, 255, .5);
}

/* 应用关键帧到目标元素 */
/* 设置动画名称、持续时间、速度曲线和重复次数 */
.carbon-section .item1 {
    position: absolute;
    left: 0;
    bottom: 10%;
    animation: dropAndRise 4s ease-in-out infinite;
}

.carbon-section .item2 {
    position: absolute;
    top: 0;
    left: 25%;
    animation: dropAndRise2 4s ease-in-out infinite;
    animation-delay: 500ms;
}

.carbon-section .item3 {
    position: absolute;
    right: 0;
    top: 0;
    animation: dropAndRise3 4s ease-in-out infinite;
    animation-delay: 1000ms;
}

.carbon-section .item5 {
    position: absolute;
    right: 20%;
    bottom: 0;
    animation: dropAndRise5 4s ease-in-out infinite;
    animation-delay: 1500ms;
}

/* 定义关键帧 */
@keyframes dropAndRise {
    0% {
        left: 0;
        bottom: 10%;
    }

    100% {
        left: 15%;
        bottom: 30%;
        opacity: 0;
        width: 3vw;
        height: 3vw;
        font-size: .1vw;
    }
}

@keyframes dropAndRise2 {
    0% {}

    100% {
        left: 30%;
        top: 50%;
        opacity: 0;
        width: 3vw;
        height: 3vw;
        font-size: .1vw;
    }
}

@keyframes dropAndRise3 {
    0% {}

    100% {
        right: 16%;
        top: 50%;
        opacity: 0;
        width: 3vw;
        height: 3vw;
        font-size: .1vw;
    }
}

@keyframes dropAndRise5 {
    0% {}

    100% {
        right: 30%;
        bottom: 20%;
        opacity: 0;
        width: 3vw;
        height: 3vw;
        font-size: .1vw;
    }
}

/************************* 
  14. Contact Us Section
*************************/
.contact-main .local-contact-section {
    padding: 100px 0;
    background: var(--primary-yellow);
    /* background-image: url(../image/contact-us-image.png); */
    /* background-position: center center; */
    /* background-repeat: no-repeat; */
    /* background-size: cover; */
    /* background-color: #B1977712; */
}

.about-hero-section {
    background-image: url(../image/about-image.png);
    height: 300px;
    text-align: center;
    display: flex;
    align-items: center;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* .about-map-section {
    background-image: url(../picture/map.png);
    height: 600px;
    text-align: center;
    display: flex;
    align-items: center;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
} */

.cert-section {
    background-image: url(../image/cert.png);
}

.contact-hero-section {
    background-image: url(../image/about-us-images.png);
}

.contact-main .local-contact-section p {
    width: 91%;
}

.contact-form-wrap h4 {
    /* font-family: var(--primary-font); */
}

.contact-form-wrap .form-row .form-group .form-control {
    margin-bottom: 15px;
    border-radius: 0px;
    font-size: 18px;
    padding: 10px;
    line-height: 28px;
    background-color: #fff;
    color: #646464;
}

.form-group .btn {
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    background: transparent;
    padding: 12px 35px;
    font-size: 18px;
}

.form-group .btn:hover {
    border: 1px solid var(--primary-green);
    color: #fff;
    background: var(--primary-green);
}

.contact-main .local-contact-section .contact-form-wrap {
    padding: 20px 30px 50px;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.12);
    background-color: var(--primary-dark-yellow);
    display: flex;
    flex-direction: column;
}

.contact-main .local-contact-section .contact-form-wrap .form-row .form-group .form-control {
    background-color: var(--primary-yellow);
    border: none;
}

.form-group.select-group {
    position: relative;
    margin-bottom: 15px;
}

.form-group.select-group img {
    position: absolute;
    width: 16px;
    height: 10px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.contact-form .form-group select {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: var(--primary-yellow);
    -webkit-appearance: none;
    /* for Chrome, Safari */
    -moz-appearance: none;
    /* for Firefox */
    -ms-appearance: none;
    /* for IE10+ */
    appearance: none;
    /* for standard browsers */
    color: #646464;
}

.contact-form .form-group select option {
}

.contact-form .form-group select option:hover {
    background: red !important;
    color: red !important;
}

.contact-form .form-group select:focus {
    outline: none;
}

.contact-form .second-form {
    justify-content: space-between;
}

.contact-form .second-form .form-group:last-child {
    padding-right: 0 !important;
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.25px #f1f1f1;
}

.icon-box-wrapper .icon-box-item {
    padding: 20px;
    border: 1px solid var(--primary-dark-yellow);
    cursor: pointer;
    width: 84%;
    transition: all .3s;
}

.icon-box-wrapper .icon-box-item i {
    min-width: 70px;
    height: 70px;
    background-color: var(--primary-green);
    padding: 10px;
    border-radius: 54px;
    display: flex;
    font-size: 32px;
    line-height: 45px;
    text-align: center;
    color: #fff;
    margin-right: 20px;
    align-items: center;
    justify-content: center;
}

.icon-box-wrapper .icon-box-item:hover {
    padding: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.icon-box-wrapper .icon-box-text h5 {
    margin-top: 0;
    line-height: 1;
    margin-bottom: 8px;
}

.icon-box-wrapper .icon-box-text p {
    width: 100%;
}

.icon-box-wrapper .icon-box-text a {
    text-transform: lowercase;
}

.icon-box-wrapper .icon-box-text a:hover {
    color: var(--primary-green);
}

/*===============================
 <--start-skill-sectionn-->
=================================*/
.skill-section {
    background: url(../image/skill-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 100px 0 100px;
}

.vedio-icon {
    position: relative;
    left: 80px;
}

.vedio-icon i {
    display: inline-block;
    color: #7EB53D;
    background: #ffff;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    font-size: 23px;
    -webkit-animation: ripple-white 1s linear infinite;
    animation: ripple-blue 1s linear infinite;
    -webkit-transition: .5s;
}

@-webkit-keyframes ripple-blue {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3)
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0)
    }
}

@keyframes ripple-blue {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3)
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0)
    }
}


.skill {
    margin-bottom: 14px;
    position: relative;
    overflow-x: hidden;
}

.skill>p {
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    margin: 0;
    margin-bottom: 13px;
}

.skill:before {
    width: 90%;
    height: 8px;
    content: "";
    display: block;
    position: absolute;
    background: #EEEEEE;
    bottom: 18px;
    border-radius: 10px;
}

.skill-bar {
    width: 75%;
    height: 8px;
    background: #7eb63b;
    display: block;
    position: relative;
    border-radius: 8px;
}

.skill-bar span {
    font-size: 18px;
    /* padding: 3px 0; */
    font-weight: 500;
    float: right;
    top: -34px;
    position: relative;
}

.skill-bar {
    position: relative;

}

.skill1 .skill-count1 {
    right: 0;
}

/* SKILL 2 */
.skill2 {
    width: 85%;
}

.skill2 .skill-count2 {
    right: 0;
}




/*=====================================
 <--start-Call-do-action-sectionn-->
======================================*/
.call-do-action-section {
    padding: 47px 0 65px;
    background: #F8F8F8;
}

.call-do-action-section.style-home-2 {
    background: #fff;
}

.col-lg-6.call-do-button-right {
    text-align: right;
}

.call-do-action-content h4 {
    font-size: 32px;
    line-height: 48px;
}


/*=====================================
 <--start-contact-sectio-->
======================================*/
.contact-section {
    background: #F8F8F8;
    padding: 0 0 127px;
}

.row.add-bg-imgs {
    background: url(../image/contact-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 36px 50px 69px;
    border-radius: 5px;
}

.contact-form-content {
    margin-bottom: 55px;
}

.contact-form-content h4 {
    font-size: 14px;
    color: #7eb63b;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: -7px;
}

.contact-form-content h1 {
    font-size: 43px;
    margin-top: 0;
}

.form-box input {
    width: 100%;
    border: transparent;
    background: #F8F8F8;
    height: 54px;
    border-radius: 5px;
    margin-bottom: 28px;
    padding: 0 25px;
    outline: 0;
}

.submit-button button {
    background: #7EB63B;
    border: transparent;
    color: #fff;
    font-size: 14px;
    padding: 14px 36px;
    border-radius: 5px;
    border: 1px solid #7EB63B;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.submit-button button:hover {
    color: #7EB63B;
}

.submit-button button:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #fff;
    transform: scale(0);
    transition: 0.5s;
    z-index: -1;
    border-radius: 5px;
}

.submit-button button:hover:before {
    transform: scale(1);
}

/*=====================================
 <--start-team-sectio-->
======================================*/
.team-section {
    padding: 60px 0;
    background: var(--primary-dark-yellow);
}

.team-section .team-row {
    margin-bottom: 16px;
}

.team-section.upper {
    padding: 130px 0 106px;
}

.team-section .section-title {
    padding: 0 0 61px;
}

.team-section .section-title .section-title__title {
    margin-top: 0;
    font-size: 40px;
}

.team-thumb {
    position: relative;
    overflow: hidden;
}

.single-team-box {
    margin-bottom: 20px;
}

.team-thumb img {
    width: 100%;
    transition: 0.5s;
}

.single-team-box:hover .team-thumb img {
    transform: scale(1.05);
}

.team-social-icon {
    position: absolute;
    left: 23%;
    bottom: -70px;
    background: #fff;
    padding: 9px 22px;
    border-radius: 5px;
    transition: 0.5s;
}

.single-team-box:hover .team-social-icon {
    bottom: -2px;
}

.team-social-icon ul li {
    display: inline-block;
}

.team-social-icon ul li i {
    font-size: 14px;
    display: inline-block;
    color: #000;
    margin: 0 7px;
    transition: 0.5s;
}

.team-social-icon ul li i:hover {
    color: #7eb63b;
}

.team-content {
    filter: drop-shadow(-2.113px 4.532px 12.5px rgba(140, 140, 140, 0.1));
    background-color: var(--primary-yellow);
    padding: 24px 24px 24px;
    font-size: 20px;
}

.team-content h4 {
    font-size: 18px;
    line-height: 36px;
    margin: 0;
    transition: 0s;
    min-height: 4em;
}

.single-team-box:hover .team-content h4 {
    color: var(--primary-color);
}

.team-content p {
    font-size: 13px;
    text-transform: uppercase;
    color: #7eb63b;
}


/*=====================================
 <--start-counter-section-->
======================================*/
.map-section {
    width: 100%;
    /* height: 900px; */
    background: var(--primary-yellow);
    display: flex;
    flex-direction: column;
}

.map-section .container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map-section .map-list {
    width: 100%;
    background-color: var(--primary-dark-yellow);
    display: flex;
}

.map-section .map-list .list-hover-info {
    width: calc(100% / 6);
    /* height: 100%; */
    padding: 20px;
    border-right: 1px solid var(--primary-yellow);
    align-items: stretch;
}

.map-section .map-list .list-hover-info .country-name {
    font-family: HarmonyOSBold;
    margin-bottom: 12px;
    color: #333;
}

.map-section .map-list .list-hover-info .country-info p {
    font-size: 14px;
    color: #666;
    transition: 0s;
}

.map-section .map-list .list-hover-info.hover-active {
    background-color: var(--primary-green);
}

.map-section .map-list .list-hover-info.hover-active .country-name {
    color: #fff;
}

.map-section .map-list .list-hover-info.hover-active .country-info p {
    color: #fff;
}

.map-section .map-list .list-hover-info:last-child {
    border-right: none;
}

.map-section .section-title {
    padding: 80px 0 30px;
}

.map-section .section-title__title {
    margin-top: 0;
    font-size: 40px;
    color: #000;
}

.map-section .map-content {
    position: relative;
    background-image: url(../image/map.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    /* flex-grow: 1; */
    height: 630px;
}

.map-content .hover-point {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    /* background-color: var(--primary-green); */
    z-index: 1;
}

.map-content .hover-point .hover-p {
    width: 10px;
    height: 10px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.map-content .hover-point .hover-p::after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    left: -1px;
    top: -1px;
    -webkit-animation: mapRipple 1.6s ease-out infinite;
    -moz-animation: mapRipple 1.6s ease-out infinite;
    opacity: 0;
    background-image: -moz-linear-gradient(0deg, var(--primary-green) 0%, var(--primary-green) 100%);
    background-image: -webkit-linear-gradient(0deg, var(--primary-green) 0%, var(--primary-green) 100%);
    border-radius: 100%;
}

.map-content  .singapore .hover-p{
  background-color: var(--primary-red);
}
.map-content  .singapore .hover-p::after{
  background-image: -moz-linear-gradient(0deg, var(--primary-red) 0%, var(--primary-red) 100%);
    background-image: -webkit-linear-gradient(0deg, var(--primary-red) 0%, var(--primary-red) 100%);
}

.map-content .hover-point.point2 {
    left: 76%;
    top: 50.1%;
    z-index: 3;
}

.map-content .hover-point.point5 {
    left: 72.7%;
    top: 60.7%;
    z-index: 2;
}

.map-content .hover-point.point6 {
    left: 73.5%;
    top: 62.5%;
}

.map-content .hover-point.point7 {
    left: 82.2%;
    top: 43.2%;
    z-index: 4;
}

.map-content .hover-point.point8 {
    left: 21%;
    top: 39%;
}

.map-content .hover-point.point10 {
    left: 79.6%;
    top: 39.2%;
    z-index: 5;
}

.map-content .hover-point .hover-info {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-50%, -6px);
    min-width: 120px;
    max-width: 300px;
    padding-top: 22px;
    z-index: 100;
}

.hover-point .hover-info .hover-info-content {
    padding: 16px;
    background-color: var(--primary-green);
    box-shadow: 0 1px 4px 0 rgba(77, 129, 206, .6);
    position: relative;
    z-index: 1000 !important;
}

.map-content .hover-point:hover .hover-info {
    /* display: block; */
}

.map-content .hover-point .hover-info .country-name {
    font-size: 16px;
    font-family: HarmonyOSBold;
    color: #fff;
    margin-bottom: 8px;
}

.map-content .hover-point .hover-info .country-info {
    max-height: 120px;
    font-size: 14px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ddd #fff;
    line-height: 22px;
    color: #fff;
    /* word-wrap: break-word; */
}

.map-content .hover-point .hover-info .country-info p {
    font-size: 14px;
    color: #fff;
    word-wrap: break-word;
    min-width: 15em;
    font-family: HarmonyOSRegular;
}

@keyframes mapRipple {

    0%,
    35% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        opacity: 0.5;
    }

    50% {
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        -moz-transform: scale(2);
        -ms-transform: scale(2);
        -o-transform: scale(2);
        transform: scale(2);
    }
}

#map_container {
    width: 100%;
    height: 800px;
    margin: 0;
}

#map_container .anchorBL {
    display: none;
}

.counter-section {
    background: url(../image/counter-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 105px 0 125px;
}

.counter-section .number-row {
    margin-bottom: 40px;
}

.counter-section .section-title {
    padding: 0 0 39px;
}

.counter-section .section-title h4 {
    color: rgba(255, 255, 255, .5);
}

.counter-section .section-title h1 {
    color: #fff;
    font-size: 40px;
}

.counter-box {
    text-align: center;
}

.counter-content h1 {
    font-size: 48px;
    color: #fff;
    display: inline-block;
    font-family: HarmonyOSBold;
}

.counter-content span {
    font-size: 40px;
    color: #fff;
    position: relative;
    top: -4px;
    /* font-weight: 500; */
}

.counter-content p {
    color: #fff;
    margin-top: 5px;
    font-size: 18px;
}

/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/
.team-one {
    position: relative;
    display: block;
    padding: 100px 0;
    z-index: 1;
    background: var(--primary-dark-yellow);
}

.team-one .container {
    max-width: 100%;
    padding: 0 160px;
    margin: 0;
}

.team-one .about-button {
    padding-top: 40px;
}

.team-one .section-title {
    padding-bottom: 60px;
    font-size: 40px;
}

.team-one .section-title .section-title__title {
    font-size: 40px;
    margin-top: 0;
}

.team-one .row {
    align-items: stretch;
}

.team-one .team-one__inner {
    position: relative;
    display: block;
    /* margin-left: 60px; */
    /* margin-right: 60px; */
}

.team-one .team-one__inner .row {
    display: flex;
}

.team-one .team-one__inner .col-lg-3 {
    width: 20%;
}

.team-one__single {
    position: relative;
    display: block;
    background-color: var(--primary-yellow);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    border-bottom: none;
    padding: 30px 30px 0px;
    border-top-left-radius: 165px;
    border-top-right-radius: 165px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 500ms ease;
    height: 100%;
}

.team-one__single:hover {
    border: 2px solid var(--primary-color);
    border-bottom: none;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}

.team-one__single::before {
    content: "";
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: 0;
    height: 2px;
    background-color: var(--primary-color);
}

.team-one__img-box {
    position: relative;
    display: block;
}

.team-one__img {
    position: relative;
    display: block;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

.team-one__img:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    border-radius: 50%;
    background-color: rgba(var(--primary-color-rgb), 0.3);
    transform: scale(0.5);
    opacity: 0;
    transition: all 0.4s linear;
    z-index: 1;
}

.team-one__single:hover .team-one__img:before {
    transform: scale(1);
    opacity: 1;
}

.team-one__img img {
    width: 100%;
    border-radius: 50%;
    transition: all 500ms ease;
}

.team-one__single:hover .team-one__img img {
    transform: scale(1.08);
}

.team-one__content {
    position: relative;
    display: block;
    margin-top: 21px;
}

.team-one__name {
    font-size: 20px;
    font-weight: 700;
    line-height: 36px;
    text-align: center;
}

.team-one__name {
    color: #151515;
    transition: all 500ms ease;
}

.team-one__single:hover .team-one__name {
    color: var(--primary-color);
}

.team-one__social {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.team-one__social a {
    position: relative;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #151515;
    background-color: #f3f3f3;
    font-size: 14px;
    border-radius: 50%;
    overflow: hidden;
    transition: all 500ms ease;
    z-index: 1;
}

.team-one__social a:hover {
    color: #fff;
    background-color: var(--primary-color);
}

.team-one__social a:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--primary-color);
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.4s;
    transition-property: all;
    opacity: 1;
    transform-origin: top;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: -1;
}

.team-one__social a:hover:after {
    opacity: 1;
    transform: scaleY(1);
}

.team-one__social a+a {
    margin-left: 10px;
}

.team-one__shape-1 {
    position: absolute;
    bottom: 44px;
    left: 50%;
    transform: translateX(-50%);
}

.team-one__shape-1 img {
    width: auto;
}

.team-one__shape-2 {
    position: absolute;
    bottom: 76px;
    left: 50%;
    transform: translateX(-50%);
}

.team-one__shape-2 img {
    width: auto;
}

.team-one__shape-3 {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
}

.team-one__shape-3 img {
    width: auto;
}

/*--------------------------------------------------------------
# Portfolio Section 环境图片样式
--------------------------------------------------------------*/
.portfolio {
    padding: 60px 0 80px;
    background: var(--primary-yellow);
}

.portfolio .container {
    max-width: 100%;
    padding: 0 160px;
}

.portfolio .section-header h2 {
    margin-top: 0;
    margin-bottom: 40px;
    font-size: 40px;
}

.portfolio .portfolio-flters {
    padding: 0 0 60px 0;
    margin: 0 auto;
    list-style: none;
    text-align: center;
    position: relative;
    z-index: 1;
}

.portfolio .portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    margin: 0 10px;
    line-height: 1;
    transition: all 0.3s ease-in-out;
    padding: 15px 25px;
    background: var(--primary-green);
    border-radius: 0 17px;
    color: rgba(255, 255, 255, .5);
}

.portfolio .portfolio-flters li:hover,
.portfolio .portfolio-flters li.filter-active {
    color: var(--white-color);
}

.portfolio .portfolio-flters li:first-child {
    margin-left: 0;
}

.portfolio .portfolio-flters li:last-child {
    margin-right: 0;
}

@media (max-width: 575px) {
    .portfolio .portfolio-flters li {
        font-size: 14px;
    }
}

.portfolio .portfolio-item {
    width: 20%;
    /* margin-top: 24px; */
}

.portfolio .portfolio-wrap {
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0 17px;
    height: 100%;
    overflow: hidden;
    transition: 0.3s;
    position: relative;
}

.portfolio .portfolio-wrap img {
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
    display: flex;
    transition: 0.3s;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.portfolio .portfolio-wrap:hover {
    /* border: 2px solid var(--primary-color); */
}

.portfolio .portfolio-wrap .portfolio-info {
    background: linear-gradient(0deg, var(--primary-color), rgba(var(--primary-color-rgb), 0));
    position: absolute;
    z-index: 2;
    display: none;
    width: 100%;
    top: 0;
    height: 100%;
    transition: 0.3s;
    border-radius: 0 17px;
    color: var(--white-color);
    font-size: 20px;
}

/* .portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
} */

.portfolio .portfolio-wrap .portfolio-info a {
    color: #ffffff;
    transition: 0.3s;
    font-size: 60px;
    text-align: center;
}

.portfolio .portfolio-wrap .portfolio-info a:hover {
    color: #ffffff;
}

/* .portfolio .portfolio-wrap .portfolio-info p {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 0;
    padding-right: 50px;
} */

.portfolio .portfolio-wrap:hover img {
    transform: scale(1.1);
}

.portfolio .portfolio-wrap .portfolio-info .project-btn a {
    color: #fff;
}

/*--------------------------------------------------------------
  # Portfolio Details Section
  --------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
    width: 48px;
    height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 24px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
    background-color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 575px) {

    .portfolio-details .swiper-button-prev,
    .portfolio-details .swiper-button-next {
        display: none;
    }
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.portfolio-details .portfolio-info h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #10bab9;
    left: 0;
    bottom: 0;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
    font-size: 16px;
}

.portfolio-details .portfolio-info ul strong {
    text-transform: uppercase;
    font-weight: 400;
    color: #9c9c9c;
    font-size: 12px;
}

.portfolio-details .portfolio-info .btn-visit {
    padding: 8px 40px;
    background: #eb4680;
    color: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
    background: #eb4680;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}

.project-deatils-aside .testimonial-item {
    padding: 30px 30px 0 30px;
    position: relative;
    background: white;
    height: 100%;
    margin-bottom: 50px;
}

.project-deatils-aside .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 2px;
    border: 6px solid #fff;
    float: left;
    margin: 0 10px 0 0;
}

.project-deatils-aside .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0 5px 0;
    padding-top: 20px;
}

.project-deatils-aside .testimonial-item h4 {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.project-deatils-aside .testimonial-item .quote-icon-left,
.project-deatils-aside .testimonial-item .quote-icon-right {
    color: #10bab9;
    font-size: 26px;
    line-height: 0;
}

.project-deatils-aside .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.project-deatils-aside .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.project-deatils-aside .testimonial-item p {
    font-style: italic;
    margin: 0 0 15px 0 0 0;
    padding: 0;
}

/************************* 
   09. Portfolio section
*************************/
/* .portfolio-section {
    background: #fff;
    padding: 80px 0;
}

.portfolio-section.inner {
    padding: 129px 0 109px;
}

.portfolio-section .section-title {
    padding: 0 0 60px;
}

.single-portfolio-box.inner {
    margin-bottom: 20px;
}

.portfolio-thumb {
    position: relative;
    overflow: hidden;
}

.portfolio-thumb img {
    width: 100%;
    transition: 0.5s;
}

.single-portfolio-box:hover .portfolio-thumb img {
    transform: scale(1.1);
}

.portfolio-content {
    background: #fff;
    padding: 34px 39px 38px;
    position: absolute;
    bottom: -253px;
    left: 0;
    right: 0;
    margin: auto;
    transition: 0.5s;
}

.single-portfolio-box:hover .portfolio-content {
    bottom: 0;
}

.portfolio-content h4 {
    font-size: 13px;
    color: #7eb63b;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 0;
    margin-bottom: -17px;
}

.portfolio-content h1 a {
    font-size: 22px;
    font-weight: 500;
    display: inline-block;
    font-family: 'Rubik';
    padding-bottom: 11px;
    transition: 0.5s;
}

.portfolio-content h1 a:hover {
    color: #7EB63B;
}

.portfolio-button a {
    background: #7EB63B;
    color: #fff;
    padding: 12px 22px;
    display: inline-block;
    border-radius: 5px;
    font-size: 14px;
    text-transform: uppercase;
    border: 1px solid #7EB63B;
    position: relative;
    z-index: 1;
}

.portfolio-button a:hover {
    color: #7EB63B;
}

.portfolio-button a:before {
    position: absolute;
    content: "";
    background: #fff;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transform: scale(0);
    z-index: -1;
    transition: 0.5s;
    border-radius: 5px;
}

.portfolio-button a:hover:before {
    transform: scale(1);
}

.portfolio-button i {
    font-size: 15px;
    display: inline-block;
    margin-left: 15px;
    background: #fff;
    color: #7EB63B;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 50px;
    text-align: center;
    transition: 0.5s;
}

.portfolio-button a:hover i {
    color: #fff;
    background: #7EB63B;
}

.portfolio-box-wrap .popup img {
    width: 100%;
    height: 285px;
}

.portfolio-box-wrap .popup a {
    position: relative;
}

.portfolio-box-wrap a:hover span {
    opacity: 1;
}

.portfolio-box-wrap .popup span {
    width: 100%;
    height: 285px;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-image: linear-gradient(180deg, #00000000 0%, #000000BF 100%);
    opacity: 0;
    transition: .5s all;
    font-size: 18px;
    line-height: 28px;
    color: #fff;
} */

/************************* 
  17. Portfolio Page
*************************/
/* .portfolio-section-wrap .portfolio-box-wrap .popup span,
.portfolio-section-wrap .portfolio-box-wrap .popup img {
    height: 350px;
} */

/*=====================================
 <--start-Testimonials-section-->
======================================*/
.testimonail-section {
    padding: 100px 0;
    position: relative;
    /* background-color: var(--primary-dark-yellow); */
    z-index: 1;
}

.testimonail-section .section-title h4 {
    color: var(--primary-color);
}

.testimonail-section .section-title h1 {
    color: #000;
    font-size: 40px;
}

.testimonail-section .testimonial-one__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../image/videobackground1.png);
    opacity: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    mix-blend-mode: luminosity;
    z-index: -1;
}

.testimonail-section .section-title {
    padding: 0 0 60px;
}

.testimonials-box {
    background: var(--primary-yellow);
    padding: 26px 41px 27px;
    border-radius: 5px;
    margin: 0 13px 0;
    transition: all .5s;
    transform: translateY(0);
}

.testimonail-section .owl-carousel .owl-stage-outer {
    overflow: visible;
    /* overflow-x: hidden; */
}

.testimonail-section .owl-item {
    opacity: 0;
    transition: .5s;
}

.testimonail-section .owl-item.active {
    opacity: 1;
}

/* .owl-carousel .owl-stage-outer::-webkit-scrollbar {
    width: 0;
} */

.testimonials-rating ul li {
    display: inline-block;
}

.testimonials-rating ul li i {
    display: inline-block;
    color: var(--primary-green);
    margin-right: 4px;
}

.testimonials-box .testimonials-desc p {
    font-size: 16px;
    line-height: 24px;
    margin: 27px 0 29px;
    height: 4.5em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
}

.testimonials-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonials-author-content h4 {
    font-size: 20px;
    line-height: 24px;
}

.testimonials-author-content p {
    font-size: 14px;
    color: #999;
}

.testimonials-quote {
    float: right;
    top: -42px;
    position: relative;
    right: 10px;
}

.testimonials-quote i {
    font-size: 36px;
    display: inline-block;
    opacity: 0.2;
    transition: 1s;
    color: var(--primary-dark-yellow);
}

.owl-dots {
    position: relative;
    text-align: center;
}

.owl-dot {
    display: inline-block;
    border: 2px solid var(--primary-yellow);
    width: 13px;
    height: 13px;
    border-radius: 50%;
    margin-top: 48px;
    margin-right: 6px;
    background-color: var(--primary-yellow);
    padding: 0;
}

.owl-dot.active {
    display: inline-block;
    background: var(--primary-green);
    width: 13px;
    height: 13px;
    border-radius: 50%;
    margin-top: 11px;
    margin-right: 6px;
    border-color: var(--primary-green);
    /* border: transparent; */
}

.testimonials-box:hover {
    transform: translateY(-10px);
    box-shadow: 1px 0 16px 0 rgba(166, 190, 176, .3);
}

.testimonials-box .testimonials-quote i {
    color: var(--primary-dark-yellow);
    opacity: 1;
}

.testimonials-box:hover .testimonials-quote i {
    color: var(--primary-green);
    opacity: 1;
}

.testimonail-section .testimonail-link {
    font-size: 18px;
    margin-top: 36px;
}

.testimonail-section .testimonail-link a:hover {
    color: var(--primary-green);
}

/*=====================================
 <--start-blog-section-->
======================================*/
.blog-section {
    background: #F7F7F7;
    padding: 100px 0 94px;
}

.blog-section .section-title {
    padding: 0 0 60px;
}

.col-lg-6.blog-button-right {
    text-align: right;
}

.single-blog-box {
    border-radius: 10px;
    background-color: #ffffff;
    padding: 42px;
    position: relative;
}

.blog-thumb {
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    transition: 0.5s;
}

.single-blog-box:hover .blog-thumb img {
    transform: scale(1.1);
}

.meta-blog {
    position: absolute;
    top: 61%;
    left: 34%;
}

.meta-blog p {
    color: #7eb63b;
    font-size: 14px;
    filter: drop-shadow(-2.113px 4.532px 15px rgba(127, 127, 127, 0.1));
    background-color: #ffffff;
    display: inline-block;
    padding: 4px 22px;
    border-radius: 5px;
}

.blog-content {
    padding: 23px 0 0;
}

.blog-content h4 a {
    font-family: 'Rubik';
    font-size: 24px;
    color: #232323;
    font-weight: 600;
    display: inline-block;
    line-height: 35px;
    transition: 0.5s;
}

.single-blog-box:hover .blog-content h4 a {
    color: #7eb63b;
}

a.box-button {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    color: #232323;
    border-bottom: 1px solid #23232329;
    display: inline-block;
}

a.box-button:hover {
    border-bottom: 2px solid #7eb63b;
}

/*=====================================
 <--start-brand-section-->
======================================*/
.brand-section {
    padding: 0 0 100px;
    background: #F7F7F7;
}

.brand-title {
    margin-bottom: 46px;
}

.brand-title h4 {
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Rubik';
    font-weight: 500;
    position: relative;
}

.brand-title h4:before {
    position: absolute;
    content: "";
    width: 41%;
    height: 3px;
    top: 29px;
    right: 14px;
    background: #7eb63b;
    display: inline-block;
}

.brand-title h4:after {
    position: absolute;
    content: "";
    width: 41%;
    height: 3px;
    top: 29px;
    left: 14px;
    background: #7eb63b;
    display: inline-block;
}

.brand-thumb {
    background: #fff;
    text-align: center;
    padding: 34px 50px 35px;
    display: inline-block;
    border-radius: 5px;
}


/*=====================================
 <--start-footer-secion-->
======================================*/
.footer-section {
    /* background-color: #19486A; */
    /* background: linear-gradient(180deg, #0A0F1D, #273145); */
    background: url(../image/footer-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 40px 0 40px;
}

.footer-section .container {
    max-width: 100%;
    padding: 0 160px;
}

.footer-section .footer-item {
    padding: 0;
    align-items: center;
    justify-content: space-between;
}

.footer-section .footer-image {
    width: 280px;
}

.footer-section .footer-info {
    margin-bottom: 20px;
    display: flex;
    align-items: start;
}

.footer-section .footer-info:last-child {
    margin-bottom: 40px;
}

.footer-section .footer-info i {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #fff;
    text-align: center;
    line-height: 48px;
    color: #fff;
    font-size: 14px;
    margin-right: 20px;
}

.footer-section .footer-info i img {
    width: 12px;
}

.footer-section .footer-info a {
    font-size: 16px;
    color: #fff;
    font-family: HarmonyOSBold;
    margin-right: 32px;
    text-align: left;
    text-transform: lowercase;
}

.footer-section .footer-info.sec-footer a {
    margin-right: 0;
}

.footer-section .footer-info .first-span {
    font-family: HarmonyOSRegular;
    color: rgba(255, 255, 255, .7);
    margin-right: 12px;
    white-space: nowrap;
}

.footer-section .email-info .email-a div {
    margin-right: 32px;
}

.footer-section .email-info .email-a a {
    margin-right: 0;
}

.footer-section .email-info .email-a span {
    color: #fff;
}

.footer-section .footer-line {
    /* border-top: 1px solid rgba(255, 255, 255, .5); */
    text-align: center;
    /* padding: 24px 0; */
    color: rgba(255, 255, 255, .5);
    font-size: 16px;
    font-family: HarmonyOSRegular;
}

.footer-widget-desc p {
    color: #fff;
    padding: 12px 0 22px;
    width: 75%;
    opacity: 0.800;
}

.footer-socail-ion ul li {
    display: inline-block;
    color: #fff;
}

li.text {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.footer-socail-ion ul li i {
    display: inline-block;
    color: #fff;
    font-size: 15px;
    margin-left: 11px;
    transition: 0.5s;
}

.footer-socail-ion ul li i:hover {
    color: #7EB63B;
}

.footer-section .solar-conatct-box {
    padding: 24px 0 0 0;
}

.footer-section .solar-contact-content p {
    color: #fff;
}

.footer-section .solar-contact-content a {
    color: #fff;
}

.footer-widget-content {
    margin-top: -22px;
}

.footer-widget-title {
    margin-bottom: 9px;
}

.footer-widget-title h4 {
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
}

.footer-widget-menu ul li a {
    opacity: 0.800;
    font-size: 16px;
    line-height: 47px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins";
    transition: 0.5s;
}

.footer-widget-menu ul li a:hover {
    color: #7DB53B;
}

.footer-widget-desc-2 p {
    opacity: 0.800;
    color: #ffffff;
    line-height: 27px;
}

.newsletter-box {
    margin: 28px 0 19px;
}

.newsletter-box input {
    background: transparent;
    border: 1px solid #3A4034;
    height: 45px;
    outline: 0;
    padding: 0 22px;
    width: 100%;
    border-radius: 5px;
    color: #ffff;
}

.newsletter-submit-button button {
    background: #7DB53B;
    border: transparent;
    width: 100%;
    height: 45px;
    border-radius: 5px;
    color: #fff;
}

.copyright-area {
    border-top: 1px solid #3A4034;
    margin-top: 99px;
}

.copyright-area p {
    opacity: 0.800;
    font-size: 16px;
    line-height: 40px;
    color: #ffffff;
    margin-top: 25px;
}

.copyright-area a {
    display: inline-block;
    color: #7DB53B;
}


/*=====================================
 <--start-Slider-secion-Home-2-->
======================================*/
.slider-section.style-home-2 {
    background: url(../image/slider1-h-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.slider-section.style-home-2 .slider-content p {
    color: #666666;
    padding: 28px 0 0px;
}

.slider-section.style-home-2.slider-2 {
    background: url(../image/slider2-h-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.slider-section.style-home-2.slider-2 p.style-home-2 {
    color: #fff !important;
    width: 55%;
    font-size: 18px;
    opacity: 0.902;
    line-height: 28px;
}

.slider-video-button {
    float: right;
    top: -215px;
    position: relative;
    left: -28%;
}

.slider-video-button i {
    display: inline-block;
    color: #7EB53D;
    background: #ffff;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    font-size: 23px;
    -webkit-animation: ripple-white 1s linear infinite;
    animation: ripple-blue 1s linear infinite;
    -webkit-transition: .5s;
}

@-webkit-keyframes ripple-blue {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3)
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0)
    }
}

@keyframes ripple-blue {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3)
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0)
    }
}

/*=====================================
 <--start-About-secion-Home-2-->
======================================*/
.about-section.style-home-2 {
    padding: 129px 0 124px;
}

.about-thumb.style-home-2 {
    margin-left: 8px;
}

/*=====================================
 <--start-service-secion-Home-2-->
======================================*/
.service-section {
    background: #F8F8F8;
    padding: 105px 0 108px;
}

.service-section .section-title {
    padding: 0 0 60px;
}

.single-service-box {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    padding-bottom: 34px;
    margin-bottom: 20px;
}

.service-thumb {
    overflow: hidden;
}

.service-thumb img {
    width: 100%;
    border-radius: 10px;
    transition: 0.5s;
}

.single-service-box:hover .service-thumb img {
    transform: scale(1.1);
}

.service-icon {
    background: #000;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50px;
    position: relative;
    left: 125px;
    top: -32px;
    margin-bottom: -4px;
    transition: 0.5s;
}

.single-service-box:hover .service-icon {
    background: #7eb63b;
}

.service-content h6 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 0;
    margin-bottom: -6px;
}

.service-content h4 a {
    font-size: 24px;
    font-weight: 600;
    font-family: 'Rubik';
    display: inline-block;
    transition: 0.5s;
}

.single-service-box:hover .service-content h4 a {
    color: #7eb63b;
}

.service-content p {
    padding: 6px 0 23px;
}

/*===========================================
 <--start-working-process-secion-Home-2-->
=============================================*/
.working-process-section {
    padding: 105px 0 125px;
    background: #F7F7F7;
}

.working-process-section .section-title {
    padding: 0 0 81px;
}

.working-process-box {
    text-align: center;
}

.working-process-thumb {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.working-process-thumb:before {
    position: absolute;
    content: "";
    left: -19px;
    top: -20px;
    width: 190px;
    height: 190px;
    line-height: 190px;
    border-radius: 50%;
    border: 2px dashed #7eb63b;
    transition: .5s;
    opacity: 0.5;
    z-index: -1;
}

.working-process-box:hover .working-process-thumb:before {
    opacity: 1;
    -webkit-animation-name: rotateme;
    -webkit-animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
}

.working-process-number {
    position: absolute;
    right: -42px;
    top: 55px;
    transition: 0.5s;
    opacity: 0;
}

.working-process-box:hover .working-process-number {
    right: -30px;
    top: 3px;
    opacity: 1;
}

.working-process-number span {
    background: #7eb63b;
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50px;
    color: #ffff;
}

.working-porcess-content h4 {
    font-size: 20px;
    margin-top: 42px;
}

.working-porcess-content p {
    width: 90%;
    margin: auto;
    margin-top: -7px;
}


/*===========================================
 <--start-working-process-secion-Home-2-->
=============================================*/
.testimonail-section.style-home-2 {
    padding: 128px 0 126px;
}

.testimonail-section.style-home-2 .owl-dot {
    left: 38%;
    position: relative;
    bottom: 112px;
}

.testimonail-section.style-home-2 .testimonail-section .section-title {
    padding: 0 0 58px;
}

.testimnials-thumb {
    position: relative;
    margin-left: 45px;
}

/*===========================================
 <--start-blog-section-Home-2-->
=============================================*/
.blog-section.style-home-2 {
    padding: 98px 0 130px;
}

.blog-section.style-home-2.blog-grid {
    padding: 130px 0 107px;
}

.blog-section.style-home-2.blog-2column {
    padding: 129px 0 106px;
}

.single-blog-box-2 {
    background: #fff;
    padding: 21px;
    border-radius: 8px;
}

.single-blog-box-2.blog-grid {
    margin-bottom: 24px;
}

.blog-thumb-2 {
    overflow: hidden;
}

.blog-thumb-2 img {
    width: 100%;
    transition: 0.5s;
}

.single-blog-box-2:hover .blog-thumb-2 img {
    transform: scale(1.1);
}

.blog-content-2 {
    display: inline-block;
    padding: 13px 0 22px;
}

.blog-content-2 h4 a {
    display: inline-block;
    font-size: 24px;
    font-family: 'Rubik';
    font-weight: 600;
    line-height: 33px;
    border-bottom: 1px solid #E9E9E9;
    padding-bottom: 25px;
    transition: 0.5s;
}

.single-blog-box-2:hover .blog-content-2 h4 a {
    color: #7eb63b;
}

.meta-blog-2 {
    display: inline-block;
    padding-left: 27px;
    padding-top: 26px;
}

.meta-blog-2 p {
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins';
}



/*===========================================
 <--start-breadcumb-sectio-->
=============================================*/
.breadcumb-section {
    background: url(../image/bradcumb-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 93px 0 108px;
}

.breadcumb-title h1 {
    font-size: 46px;
    color: #fff;
    margin-bottom: 8px;
}

.breadcumb-content ul li {
    display: inline-block;
    color: #fff;
    font-family: 'Poppins';
    margin-right: 6px;
}

.breadcumb-content ul li a {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-family: 'Poppins';
}

.breadcumb-content ul li i {
    display: inline-block;
    font-size: 15px;
}


/*================================
 <--start-history-section-->
=================================*/
.history-section {
    background: #F7F7F7;
    padding: 106px 0 59px;
}

.history-section .section-title {
    padding: 0 0 67px;
}

.history-box {
    margin-bottom: 69px;
}

.history-box.upper {
    margin-top: -178px;
    padding: 0 45px 0;
}

.history-box.upper .history-content {
    width: 93%;
}

.history-thumb img {
    width: 100%;
}

.history-content {
    border-radius: 5px;
    background-color: #ffffff;
    width: 82%;
    margin: auto;
    padding: 32px 33px 33px;
    margin-top: -50px;
    z-index: 1;
    position: relative;
}

.history-content span {
    font-size: 16px;
    color: #7eb63b;
    font-family: "Rubik";
    display: inline-block;
}

.history-content h4 {
    font-size: 22px;
    color: #232323;
    font-weight: 600;
    font-family: "Rubik";
    margin-top: -9px;
    margin-bottom: 3px;
}

/*================================
 <--start-faqs-section-->
=================================*/
.faqs-section {
    padding: 111px 0 113px;
}

.faqs-section .section-title {
    padding: 0 0 60px;
}

p.center {
    width: 65%;
    margin: auto;
    padding: 26px 0 0;
}

.accordion li {
    list-style: none;
    padding: 2px 0px 15px;
    position: relative;
    z-index: 1;
}

.accordion li:before {
    position: absolute;
    content: "";
    z-index: -1;
    right: 20px;
    top: 16px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    border-radius: 50%;
    background-color: #7EB63B;
}

.accordion li a {
    position: relative;
    width: 100%;
    display: block;
    cursor: pointer;
    font-weight: 500;
    font-size: 17px;
    color: #232323 !important;
    background-color: transparent;
    border: 1px solid #F1F1F1;
    padding: 14px 20px 14px 30px;
    border-radius: 5px;
    z-index: 1;
    font-family: 'Rubik';
}

.accordion li p {
    display: none;
    font-size: 16px;
    padding: 25px 20px 25px 30px;
    margin: 0;
    background: rgba(30, 71, 153, .1);
    backdrop-filter: blur(1.9px);
    overflow: hidden;
    border-radius: 0 0 5px 5px;
}

.accordion a:before {
    width: 2px;
    height: 10px;
    background: #fff;
    position: absolute;
    right: 32px;
    content: " ";
    top: 22px;
    transform: rotate(0deg);
    transition: all 0.2s ease-in-out;
}

.accordion a:after {
    width: 10px;
    height: 2px;
    background: #fff;
    position: absolute;
    right: 28px;
    content: " ";
    top: 26px;
    transition: all 0.2s ease-in-out;
}

.accordion a.active:after {
    transform: rotate(0deg);
    -webkit-transition: all 0.2s ease-in-out;
    background: #fff;
}

.accordion a.active:before {
    display: none;
}

.accordion a.active {
    color: #fff !important;
    border: 1px solid #7EB63B !important;
    background: #7EB63B !important;
    border-radius: 5px 5px 0 0;
}

/*================================
 <--start-Service-detaisl-section-->
=================================*/
.service-details {
    background: #F5F5F5;
    padding: 100px 0 100px;
    position: relative;
}

.sidebar-widget {
    margin-bottom: 30px;
}

.sidebar-widget form {
    position: relative;
}

.sidebar-widget input {
    height: 60px;
    width: 100%;
    background: #ffffff;
    border: 2px solid rgba(6, 36, 97, 0.10196078431372549);
    border-radius: 4px;
    padding: 0 20px 0;
    outline: 0;
}

.sidebar-widget button.subscribe-btn {
    height: 60px;
    width: 60px;
    border: 0;
    border-radius: 0 4px 4px 0;
    background: #7EB63B;
    color: #fff;
    position: absolute;
    right: 0;
}

.widget-sidebar-box {
    padding: 30px 30px 30px;
    background: #ffffff;
    margin-bottom: 30px;
    border-radius: 4px;
}

h4.sidebar-title {
    font-size: 22px;
    padding: 0 0 25px;
    position: relative;
    z-index: 1;
}

h4.sidebar-title:before {
    position: absolute;
    content: "";
    left: -29px;
    top: 0;
    width: 3px;
    height: 30px;
    background: #7EB63B;
    border-radius: 5px;
}

ul.sidebar-menu {
    border-top: 2px solid rgba(6, 36, 97, 0.10196078431372549);
    padding: 30px 0 0;
}

ul.sidebar-menu li {
    padding: 13px 15px 13px;
    display: block;
    border: 1px solid rgba(19, 17, 37, 0.1);
    margin-bottom: 10px;
    border-radius: 4px;
    transition: .5s;
}

ul.sidebar-menu li a {
    font-size: 16px;
    color: #062461;
    font-weight: 400;
    transition: .5s;
}

ul.sidebar-menu li a i {
    background: #E5E8EF;
    border-radius: 20px;
    font-size: 16px;
    padding: 0px 3px;
    margin-right: 5px;
    transition: .5s;
}

ul.sidebar-menu li:hover {
    background: #F6F6F6;
    border: 1px solid #f6f6f6;
}

ul.sidebar-menu li:hover a i {
    background: #7EB63B;
    color: #fff;
}

.widget-download-box {
    padding: 30px 30px 15px;
    background: #ffffff;
    margin-bottom: 30px;
    border-radius: 4px;
}

.widget-download-box ul li a {
    background: #7EB63B;
    color: #fff;
    display: inline-block;
    padding: 14px 36px;
    font-size: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.widget-download-box ul li i {
    font-size: 15px;
    display: inline-block;
    margin-right: 6px;
    color: #fff;
}


/*sidebar quick contact*/

.widget-sidebar-quick-contact {
    background: url(../image/sidebar-bg.jpg);
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 49px 0 49px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.logo-thumb img {
    width: 48%;
}

h3.widget-title2 {
    padding: 3px 0 0px;
    font-size: 26px;
    color: #fff;
    display: inline-block;
    font-weight: 600;
    margin-bottom: -13px;
}

h5.sidebar-title {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

h5.sidebar-title:before {
    position: absolute;
    content: "";
    left: 0;
    right: 168px;
    top: 28px;
    margin: auto;
    width: 96px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
}

h5.sidebar-title:after {
    position: absolute;
    content: "";
    left: 164px;
    right: 0;
    top: 30px;
    margin: auto;
    width: 96px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
}

h5.sidebar-title2 {
    font-size: 24px;
    color: #fff;
    margin-top: 0;
    padding: 1px 0 30px;
}

.widget-button a {
    padding: 12px 35px;
    background: #7EB63B;
    color: #fff;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.widget-button a:hover {
    color: #7EB63B;
}

.widget-button a:before {
    position: absolute;
    content: "";
    z-index: -1;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #fff;
    transition: .5s;
    border-radius: 4px;
}

.widget-button a:hover:before {
    width: 100%;
    left: 0;
}

h2.accordion-title {
    font-size: 30px;
    margin-bottom: 23px;
}

/*service details right */

.service-dtls-all-items {
    padding-left: 85px;
}

h2.service-title {
    font-size: 30px;
    line-height: 50px;
    padding: 10px 0 10px;
}

p.service-dtls-desc {
    margin-bottom: 23px;
    text-align: justify;
}

p.service-dtls-desc2 {
    padding: 0 0 31px;
}

/*service dtls box*/

.service-dtls-box {
    display: flex;
    align-items: center;
    background: #f6f6f6;
    border-radius: 5px;
}

.sevice-dtls-content {
    padding-left: 25px;
}

.sevice-dtls-content h4 {
    font-size: 20px;
    line-height: 44px;
}

/*service dtls pannel*/

.service-dtls-itm-pannel {
    border-top: 1px solid rgba(6, 36, 98, 0.10196078431372549);
    border-bottom: 1px solid rgba(6, 36, 98, 0.10196078431372549);
    padding: 25px 0 37px;
    margin: 40px 0 20px 0;
}

.service-dtls-items ul li {
    display: block;
    list-style: none;
    padding: 12px 0 0;
    color: #062461;
    font-weight: 400;
}

.service-dtls-items ul li i {
    background: #E5E8EF;
    border-radius: 20px;
    color: #062461;
    font-size: 15px;
    padding: 0px 3px;
    line-height: 20px;
    margin-right: 5px;
    transition: .5s;
    display: inline-block;
}

.service-dtls-items ul li:hover i {
    background: #7EB63B;
    color: #fff;
}

.service-dtls-cont h5 {
    font-size: 16px;
    color: #7EB63B;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 22px;
}

.service-dtls-cont h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    padding: 6px 0 0;
}


/*================================
 <--start-Blog-section-->
=================================*/

.blogs-section {
    padding: 100px 0 100px;
    background: #F8F8F8;
}

.blogs-section.style-two {
    background: #F5F5F5;
}

.blogs-section.style-two .blog-content {
    border: transparent;
}

.row.blogs-pr {
    padding-right: 90px;
}

.blogs-section .blog-content {
    padding: 35px 35px 18px;
    transition: .5s;
    background: #fff;
    border-radius: 5px;
    border: 1px solid rgba(6, 36, 98, 0.1);
    border-top: 0;
}

.blogs-section h2.blog-title a {
    font-size: 28px;
    font-weight: 700;
}

.style-two.blogs-section h2.blog-title a {
    font-size: 22px;
    font-weight: 700;
}

p.blog-desc {
    padding: 15px 0 38px;
}

ul.blog-author li {
    list-style: none;
    display: inline-block;
    margin-right: 37px;
    font-weight: 500;
    font-family: 'Inter';
    color: #062462;
}

ul.blog-author li i {
    color: #7EB63B;
    margin-right: 7px;
}

ul.blog-author li span {
    position: relative;
    z-index: 1;
}

ul.blog-author li span:before {
    position: absolute;
    content: "";
    right: -20px;
    top: 3px;
    width: 1px;
    height: 12px;
    background-color: rgba(7, 72, 131, 0.5019607843137255);
}


/*blog Post
================*/

.blogs-section .widget-sidebar-box {
    padding: 13px 30px 30px;
}

.upp.widget-sidebar-box {
    padding: 13px 30px 15px;
}

.blogs-section h4.sidebar-title.upp {
    padding: 0 0 24px;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(6, 36, 97, 0.10196078431372549);
}

.widget-recent-post {
    border-bottom: 1px solid #E8E8E8;
    padding: 0 0 20px;
    margin-bottom: 20px;
}

.widget-recent-post.upper {
    border-bottom: 0;
    margin-bottom: 0;
    padding: 0;
}

.rpost-thumb {
    margin-right: 20px;
}

.rpost-content h4 a {
    font-size: 15px;
    font-weight: 500;
    line-height: 26px;
    color: #062461;
    display: inline-block;
    transition: .5s;
    font-family: 'Inter';
}


/* Blog tag
==================*/

.tag-item ul li {
    display: inline-block;
    list-style: none;
}

li.item1 {
    padding: 15px 0 0 !important;
}

.tag-item a {
    background: #f6f6f6;
    padding: 6px 20px;
    display: inline-block;
    margin: 0px 6px 15px 0;
    border: 0;
    font-weight: 400;
    color: #062461;
    transition: .5s;
    border-radius: 30px;
    position: relative;
    z-index: 1;
}

.tag-item a:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #7EB63B;
    border-radius: 5px 30px 30px 30px;
    z-index: -1;
    transform: scale(0);
    transition: .5s;
}

.tag-item a:hover:before {
    transform: scale(1);
}

.tag-item a:hover {
    color: #fff;
}

/*Blog Details
=================================*/

.single-blog-dtls-box ul.blog-author {
    padding: 8px 0 0;
}

.single-blog-dtls-box .blog-thumb:hover:before {
    width: 100%;
    left: 0;
    visibility: visible;
}

.single-blog-dtls-box .meta-blog a:hover:before {
    transform: scale(1);
}

.blogs-section .single-blog-dtls-box .blog-content {
    padding: 35px 35px 25px;
}

p.blog-desc2 {
    padding: 15px 0 0px;
}

/*Blog Quote
=================*/

.blog-quote {
    background: #f6f6f6;
    padding: 24px 35px 43px;
    border-left: 4px solid #7EB63B;
    border-radius: 2px;
    margin: 25px 0 47px;
}

img.qte-icon {
    float: left;
    margin-right: 20px;
}

.blog-quote p {
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    color: #062462;
}

.blog-dtls-thumb {
    padding: 20px 0 15px;
}

/*Product List*/

ul.product-list {
    padding: 5px 0 0;
}

ul.product-list li {
    display: block;
    list-style: none;
    color: #062462;
    padding: 0 0 8px;
}

ul.product-list li i {
    color: #7EB63B;
    font-size: 22px;
    position: relative;
    top: 5px;
    margin-right: 6px;
}

/*Blog Social Share
=======================*/

.blogs-social-share {
    background: #f6f6f6;
    padding: 20px 20px 25px 30px;
    margin: 35px 0 40px;
}

span.social-text {
    font-size: 17px;
    font-weight: 500;
    font-family: 'Inter';
    color: #062462;
}

ul.social-share {
    float: right;
}

ul.social-share li {
    display: inline-block;
    list-style: none;
}

ul.social-share li a {
    height: 32px;
    width: 32px;
    line-height: 32px;
    background: #fff;
    text-align: center;
    display: inline-block;
    border-radius: 3px;
    font-size: 14px;
    color: #062462;
    margin-right: 7px;
    position: relative;
    z-index: 1;
}

ul.social-share li a:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #7EB63B;
    border-radius: 3px;
    z-index: -1;
    transform: scale(0);
    transition: .5s;
}

ul.social-share li a:hover:before {
    transform: scale(1);
}

ul.social-share li a:hover {
    color: #fff;
}

/*Post Comment
=================*/

.blog-post-comment {
    border: 1px solid rgba(6, 36, 98, 0.1);
    padding: 34px 30px 26px;
    border-radius: 5px;
}

h3.blog-comment-title {
    font-size: 26px;
    font-weight: 700;
    padding: 0 0 34px;
}

.blog-post-comment .post-comment {
    border-bottom: 1px solid rgba(6, 36, 98, 0.1);
    margin-bottom: 30px;
    padding: 0 0 11px;
}

.blog-post-comment .post-comment2 {
    margin-left: 88px;
}

.blog-post-comment h4.post-title {
    font-size: 16px;
    font-weight: 600;
}

.post-comment-thumb {
    float: left;
    margin-right: 32px;
}

.blog-post-comment h4.post-title span {
    font-size: 14px;
    color: #7EB63B;
    font-weight: 400;
    font-family: 'Inter';
    padding-left: 25px;
}

.blog-post-comment .post-title span:before {
    position: absolute;
    content: "";
    left: 5px;
    top: 9px;
    height: 1px;
    width: 10px;
    background: #7EB63B;
}

.blog-post-comment span.rights-reply {
    float: right;
    font-weight: 500;
    color: #062462;
    position: relative;
    top: -60px;
    cursor: pointer;
    left: -32px;
}

/*Contact Form
======================*/

.contact-form-box3 {
    padding: 33px 30px 50px;
    border: 1px solid rgba(6, 36, 98, 0.1);
    margin: 30px 0 0;
    border-radius: 5px;
}

.contact-form-box3 .form-box input {
    background-color: #fff;
    border: 0;
}

.contact-form-box3 .form-box textarea {
    background-color: #ffff;
    border: 0;
    width: 100%;
    outline: 0;
    padding: 20px 22px;
}

.contact-form.style-two button {
    background: #7EB63B;
    border: transparent;
    color: #fff;
    padding: 9px 21px;
    margin-top: 20px;
    border-radius: 5px;
}



/*==================================
<---contact-information-section--->
=================================*/



.contact-information {
    padding: 113px 0 130px;
    background: #F8F8F8;
}

.contact-information .section-title {
    padding: 0 0 65px;
}

.contact-infor-box {
    background: #fff;
    border-radius: 10px;
    padding: 39px 37px 24px;
}

.contact-infor-icon i {
    font-size: 38px;
    display: inline-block;
    color: #7EB63B;
}

.contact-infor-content h4 {
    font-size: 20px;
    font-weight: 500;
    font-family: Rubik;
    margin-top: 0;
}

.contact-infor-content p {
    font-size: 17px;
    line-height: 30px;
}



/*==================================
<---contact-tow-section--->
=================================*/
.contact-form-tow {
    padding: 130px 0 130px;
}

.contact-form-content p {
    font-size: 18px;
    font-family: Roboto;
    padding: 19px 0 0;
}

.contact-form-tow .form-box input {
    width: 90%;
}

.contact-form-tow .form-box textarea {
    width: 95%;
    height: 130px;
    padding: 11px 22px;
    background: #F8F8F8;
    border: transparent;
    border-radius: 5px;
    outline: 0;
    margin-bottom: 35px;
}



/*=================================
<--shop-section-->
==================================*/
.shop-section {
    padding: 100px 0 100px;
    position: relative;
    z-index: 1;
}

.shop-section:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    z-index: -1;
    width: 36%;
    height: 100%;
    background: url(https://m100.ditsolution.net/html/images/resource/serv-dtls-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: center;
}

/* Shop Form*/

.form_box {
    padding: 11px 0 0;
}

p.form-text {
    display: inline-block;
    font-size: 16px;
    font-weight: 300;
    padding-right: 12px;
}

.form_box select {
    width: 30%;
    height: 38px;
    padding-left: 15px;
    background: #fff;
    border-radius: 4px;
    font-size: 16px;
    color: #062462;
    border: 1px solid rgba(6, 36, 98, 0.4);
    transition: .5s;
}

.upper.widget_search {
    margin-bottom: 40px;
    background: inherit;
    text-align: right;
}

.widget_search form {
    position: relative;
}

.upper.widget_search input {
    height: 60px;
    width: 73%;
    color: #062461;
    background: #f6f6f6;
    border: 0;
    border-radius: 4px 0px 0px 4px;
    padding: 0 20px 0;
    outline: 0;
}

button.icons {
    border: 0;
    font-size: 18px;
    color: #fff;
    padding: 1px 15px;
    position: absolute;
    right: 0;
    top: 0;
    height: 60px;
    width: 60px;
    background: #7EB63B;
    border-radius: 0 4px 4px 0;
}

/*Shop Left*/


.categories-title h4 {
    font-size: 22px;
    font-weight: 600;
    border-bottom: 2px solid rgba(6, 36, 97, 0.10196078431372549);
    padding: 0px 0 25px;
    margin: 0 0 30px;
    position: relative;
}

.categories-title h4:before {
    position: absolute;
    content: "";
    left: -35px;
    top: 0;
    height: 29px;
    width: 3px;
    background: #7EB63B;
}

.widget-check-box {
    padding: 40px 35px 18px;
    background: #fff;
    box-shadow: 0px 10px 50px rgba(231, 231, 231, 0.5);
    border-radius: 4px;
    margin-bottom: 30px;
}

/* Create a custom checkbox */

.checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 22px;
    width: 22px;
    border-radius: 2px;
    border: 1px solid rgba(6, 36, 98, 0.1);
    background-color: rgba(7, 72, 131, 0);
}

.widget-check {
    display: block;
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Inter';
    user-select: none;
    color: #062461;
}

.widget-check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

label.widget-check p {
    display: inline;
    float: right;
}

.widget-check:hover input~.checkmark {
    background-color: #ccc;
}


.widget-check input:checked~.checkmark {
    background-color: #7EB63B;
}


.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


.widget-check input:checked~.checkmark:after {
    display: block;
}


.widget-check .checkmark:after {
    left: 7px;
    top: 2px;
    width: 7px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
}




/*Product 
======================*/

.product-categories-box {
    padding: 30px 30px 20px;
    background: #fff;
    box-shadow: 0px 10px 50px rgba(231, 231, 231, 0.5);
    border-radius: 4px;
    margin-bottom: 30px;
}

.products-collection {
    margin-bottom: 20px;
}

.product-thumb {
    float: left;
    padding-right: 17px;
}

.products-title h6 {
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
}

.product-price span {
    font-size: 15px;
    font-weight: 400;
    color: #7EB63B;
}

.product-icon-list ul {
    line-height: 20px;
}

.product-icon-list ul li {
    list-style: none;
    display: inline-block;
    color: #FF8D06;
    letter-spacing: 4px;
    font-size: 14px;
}


/*Shop Right 
======================*/

.row.products {
    padding-left: 80px;
}

.single-products-box {
    text-align: center;
    margin-bottom: 30px;
}

.products-thumb {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(6, 36, 98, 0.1);
}

.products-thumb:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    opacity: 0.8;
    transition: .5s;
    border-radius: 4px 4px 0 0;
    background-color: #7eb63b;
}

.products-thumb img {
    width: 100%;
    transition: .5s;
    border-radius: 4px 4px 0 0;
}

.product-sale {
    position: absolute;
    top: 20px;
    left: 20px;
}

.product-sale span {
    padding: 4px 20px;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Inter';
    line-height: 24px;
    background: #7EB63B;
    color: #fff;
    border-radius: 4px;
    display: inline-block;
}

.product-thumb-icon a {
    font-size: 20px;
    width: 46px;
    height: 46px;
    line-height: 47px;
    border-radius: 50%;
    text-align: center;
    background: #fff;
    color: #0D0E14;
    transition: .7s;
    display: inline-block;
    position: relative;
    bottom: 40%;
    z-index: 1;
    overflow: hidden;
}

.product-thumb-icon a:before {
    position: absolute;
    content: "";
    z-index: -1;
    right: 0;
    height: 100%;
    width: 0;
    border-radius: 50%;
    background: #7EB63B;
    transition: .6s;
}

.product-thumb-icon a:nth-child(1) {
    position: absolute;
    left: 0;
    opacity: 0;
}

.product-thumb-icon a:nth-child(2) {
    position: absolute;
    right: 0;
    opacity: 0;
}

.product-content {
    padding: 23px 0 6px;
    border: 1px solid rgba(6, 36, 98, 0.1);
    border-top: 0;
    border-radius: 0 0 4px 4px;
}

ul.product-rating li {
    list-style: none;
    display: inline-block;
    color: #FF8D06;
    letter-spacing: .3em;
    font-size: 14px;
}

.product-title h2 {
    font-size: 18px;
    font-weight: 600;
    color: #062462;
    line-height: 17px;
}

.product-price p {
    font-size: 15px;
    font-family: 'Inter';
    padding: 14px 0 0px;
    color: #7EB63B;
}

.product-price p span {
    color: #616161;
    text-decoration: line-through;
    margin-left: 5px;
}

.product-thumb-icon a:hover {
    color: #fff;
}

.product-thumb-icon a:hover:before {
    left: 0;
    width: 100%;
}

.single-products-box:hover .products-thumb:before {
    height: 100%;
    top: 0;
}

.single-products-box:hover .product-thumb-icon a:nth-child(1) {
    opacity: 1;
    left: 92px;
}

.single-products-box:hover .product-thumb-icon a:nth-child(2) {
    opacity: 1;
    right: 92px;
}


/*pagination
==================*/

.pagination-menu {
    padding-top: 30px;
}

.pagination-menu ul {
    display: inline-block;
}

.pagination-menu ul li {
    display: inline-block;
    list-style: none;
    margin-right: 8px;
}

.pagination-menu ul li a {
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    border-radius: 50%;
    background: #F5F5F5;
    display: inline-block;
    color: #062462;
    font-size: 20px;
    position: relative;
    z-index: 1;
    transition: .5s;
}

.pagination-menu ul li a:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #7EB63B;
    border-radius: 50%;
    transform: scale(0);
    transition: .5s;
    z-index: -1;
}

.pagination-menu ul li a:hover:before {
    transform: scale(1);
}

.pagination-menu ul li a:hover {
    color: #fff;
}



/*==============================
<--product-details-->
===============================*/
.product-details {
    padding: 124px 0 100px;
    background: #F5F5F5;
}

.products-details-content {
    box-shadow: 0 0 27px rgba(88, 88, 88, 0.1);
    padding: 7px 33px 44px;
}

.products-title h4 {
    font-size: 20px;
    text-transform: uppercase;
}

.products-details-reting ul li {
    display: inline-block;
    font-size: 14px;
    margin-right: 4px;
    color: #FF9D34;
}

.products-details-reting ul li.rating-text {
    color: #222 !important;
    font-size: 16px !important;
}

.pirce-box {
    margin-top: 12px;
}

.pirce-box span {
    display: inline-block;
    margin-right: 11px;
}

.pirce-box span.price {
    font-size: 20px;
    color: #7EB63B;
    font-weight: 600;
}

.product-quantity {
    display: flex;
    align-items: center;
    margin-top: 12px;
}

.title h5 {
    font-size: 22px;
    margin-right: 22px;
    margin-top: -4px;
}

.point span {
    display: inline-block;
    cursor: pointer;
    margin: 0 -3px;
}

.minus {
    background: #7EB63B;
    display: inline-block;
    width: 45px;
    height: 41px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 41px;
    text-align: center;
    cursor: pointer;
}

.num {
    border: 1px solid #7EB63B;
    font-size: 22px;
    font-weight: 600;
    color: #222;
    width: 60px;
    height: 41px;
    line-height: 38px;
    text-align: center;
}

.plus {
    background: #7EB63B;
    display: inline-block;
    width: 45px;
    height: 41px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 41px;
    text-align: center;
    cursor: pointer;
}

.products-features span {
    font-size: 18px;
    color: #222;
    font-weight: 600;
    margin-top: 15px;
    display: inline-block;
    margin-bottom: 11px;
}

.products-features p {
    font-size: 16px;
    width: 85%;
    text-align: justify;
}

.chart-button a {
    display: inline-block;
    background: #7EB63B;
    color: #fff;
    padding: 7px 14px;
    border-radius: 5px;
    margin-right: 10px;
    margin-top: 37px;
}

.chart-button i {
    display: inline-block;
    font-size: 15px;
    margin-right: 7px;
}

.preview-thumbnail.nav-tabs li {
    width: 18%;
    margin-right: 2.5%;
}

.preview-thumbnail.nav-tabs li img {
    max-width: 100%;
    display: block;
}

.preview-thumbnail.nav-tabs li a {
    padding: 0;
    margin: 0;
}

.preview-thumbnail.nav-tabs li:last-of-type {
    margin-right: 0;
}

.tab-content {
    overflow: hidden;
}

.nav-tabs {
    border: 1px solid #dee2e6;
}

.tab-content img {
    width: 100%;
    -webkit-animation-name: opacity;
    animation-name: opacity;
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
}

.tooltip-inner {
    padding: 1.3em;
}

@-webkit-keyframes opacity {
    0% {
        opacity: 0;
        -webkit-transform: scale(3);
        transform: scale(3);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes opacity {
    0% {
        opacity: 0;
        -webkit-transform: scale(3);
        transform: scale(3);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.products-item-title {
    padding: 34px 0 24px;
}



/*=================================
<--portfolio-details-section-->
==================================*/

.portfolio-details {
    padding: 130px 0 127px;
}

h4.portfolio-details-title {
    font-size: 30px;
    padding: 0 0 18px;
    border-bottom: 1px solid #DAD9DF;
    width: 90%;
}

.portfolio-details-content {
    margin-top: 52px;
}

p.portfolio-details-desc {
    margin: 32px 0 -5px;
}

.product-details-infor {
    margin-top: 40px;
    border-top: 1px solid #DAD9DF;
    width: 90%;
}

.product-details-infor-content {
    margin-top: 32px;
}

.our-client {
    display: inline-block;
    margin-right: 65px;
}

.project-category p,
.work-date-line p,
.our-client p {
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'Poppins';
}

.project-category h4,
.work-date-line h4,
.our-client h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
}

.work-date-line {
    display: inline-block;
}

.project-category {
    display: inline-block;
    margin-left: 67px;
}

.product-details-button a {
    display: inline-block;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 2px;
    line-height: 28px;
    color: #7eb63b;
    font-weight: 500;
    font-family: "Rubik";
    border: 2px solid #7eb63b;
    width: 90%;
    text-align: center;
    padding: 13px 0;
    border-radius: 5px;
    margin-top: 35px;
}

.project-list-iteam {
    margin-top: 30px;
}

.project-list-iteam ul li i {
    display: inline-block;
    color: #7EB63B;
    margin-right: 10px;
    font-size: 18px;
}

.project-list-iteam ul li {
    margin-bottom: 10px;
}

.project-social-icon ul li {
    display: inline-block;
    margin-top: 20px;
}

.project-social-icon ul li i {
    display: inline-block;
    font-size: 16px;
    border: 1px solid #E6E6E6;
    width: 40px;
    height: 39px;
    text-align: center;
    line-height: 40px;
    border-radius: 5px;
    margin-right: 8px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.project-social-icon ul li i:hover {
    color: #fff;
}

.project-social-icon ul li i:after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    transform: scale(0);
    border-radius: 5px;
    background: #7EB63B;
    z-index: -1;
    transition: 0.5s;
}

.project-social-icon ul li i:hover:after {
    transform: scale(1);
}


/*==============================
<---blog-list-section--->
==============================*/

.blog-section.style-home-2.blog-list {
    padding: 129px 0 129px;
}

.single-blog-box-3 {
    background: #fff;
    padding: 35px;
    border-radius: 5px;
    margin-bottom: 29px;
}

.single-blog-thumb-3 {
    overflow: hidden;
}

.single-blog-thumb-3 img {
    width: 100%;
    transition: 0.5s;
}

.single-blog-box-3:hover .single-blog-thumb-3 img {
    transform: scale(1.1);
}

.blog-content-3 {
    padding: 28px 0 0;
}

.meta-blog-3 span {
    font-size: 14px;
    margin-right: 10px;
    display: inline-block;
}

.meta-blog-3 span i {
    color: #7eb63b;
    font-size: 13px;
    display: inline-block;
    margin-right: 9px;
}

a.blog-title-3 {
    font-size: 36px;
    display: inline-block;
    color: #232323;
    font-weight: 600;
    font-family: 'Rubik';
    line-height: 45px;
    text-transform: unset;
    padding: 14px 0 11px;
    transition: 0.5s;
}

.single-blog-box-3:hover a.blog-title-3 {
    color: #7eb63b;
}

p.blog-desc-3 {
    width: 92%;
    margin-bottom: 22px;
}

.blog-pages-intention {
    margin-top: 20px;
}

.blog-pages-intention ul li {
    display: inline-block;
    margin-right: 14px;
}

.blog-pages-intention ul li i {
    display: inline-block;
    background: #7EB63B;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    border-radius: 3px;
}

.blog-pages-intention ul li a {
    display: inline-block;
    font-size: 20px;
    border: 1px solid #7EB63B;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 3px;
    position: relative;
    z-index: 1;
}

.blog-pages-intention ul li a:hover {
    color: #fff;
}

.blog-pages-intention ul li a:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transform: scale(0);
    background: #7EB63B;
    border-radius: 3px;
    z-index: -1;
    transition: 0.5s;
}

.blog-pages-intention ul li a:hover:before {
    transform: scale(1.1);
}















/*** 
====================================================================
    Search Popup
====================================================================
***/
.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -540px;
    transform: translateY(-100%);
    background-color: rgba(0, 0, 0, 0.90);
    -webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* easeInOutQuint */
}

.search-popup {
    width: 100%;
}

.search-active .search-popup {
    transform: translateY(0%);
    margin-top: 0;
}

.search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-top: -200px;
    border-radius: 50%;
    text-align: center;
    background-color: #7EB63B;
    width: 70px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid #fff;
    border-top: 3px solid #fff;
    border-right: 3px solid #062462;
    border-left: 3px solid #062462;
    -webkit-transition: all 500ms ease;
    height: 70px;
    line-height: 70px;
    text-align: center;
}

.search-active .search-popup .close-search {
    visibility: visible;
    opacity: 1;
    top: 50%;
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.search-popup form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: -35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    background-color: #111111;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.search-active .search-popup form {
    transform: scaleX(1);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.search-popup .form-group {
    position: relative;
    margin: 0px;

    overflow: hidden;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 50px;
    color: #000000;
    height: 70px;
    width: 100%;
    padding: 10px 30px;
    background-color: #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 500;
    text-transform: capitalize;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
    position: absolute;
    right: 30px;
    top: 0px;
    height: 70px;
    line-height: 70px;
    background: transparent;
    text-align: center;
    font-size: 24px;
    color: #7EB63B;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    border: none;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
    color: #000000;
}

.search-popup .text-form {
    flex-grow: 1;
}

.search-popup .form-group textarea {
    /* flex-grow: 1; */
}

.search-popup input::placeholder,
.search-popup textarea::placeholder {
    color: #000000;
}

.search-popup .close-search.style-two {
    position: absolute;
    right: 25px;
    left: auto;
    color: #ffffff;
    width: auto;
    height: auto;
    top: 25px;
    margin: 0px;
    border: none;
    background: none !important;
    box-shadow: none !important;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.search-box-btn {
    display: inline-block;
    padding-left: 22px;
}

.search-box-btn i {
    display: inline-block;
    color: #fff;
    line-height: 30px;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    transition: .5s;
}

.upp.search-box-btn i {
    color: #9E9FA1;
}

.search-box-btn.search-box-outer span i {
    font-size: 20px;
    display: inline-block;
    color: #fff;
    padding-left: 17px;
    position: relative;
    z-index: 1;
}

.upp.search-box-btn.search-box-outer span i {
    color: #9E9FA1;
}

.search-box-btn.search-box-outer span i:after {
    position: absolute;
    content: "0";
    right: -10px;
    top: -4px;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    background: #7EB63B;
    color: #fff;
    border-radius: 50%;
    display: inline-block;
    font-size: 12px;
}

.flaticon-multiply:before {
    content: inherit;
}

button.close-search i {
    font-size: 25px;
    color: #fff;
    display: inline-block;
}


span.flaticon-multiply i {
    display: inline-block;
    color: #7EB63B;
}

.header-search-button.search-box-outer {
    padding: 0px 8px 0 0;
    display: inline-block;
}

.header-search-button.search-box-outer a {
    color: #062462;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 18px;
    background-color: rgba(21, 43, 99, 0.10196078431372549);
    display: inline-block;
}







/*
<!-- ============================================================== -->
<!--Scrollup Button Section -->
<!-- ============================================================== -->*/

.scroll-area {
    position: relative;
    z-index: 999;
}



.scroll-area .go-top {
    position: fixed;
    cursor: pointer;
    top: 0;
    right: 30px;
    color: #ffffff;
    background-image: -moz-linear-gradient(0deg, #d1651a 0%, #c1282a 100%);
    background-image: -webkit-linear-gradient(0deg, #d1651a 0%, #c1282a 100%);
    z-index: 9999;
    width: 45px;
    text-align: center;
    height: 45px;
    line-height: 42px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.9s ease-out 0s;
    -moz-transition: all 0.9s ease-out 0s;
    border-radius: 10px;
}
.scroll-area .whatsapp{
    position: fixed;
    cursor: pointer;
    top: 0;
    right: 30px;
    color: #ffffff;
    background-image: -moz-linear-gradient(0deg, #d1651a 0%, #c1282a 100%);
    background-image: -webkit-linear-gradient(0deg, #d1651a 0%, #c1282a 100%);
    z-index: 9999;
    width: 45px;
    text-align: center;
    height: 45px;
    line-height: 42px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.9s ease-out 0s;
    -moz-transition: all 0.9s ease-out 0s;
    border-radius: 10px;
}

.scroll-area .go-top i {
    position: absolute;
    top: 50%;
    left: -4px;
    right: 0;
    margin: 0 auto;
    font-size: 15px;
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
}

.scroll-area .go-top i:last-child {
    opacity: 0;
    visibility: hidden;
    top: 60%;
}

.scroll-area .go-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: linear-gradient(to right, var(--primary-green) 0%, var(--primary-green) 100%);
    background-image: -ms-linear-gradient(0deg, var(--primary-green) 0%, var(--primary-green) 100%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    border-radius: 100%;
}

.scroll-area .go-top:focus,
.scroll-area .go-top:hover {
    color: #fff;
}

.scroll-area .go-top:focus::before,
.scroll-area .go-top:hover::before {
    opacity: 1;
    visibility: visible;
}

.scroll-area .go-top:focus i:first-child,
.scroll-area .go-top:hover i:first-child {
    opacity: 0;
    top: 0;
    visibility: hidden;
}

.scroll-area .go-top:focus i:last-child,
.scroll-area .go-top:hover i:last-child {
    opacity: 1;
    visibility: visible;
    top: 50%;
}

.scroll-area .go-top.active {
    top: 95%;
    -webkit-transform: translateY(-98%);
    -moz-transform: translateY(-98%);
    opacity: 1;
    visibility: visible;
    border-radius: 0;
    right: 30px;
    border-radius: 100%;
}
.scroll-area .whatsapp.active {
    top: 83%;
    -webkit-transform: translateY(-98%);
    -moz-transform: translateY(-98%);
    opacity: 1;
    visibility: visible;
    border-radius: 0;
    right: 30px;
    border-radius: 100%;
}

.top-wrap {
    position: relative;
}

.top-wrap .go-top-button {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    top: 3px;
    z-index: 1;
    background: var(--primary-green);
}

.top-wrap .go-top-button i {
    font-size: 20px;
    font-weight: 700;
    padding-left: 4px;
    color: #fff;
}

.top-wrap .go-top-button::after {
    z-index: -1;
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    width: 45px;
    height: 45px;
    -webkit-animation: ripple 1.6s ease-out infinite;
    -moz-animation: ripple 1.6s ease-out infinite;
    opacity: 0;
    background-image: -moz-linear-gradient(0deg, var(--primary-green) 0%, var(--primary-green) 100%);
    background-image: -webkit-linear-gradient(0deg, var(--primary-green) 0%, var(--primary-green) 100%);
    border-radius: 100%;
}

.top-wrap .go-top-button:hover {
    background-color: #222;
    color: #fff;
}

@keyframes ripple {

    0%,
    35% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }

    50% {
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0.8;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        -moz-transform: scale(2);
        -ms-transform: scale(2);
        -o-transform: scale(2);
        transform: scale(2);
    }
}



/*===========================
<--  Loader Css -->
=============================*/
.loader-wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transition: 0.8s 1s ease;
    z-index: 9999;
}

.loader {
    position: relative;
    display: block;
    z-index: 201;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    border-radius: 50%;
    transition: all 1s 1s ease;
    border: 3px solid transparent;
    border-top-color: var(--primary-green);
    -webkit-animation: spin 1.5s linear infinite;
    -moz-animation: spin 1.5s linear infinite;
    -o-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

.loader::before {
    position: absolute;
    content: '';
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-left-color: var(--primary-green);
    -webkit-animation: spin 2s linear infinite;
    -moz-animation: spin 2s linear infinite;
    -o-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.loader:after {
    position: absolute;
    content: '';
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-right-color: #fff;
    -webkit-animation: spin 2.5s linear infinite;
    -moz-animation: spin 2.5s linear infinite;
    -o-animation: spin 2.5s linear infinite;
    animation: spin 2.5s linear infinite;
}

/*/ Here comes the Magic /*/

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.loader-wrapper .loder-section {
    position: fixed;
    top: 0;
    width: 50%;
    height: 100%;
    background: #111;
    z-index: 2;
}

.loader-wrapper .loder-section.left-section {
    left: 0;
    transition: 1s 1.4s ease;
}

.loader-wrapper .loder-section.right-section {
    right: 0;
    transition: 1s 1.4s ease;
}

/*/ When page loaded /*/
.loaded .loder-section.left-section {
    left: -100%;
}

.loaded .loder-section.right-section {
    right: -100%;
}

.loaded .loader-wrapper {
    visibility: hidden;
}

.loaded .loader {
    top: -100%;
    opacity: 0;
}
.hide{
  display: none;
}
