body {
    margin: 0;
    /*background-color: white;*/
    background-color: #453bba;
}
.navbar_main_container {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 5rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 4rem;
    z-index: 40;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 1) 120%
    );
}

.navbar_main_container > .logo_container {
    position: relative;
    left: 1rem;
}

.navbar_main_container > .logo_container > img {
    width: auto;
    height: 3rem;
}

.navbar_main_container > .navbar_container_hrefs {
    position: relative;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.navbar_main_container > .navbar_container_hrefs > li {
    text-decoration: none;
    font-family: "PretendardVariable";
    font-weight: 400;
    font-size: 1.2rem;
}
.navbar_main_container > .navbar_container_hrefs > li > a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.1s ease-in-out;
}
.navbar_main_container > .navbar_container_hrefs > li > a:hover {
    color: rgb(255, 255, 255);
}

.current_page_item > a {
    color: white !important;
    font-weight: 700;
}

.site_main_container {
    position: absolute;
    top: 0rem;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* TEMPLATES BANNER */

.banner_place {
    width: 100%;
    height: 45%;
    /*background-color: red;*/
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.1rem;
    user-select: none;
}

.banner_place > h1 {
    color: white;
    font-family: "Druk Wide Bold Bold";
    font-weight: 800;
    font-size: 3rem;
    margin: 0;
}

.banner_place > h2 {
    color: white;
    font-family: "Arial";
    font-size: 1.5rem;
    font-weight: 400;
    /*letter-spacing: 0.1rem;*/
    margin: 0;
}

.template_content {
    margin-top: 4rem;
    margin-inline: 15%;
    margin-bottom: 4rem;
}

.volatil-footer-container {
    position: static;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: start;
    background-color: black;
    height: 10rem;
}

.footer-block {
}

.footer-block > h1 {
    font-family: "PretendardVariable";
    font-weight: 400;
    font-size: 25px;
    color: gainsboro;
}

.footer-block > p {
    font-family: "PretendardVariable";
    font-weight: 700;
    color: white;
}

.volatil-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.col-1 {
    grid-column: span 1;
}
.col-2 {
    grid-column: span 2;
}
.col-3 {
    grid-column: span 3;
}
.col-4 {
    grid-column: span 4;
}

.empty {
    background: transparent;
}
