@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Meow+Script&display=swap');

*, *::after, *::before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body{
    background-color: #000;
    color: #fff;
    font-family: 'Inter';
}

a{
    text-decoration: none;
    outline: none;
    color: #fff;
    transition: text-decoration .25s ease;
}

a:hover{
    text-decoration: underline;
}

.container{
    max-width: 2000px;
    width: 100%;
    margin: 0 auto;
}

.section1{
    position: relative;
    width: 100%;
    background: url('../assets/bg1.png') top / contain no-repeat;
    min-height: 800px;
    box-shadow: inset 0px -50px 80px rgba(0, 0, 0, 0.5);
}

.section1 .shadow{
    position: absolute;
    width: 100%;
    bottom: 0px;
}

.section1 .header{
    text-transform: none;
}

.sectionContent{
    max-width: 1420px;
    width: 100%;
    margin: 0 auto;
    padding: 10px;
}

.navContainer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 13px 0;
}

.navContainer .logo{
    width: 94px;
    height: 50px;
}

.navContainer .navList{
    list-style-type: none;
    display: flex;
    gap: 48px;
}

.navContainer .navList .navListItem{
    color: #fff;
    font-size: 18px;
    line-height: 20px;
}

.mainContent{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

.mainContent .header{
    font-family: 'Meow Script';
    font-weight: 400;
    font-size: 66px;
    line-height: 70px;
    color: #FFAB77;
}

.mainContent .text{
    font-size: 85px;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
}

.mainContent .subText{
    font-size: 20px;
    font-weight: 300;
    text-align: center;
}

.section2{
    width: 100%;
    margin: 0 0 125px 0;
}

.header{
    text-align: center;
    font-size: 40px;
    font-weight: 300;
    text-transform: uppercase;
}

.elementsList{
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.elementsListItem{
    position: relative;
    aspect-ratio: 340 / 746;         
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    cursor: pointer;
    overflow: hidden;

    transition: .25s ease;
    border-radius: 20px;
}

.elementsListItem:hover{
    transform: scale(1.025);
}

.elementsListItem .text{
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 300;
}

.elementsListItem.fire{
    background-image: url('../assets/fire.png');
}

.elementsListItem.water{
    background-image: url('../assets/water.png');
}

.elementsListItem.air{
    background-image: url('../assets/air.png');
}

.elementsListItem.earth{
    background-image: url('../assets/earth.png');
}

.section3{
    width: 100%;
    margin-bottom: 125px;
}

.section3 .sectionContent{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 143px;
}

.section3 .sectionContent .leftCtn img{
    /* width: 500%; */
    aspect-ratio: 700 / 610;
    border-radius: 20px;
}

.section3 .sectionContent .rightCtn{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
}

.section3 .sectionContent .rightCtn .subHeader{
    font-family: 'Meow Script';
    font-size: 30px;
    font-weight: 300;
}

.section3 .sectionContent .rightCtn .header{
    text-align: left;
}

.section3 .sectionContent .rightCtn .text{
    font-size: 20px;
    font-weight: 300;
}

.section4{
    width: 100%;
    margin-bottom: 125px;
}

.section4 .header{
    margin-bottom: 50px;
}

.section4 .sectionContent .ctn{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    /* flex-wrap: wrap; */
    align-items: stretch;
}

.section4 .sectionContent .ctn .leftCtn, 
.section4 .sectionContent .ctn .rightCtn{
    max-width: 360px;
    width: 100%;
}

.section4 .leftCtn,
.section4 .rightCtn{
    max-width: 360px;
    width: 100%;
    display: grid;
    grid-template-rows: 1fr 1fr;
}

.section4 .item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 58px;
    text-align: center;
}

.section4 .item .icon{
    height: 72px;                 
    display: flex;
    align-items: center;
    justify-content: center;
}

.section4 .item .icon img{
    max-height: 100%;
    width: auto;
}

.section5{
    width: 100%;
    margin-bottom: 125px;
}

.section5 .header{
    margin-bottom: 50px;
}

.section5 .imagesCtn{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto;
    gap: 22px;
}

.section5 .item{
    background: #222;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border-radius: 20px;
}

.section5 .item1,
.section5 .item2{
    grid-column: span 3;
    aspect-ratio: 1 / 1 ;
}

.section5 .item3,
.section5 .item4,
.section5 .item5{
    aspect-ratio: 460 / 631;
    grid-column: span 2;
}

.section5 .item1{
    background-color: #555E31;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

.section5 .subHeader{
    font-size: 30px;
    font-weight: 300;
    text-transform: uppercase;
}

.section5 .text{
    font-size: 20px;
    font-weight: 300;
    max-width: 510px;
    width: 100%;
}

.section5 .item1 .text{
    text-align: center;
}

.section5 .item2{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('../assets/img3.png');
}

.section5 .item3{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('../assets/img5.png');
}

.section5 .item4{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('../assets/img6.png');
}

.section5 .item5{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('../assets/img4.png');
}

.section5 .align{
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 35px;
    text-align: left;
}

.section6{
    position: relative;
    overflow: hidden;
}

.section6 .sectionContent{
    min-height: 860px;
    position: relative;
    /* margin-bottom: 125px; */
}

.section6 .text{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 23px;
}

.section6 .header{
    text-align: left;
}

.section6 .text{
    text-align: left;
    font-size: 20px;
    font-weight: 300;
}

.section6 .text.left{
    position: absolute;
    top: 120px;
    left: 0px;
    max-width: 420px;
    z-index: 2;
}

.sectionContent .text.right{
    position: absolute;
    bottom: 120px;
    right: 0px;
    max-width: 420px;
    z-index: 2;
}

.hand{
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.leftHand{
    left: 0;
    bottom: -50px;
    width: 30vw;
    max-width: 920px;
}

.rightHand{
    right: 0;
    top: 0;
    width: 40vw;
    max-width: 868px;
}

.symbols{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 205px;
    z-index: 1;
}

.footer{
    margin-top: 110px;
    width: 100%;
    border-top: 1px solid #fff;
}

.footerContent{
    max-width: 1420px;
    width: 100%;
    margin: 0 auto;
    padding: 45px 0;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
}

.footer .leftCtn{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    gap: 70px;
}

.footer .leftCtn .right .socialMediaList{
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 15px;
}

.footer .leftCtn .right .socialMediaListItem{
    transition: .25s ease;
}

.footer .leftCtn .right .socialMediaListItem:hover{
    transform: scale(1.25);
}

.footer .rightCtn{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 50px;
}

.footer .rightCtn .navigationList{
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 100px;
}

@media (max-width: 1024px) {
    .section3 .sectionContent{
        flex-wrap: wrap-reverse;
    }

    .section3 .sectionContent .leftCtn img{
        width: 100%;
    }

    .elementsList {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .section5 .imagesCtn {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .section6 .text.left,
    .section6 .text.right {
        max-width: 300px;
        padding: 0 20px;
    }

    .section4 .sectionContent .ctn .centerCtn img{
        width: 100%;
    }

    .section4 .sectionContent .ctn{
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
    }

    .section4 .leftCtn, .section4 .rightCtn{
        gap: 50px;
    }

    .leftHand,
    .rightHand {
        width: 35vw;
    }

    .footerContent {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer .leftCtn {
        flex-direction: column;
        gap: 20px;
    }

    .footer .rightCtn .navigationList {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 50px;
    }

    .footer .rightCtn{
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .navContainer .navList{
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .elementsList {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .section5 .imagesCtn {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .mainContent .text {
        font-size: 50px;
    }

    .mainContent .header {
        font-size: 48px;
        line-height: 50px;
    }

    .mainContent .subText {
        font-size: 16px;
    }

    .section6 .text.left,
    .section6 .text.right {
        position: static;
        max-width: 100%;
        padding: 20px;
    }

    .leftHand,
    .rightHand {
        position: relative;
        width: 80%;
        max-width: 500px;
        margin: 0 auto;
        bottom: 0;
        top: 0;
    }

    .symbols {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        margin: 30px auto;
        display: block;
        width: 150px;
    }

    .footerContent {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .footer .leftCtn {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .footer .rightCtn .navigationList {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}