:root {
    --base-color: #ABCD47;
    --base-color-light: #F4F4F4;
    --base-color-lighter: #F6F6F6;
}

html,
body {
    font-size: 16px;
    color: #333;
    font-family: "Inter", sans-serif !important;
    line-height: 240% !important;
}

p {
    line-height: 160% !important;
}

a {
    text-decoration: none !important;
    color: inherit;
}

li{
    list-style: none;
}

.small-btn small {
    font-size: 1rem !important;
}

.animate {
    transition: all .3s ease;
}

.homeLb {
    background-color: #000;
    overflow: hidden;
    width: 100%;
    height: auto;
    aspect-ratio: 1920 / 950;
    object-fit: cover;
    position: relative;
}

.homeLb .lbText {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    line-height: 100%;
    font-weight: bold;
    font-size: 5vw;
}

.mainMenu {
    height: 90px;
    z-index: 999;
    background-color: #fff;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.mainMenu .logo img {
    height: 30px;
    ;
}

.mainMenu .menus a {
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
}

.feedbackIcon {
    position: relative;
}

.feedbackIcon span {
    position: absolute;
    top: 10px;
    right: 8px;
    background-color: var(--base-color);
    color: #333;
    border-radius: 50%;
    text-align: center;
    font-size: .6rem !important;
    line-height: 15px;
    width: 15px;
    height: 15px;
    font-size: 12px;
}

.productSwiper .productBox {
    background-color: var(--base-color-light);
}

.productSwiper .productBox .pimg {
    position: relative;
}

.productSwiper .productBox .pimg a {
    position: absolute;
    bottom: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
}

.productSwiper .productBox:hover .pimg a {
    opacity: 1;
    transition: all .3s ease;
    bottom: 0px;
}

.productSwiper .productBox:hover .pimg img {
    transform: scale(1.05);
    transition: all .3s ease;
}

.liner-text {
    color: #CECECE;
    transition: color .3s ease;
    font-weight: bold;
}

.liner-text.active {
    color: #000;
}

.cpList {
    background-color: var(--base-color-lighter);
}

.share {
    position: relative;
}

.share .container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 2;
}

#scroll-wrapper {
    display: flex;
    height: 70vh;
    overflow: hidden;
    padding: 0 2%;
    gap: 40px;
    background-color: #333;
    position: relative;
}

#scroll-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.5);
    z-index: 1;
}

.column {
    overflow: hidden;
    position: relative;
}

.column:nth-child(1) {
    width: 25%;
}

.column:nth-child(2) {
    width: 50%;
}

.column:nth-child(3) {
    width: 25%;
}

.scroll-content {
    display: flex;
    flex-direction: column;
    position: absolute;
    gap: 30px;
    top: 0;
    left: 0;
    width: 100%;
}

.scroll-content img {
    width: 100%;
    display: block;
    border-radius: 1rem;
}

footer {
    background-color: #1E1E1E;
}

#countryList a {
    color: #999;
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 0 8px;
    width: 20%;
    float: left;
    margin-bottom: 10px;
}

#countryList a:hover {
    color: #000;
}

#countryList a img {
    width: 24px;
    aspect-ratio: 14/9;
}

.banner {
    background-color: #000;
    overflow: hidden;
    width: 100%;
    height: auto;
    aspect-ratio: 1920 / 950;
    object-fit: cover;
    position: relative;
    background-size: cover;
}

.banner .bText {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    line-height: 100%;
    font-weight: bold;
    font-size: 5vw;
}

.cpTopClass {
    position: relative;
}

.cpTopClass>a {
    color: #333;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 7px
}

.cpTopClass.active>a>i {
    transform: rotate(180deg);
}

.cpTopClass .twoClass {
    position: absolute;
    left: 0;
    background-color: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, .2);
    border-radius: 5px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    min-width: 200px;
    opacity: 0;
    transition: all .2s ease;
    transform: translateY(20px);
    pointer-events: none;
}

.cpTopClass .twoClass a {
    font-size: .8rem;
    color: #333;
}

.cpTopClass.active .twoClass {
    opacity: 1;
    transform: translateY(0px);
    pointer-events: all;
    z-index: 99;
}

.cpQuery{
    background-color: var(--base-color-light);
    position: relative;
}

.cpQuery .productText{
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 160%;
}

.cpQuery button{
    display: flex;
    align-items: center;
    font-size: .9rem;
    width: 100%;
    justify-content: center;
    border-radius: 2rem;
    gap: 4px;
}

.cpQuery button small{
    margin-top: 3px;
}

#cards.bounce{
    animation: bounce .3s ease;
}

.inquiryList{
    position: relative;
    line-height: 160%;
}

.inquiryList:hover{
    background-color: var(--base-color-light);
}

.delInquiry {
    position: absolute;
    right: 0px;
    bottom: 6px;
}

#navs a{
    color: #000;
}

.cpTopLink a{
    color: #000;
}

@keyframes bounce {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(2);
    }
    100% {
        transform: scale(1);
    }
}

.accordion-button:not(.collapsed) {
    background-color:transparent !important;
}

.accordion-button:focus{
    box-shadow: none !important;
}

.cpIntro > div{
    display: flex;
    gap: 10px;
}

.cpIntro > div span{
    color: #666;
}

.inquiryLength{
    background-color: var(--base-color);
}

.secondMenu{
    display: none;
}

.menus > li{
    position: relative;
}

.menus > li.active > a{
    color: var(--base-color);
}

.menus > li a i {
    display: none;
}

.menus > li:nth-child(3) a i {
    display: inline-block;
}

.menus > li:hover .secondMenu {
    display: flex;
    flex-direction: column;
    gap:10px;
    position: absolute;
    top: 100%;
    left: -20px;
    background-color: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, .2);
    border-radius: 5px;
    padding: 10px 20px;
    z-index: 9999;
}

.menus > li:hover .secondMenu a{
    font-size: .8rem;
    line-height: .8rem;
}

.menus > li:hover .secondMenu a:hover{
    color: var(--base-color);
}


.footMenu a{
    color: #6c757d !important;
    font-weight: normal !important;
}

.footMenu a i{
    display: none;
}

@media (max-width: 768px) {
    header{
        margin-bottom: 90px;
    }
    .mainMenu{
        top: 0;
    }
    .mainMenu .logo img {
        height: 25px;
    }

    #scroll-wrapper {
        height: 50vh;
        gap: 10px;
    }

    .scroll-content {
        gap: 10px;
    }

    .scroll-content img {
        border-radius: .2rem;
    }

    #countryList a {
        flex-direction: column;
        gap: 0;
    }

    #countryList a small {
        font-size: .6rem;
    }

    .cpTopClass>a {
        justify-content: space-between;
    }

    .cpTopClass>a i{
        margin-right: 1rem;
    }

    .cpTopClass .twoClass{
        left: auto;
        right: 0;
    }

    .offcanvas{
        max-width: 70% !important;
    }

}