:root{
    --primary-color: #222124;
    --secondary-color: #eed08c;
    --header-height: 84px;

}

body{
    background-color: #f1f2f3;
    color: #333;
    font-family: 'Times New Roman', Times, serif;
    &:lang(en){
        line-height: 1.4;
    }
}

.text-indent{
    p{
        text-indent: 2em;
    }
}

/* Sections */
section{
    padding: 4.5rem 0;
    &.p-none{
        padding: 0 0;
    }
    &.p-small{
        padding: 3rem 0;
    }
    &.dark{
        background-color: var(--primary-color);
        *{
            color: #fff;
        }
        
    }
}
.section-title{
    text-align: center;
    font-weight: bold;
    font-size: 28px;
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3.5rem;
    &:before{
        content: "";
        display: block;
        background: url(/media/haefy0i4/title-logo.png) no-repeat center center;
        background-size: contain;
        width: 100%;
        height: 22px;
    }
}

/* Header */
header{
    width: 100%;
    background-color: #222124;
    position: sticky;
    top: 0;
    z-index: 10;
    white-space: nowrap;
    .header-wrapper{
        .container{
            height: var(--header-height);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            .logo{
                img{
                    width: 240px;
                }
            }
        }
    }
}

/* Footer */
footer{
    background-color: var(--primary-color);
    *{
        color:#ffffff;
    }
    .footer-upper{
        .footer-logo{
            margin-bottom: 1.5rem;
            img{
                width:160px;
            }
        }
        .company-info{
            table{
                td{
                    font-weight: bold;
                    vertical-align: middle;
                    padding:13px 0;
                }
            }
        img{
            width:16px;
            height:16px;
            margin-right:16px;
            margin-bottom:-2px;
        } 
        }
    }
    .footer-lower{
        font-size: 0.875rem;
        .container{
            border-top: 1px solid #ffffff;
        }
        .copyright{
            line-height: 60px;
        }
        .footer-social{
            display: inline-flex;
            vertical-align: middle;
            gap: 16px;
            margin-left: 16px;
            img{
                width:24px;
                height:24px;
            }
        }
    }

}

/* Assets Section */
.assets-section{
    .feature-item{
        position:relative;
        overflow:hidden;
        border-radius: 10px;
        box-shadow: 3px 3px 15px #0000001a;
        aspect-ratio: 220 / 321;
        cursor:pointer;
        .feature-item-img{
            width:100%;
            height:100%;
            img{
                width:100%;
                height:100%;
                object-fit:cover;
            }
        }
        .feature-item-content{
            position:absolute;
            inset:0;
            z-index:1;
            border-radius:16px;
            padding:1rem;
            &:before{
                content:"";
                position:absolute;
                inset:0;
                z-index:2;
                background:rgba(0,0,0,0);
                transition:all 0.3s ease;
            }
            .feature-item-title{
                --title-height: 50px;
                position:absolute;
                bottom:0;
                left:0;
                width:100%;
                height: var(--title-height);
                z-index:1;
                background:white;
                font-weight: 900;
                font-size: 18px;
                color: #333;
                display:flex;
                align-items:center;
                padding:0 1.5rem;
                transition:all 0.3s ease;
                &:before{
                    content:"";
                    position:absolute;
                    width:100%;
                    height: 8px;
                    bottom:100%;
                    left:0;
                    background:url(/media/ufhn51fs/deco_line.svg) no-repeat center center;
                    background-size :cover;
                }

            }
            .feature-item-description{
                position:absolute;
                inset:0;
                display:block;
                width:100%;
                top: 30%;
                left:-100%;
                z-index:3;
                transition:all 0.3s linear;
                color: #fff;
                font-size: 1.5rem;
                font-weight: 900;
                padding: 0 1.5rem;
                &:before{
                    content:"";
                    position:relative;
                    display:block;
                    width:1.5rem;
                    height: 5px;
                    border-radius: 8px;
                    background-color:var(--secondary-color);
                    margin-bottom:6px;
                }
            }
            .feature-item-buttons{
                display:none;
            }
        }   
    }
    .feature-item:hover{
        .feature-item-content{
            &:before{
                background:rgba(0,0,0,0.5);
            }
            .feature-item-title{
                bottom:calc(var(--title-height) * -1);
            }
            .feature-item-description{
                left:0;
            }
        }
    }
}

/* Contact Us Form */
form{
    width: 100%;
    button{
        &.disable{
            pointer-events: none;
            background-color: #dbdddb;
            color: #5c5c5c;
        }
    }
}
.contact-us-form{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size:14px;
    input, textarea{
        width: 100%;
        padding: 6px 10px;
        border-radius: 4px;
        border: 1px solid #dbdddb;
        font-size: 14px;;
        &:focus{
            border-color: var(--primary-color);
        }
    }
    textarea{
        resize: none;
    }
    .actions{
        display: flex;
        justify-content: flex-end;
    }
}



/* Common */
main{
    h3{
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        font-weight: 900;
    }
    h4{
        font-size: 1.25rem;
        margin-bottom: 1rem;
        font-weight: 900;
    }
    ul {
        list-style-image: url('/media/b0aikasi/bank-cont3-1.png');
        padding-left: 2rem;
        li{
            margin-bottom: 1em;
            padding-left: 6px;
        }
    }

    .center-content{
        display: flex;
        height: 100%;
        align-items: center;
        justify-content: center;
    }
    .btn{
        padding: 6px 1rem;
        border-radius: 4px;
        font-size: 0.875rem;
        font-weight: 500;
        cursor: pointer;
        background-color: var(--primary-color);
        border-style: none;
        color: #fff;
        &:hover{
            background-color: var(--primary-hover);
        }
    }
}