body{
    margin: 0px;
    padding: 0px;
}
header{
    border-bottom: 1px solid #000;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 40px;
    padding-right: 40px;
}

header img{
    width: 110px;
}

.nav{
    padding-left: 40px;
    padding-right: 40px;
    height: 60px;
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    border-bottom: 1px solid #000;
}

.nav a{
    text-transform: uppercase;
    color: #000;
    font-family: "Forma DJR Banner";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.8px;
    text-decoration: none;
}

.content{
    padding-bottom: 60px;
    padding-top: 36px;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    flex-direction: row;
    gap: 32px;
}

.content div{
    width: 50%;
}

@media screen and (max-width: 600px) {
    .content{
        flex-direction: column;
    }
    .content div{
        width: 100%;
    }
}

.banner-area{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.banner-area .banner-image{
    width: 100%;
    flex-shrink: 0;
}

.banner-area .banner-label{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.banner-area .banner-label span{
    color: #000;
    font-family: "Forma DJR Deck";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;
}

.banner-area .banner-description{
    color: #333;
    font-family: "Forma DJR Deck";
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: 0.96px;
    width: 100%;
}

.text-area{
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.text-area .title{
    text-transform: uppercase;
    color: #000;
    font-family: "Forma DJR Banner";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 2.16px;
    width: 100%;
}

.text-area .subtitle{
    width: 100%;
    color: #333;
    font-family: "Forma DJR Deck";
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: 0.96px;
}

.text-area .htext{
    color: #000;
    font-family: "Forma DJR Banner";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.8px;
    font-weight: 500;
    width: 100%;
}

.text-area .ntext{
    color: #333;
    font-family: "Forma DJR Deck";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.6px;
    width: 100%;
}

.text-area img{
    cursor: pointer;
}