:root {
    --main-bg: #ECE9DD;
    --blue: #22283C;
}

* {
    margin:0;
    box-sizing: border-box;
}
body {
    font-family: "Geist", serif;
    font-optical-sizing: auto;
    color:var(--blue);
    background:var(--main-bg);
}

section {
    position:relative;
    z-index: 99;
    height:100vh;
    background-color: var(--main-bg);
    display:flex;
    flex-direction:row;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
section div {
    width:200px;
    padding:30px;
    display:flex;
}
section::before {
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    /*background: url('plant-shadow-nobg.png');*/
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
    opacity:.2;
    z-index: -1;
}

.sona-container {
    justify-content: center;
}
img.sona-icon {
    width: 200px;
}

.btn {
    font-weight: 200;
    font-style: normal;
    text-decoration: none;
    color:var(--main-bg);
    background:var(--blue);
    padding:6px 20px;
    border-radius: 100px;
    transition: all .3s;
}

.btn:hover, .socials a:hover {
    transform: scale(1.1);
}

.mini .socials {
    justify-content:end;
}
.socials {
    justify-content: start;
    padding:0;
    margin-top:30px;
}
.socials a {
    padding:8px;
    transition: all .3s;
}

.info {
    flex-direction:column;
    width:400px;
}
.h-sec {
    flex-direction: column;
    padding:0;
    margin:0;
    width:100%;
    margin-bottom:30px;
}
.h-sec span {
    /*font-family:'Geist Mono', sans-serif;*/
    font-size:32px;
    font-weight:600;
}
.h-sec h1 {
    font-size:64px;
    font-weight:700;
    line-height:.8em;
}

.img-scroller {
    width:500px;
    flex-direction: column;
    overflow-y:scroll;
    height:100vh;
}
.img-scroller img {
    width:100%;
    border-radius:7px;
    margin-top:10px;
    transition: all .3s;
}
.img-scroller img:hover {
    opacity:.8;
}

.back-btn {
    font-size:12px;
    text-decoration: none;
    color:var(--main-bg);
    background:var(--blue);
    padding:5px 18px;
    width:fit-content;
    border-radius:100px;
    margin-bottom:30px;
}

@media screen and (max-width:767px) {
    .mini {
        height:100vh;
        flex-direction:column-reverse;
        align-items: center;
    }
    .mini > div {
        justify-content:center !important;
    }
    section {
        flex-direction:column;
        overflow:initial;
        height:unset;
    }
    section div {
        width:100%;
        padding:10px;
        display:flex;
        justify-content: start;
    }
    section::before {
        position:fixed;
    }
    .sona-container {
        order:1;
    }
    .img-scroller {
        position: relative;
        height:auto;
        overflow-y:initial;
        width:400px;
    }
    .info {
        margin-top:150px;
        margin-bottom:50px;
    }
    

}