:root{
    --white: #F5F5F7;
    --red: #B71C1C;
    --gold: #C89D5C;
    --gray: #0D0F12;
    --light-gray: #191B1D;
    --light-gray-2: #686868;
    --black: #020608;
}
body{
    background-color: var(--black);
    color: var(--light-gray-2);
    font-family: "Inter", sans-serif;
}
h1,h2,h3,h4,h5,h6{
    font-family: "RajDhani", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}
h1, h3, h4{
    color: var(--white);
}
h2{
    color: var(--red);
    font-size: 1.2rem;
}
p{
    margin: 0;
}
.banner{
    background: url("images/banner.png") no-repeat right bottom;
    background-size: 75%;
    font-size: clamp(1rem, 1.5vw, 1.6rem);
    padding: 2rem 4rem;
    min-height: 580px;
}
.banner-title{
    font-size: clamp(2.5rem, 4.5vw, 5rem);
    line-height: 1.05;
}
.banner-title strong{
    color: var(--red);
    font-weight: 700;
}
.banner header{
    margin-bottom: 2rem;
}
.banner .logo img{
    width: 100%;
    max-width: 400px;
    height: auto;
}
main{
    padding: 50px;
}
p.soon{
    color: var(--red);
    font-weight: bold;
}
.card{
    background: var(--gray);
    border: 1px solid var(--light-gray);
    color: var(--white);
}
.card .row{
    padding: 0.5rem 0;
}
.card > .row > .col{
    border-right: 1px solid var(--light-gray);
    padding: 0.75rem 1rem;
}
.card > .row > .col:last-of-type{
    border-right: none;
}
.ti{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 2.5rem;
    stroke-width: 0.5;
    -webkit-text-stroke: 0;
}
.ti::before{
    color: var(--gold);
}
.ti.ti-torii{
    font-size: 5.5rem;
}
.ti.ti-torii::before{
    color: var(--red);
}
.what-is{
    border-right: 1px solid var(--light-gray);
}
.what-is .highlight{
    color: var(--white);
    font-family: "RajDhani";
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;   
}
footer{
    text-align: center;
    padding: 1.5rem;
}

@media (max-width: 991.98px) {
    main {
        padding: 20px 15px;
        padding-top: 0;
    }
    .banner {
        padding: 1rem;
        background-size: 170%;
        background-position-y: bottom;
        background-position-x: 100%;
        min-height: 100vh;
    }
    .banner-title {
        font-size: 2.8rem;
        line-height: 3.2rem;
    }
    .banner-subtitle,
    .soon{
        font-size: 1rem;
    }
    .banner .logo img {
        max-width: 100%;
        height: auto;
    }
    .card > .row > .col {
        border-right: none;
        border-bottom: 1px solid var(--light-gray);
        padding: 0.75rem 0.5rem;
        margin-bottom: 0.5rem;
        width: 100%;
    }
    .card > .row > .col:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .what-is {
        border-right: none;
        border-bottom: 1px solid var(--light-gray);
        padding: 1rem;
        padding-top: 0;
        padding-bottom: 2rem;
        margin-bottom: 0;
    }
}