
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_18pt-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_18pt-Medium.ttf');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_18pt-Bold.ttf');
    font-weight: 700;
    font-style: normal;
}

:root {
    --bs-primary: #00633C;
}

body {
    color: #000;
    font-size: 14px;
    line-height: 1.7;
    font-family: 'Inter';
    font-weight: normal;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    font-family: 'Inter';
    font-weight: 700;   
}

p {
    margin-bottom: 10px;
}
p:last-child {
    margin-bottom: 0;
}

img {
    max-width: 100%;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn-primary,
.btn-primary:hover {
    color: #fff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

.btn-custom {
    font-size: 15px;
    padding-top: 9px;
    padding-bottom: 9px;
    border-radius: 20px;
    color: #fff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.form-control:focus {
    box-shadow: unset;
    outline: none;
}
/*top-bar*/
.top-bar {
    position: relative;
    z-index: 1000;
    font-size: 12px;
}
.angled-banner {
  background-color: #f05a24; /* Orange background */
  color: white;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  height: 30px;
  font-weight: bold;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  position: relative;
}

.angled-banner::before,
.angled-banner::after {
  content: "";
  position: absolute;
  top: 0;
  width: 20px;
  height: 100%;
  background-color: #006b45; /* Green */
  z-index: -1;
}

.angled-banner::before {
  left: -20px;
  clip-path: polygon(100% 0%, 0% 0%, 0% 100%, 100% 100%);
}

.angled-banner::after {
  right: -20px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.phone-icon {
  margin-right: 10px;
}

.language-menu {
/*  position: relative;*/
  height: 100%;
}
.language-menu > a {
    display: flex;
    align-items: center;
    height: 100%;
}
.language-menu .dropdown-menu {
  font-size: 14px;
}

.language-menu:hover ul.dropdown {
  opacity: 1;
  visibility: visible;
}

.language-menu ul.dropdown a {
  display: block;
}
.language-menu ul.dropdown img {
/*  width: 20px;*/
}

.language-menu-img {
    width: 20px;
    height: 20px;
    overflow: hidden;
    border-radius: 50%;
    display: flex;
}
.language-menu-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.lang-current {
    font-size: 14px;
    color: #fff;
}
/*top-bar*/

/*header*/
header {
    position: relative;
    z-index: 999;
}
.logo {
    padding: 16px;
    background: #fff;
    border-bottom-right-radius: 22px;
    border-bottom-left-radius: 22px;
    display: inline-block;
    position: absolute;
    top: 0;

}

.logo-bottom {
    display: none;
}

.sticky-top .logo-bottom {
    display: block;
}

@media(min-width: 991px)
{
}

@media(max-width: 767px)
{
    .logo-bottom {
        display: block;
    }
}
/*header*/

/*** Section Title Start ***/
.section-title h2, .section-title h3, .section-title h4{
    color: var(--bs-primary);
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 20px;
    font-family: 'Playfair Display';
}
.section-title h5 {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title h5::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title h5::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

@media(max-width: 767px)
{
    .section-title h2, .section-title h3, .section-title h4 {
        font-size: 24px;
    }
}
/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    padding: 12px 15px;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    outline: none;
    text-transform: uppercase;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 12px 15px;
    color: var(--bs-dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
}

.navbar-light .navbar-brand h1 {
    color: var(--bs-white);
}

.sticky-top.navbar-light .navbar-brand h1 {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        right: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

@media(max-width: 1400px)
{
    .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
    }
}
@media(max-width: 1200px)
{
    .navbar-light .navbar-nav .nav-link {
        font-size: 13px;
    } 
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding-left: 10px;
        padding-right: 10px;
    }
    .logo-bottom img {
        max-width: 130px;
    }

}
@media(max-width: 1100px)
{
    .logo-bottom img {
        max-width: 110px;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar-light .navbar-brand h1 {
        color: var(--bs-primary);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active  {
        color: var(--bs-primary) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
/*        border-bottom: 1px solid rgba(255, 255, 255, .1);*/
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }

    /*.navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        bottom: -1px;
        left: 0;
        background: var(--bs-primary);
        transition: .5s;
        z-index: -1;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        height: calc(100% + 1px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }*/
}

/*** Carousel Hero Header Start ***/
#carouselId {
    position: relative;
}
#carouselId:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    z-index: 99;
    background: linear-gradient(180deg, #FFFFFF 10.44%, rgba(255, 255, 255, 0) 100%);
}
.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
    background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;
    background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    background-size: 60% 60%;

}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
/*    opacity: 0;*/
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
/*    min-height: 100vh */
}
.carousel-header .carousel-inner .carousel-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.carousel-header .carousel-inner .carousel-item img {
/*    position: absolute;*/
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption  {
    position: absolute;
    width: 100%;
    height: auto;
    top: 25%;
    left: 0;
    bottom: unset;
/*    padding-top: 30px;*/
    display: flex;
    align-items: center;
    text-align: center;
    /*background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;*/
}
.carousel-header .carousel-inner .carousel-item .carousel-caption h2 {
    color: #FFFFFF;
    font-size: 80px;
    font-weight: 500;
    background: linear-gradient(180deg, #003822 0%, #A7FFDC 50%, #00B16B 100%);
    -webkit-background-clip: text;
    -webkit-text-stroke: 5px transparent;
}
.carousel-header .carousel-inner .carousel-item .carousel-caption h3 ,
.carousel-header .carousel-inner .carousel-item .carousel-caption h4 {
    /*color: #008550;*/
    color: #fff;
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 20px;

    /*background: linear-gradient(180deg, #00703c 0%, #00964d 50%, #00B16B 100%);
    -webkit-background-clip: text;
    -webkit-text-stroke: transparent;*/

    background: linear-gradient(180deg, #003822 0%, #5e5e5e 50%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-stroke: 2px transparent;
}
.carousel-header .carousel-inner .carousel-item .carousel-caption h4 {
    font-size: 26px;
}

.slider-about {
    position: absolute;
    right: 20%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
}
.slider-about-content {
    background: #fff;
    border-radius: 30px;
    color: #000;
    text-align: left;
    width: 600px;
    max-width: 96%;
    padding: 45px 30px;
    
}
.slider-about h3{
    font-size: 20px;
    margin-bottom: 20px;
}

.slider-about p:not(:last-child) {
    margin-bottom: 20px;
}
.slider-about h4 {
    font-size: 13px;
    margin-bottom: 5px;
}

.slider-name {
    position: absolute;
    bottom: 10%;
    right: 10%;
    z-index: 99;
    /*max-width: 40%;*/
}
.slider-name h1 {
    color: #fff;
    font-size: 40px;
    line-height: 64px;
    text-align: right;
}

.product-in-banner {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}
.product-in-banner li {
    flex: 0 0 50%;
    padding: 5px 0;
}

@media (max-width: 990px) {
    .slider-about-content {
        right: unset;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 768px) {
    .carousel-header .carousel-inner .carousel-item,
    .carousel-header .carousel-inner .carousel-item img,
    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        height: 300px;
        min-height: unset;
/*        margin-top: -100px;*/
    }
    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        top: unset;
    }

    .carousel-header {
/*        height: 700px !important;*/
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        opacity: 0;
    }

    .carousel-header .carousel-inner .carousel-item .carousel-caption h2 {
        font-size: 60px;
    }
    .carousel-header .carousel-inner .carousel-item .carousel-caption h3 {
        font-size: 26px;
    }

    .slider-name {
        max-width: unset;
        width: 100%;
        right: 0;
    }
    .slider-name h1 {
        font-size: 40px;
        line-height: 50px;
        text-align: center;
    }

    .slider-about {
        position: unset;
        transform: unset;
        padding: 30px 15px;
    }
    .slider-about-content {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .search-bar {
        margin-top: -100px;
        transition: 0.5s;
    }


}
/*** Carousel Hero Header End ***/

/*video*/
.fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  right: 0;
  bottom: 0;
  padding: 0 !important;
  margin: 0 !important;
}

.video-bg {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  font-family: "object-fit: cover; object-position: center center;";
  position: absolute;
  width: 100%;
  height: 100%;
}

@media (min-width: 549px) {
  .has-video .bg {
    display: none;
  }
}
/*video*/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: var(--bg-breadcrumb);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 50px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    /*color: var(--bs-secondary) !important;*/
    color: #000;
}
/*** Single Page Hero Header End ***/


/*** About Start ***/
.about {
    background: var(--about-bg);
    position: relative;
    z-index: 9;
}
.about .container .section-about-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.about .container .section-about-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.about h3 {
    font-size: 16px;
    text-transform: uppercase;
}

.custom-tab {
/*    border-bottom: 0;*/
}
.custom-tab .nav-link {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    
}
.custom-tab .nav-item {
    border-bottom: 1px solid #dee2e6;
    margin-bottom: -1px;
}
.custom-tab .nav-item:not(:first-child) {
/*    margin-left: 30px;*/
    padding-left: 30px;
}
.custom-tab .nav-link:hover, .custom-tab .nav-link:focus,
.custom-tab .nav-link.active, .custom-tab .nav-item.show .nav-link {
    
    color: var(--bs-primary);
    border-color: #fff #fff var(--bs-primary);
}
.custom-tab .nav-link.active, .custom-tab .nav-item.show .nav-link  {
/*    font-size: 24px;*/
}
.custom-tab .nav-link:focus-visible {
    outline: unset;
}

@media(max-width: 767px)
{
    .custom-tab .nav-item {
        flex: auto;
        padding-left: 10px;
        padding-right: 10px;
        text-align: center;
    }
    .custom-tab .nav-item:not(:first-child) {
        padding-left: 10px;
    }
    .custom-tab .nav-link {
        margin: auto;
    }
}
/*** About End ***/

/*filter*/
#product-filter {
    gap: 10px;
}

.filter-item {
    display: flex;
    align-items: center;
    padding: 5px 10px 5px 25px;
    border-radius: 24px;
    background: #F6F6F6;
    width: 27%;
    max-width: 100%;
}
.filter-item .form-control ,
.filter-item .form-select {
    color: #000;
    flex: 1;
    border: 0;
    background-color: unset;
} 
.filter-item .form-control:focus ,
.filter-item .form-select:focus {
    box-shadow: unset;
}

.filter-icon {
    margin-top: -4px;
}

@media(max-width: 1200px)
{
    .filter-item {
        width: unset;
        flex: 1;
    }
    #product-filter .btn-custom {
        width: 140px;
    }
}
@media(max-width: 767px)
{
    #product-filter {
        flex-wrap: wrap;
    }
    .filter-item {
        flex: auto;
/*        max-width: calc(50% - 10px);*/
    }
    #product-filter .btn-custom {
        width: unset;
        flex: auto;
    }
}
/*filter*/

/*.service-gallery*/
.service-title {
    padding: 50px;
    background: radial-gradient(210.25% 463.14% at 56.03% 44.18%, #00633C 0%, #00C97A 100%);
    margin: auto;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    color: #fff;
}
.service-title h2, .service-title h3, .service-title h4 {
    color: #fff;
    margin-bottom: 0;
    font-size: 28px;
    line-height: 1.4;
    letter-spacing: 1px;
    font-family: "Playfair Display";
}

.service-title-img {
    position: relative;
    width: 75px;
}
.service-title-img img {
    position: absolute;
    bottom: 0;
}

@media(min-width: 1400px)
{
    .service-title {
        max-width: 1382px;
        /*max-width: 90%;*/
    }
}

@media(max-width: 767px)
{
    .service-title {
        padding: 20px;
    }
    .service-title h2, .service-title h3, .service-title h4 {
        font-size: 22px;
    }

    .service-title-img {
        width: 60px;
        left: 2px;
    }
    .service-title-img img {
        max-height: 170px;
    }

    .gallery .gallery-item .gallery-content .gallery-info h5 {
        font-size: 16px;
    }
}
/*.service-gallery*/

/*** Services Start ***/
.service .service-content-inner {
    transition: 0.5s;
}
.service .service-content-inner:hover {
    position: relative;
    background: var(--bs-primary) !important;
}

.service .service-content-inner .service-content h5,
.service .service-content-inner .service-content p,
.service .service-content-inner .service-icon i {
    transition: 0.5s;
}

.service .service-content-inner:hover .service-content h5,
.service .service-content-inner:hover .service-content p,
.service .service-content-inner:hover .service-icon i {
    color: var(--bs-white) !important;
}
/*** Service End ***/

/*news-masory*/
.news-masory-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.news-masory-item:before {
    content: "";
    display: block;
    padding-top: 80%;
}
.news-masory-item:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 4.4%, #000000 100%);
}

.news-masory-item .news-item-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.news-masory-item .news-item-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}
.news-masory-item:hover .news-item-img img {
    transform: scale(1.2);
}

.news-masory-item .item-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 15px;
    color: #fff;
    z-index: 9;
}
.news-masory-item .item-overlay h4 {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    text-transform: uppercase;
}
.news-masory-item .item-overlay .date {
    color: #00B16B;
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 6px;
    background: #D4F4E7;
}

.news-masory-item.news-masory-item-big {
    height: 100%;
}

.news-masory-item.news-masory-item-big:after {
    background: linear-gradient(180deg, rgba(0, 80, 49, 0) 4.4%, #005031 100%);
}

.news-new-img {
    margin-top: -100px;
    overflow: hidden;
    border-radius: 16px;
}

.post-date {
/*    font-size: 12px;*/
    color: #7A7A7A;
}
.view-detail {
    color: #00633C;
}

.news-tabs {
    gap: 10px;
    justify-content: space-between;
    border-bottom: 0;
}
.news-tabs li{
    flex: auto;
}

.news-tabs .btn-custom:not(.active) {
    color: #000;
    background: #EEEEEE;
}
.news-tabs .btn-custom:not(.active):hover,
.news-tabs .btn-custom{
    width: 100%;
    background: var(--bs-primary);
    color: #fff;
}

.news-list .news-item {
  display: flex;
  align-items: center;
}

.news-list .news-item:not(:last-child) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #D9D9D9;
}

.blog_item_img {
  flex: 0 0 32%;
  max-width: 32%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.blog_item_img::before {
  content: '';
  padding-top: 59%;
  display: block;
}

.blog_item_img a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.blog_item_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.news-item .content {
    padding: 0 20px;
}
.news-item .content h3 {
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-item .content h3 a {
    color: #000;
    font-size: 14px;
}

.news-list.news-grid .news-item {
    flex-wrap: wrap;
}

.news-grid .blog_item_img {
    max-width: unset;
    flex: 0 0 100%;
}
.news-grid .news-item .content {
    padding: 10px 0;
}
.news-grid .desc {
/*    display: none;*/
}

.news-slider .slick-list {margin: 0 -5px;}
.news-slider .news-item {padding: 0 5px;}

.sidebar {
    padding-left: 20px;
    border-left: 2px solid #E5E5E5;
}

.sidebar-title {
    font-size: 24px;
    line-height: 40px;
    text-transform: uppercase;
    color: var(--bs-primary);
}

@media(min-width: 768px)
{

    .news-masory-item.news-masory-item-big:before {
        display: none;   
    }
}

@media(max-width: 990px)
{
    .news-new-img {
        margin-top: 0;
    }

    .news-tabs {
        gap: 10px;
    }

    .sidebar {
        border-left: 0;
        padding-left: 0;
    }

}
@media(max-width: 767px)
{
    .scroll-mb .news-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }

    .news-tabs li {
        flex: 0 0 auto;
    }
}

@media(max-width: 580px)
{
    .news-list .news-item {
        flex-wrap: wrap;
    }

    .news-list .blog_item_img {
        max-width: unset;
        flex: 0 0 100%;
    }
    .news-list .news-item .content {
        padding: 10px 0;
    }
    .news-list .desc {
    /*    display: none;*/
    }
}

/*news-masory*/

/*pagination*/
.pagination {
    gap: 10px;
}
.page-link {
    width: 38px;
    height: 38px;
    text-align: center;
    border-radius: 50%;
}
.page-item:first-child .page-link ,
.page-item:last-child .page-link {
    border-radius: 50%;
}
.page-item.active .page-link ,
.page-item .page-link:hover {
    color: #fff;
    border-color: #000;
    background-color: #008b11;
}
/*pagination*/ 

/*** Destination Start ***/
.destination .destination-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}
.destination .destination-img:before {
    content: "";
    display: block;
    padding-top: 80%;
}

.destination .destination-img .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.destination .destination-img .img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.destination .destination-img .destination-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    z-index: 3;
    transition: 0.5s;
}

.destination .destination-img .search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    justify-content: end;
    padding: 20px 20px 0 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: 0.5s;
}

/*.destination-img */

.destination .destination-img .search-icon a i {
    opacity: 0;
    transition: 0.5s;
}

.destination .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.destination .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.destination .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.destination .destination-img:hover .search-icon {
    background: rgba(19, 53, 123, 0.4);
}

.destination .destination-img:hover .destination-overlay {
    bottom: 0;
}

.destination .destination-img:hover .search-icon a i {
    opacity: 1;
}

.destination .destination-img img {
    transition: 0.5s;
}

.destination .destination-img:hover img {
    transform: scale(1.2);
}
/*** Destination End ***/


/*** Packages Start ***/
.product-item {
    border-radius: 12px;
    box-shadow: 0px 4px 18.8px 0px #00000012;
    height: 100%;
}
.product-item .product-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    z-index: 1;
}
.product-img:before {
    content: "";
    display: block;
    padding-top: 60%;
}
.product-img a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.product-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.product-item .product-img .packages-info {
    background: rgba(0, 0, 0, .3);
}

.product-item .product-img .packages-info small,
.product-item .product-img .packages-info small i {
    color: var(--bs-white);
    transition: 0.5s;
}

.product-img .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 12px;
    padding: 6px 15px;
    border-radius: 5px;
    font-weight: normal;
}

.product-item .product-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0px solid;
    border-radius: 10px !important;
    visibility: hidden;
    transition: 0.7s;
    z-index: 3;
}

/*.product-item .product-img:hover.product-img::after {
    width: 100%;
    height: 100%;
    border: 300px solid;
    border-color: rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6);
    visibility: visible;
}*/

.product-item .product-img small,
.product-item .product-img small i {
    transition: 0.5s;
}

.product-item .product-img:hover small,
.product-item .product-img:hover small i {
    color: var(--bs-white) !important;

}

.product-item .product-img img {
    transition: 0.5s;
}

.product-item .product-img:hover img {
    transform: scale(1.1);
}

.product-item .product-img .packages-price {
    position: absolute;
    width: 100px; 
    top: 0; 
    left: 50%; 
    transform: translateX(-50%);
    display: inline-block;
    background: var(--bs-primary);
    color: var(--bs-white);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px; 
    z-index: 5;
}

.product-item .product-content h4{
    font-size: 16px;
    margin-bottom: 15px;
}   

.packages .packages-carousel {
    position: relative;
}

.packages .packages-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -50px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-next {
    position: absolute;
    top: -50px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev i,
.packages .packages-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    font-size: 17px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev:hover,
.packages .packages-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.packages .packages-carousel .owl-nav .owl-prev:hover i,
.packages .packages-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}

.bg-label-success {
    background-color: color-mix(in sRGB, #fff 84%, #00B16B) !important;
    color: #00B16B !important
}

.bg-label-warning {
    background-color: color-mix(in sRGB, #fff 84%, var(--bs-warning)) !important;
    color: var(--bs-warning) !important
}
/*** Packages End ***/


/*** Explore Tour Start ***/
.ExploreTour .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.ExploreTour .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.ExploreTour .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}


/* National Tour Start */
.ExploreTour #NationalTab-1 .national-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #NationalTab-1 .national-item img {
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #NationalTab-1 .national-item .national-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-content {
    background: rgba(19, 53, 123, .6);
}

.ExploreTour #NationalTab-1 .national-item .national-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-plus-icon {
    opacity: 1;
}

.ExploreTour #NationalTab-1 .national-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 40px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: var(--bs-primary);
    color: var(--bs-white);
}

/* International Tour Start */
.ExploreTour #InternationalTab-2 .international-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .international-item img {
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #InternationalTab-2 .international-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 30px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: var(--bs-primary);
    color: var(--bs-white);
}

.ExploreTour #InternationalTab-2 .international-item .international-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, .3);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-content {
    background: rgba(19, 53, 123, .6);
}

.ExploreTour #InternationalTab-2 .international-item .international-content .international-info a {
    font-size: 14px;
}

.ExploreTour #InternationalTab-2 .international-item .international-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-plus-icon {
    opacity: 1;
}

/* carousel Start */
.ExploreTour #InternationalTab-2 .InternationalTour-carousel .international-item {
    position: relative;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}
/*** Explore Tour End ***/


/*** Gallery Start ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
}
.gallery .gallery-item img {
    min-height: 300px;
    object-fit: cover;
}

.gallery-item-rectangle,
.gallery-item-square {
    position: relative;
}
.gallery-item-rectangle:before ,
.gallery-item-square:before {
    content: "";
    display: block;
    padding-top: 100%;
}
.gallery-item-rectangle .gallery-item ,
.gallery-item-square .gallery-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.gallery-item-rectangle:before {
    padding-top: 60%;
}

.gallery .gallery-item .gallery-content {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 15px;
    /*background: rgba(0, 0, 0, 0.3);*/
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: 0.5s;
    background: linear-gradient(0deg, rgba(0, 99, 60, 0.9) 4.44%, rgba(0, 99, 60, 0) 100%);
}

.gallery .gallery-item .gallery-content .gallery-info {
    position: relative;
/*    margin-bottom: -100%;*/
/*    opacity: 0;*/
    transition: 0.5s;
    z-index: 9;
}
.gallery .gallery-item .gallery-content .gallery-info h5 {
    font-size: 16px;
    color: #fff;
/*    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;*/
}
.gallery .gallery-item:hover .gallery-content .gallery-info h5 {
    color: #fff;
    text-shadow: unset;
}

.gallery .gallery-item .gallery-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.gallery .gallery-item:hover .gallery-content .gallery-info,
.gallery .gallery-item:hover .gallery-plus-icon {
   opacity: 1;
   margin: 0;
}

.gallery .gallery-item .gallery-content:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, #000000 4.44%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    transition: all 0.5s;
}
.gallery .gallery-item:hover .gallery-content:before {
    height: 80%;
    background: linear-gradient(0deg, rgba(0, 99, 60, 0.6) 4.44%, rgba(0, 99, 60, 0) 100%);
}

.gallery .gallery-item img {
    transition: 0.5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-item:hover .gallery-content {
/*    background: rgba(19, 53, 123, 0.8);*/
    background: linear-gradient(0deg, rgba(0, 99, 60, 0.9) 4.44%, rgba(0, 99, 60, 0) 100%);
}

.gallery .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.gallery .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.gallery .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

/*** Gallery End ***/
/*product detail*/
.detail-tabs {
    position: sticky;
    z-index: 99;
    background: #fff;
}
.product-detail-title h5 {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--bs-primary);
    font-weight: normal;
}

.product-detail-title h2 {
    color: #000;
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: "Playfair Display";
}

.product-spec .spec-item {
    display: flex;
    gap: 15px;
}
.product-spec .spec-item .content{
    flex: 1;
    font-size: 15px;
}
.product-spec .spec-item h4{
    font-size: 14px;
    color: var(--bs-primary);
}
.product-spec .spec-item h5 {
    font-size: 18px;
}

.product-section-banner {
    position: relative;
}
.product-section-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    padding: 65px;
    color: #fff;
    background: #00633CEB;
}

.product-section-content h3 {
    font-size: 28px;
    line-height: 40px;
    color: #fff;
    font-family: "Playfair Display";
}

.product-section-content li:not(:last-child) {
    margin-bottom: 15px;
}

.location-banner-img {
    border-radius: 30px;
    overflow: hidden;
}

.product-location-list {
    display: flex;
    justify-content: space-between;
    margin-top: -70px;
}
.product-location-item {
    text-align: center;
    font-size: 20px;
    line-height: 32px;
}
.product-location-item .img{
    width: 146px;
    height: 146px;
    border-radius: 50%;
    border: 5px solid #fff;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-location-item .img img {
    max-height: 60px;
}

.product-amenity .gallery .gallery-item img {
    min-height: unset;
}


.product-plane .product-detail-title h2 {
    color: #fff;
    margin-bottom: 20px;
}
.product-plane {
    position: relative;
}
.product-plane .plane-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: var(--bs-primary);
}

.product-plane-detail .plane-content h4{
    font-size: 16px;
}

.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.line-clamp-4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

@media(max-width: 1400px)
{
    .product-section-content {
        padding: 40px;
        width: 55%;
    }
    .gallery .gallery-item .gallery-content .gallery-info h5 {
        font-size: 14px;
    }
}
@media(max-width: 1200px)
{
    .product-section-content {
        padding: 40px;
        width: 100%;
    }
    .product-section-content li:not(:last-child) {
        margin-bottom: 10px;
    }

    .product-location-list {
        margin-top: -50px;
    }
    .product-location-item {
        font-size: 16px;
        line-height: 1.4;
    }
    .product-location-item .img {
        width: 100px;
        height: 100px;
    }
    .product-location-item .img img {
        max-width: 50px;
    }
}

@media(max-width: 990px)
{
    .detail-tabs {
        top: 0!important;
    }
    .product-section-content {
        position: unset;
        padding: 20px;
    }
}
@media(max-width: 767px)
{
    .product-location-list {
        overflow-x: auto;
    }
    .product-location-item {
        font-size: 14px;
    }
}
/*product single*/

/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
}

.blog .blog-item .blog-img .blog-info {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    background: rgba(255, 255, 255, .2);
    color: var(--bs-white);
}

.blog .blog-item .blog-img .blog-img-inner {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon {
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon a {
    opacity: 1;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon {
    height: 100%;
    background: rgba(19, 53, 123, .6);
    opacity: 1;
}

.blog .blog-item .blog-img .blog-img-inner {
    overflow: hidden;
}

.blog .blog-item .blog-img .blog-img-inner img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner img {
    transform: scale(1.2);
}
/*** Blog End ***/

/*recruitment-page*/
.recruitment-page .news-new-img {
    position: relative;
    height: 100%;
    overflow: unset;
    margin: 0;
}
.recruitment-page .news-new-img img {
    position: absolute;
    bottom: -20%;
}

.recruitment-top h5 {
    font-size: 14px;
    color: var(--bs-primary);
}
.recruitment-top h3{
    font-size: 28px;
    line-height: 44px;
    margin-bottom: 22px;
    font-family: 'Playfair Display';
}
.recruitment-top h3 b,
.recruitment-top h3 strong{
    font-size: 48px;
}

.td-community {
    background: #F3F9F7;
}
.td-community .product-location-list{
    margin-top: 0;
}
.td-community .product-location-item .img{
    width: 100px;
    height: 100px;
    border: 0;
    background: radial-gradient(210.25% 463.14% at 56.03% 44.18%, #00633C 0%, #00C97A 100%);
}
.td-community .product-location-item {
    font-size: 14px;
    line-height: 24px;
    text-align: left;
}
.td-community .product-location-item h4 {
    font-size: 16px;
}

.carrer-item {
    padding: 45px 30px;
    border: 1px solid #EFEFEF;
    border-radius: 12px;
    box-shadow: 0px 1px 22.6px 0px #00000012;
}
.carrer-item h3 {
    font-size: 20px;
    line-height: 32px;
}
.carrer-item h4 {
    font-size: 14px;
    color: #00B16B;
    font-weight: normal;
}
.carrer-item .item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.carrer-item a {
    font-size: 16px;
    line-height: 32px;
    color: #FF6836;
    font-weight: 700;
    text-transform: uppercase;
}

.carrer-item.active {
    color: #fff;
    background: linear-gradient(148.84deg, #00B16B 18.84%, #004B2D 106.16%);
}
.carrer-item.active h3 {
    color: #fff;
}
.carrer-item.active h4 {
    color: #36FFB0;
}
.carrer-item.active a {
    color: #fff;
}

@media(max-width: 990px)
{
    .recruitment-page .news-new-img img {
        position: unset;
    }

    .td-community .product-location-list {
        flex-wrap: wrap;
    }

    .td-community .product-location-item {
        flex: 0 0 50%;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}
/*recruitment-page*/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer { 
    /*overflow: visible;*/
    padding: 15px 0;
}

.testimonial-carousel .owl-item {
   opacity: 0;
   transition: opacity 500ms;
}
.testimonial-carousel .owl-item.active {
  opacity: 1;
}

.testimonial .testimonial-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .testimonial-item {
    padding: 15px;
}
.testimonial .testimonial-carousel .testimonial-content {
    padding: 25px;
    border-radius: 8px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 15px 0px;
}
.testimonial .testimonial-carousel .testimonial-item .testimonial-img {
    position: relative;
    width: 50px; 
    height: 50px; 
    
    border-radius: 50%;
    overflow: hidden;
}
.testimonial .testimonial-carousel .testimonial-item .testimonial-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.testimonial-item-title h5 {
    font-size: 17px;
}

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 10px;
    height: 10px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -55px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: -55px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev i,
.testimonial .testimonial-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    font-size: 17px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover i,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}

/*.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-comment {
    background: var(--bs-primary) !important;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-img {
    border: 3px solid var(--bs-white); 
    border-style: dotted;
    transition: 0.5s;
}*/

@media(max-width: 767px)
{
    .testimonial-carousel .owl-stage-outer {
/*        overflow: hidden;*/
    }
}
/*** Testimonial End ***/

/*faq*/
.faq .accordion-item {
  border-radius: 20px;
  border: 0;
  box-shadow: 0px 0px 21.9px 0px #0000001C;
}

.faq .accordion-item:not(:last-child) {
  margin-bottom: 18px;
}

.faq .accordion-button {
    background: transparent;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-align: justify;
    box-shadow: unset;
    padding-top: 12px;
    padding-bottom: 12px;
}
.faq .accordion-body {
    padding-top: 0;
    color: #4C4C4C;
}
.faq .accordion-button::after {
    width: 15px;
    height: 15px;
    background-size: 15px;
}
/*faq*/

/*** Subscribe Start ***/
.subscribe {
    background: linear-gradient(rgba(19, 53, 123, .6), rgba(19, 53, 123, .6)), url(../img/subscribe-img.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.subscribe .subscribe-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.subscribe .subscribe-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.subscribe .subscribe-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Subscribe End ***/

/*** Footer Start ***/
.footer {
    background: radial-gradient(210.25% 463.14% at 56.03% 44.18%, #00633C 0%, #00C97A 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary);
}
.footer h3 {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.footer ul {
    list-style: none;
    padding-left: 0;
    color: #fff;
}
.footer ul a {
    color: #fff;
}
.footer ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer .social-links {
  display: flex;
  gap: 8px;
}

.newsletter-form {
    position: relative;
}
.newsletter-form input {
    height: 48px;
    width: 100%;
    background: #fff;
    padding: 5px 7px;
    border-radius: 8px;
    border: 0;
}
.newsletter-form button {
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    padding: 0;
    width: 38px;
    background: #FF6836;
}

/*** Footer End ***/

/*support-item*/
.support-item {
    display: flex;
    align-items: center;
}
.support-item .address {
    padding-left: 15px;
}
.support-item .address h5 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 0;
}
.support-item .address h4 {
    font-size: 12px;
    color: #A7FFDC;
    font-weight: normal;
}

@media(max-width: 767px)
{
    .support-item {
        flex-wrap: wrap;
        justify-content: center;
    }
    .support-item .address {
        padding-left: 0;
        text-align: center;
    }
    .support-item .address h5 {
        font-size: 13px;
    }
}
/*support-item*/

/*** copyright Start ***/
.copyright {
    color: #fff;
    border-top: 1px solid #FFFFFF30;
}
.copyright p {
    margin-bottom: 0;
    font-size: 12px;
}
/*** copyright end ***/

/*choice-item*/
.why-choice {
    background: var(--why-choice-bg);
    background-size: 100% auto;
    padding-bottom: 300px;
}
.choice-item {
    padding: 0 20px;
    border-left: 4px solid var(--bs-primary);
}
.choice-item.even {
    border-color: #FF6836;
}
.choice-title h3 {
    font-size: 16px;
    text-transform: uppercase;
}

@media (max-width: 767px)
{
    .why-choice {
        padding-bottom: 100px;
    }
}
/*choice-item*/

/*partner*/
.partner {
    position: relative;
}
.partner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
}
.partner-bg img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}
.partner-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.8;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(286.73deg, #00633C 40.84%, #00C97A 146.57%);
}

.partner-title h2 ,
.partner-title h3 ,
.partner-title h4 {
    font-size: 40px;
    line-height: 60px;
    color: #fff;
    text-transform: uppercase;
    font-family: "Playfair Display";
}

.partner-list {
    padding: 20px;
    border-radius: 46px;
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.partner-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
    border: 1px solid #fff;
    overflow: hidden;
}
.partner-item{
    position: relative;
    padding: 20px;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    margin-right: -1px;
    margin-bottom: -1px;
}
.partner-item:before {
    content: "";
    display: block;
    padding-top: 45%;
}
.partner-item a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner-item img{
    max-width: 100%;
    max-height: 50%;
}

@media(max-width: 767px)
{
    .partner-title h2, .partner-title h3, .partner-title h4 {
        font-size: 30px;
        text-align: center;
    }
    .partner-title h2 br ,
    .partner-title h3 br ,
    .partner-title h4 br {
        display: none;
    }

    .partner-content {
        grid-template-columns: repeat(2, 1fr); /* 4 equal columns */
    }
    .partner-item img {
        max-height: 60%;
    }
}
/*partner*/

/*** Contact Start ***/
.contact {
    color: #fff;
}
.contact .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .container form .btn.btn-primary:hover {
    box-shadow: inset 1000px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.contact-content h2 ,
.contact-content h3 ,
.contact-content h4 {
    color: #fff;
}
.contact-content h2 {
    font-size: 40px;
    line-height: 56px;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 20px;
    font-family: "Playfair Display";
}
.contact-content h4 {
    font-size: 20px;
    line-height: 32px;
    font-family: "Playfair Display";
}
.contact-content h3 {
    font-size: 32px;
    line-height: 42px;
}

.contact .form-control ,
.contact .form-select {
    font-size: 14px;
    border-radius: 24px;
    height: 46px;
    padding-left: 20px;
    padding-right: 20px;
}
.contact textarea.form-control {
    border-radius: 12px;
    height: auto;
}
.contact label {
    margin-bottom: 7px;
}
.contact .btn-custom {
    font-size: 15px;
    background-color: #FF6836;
    padding-top: 8px;
    padding-bottom: 8px;
    border-color: transparent;
}
.contact .btn-custom:hover {
    color: #fff;
}

.contact-2 {
    border-radius: 40px;
    overflow: hidden;
}
.contact-2 .partner-bg:before {
    background: linear-gradient(280.91deg, #FE9239 10%, #F55B28 84.19%);
}

.contact.contact-2 .btn-custom {
    background-color: var(--bs-primary);
}

#contact-page .product-spec {
    position: absolute;
    bottom: 0;
    padding: 50px 50px 0;
    background: #fff;
    border-top-right-radius: 50px;
    border-top-left-radius: 50px;
}
#contact-page .partner-bg {
    display: none;
}
#contact-page .contact {
    background: #fff;
}
#contact-page .contact-content h2 {
    color: var(--bs-primary);
}
#contact-page .contact ,
#contact-page .contact-content h4 {
    color: #000;
}

#contact-page .contact-content h3 ,
#contact-page .contact-content h3 span {
    color: var(--bs-primary) !important;
}

.error-message,
form div.error ,
form label.error {
  bottom: -16px;
  font-size: 11px;
  color: #f00;
}
form div.error ,
form label.error {
/*  position: absolute;*/
}

#reviewModal form div.error,
#reviewModal form label.error {
  position: relative;
  bottom: 0;
}

@media(max-width: 1200px)
{
    #contact-page .product-spec {
        padding: 30px 20px;
    }

    #contact-page .product-spec svg{
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
    }

    #contact-page .product-spec .spec-item {
        gap: 5px;
    }
    
    #contact-page .product-spec .spec-item h4 {
        font-size: 12px;
    }
    #contact-page .product-spec .spec-item h5 {
        font-size: 15px;
    }
}

@media(max-width: 990px)
{
    #contact-page .product-spec {
        position: relative;
    }
    #contact-page .product-spec {
        padding: 30px 0;
    }
}
@media(max-width: 767px)
{
    .contact-content h2 {
        font-size: 24px;
        line-height: 1.4;
    }
    .contact-content h2 br{
        display: none;
    }
}

/*** Contact End ***/

/*blog_single_details*/
.blog_left_sidebar .blog_item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.blog_left_sidebar .blog_item:not(:last-child) {
  margin-bottom: 15px;
}

.blog_item_img {
  flex: 0 0 45%;
  max-width: 45%;
  position: relative;
  overflow: hidden;
}

.blog_item_img::before {
  content: '';
  padding-top: 59%;
  display: block;
}

.blog_item_img a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.blog_item_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.blog_details {
  flex: 0 0 55%;
  max-width: 55%;
  padding-left: 12px;
}

.blog_details a {
  display: block;
}

.blog_details h2 a:hover {
  color: #8393ca;
}

.blog_details a.btn-more {
  display: inline-block;
/*  background: #f0f8ff;*/
  color: #f00;
  font-size: 14px;
  line-height: 24px;
}

.blog_details a.btn-more:hover {
  color: #ffffff;
  background: #d92b2b;
}

.blog_details h2,
.newslist_content h2 {
  font-size: 16px;
  margin-bottom: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog_details p,
.newslist_content p {
  margin-bottom: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.info-cate {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.category-name,
.published,
.hits {
  color: #909090;
}

.blog-pagination {
  gap: 5px;
  align-items: center;
}

.blog-pagination ul {
  gap: 4px;
}

.blog-pagination .page-item:first-child .page-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.blog-pagination .page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.blog-pagination .page-item a {
  color: #363636;
  background: #f3f3f3;
  border-color: #f3f3f3;
}

.blog-pagination .page-item a:hover {
  color: #ffffff;
  background: #8393ca;
  border-color: #8393ca;
}

.blog-pagination .page-item a:focus {
  box-shadow: none;
}

.single_sidebar_widget {
  border: #ddd 1px solid;
}

.single_sidebar_widget:not(:last-child) {
  margin-bottom: 30px;
}

.single_sidebar_widget h3 {
  font-size: 14px;
  font-weight: 700;
  position: relative;
  border-bottom: #ddd 1px solid;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 0;
  padding: 12px 20px;
}

.list_item_news {
  padding: 15px 20px;
}

.newslist_page:not(:last-child) {
  margin-bottom: 16px;
}

.newslist_page::before,
.newslist_page::after {
  content: '';
  display: table;
}

.newslist_page::after {
  clear: both;
}

.newslist_img {
  width: 30%;
  float: left;
  margin: 0;
  padding: 0 10px 10px 0;
}

.newslist_content {
  font-size: ;
}
.newslist_content h2 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 23px;
  color: #08C;
  font-family: 'pro-cond', sans-serif;
}

.newslist_content h2 a:hover {
  text-decoration: underline;
  color: #005580;
}

.newslist_content p {
  -webkit-line-clamp: 3;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .blog_left_sidebar .blog_item {
    flex-direction: column;
  }

  .blog_details {
    padding-left: 0;
  }

  .blog_item_img {
    width: 100%;
    margin-bottom: 12px;
  }

  .blog_item_img::before {
    padding-top: 80%;
  }

  .blog_item_img,
  .blog_details {
    max-width: 100%;
    flex: 100%;
  }

  .blog-pagination {
    flex-direction: column-reverse;
    align-items: flex-end;
  }

}

@media (max-width: 767px) {

  .blog-pagination ul {
    flex-wrap: wrap;
  }
}


.blog_single_details > h2 {
  font-size: 24px;
  font-weight: 700;
}
.blog_single_details img {
  max-width: 100%;
  height: auto !important;
}
/*blog_single_details*/
/*social*/
.share-box>a {
    display: inline-block;
    padding: 0 10px;
    border: 1px solid #ccc;
    margin-right: 5px;
    border-radius: 3px;
    line-height: 30px;
    font-size: 14px;
    color: #000
}

.share-box-social {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 50%;
    bottom: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #000;
    padding: 3px;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    border-radius: 3px;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0)
}

.quick-alo-phone,.quick-alo-phone.quick-alo-show {
    visibility: visible
}

.social-share {
  position: relative;
}
.share-box-social li {
    margin: 0 1px
}
.share-box-social li a {
    padding: 10px;
    color: #fff;
    font-size: 13px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1px
}
.share-box-social li a:hover {
    color: #e9b364
}
.share-box-social:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 6px 0;
    border-color: #0c4556 transparent transparent;
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    z-index: 99;
    margin-left: -3px
}

.social-share:hover .share-box-social {
    opacity: 1;
    visibility: visible;
    margin-bottom: 6px
}

/*social*/

.skiptranslate,
#goog-gt-tt,
.goog-te-banner-frame.skiptranslate {
    display: none !important;
} 
body {
    top: 0px !important; 
}
.goog-logo-link {
    display:none !important;
}
.trans-section {
    margin: 100px;
}

/*product plan*/
.product-plane .owl-stage-outer {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.product-plane .plane-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -50px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
    background: #fff;
}

.product-plane .plane-carousel .owl-nav .owl-next {
    position: absolute;
    top: -50px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid #fff;
    border-radius: 30px;
    transition: 0.5s;
    background: #fff;
}

.product-plane .plane-carousel .owl-nav .owl-prev i,
.product-plane .plane-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    font-size: 17px;
    transition: 0.5s;
}

.product-plane .plane-carousel .owl-nav .owl-prev:hover,
.product-plane .plane-carousel .owl-nav .owl-next:hover {
    background: #fff;
}

.product-plane .plane-carousel .owl-nav .owl-prev:hover i,
.product-plane .plane-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}
/*product plan*/