* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background: #0C0C0C;
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    overflow-x:hidden;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
}
.text-align {
    text-align:center;
}
.page-width {
    max-width: 1423px;
    margin: 0 auto;
    padding: 0 40px;
}
.flex {
    display: flex;   
}
.align-items {
    display: flex;
    align-items: center;
}
.title {
    color: #FFF;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
}
.pre_title {
    color: #F9B041;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: capitalize;
}
.button {
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    border-radius: 25px;
    padding: 13px 42px;
    display: inline-block;
    border: 1px solid #F9B041;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    background-color: transparent;
}
.button:hover {
    background: #F9B041;
}
.header .button.active {
    background: #F9B041;
}
.text {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}
img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
svg {
    width: 100%;
    height: 100%;
    display: block; 
}
.hb-text-justify {
    text-align: justify;
}
@media screen and (max-width:767px) {
    .button {
        font-size: 14px;
        padding: 12px 30px;
    }
}
@media screen and (max-width:767px) {
    .page-width {
        padding: 0 20px;
    }
    .button {
        font-size: 12px;
        padding: 10px 20px;
    }
    .text {
        font-size: 18px;
    }
}