:root {
    --main-color: #005C34;
    --second-color: #B0D3ED;
    --third-color: #F9FAFC;
    --fourth-color: #000000;
    --fifth-color: #F1F8FF;
    --sixth-color: #E8E8E8;
    --eight-color: #808285;
    --text-color: #000000;
    --link-color: #000000;
    --title-color: #000000;
}
html{
    margin: 0 !important;
}
body {
    color: var(--text-color);
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
    background: var(--third-color);
    padding: 0 !important;
    font-optical-sizing: auto;
}
a{
    text-decoration: none;
    color: var(--link-color);
}
a:hover{
    color: var(--main-color);
}
img {
    max-width: 100%;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
h1, h2, h3, h4, h5, h6{
    color: var(--title-color);

}
*{
    transition: all 0.3s ease-out;
}

.placeholder{
    padding: 500px 0;
}

header{
    background: #fff;
}
header .top{
    background: var(--third-color);
    padding: 15px 0;
}
header .row{
    justify-content: space-between;
}
header .top + .container{
    padding: 35px 0;
    position: relative;
}
header .open-menu{
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--fourth-color);
    aspect-ratio: 1;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}
header .open-menu:hover{
    background: var(--main-color);
}
header .logo img{
    height: 40px;
}

ul.social{
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}
ul.social li a{
    color: var(--eight-color);
    font-size: 18px;
}
ul.social li a:hover{
    color: var(--main-color);
}

.languages{
    position: relative;
    width: max-content;
}
.languages ul{
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    flex-wrap: wrap;
    flex-direction: column;
    background: #fff;
    padding: 5px 0;
    z-index: 4;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.languages a{
    display: flex;
    gap: 10px;
    align-items: center;
}
.languages ul li a{
    padding: 5px 20px;
}
.languages:hover ul{
    display: flex;
}

span.subtitle{
    display: block;
    background: #fff;
    border-radius: 30px;
    box-shadow: 10px 20px 40px 0px #2940461A;
    width: max-content;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 16px;
}
h2.title{
    font-size: 54px;
    font-weight: 600;
    line-height: 1;
}
h2.title span{
    font-style: italic;
    color: var(--main-color);
}
h3.title{
    font-size: 48px;
    font-weight: 600;
}
h3.title span{
    font-style: italic;
    color: var(--main-color);
}
p{
    font-weight: 400;
    color: #00000099;
    line-height: 1.6;
}

section{
    padding: 90px 0;
}
img.radius{
    border-radius: 16px;
}

.g-50{
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    width: 100%;
}
.g-50 p,
.g-50 a,
.g-50 h3,
.g-50 h4,
.g-50 h5,
.g-50 h2{
    margin: 0;
    padding: 0;
}

.g-24{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
}
.g-24 p,
.g-24 a,
.g-24 h3,
.g-24 h4,
.g-24 h5,
.g-24 h2{
    margin: 0;
    padding: 0;
}

.btn-white{
    background: #fff;
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 16px;
    padding: 12px 22px !important;
    font-size: 14px;
}
.btn-white:hover{
    background: var(--main-color);
    color: #fff;
}

.btn-theme{
    background: var(--fourth-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 16px;
    padding: 12px 22px !important;
    font-size: 14px;
}
.btn-theme:hover{
    background: var(--main-color);
    color: #fff;
}

.btn-theme-2{
    background: var(--main-color);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 16px;
    padding: 12px 22px !important;
    font-size: 14px;
}
.btn-theme-2:hover{
    background: var(--fourth-color);
    color: #fff;
}

div.banner{
    position: relative;
    width: 100%;
}
div.banner .bg{
    width: 100%;
    border-radius: 16px;
}
div.banner .content{
    position: absolute;
    right: 50px;
    top: 0;
    bottom: 0;
    left: 50%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-end;
    text-align: right;
    align-content: center;
    gap: 10px;
    flex-direction: column;
}
div.banner.f-32 h3.title{
    font-size: 32px;
}

footer{
    padding: 60px 0 50px 0;
}
.f-menu{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
}
.f-menu li a{
    font-weight: 400;
}
footer .row{
    align-items: center;
}

hr{
    border-color: #ECECEC;
    border-width: 2px;
    margin: 25px 0;
}
footer .d-flex{
    gap: 30px;
}
footer .f-logo{
    margin-top: 60px;
    width: 100%;
}
.newsletter{
    position: relative;
    display: flex;
    justify-content: flex-end;
}
.newsletter .form-control{
    width: 100%;
    border-radius: 100px;
    background: #F1F4F8;
    border: 1px solid #DEE5ED;
    box-shadow: 0px 0px 0px 3px #FFFFFF;
    padding: .45rem .75rem;
    max-width: 400px;
    color: #262626;
}
.newsletter button{
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    font-size: 12px;
    font-weight: 600;
    padding: 15px !important;
}
section.slogan{
    position: relative;
    padding: 0;
}
section.slogan img{
    width: 100%;
}
section.slogan .container{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    text-align: right;
    gap: 30px;
}

.text-center span.subtitle{
    margin: 0 auto;
}
.mtb-40{
    margin-top: 40px;
    margin-bottom: 40px;
}
.mt-40{
    margin-top: 40px;
}
.mb-40{
    margin-bottom: 40px;
}
.text-center .btn{
    width: max-content;
    margin: 0 auto;
}

.group-item{
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    display: block;
}
.group-item img{
    width: 100%;
}
.group-item:hover .content{
    background: var(--main-color);
}
.group-item .content{
    position: absolute;
    border-radius: 6px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    backdrop-filter: blur(10px);
    background: #FFFFFF80;
    color: #fff;
    padding: 20px;
}
.group-item .content h4{
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}
.group-item .content span{
    font-size: 13px;
    font-weight: 600;
    display: flex;
    gap: 10px;
    align-items: center;
}

.case-item{
    position: relative;
    display: block;
}
.case-item img{
    width: 100%;
    border-radius: 8px;
}
.case-item .content{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 15px;
}
.case-item .content h4{
    font-size: 24px;
    font-weight: 600;
    width: 80%;
}
.case-item .content span{
    font-size: 14px;
    font-weight: 600;
    display: flex;
    gap: 10px;
    align-items: center;
    width: 20%;
    justify-content: flex-end;
}
.case-item:hover h4,
.case-item:hover h4 span{
    color: var(--main-color);
}

.post-item{
    position: relative;
    display: block;
}
.post-item img{
    width: 100%;
    border-radius: 8px;
}
.post-item .content{
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 15px;
}
.post-item .content h4{
    font-size: 24px;
    font-weight: 600;
    width: 100%;
}
.post-item .content span{
    font-size: 14px;
    font-weight: 600;
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
}
.post-item:hover h4,
.post-item:hover h4 span{
    color: var(--main-color);
}

.area-1{
    display: flex;
    width: 100%;
}
.area-1 .item{
    position: relative;
    overflow: hidden;
    display: block;
    width: calc(100% / 2);
}
.area-1 .item:first-child{
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}
.area-1 .item:last-child{
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}
.area-1 .item img{
    width: 100%;
}

.area-1 .item .content{
    position: absolute;
    border-radius: 6px;
    left: 20px;
    right: 50%;
    bottom: 20px;
    background: #FFFFFF80;
    color: #fff;
    padding: 20px;
    backdrop-filter: blur(10px);
    z-index: 2;
}
.area-1 .item .content h4{
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}
.area-1 .item .content span{
    font-size: 13px;
    font-weight: 400;
    display: flex;
    gap: 10px;
    align-items: center;
}
.area-1 .item:hover .content{
    border-left: 10px solid #05D8F4;
}
.area-1 .item:before{
    content: "";
    position: absolute;
    left: -100%;

    top: 0;
    bottom: 0;
    background: #0000004D;
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: visible;
}
.area-1 .item:hover:before{
    animation: leftToRight 1s ease;
    left: 0;
}

@keyframes leftToRight {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}

.absolute-menu{
    position: fixed;
    right: -100%;
    top: 0;
    bottom: 0;
    width: 30%;
    background: #fff;
    z-index: 9;
    padding: 30px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transition-duration: all .4s ease;
    visibility: hidden;
}
.absolute-menu.show{
    right: 0;
    visibility: visible;
}

.absolute-menu .menu-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #D5D5D5;
    padding-bottom: 15px;
}
.absolute-menu .menu-header h4{
    font-size: 30px;
    font-weight: 600;
    margin: 0;
}
.absolute-menu .menu-header a{
    font-size: 30px;
}
.absolute-menu ul.menu{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 20px 0;
}
.absolute-menu ul.menu li a{
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 400;
    transition: none;
}
.absolute-menu ul.menu li a:hover{
    font-style: italic;
}
.absolute-menu .menu-footer .d-flex{
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}
.absolute-menu .menu-footer{
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
}
.absolute-menu hr{
    border-color: #D5D5D5;
}
.absolute-menu .alt-link{
    font-size: 24px;
    font-weight: 500;
    display: flex;
    gap: 10px;
    align-items: center;
}
.absolute-menu ul.menu li .alt{
    display: none;
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    background: #fff;
    min-height: 50%;
}
.absolute-menu ul.menu li .alt.show{
    display: block;
}
.absolute-menu ul.menu li .menu-header a{
    font-size: 30px;
    display: block;
    padding: 0;
}
.widget-item{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border: 1px solid #D5D5D5;
    border-radius: 16px;
    padding: 30px;
    justify-content: center;
    text-align: center;
    gap: 20px;
    height: 100%;
    align-items: flex-start;
    align-content: flex-start;
}

.widget-item h4{
    font-size: 26px;
    font-weight: 600;
}

.half-bg{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right center;
    position: relative;
    overflow: hidden;
}
.half-bg:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 110%;
    background: var(--fifth-color);
    clip-path: polygon(0 0, 54% 0, 48% 100%, 0 100%);
}
.half-bg .container{
    position: relative;
    z-index: 2;
}


.absolute-menu-icons{
    position: fixed;
    right: 0;
    top: 45%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 3;
}
.absolute-menu-icons a{
    display: block;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--second-color);
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
    gap: 10px;
}
.absolute-menu-icons a i{
    font-size: 26px;
}
.absolute-menu-icons a:hover{
    background: var(--sixth-color);
}

.product-item{
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    display: block;
    background: #E8E8E8;
}
.product-item img{
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
}
.product-item:hover .content{
    background: var(--fifth-color);
}
.product-item .content{
    position: absolute;
    border-radius: 6px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    backdrop-filter: blur(10px);
    background: #FFFFFF80;
    color: #fff;
    padding: 20px;
}
.product-item .content h4{
    font-size: 16px;
    font-weight: 600;
}
.product-item .content span{
    font-size: 13px;
    font-weight: 600;
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--main-color);
}


.products .form-select,
.products .form-control{
    padding: 12px 0;
    background-color: transparent;
    color: #000;
    border-width: 0;
    border-bottom: 2px solid #000;
    border-radius: unset;
    box-shadow: none !important;
}
.products .form-select::placeholder,
.products .form-control::placeholder{
    color: #000;
}

.slider-control{
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}
.slider-control a{
    font-size: 30px;
}
.slider-control a.slick-disabled{
    opacity: .5;
}

section.content ul{
    list-style: disc;
    font-weight: 400;
    color: #00000099;
    line-height: 1.6;
    padding-left: 2rem;
}

div.banner .content p{
    color: #000;
}

.tab-product .tab-content ul{
    list-style: disc;
    font-weight: 400;
    color: #00000099;
    line-height: 1.6;
    padding-left: 2rem;
}
.tab-product .nav-pills{
    justify-content: space-between;
    gap: 10px;
}
.tab-product .nav-pills .nav-link{
    font-size: 20px;
    font-weight: 600;
    color: #D5D5D5;
    border-bottom: 1px solid #D5D5D5;
    border-radius: unset;
    width: 100%;
    text-align: left;
    padding-left: 0;
}
.tab-product .nav-pills .nav-link.active{
    color: var(--text-color);
    background: transparent;
    border-bottom: 1px solid #808285;
}
.tab-product .nav-pills .nav-item{
    width: calc(100% / 4 - 10px);
}
.tab-product .tab-content{
    margin-top: 30px;
}

.specifications table td,
.specifications table th{
    padding: 5px 10px;
}
.specifications table td{
    color: #808285;
}

section.video{
    position: relative;
    padding: 0;
    margin: 90px 0;
}
section.video img{
    border-radius: 16px;
    width: 100%;
}
section.video a{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
}
section.video a i{
    background: #fff;
    border-radius: 100%;
}
.bg-gray{
    background-color: #D5D5D5;
}

.bg-custom-area-1{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: linear-gradient(180deg, rgba(231, 249, 253, 0) 0%, #E7F9FD 100%);
    gap: 20px;
}
.bg-custom-area-1 h3,
.bg-custom-area-1 p{
    margin: 0;
    padding: 0;
}

.accordion-item{
    background: transparent;
}
.accordion-button:not(.collapsed),
.accordion-button{
    background: transparent;
    font-weight: 600;
    font-size: 20px;
    box-shadow: none !important;
    padding-left: 0;
}
.accordion-body{
    padding-left: 0;
    border-top: 1px solid #808285;
    padding-bottom: 0;
}

.contact-box{
    background: #fff;
    height: 100%;
    box-shadow: 0px 0px 50px 0px #D0D0D040;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-box h4,
.contact-box p{
    margin: 0;
    padding: 0;
}

.contact-box h4{
    font-weight: 600;
    font-size: 30px;
}
.contact-box a{
    font-size: 16px;
}
.contact-box a i{
    margin-right: 6px;
    color: var(--main-color);
}
.contact-box p{
    font-size: 18px;
    color: var(--text-color);
}
h4.title{
    font-size: 28px;
    font-weight: 600;
}
h4.title span{
    font-style: italic;
    color: var(--main-color);
}
.form-group{
    margin-bottom: 20px;
}

.contact-form .form-select,
.contact-form .form-control{
    padding: 12px 0;
    background-color: transparent;
    color: #000;
    border-width: 0;
    border-bottom: 2px solid #D5D5D5;
    border-radius: unset;
    box-shadow: none !important;
}
.contact-form .form-select::placeholder,
.contact-form .form-control::placeholder{
    color: #D5D5D5;
}
.contact-form .form-select:focus,
.contact-form .form-control:focus{
    border-color: #000;
}
.contact-form .form-select:focus::placeholder,
.contact-form .form-control:focus::placeholder{
    color: #000;
}


.contact-box-v2{
    background: #fff;
    height: 100%;
    box-shadow: 0px 0px 50px 0px #D0D0D040;
    padding:  40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}
.contact-box-v2 a{
    font-size: 24px;
    color: #000;
    font-weight: 600;
}
.contact-box-v2 i{
    background: #000;
    color: #fff;
    padding: 15px;
    border-radius: 16px;
    display: block;
    width: max-content;
    font-size: 30px;
}
.contact-box-v2 img{
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 200px;
}

.form-check-input:checked {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.buy-box{
    background: #fff;
    box-shadow: 0px 0px 50px 0px #D0D0D040;
    padding: 35px;
    display: flex;
    flex-direction: column;
}
.buy-box h4{
    font-weight: 400;
    font-size: 38px;
}
.buy-box .item{
    border-bottom: 1px solid #D5D5D5;
    display: flex;
    flex-direction: column;
    padding: 15px 0;
    margin-bottom: 15px;
}
.buy-box .item p{
    margin: 0;
    padding: 0;
    font-size: 18px;
    color: var(--text-color);
}
.buy-box .item h6{
    font-weight: 600;
    font-size: 18px;
}
.buy-box .item div{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.buy-box .item:last-child{
    margin-bottom: 0;
}

.icon-btn{
    background: transparent;
    border: none;
    border-bottom: 2px solid #000;
}

div.info{
    background: #ECECEC;
    padding: 30px;
    text-align: center;
}
div.info p{
    margin: 0;
    padding: 0;
    font-size: 22px;
    color: var(--text-color);
    line-height: 1.2;
    font-weight: 600;
}

a.info{
    background: #ECECEC;
    padding: 30px;
    text-align: center;
    font-size: 22px;
    color: var(--text-color);
    line-height: 1.2;
    font-weight: 600;
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}
a.info:hover{
    background: var(--second-color);
    color: #fff;
}

.search h6{
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 400;
}
.search img{
    border-radius: 8px;
}
.search .item{
    margin-bottom: 30px;
    display: block;
}
.search .item h4{
    font-size: 30px;
    font-weight: 600;
}
.search .item .alt-item p{
    margin: 0;
    padding: 0;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}
.badge-success{
    background: #005C3433;
    color: #000000;
}
.badge-default{
    background: #80828533;
    color: #000000;
}
.badge-danger{
    background: #FF000433;
    color: #000000;
}
.search .item .alt-item{
    margin-top: 15px;
}
.search .item .alt-item .badge{
    font-size: 16px;
    font-weight: 400;
    margin-right: 5px;
    border-radius: 18px;
    padding: 8px 16px;
}
.post img{
    border-radius: 8px;
}
.post p{
    font-size: 18px;
    color: #808285;
}
.post .content img{
    margin: 10px 0 30px 0;
}
.text-dark p{
    --bs-text-opacity: 1;
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

section.nav-breadcrumb{
    padding: 40px 0;
}
section.nav-breadcrumb .breadcrumb{
    margin: 0;
}
.breadcrumb-item a{
    color: #888888;
}
.breadcrumb-item a:hover,
.breadcrumb-item.active a{
    color: #000000;
}

.product-slider .slick-slide,
.category-slider .slick-slide,
.case-slider .slick-slide{
    padding: 0 calc(var(--bs-gutter-x) * .5);
}
.product-slider,
.category-slider,
.case-slider{
    margin-left: calc(var(--bs-gutter-x) * -.5);
    margin-right: calc(var(--bs-gutter-x) * -.5);
}
.half-bg img{
    display: none;
}
.w-max-content{
    width: max-content;
}

@media(max-width: 768px){

    .column-reverse-m{
        flex-direction: column-reverse;
    }
    section{
        padding: 50px 0;
    }
    .column-reverse-m .col-md-6 img{
        margin-bottom: 30px;
    }
    header .top + .container{
        padding: 25px calc(var(--bs-gutter-x) * .5);
    }
    h2.title{
        font-size: 34px;
    }
    .g-50{
        gap: 25px;
    }
    h3.title{
        font-size: 24px;
    }
    div.banner .content{
        position: static;
        padding: 40px 20px;
    }
    div.banner .content h3{
        margin: 0;
    }
    div.banner .content img{
        max-width: 200px;
    }
    div.banner .bg{
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
    }
    .absolute-menu-icons{
        display: none;
    }
    .mtb-40{
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .col-md-auto .btn{
        width: max-content;
    }
    .mt-20-m{
        margin-top: 20px;
    }
    .mb-20-m{
        margin-bottom: 20px;
    }
    .area-1 .item{
        width: 100%;
        border-radius: 16px;
    }
    .area-1{
        flex-wrap: wrap;
        gap: 20px;
    }
    .area-1 .item .content{
        right: 20px;
    }
    .area-1 .item img{
        aspect-ratio: 1.2/1;
        object-fit: cover;
    }

    section.slogan .container{
        position: static;
        padding: 60px 20px;
        gap: 10px;
    }
    section.slogan img{
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
    }
    footer{
        padding: 50px 0 0 0;
    }
    footer .f-menu{
        margin-top: 30px;
        flex-direction: column;
        align-items: flex-start;
    }
    .newsletter{
        margin-top: 20px;
    }
    .absolute-menu{
        width: 100%;
    }
    .absolute-menu .menu-footer .d-flex{
        gap: 20px;
    }
    ul.social{
        gap: 20px;
    }
    .absolute-menu .logo img{
        max-width: 140px;
    }
    section.nav-breadcrumb{
        padding: 20px 0;
    }
    .widget-item{
        padding: 30px 20px;
    }
    .half-bg:before{
        height: 100%;
        clip-path: none;
    }
    .half-bg{
        padding-bottom: 0;
    }
    .half-bg img{
        display: block;
        position: relative;
        z-index: 2;
        margin-top: 20px;
    }
    .banner-v2.bg-white{
        background-color: transparent !important;
    }
    .banner-v2.bg-white .content{
        text-align: center;
    }
    form.filter .row{
        gap: 20px;
    }
    .mb-5{
        margin-bottom: 2rem !important;
    }
    .buy-box{
        margin-top: 20px;
    }
    .contact-box-v2,
    .contact-box{
        height: auto;
        margin-bottom: 20px;
    }
    .contact-box-v2 img{
        max-width: 90px;
    }
    .tab-product .nav-pills .nav-item{
        width: 100%;
    }
    .specifications img{
        margin-bottom: 20px;
    }
}

section.post div.content ul{
    list-style: disc;
    padding-left: 2rem;
}

.post-item{
    background: #fff;
    box-shadow: 0px 4px 8.3px 0px #00000014;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.post-item .content{
    margin-top: 0;
    padding: 20px;
    height: 100%;
    align-content: space-between;
}
.post-item img{
    height: 220px;
}

.case-slider .slick-track{
    display: flex !important;
}
.case-slider .slick-slide{
    height: inherit !important;
    padding-bottom: 10px;
}
.case-slider .slick-slide div .item,
.case-slider .slick-slide div{
    height: 100%
}
footer{
    background: #fff;
}

.writer{
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.writer img{
    height: 56px;
    width: 56px;
    object-fit: contain;
    background: #DFCC9F;
    border-radius: 100%;
}
.writer h4{
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    color: #101828;
    margin: 0;
}
.writer p{
    margin: 0;
    color: #667085;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.event-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.event-top .time{
    display: flex;
    align-items: center;
    gap: 10px;
}
.fa-clock.upcoming{
    color: #048146 !important;
}
.fa-clock.past{
    color: #A60609 !important;
}

.events-item{
    background: #fff;
    padding: 15px;
    border-radius: 20px;
}
.post-item.event h4{
    display: flex;
    justify-content: space-between;
}
.post-item.event span{
    justify-content: space-between;
}
.post-item.event.past img{
    filter: brightness(0.7);
}
.post-item.event.past span{
    color: #808285;
}

.filter-event{
    margin: 2rem 0;
    background: #fff;
    border-radius: 20px;
    padding: 15px;
}


.only-m{
    display: none !important;
}
.only-m-flex{
    display: none !important;
}


.bg-custom-area-2{
    padding: 60px 0;
    background: linear-gradient(to right, #153524, #009856);
}
.bg-custom-area-2 p{
    margin: 0;
    font-size: 34px;
    color: #fff;
    font-weight: 400;
}

@media(max-width: 768px){
    .bg-custom-area-2 p{
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 20px;
        text-align: center;
    }
    .only-m{
        display: block !important;
    }
    .only-m-flex{
        display: flex !important;
    }
    .only-d{
        display: none !important;
    }
}

.search .item .alt-item .badge:hover{
    background: var(--main-color);
    color: #fff;
}