/* HEADER */
header {
    position: absolute;
    top: 0;
    left: 0;
    height: 60px;
    width: 100%;
    z-index: 999;
}
/* BANNER */
.banner__section {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
        url("/assets/webp/About-banner.webp");
    height: 100vh;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero__content {
    color: var(--text100);
    padding: 3rem 1rem 0rem;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero__content h1 {
    font-size: clamp(26pt, 8vw, 50pt);
    text-transform: uppercase;
    font-family: var(--organic-font);
}

.hero__content p {
    font-family: "Typo Gortesk Regular";
        font-size: clamp(12pt, 4vw, 12pt);
        font-weight: 400;
        line-height: 1.5;
    text-align: center;
    max-width: 480px;
}

.hero__content img {
    width: auto;
    height: 70px;
    aspect-ratio: 1/2;
}
/* CONTENT SECTION */
.content__section {
    height: 100%;
    width: 100%;
    position: relative;
    background-size: cover;
  background-position: center;
    background: url("/assets/webp/paper-textured-background.webp") no-repeat;
}

.skewed__wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.skewed {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url("/assets/svg/White-pattern.svg") repeat var(--brand-red);    
    transform-origin: right bottom;
    -webkit-transform: skewY(6deg);
    transform: skewY(6deg);
}

.skewed>img {
    position: absolute;
    top: 0;
    left: 0;
}
.content__wrap {
    z-index: 9;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--text100);
    padding: var(--r100);
    height: max-content;
}
.content__grid-wrap{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;    
    align-items: flex-start;
    
}
.left_grid{
    /* transform: translateY(18%); */
}
.left_grid h2 {
    font-size: clamp(26pt, 8vw, 34pt);
    text-transform: uppercase;
    font-family: var(--organic-font);
}

.left_grid h2 .f-1 {
    position: relative;
}

.left_grid h2 .f-1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--brand-yellow);
    height: 5px;
    border-radius: 10px;
}

.left_grid p {
    font-family: "Typo Gortesk Regular";
    font-size: clamp(12pt, 4vw, 12pt);
    font-weight: 400;
    line-height: 1.5;
}
.left_grid p strong{
    font-size: 15pt;
    font-weight: 600;
}
.right_grid:not(.rev){
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.rev{
    width: 100%;
    display: flex;
    justify-content: flex-start;
}
.right_grid img{
    width: 70%;
    height: auto;
}
/* PAPER SECTION */
.paper__section {
    height: 100%;
    width: 100%;
    position: relative;
    background-size: cover;
    background: url("/assets/webp/paper-textured-background.webp") repeat;   
  background-position: center;
    padding-bottom: var(--r200);
}
.paper_wrap{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--text100);
    padding: var(--r80) var(--r144) var(--r144);
    color: var(--brand-black);
    row-gap: var(--r100);
}

@media screen and (max-width: 768px) {  
    .right_grid img{
        width: 100%;
    }    
    .content__grid-wrap {       
        column-gap: 3rem;
        align-items: unset;
    }   
    .paper_wrap {
        row-gap: 10vh;
    }
    .right_grid{
        align-items: flex-start;
    }
}
@media screen and (max-width: 560px) {
    .hero__content {
        padding: 1rem 1rem 3rem;
    }
    .skewed {
       
        -webkit-transform: skewY(6deg);
        transform: skewY(6deg);
    }    
    .content__wrap {
        padding: var(--r100) var(--r30);
    }
    .content__grid-wrap{
        grid-template-columns: 1fr; 
        align-items: center;      
    }
    .right_grid{
        padding-bottom: 1rem;
    }
    .right_grid:not(.rev) {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        order: -1;
    }
    .rev{
        justify-content: center;
    }
    .right_grid img {
        width: 80%;
        height: auto;
    }
    .left_grid{
        transform: translateY(0%);
    }
    .left_grid p {
        font-family: "Typo Gortesk Regular";
        font-size: clamp(12pt, 4vw, 12pt);
        font-weight: 400;
        line-height: 1.5;
    }
    .skewed__wrap .left_grid p{
        /* height: 100vh; */
    }
    .paper__section {      
        padding-bottom: 5.5rem; 
    }

}
