:root {
  --green: #033F33;
  --sec-green: #024638;
  --black: #000;
  --yellow: #E1B74C;
  --white: #fff; 
  --black-01: #0D0D0D;
  --grey: #D1D1D1; 
  --black-20: rgba(0, 0, 0, 0.20);
  --black-60: rgba(0, 0, 0, 0.60);
  --heading5: 36;
  --heading6: 24;
  --text-body: 16;
  --text-body-lg:18;
  --text-body-sm: 14;
}
p{
    margin-bottom: 0;
}
.text-green{
    color: var(--green);
}
.text-black{
    color: var(--black);
}
.text-white{
    color: var(--white);
}
.bg-green{
    background-color: var(--green);
}
.bg-yellow{
    background-color: var(--yellow);
}
.text-sec-green{
    color: var(--sec-green) !important;
}

.px-20{
    padding-left: 20px;
    padding-right: 20px;
} 
.pt-75{
    padding-top: 75px;
}
.pb-58{
    padding-bottom: 58px;
}
.py-13{
    padding-top: 13px;
    padding-bottom: 13px;
}
.pb-13{
    padding-bottom: 13px;
}
.pt-25{
    padding-top: 25px;
}
.pb-40{
    padding-bottom: 40px;
}
.pb-72{
    padding-bottom: 72px;
}
.py-40{
    padding-top: 40px;
    padding-bottom: 40px;
}
/* 36px */
.heading5, .detail-wrapper h5{
    font-size: 24px;
}
/* 24px */
.heading6{
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
} 
/* 16px */
.text-body-normal{ 
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
}
/* 18px */
.text-body-lg, .detail-wrapper p{
    font-size: 16px;
}
/* 14px */
.text-body-sm{
    font-size: 14px;
}
.line-clamp-6{
  display: -webkit-box;
  -webkit-line-clamp: 6;  /* Limit to 6 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;

}
.img-aspect{
    aspect-ratio: 705/429;
}
.tag{
    padding: 6px 10px;
    border-radius: 5px;
}
.p-button{
    border-radius: 5px;
    border: 1px solid var(--green);
    background: var(--green); 
    color: var(--white);
    max-width: 250px;
    padding: 12px 40px;
    transition: all 0.2s ease-out;
    display: inline-flex;
    align-items: center;
}
.p-button p{
    transform: translateX(10px);
    display: inline-block;
    padding-right: 10px;
}
.p-button img{
    opacity: 0;
}
.p-button:hover p{
    transform: translateX(0);
    transition: all 0.2s ease-out;
}
.p-button:hover{
    background-color: var(--white);
    color: var(--green);
    transition: all 0.2s ease-out;
}
.p-button:hover img{
    opacity: 100;
}
.m-button{
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid var(--green);
    background: var(--white); 
    color: var(--green);
    max-width: 250px;
    padding: 12px 40px;
    transition: all 0.2s ease-out;
    display: inline-flex;
    align-items: center;
}
.m-button p{
    transform: translateX(10px);
    display: inline-block;
    padding-right: 10px;
}
.m-button img{
    opacity: 0;
}
.m-button:hover p{
    transform: translateX(0);
    transition: all 0.2s ease-out;
}
.m-button:hover{
    background-color: var(--green);
    color: var(--white);
    transition: all 0.2s ease-out;
}
.m-button:hover img{
    opacity: 100;
}
.c-main{
    max-width: 1920px;
    margin: 0 auto;
}
.categories{
    text-align: right;
}
.categories select{
    padding: 15px 25px 15px 18px;
    position: relative;
    border: 1px solid var(--black-20);
    color: (var(--black));
     -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M11.9999 14.6537L7.59619 10.25H16.4037L11.9999 14.6537Z" fill="%231F1F1F"/></svg>');
    background-repeat: no-repeat;
    background-position-x: 98%;
    background-position-y: 15px;
}
.categories select:focus-visible{
    outline: none;
}
.paginations{
    display: flex;
    align-items: center;
    padding-top: 13px;
}
.pagination-item{
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--grey);
    margin-right: 10px;
    color: var(--black);
}
a.pagination-item {
    text-decoration: none;
}
.pagination-item:hover{
    border: 1px solid var(--black);
}
.pagination-item.active{
    color: var(--white);
    background-color: var(--green);
}
.pagination-item:last-child, .pagination-item:first-child{
    border: 0;
}
.pagination-item:first-child  > img{
   rotate: 180deg;
}
.max-w-1058{
    max-width: 1058px;
    margin: 0 auto;
}
.aspect-1058-644{
    aspect-ratio: 1058/644;
    object-fit: cover;
}
.pt-48{
    padding-top: 48px;
}
.pt-20{
    padding-top: 20px;
}
.line{
    border-bottom: 1px solid var(--grey);
}
.pt-45{
    padding-top: 45px;
}
.pb-12{
    padding-bottom: 12px;
}
.breadcrumbs{
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
}
.breadcrumbs li {
    position: relative;
    list-style: none;
    padding-right: 20px;
}
.breadcrumbs li  a{
    text-decoration: none;
}
.breadcrumbs li::after{
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="7" height="12" viewBox="0 0 7 12" fill="none"><path d="M1.05375 -6.21631e-06L6.7075 5.65374L1.05375 11.3075L9.21218e-08 10.2537L4.6 5.65374L8.96411e-07 1.05374L1.05375 -6.21631e-06Z" fill="%231F1F1F"/></svg>');
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-40%);
}
.breadcrumbs li:last-child:after{
    content: '';
}
.breadcrumbs li a{
    color: var(--black);
    font-weight: 500;
}
.breadcrumbs li:last-child > a{
    color: var(--black-60);
    pointer-events: none;
}
.back-btn{
    display: none;
    text-decoration: none;    
}
.pl-8{
    padding-left: 8px;
}
.pt-42{
    padding-top: 42px;
}
.px-15{
    padding-left: 15px;
    padding-right: 15px;
}
.pb-140{
    padding-bottom: 140px;
}
.f-video{
    padding: 25px 0;
}
.detail-wrapper{
    & .f-img > img{
        width: 100%;
        height: auto;
        border-radius: 5px;
    }
    & p > img{
        max-width: 100%;
        height: auto;
       /* border-radius: 5px; */
    }
    & p > a{
        word-break: break-word;
    }
    & h5 , p{
        color: var(--black);
    }
    & .h-img{
        display: flex;
        gap: 10px;
        width: 100%;
        @media(max-width: 767px){
            display: block;
        }
        & img{
            width: auto;
            height: auto;
            max-width: 50%;
            object-fit: cover;
            @media(max-width: 767px){
                width: 100%;
                max-width: 100%;
            }
        }
    }
    & .f-socials{
        & span{
            text-transform: uppercase;
            color: var(--black-60);
        }
        padding: 48px 0 12px 0;
        display: flex;
        align-items: center;
        gap: 10px;
        & button{
            background-color: transparent;
            border: 0;
        }
    }
}
.discover-more{
    display: flex;
    justify-content: center;
}
.dec-line{
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--black-20);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}
.video-wrapper {
  position: relative;
  overflow: hidden;
}

.video-thumb {
  z-index: 2;
  transition: opacity 0.4s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black-60);
  cursor: pointer;
}
.video-thumb .play{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.video-thumb.hide {
  opacity: 0;
  pointer-events: none;
}
.back-to-top{
    position: fixed;
    right: 5%;
    bottom: 0;
    border: 0;
    background-color: transparent;
    opacity: 0; 
    pointer-events: none; 
    transition: opacity 0.3s ease;
}

/* .content-one img {
    width: 100%;
} */

img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

img.alignleft {
    float: left;
    margin: 0.5em 1em 0.5em 0;
}

img.alignright {
    float: right;
    margin: 0.5em 0 0.5em 1em;
}

.page-404-wrapper {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.page-404-wrapper .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: auto;
    border: 1px solid black;
    padding: 50px;
    gap: 20px;
}

.page-404-wrapper .container .home-button {
    display: flex;
    justify-content: end;
}

.page-404-wrapper .container .home-button .btn {
    width: fit-content;
    background: #033f33;
    color: #FFF;
    border-radius: unset;
}

.page-404-wrapper .container p {
    font-weight: 400;
}

@media(max-width: 576px){
    .pb-58 {
	padding-bottom: 20px;
    }

.pt-75 {
    padding-top: 30px;
}

.line-clamp-3 {
display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-5 {
display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.m-button {
     max-width: unset;
     width: 100%;
     justify-content: center;
}
}

@media(min-width: 576px){
    .heading5, .detail-wrapper h5 {
        font-size: calc(24px + (var(--heading5) - 24) * ((100vw - 576px) / (1920 - 576)));
    }

    .heading6 {
        font-size: calc(20px + (var(--heading6) - 20) * ((100vw - 576px) / (1920 - 576)));
    }
    .text-body-normal {
        font-size: calc(16px + (var(--text-body) - 16) * ((100vw - 576px) / (1920 - 576)));
    }
    .text-body-lg, .detail-wrapper p {
        font-size: calc(16.3px + (var(--text-body-lg) - 16) * ((100vw - 576px) / (1920 - 576)));
    }
    .text-body-sm{
        font-size: calc(14px + (var(--text-body-sm) - 14) * ((100vw - 576px) / (1920 - 576)));
    }
    .px-220{
        padding-left: 5%;
        padding-right: 5%;
    }

}
@media(min-width: 1024px){
    .px-220{
        padding-left: 8%;
        padding-right: 8%;
    }
}
@media(min-width: 1366px){
    .px-220{
        padding-left: 11.702127659574469%;
        padding-right: 11.702127659574469%;
    }
}
@media (min-width: 1921px) {
    .heading5, .detail-wrapper h5 {
        font-size: 36px;
    }
    .heading6{
        font-size: 24px;
    }
    .text-body-normal{ 
        font-size: 16px;
    }
    .text-body-lg, .detail-wrapper p{
        font-size: 18px;
    }
    .text-body-sm{
        font-size: 14px;
    }
}
@media(max-width: 767px){
    .line-clamp-6{
        -webkit-line-clamp: 8; 

    }
    .categories{
        text-align: left;
    }
    .categories select{
        width: 100%;
        margin-top: 20px;
    }
    .p-button{
        display: flex;
        max-width: 100%;
        width: 100%;
        justify-content: center;
    }
    .pb-40{
        padding-bottom:30px;
    }
    .pt-25{
        padding-top: 13px;
    }
    .detail-wrapper p iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }
}
@media(max-width: 1023px){
    .breadcrumbs{
        display: none;
    }
    .back-btn{
        display: block;
    }
}