html {
    overflow-x: hidden;
}

body {
    margin: 0;
    position: relative;
}

.green {
    /* background-image: linear-gradient(to bottom, #0B2516, #1D5A37); */
    background-image: linear-gradient(to bottom, #0B2516, #43D195);
    position: absolute;
    width: 100%;
    z-index: -1;
}

header {
    text-align: center;
    /* padding-top: 56px;
    padding-bottom: 79px; */
    padding-top: 6vh;
    padding-bottom: 9vh;


}

.container {
    opacity: 0;
    max-width: clamp(36vw, 36em, 100vw);
    margin: auto;
    position: relative;
}

.section0 {
    text-align: center;
    margin: auto;
    padding: 0 15px;
    color: white;
}

h1 {
    /* font-family: "sf-pro-regular"; */
    font-family: "sf-pro-heavy";
    font-size: clamp(2rem, 2.5vw, 3.4rem);
    line-height: clamp(38px, 4vw, 48px);
    margin-bottom: clamp(16px, 1vw, 25px);
    /* margin-bottom: 16px; */
    margin-top: 0;
}

.section0 p {
    font-family: "sf-pro-regular";
    font-size: clamp(16px, 1vw, 18px );
    /* font-size: 16px; */
    line-height: 19px;
    margin-top: 0;
    opacity: .8;
}

.stores {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    /* margin-top: 45px; */
    margin-top: 5vh
}


.store a {
    background: white;
    color: black;
    display: flex;
    padding-top: clamp(8px, 1vw , 12px);
    padding-bottom: clamp(8px, 1vw , 12px);
    padding-left: clamp(18px, 1vw , 25px);
    padding-right: clamp(18px, 1vw , 25px);
    /* padding: 8px 18px; */
    border-radius: 8px;
    align-items: center; 
    gap: 6px;
    text-decoration: none;
    transition: .3s;
}

.store .content {
    text-align: left;
}

.store:hover a .appleIcon {
    filter: brightness(10);
}

.store:hover a,
.store a:focus {
    background: #69C8BC;
    transition: .3s;
    box-shadow: 0px 0px 16px 0px rgb(255 255 255 / 20%);
}

.store:hover p, 
.store a:focus p{
    color: #fff;
}
 

.content p:first-child {
    margin: auto;
    font-size: clamp(10px, .65vw, 14px);  
    font-weight: 500;
    font-family: "metropolis-medium";
    color: #060606;
    margin-bottom: 2px;

}
.content p:last-child {
    margin: auto;
    font-family: metropolis-bold;
    font-size: clamp(14px, 1vw, 18px);  
    font-weight: inherit;
}

.phones {
    position: absolute;
    bottom: 0;
    height: 420px;
    max-height: 45vh;
    display: flex;
    align-items: flex-start;
    width: 100%;
    justify-content: center;
    gap: 9px;
    margin-top: 6px;
    overflow: hidden;
    opacity: 0;
}
picture {
    height: 100%;
}
/* .phones  img.picPhone {
    object-position: top;
    height: 540px;
    object-fit: cover;
} */

/* .phone1,
.phone3 {
    margin-top: 20px;
} */

.screen1, .screen2{
    opacity: 0;
}

.screen1 {
    position: absolute;
    z-index: 1;
    /* top: -110px;
    left: -101px; */
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.screen1 img:first-child {
    width: fit-content;
}
/* .screen1 img:nth-child(2n + 2) {
    width: clamp(141px, 8vw , 220px);
} */

.screen2 {
    position: absolute;
    /* right: -130px;
    top: -140px; */
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}
/* .screen2 img:nth-child(2n + 2) {
    width: clamp(176px, 11vw , 220px); 
} */

.left,
.right {
    position: relative;
}


@media screen and (max-width: 1050px) {

    .screen1 img:last-child,
    .screen2 img:last-child {
        display: none;
    }

    /* .screen1 { 
        top: -80px;
        left: 200px; 
    }
    .screen2 { 
        right: 180px;
        top: -50px; 
    } */
    .screen1 img:first-child,
    .screen2 img:first-child {
        transform: rotate(45deg);
    }
}





@media screen and (max-height: 900px) {

    /* page withscroll */
    .green {
        height: 80%;
    }

    body {
        height: auto !important;
        overflow-x: hidden;
    }

    .phones {
        position: relative;
        padding-top: 80px;
        overflow: hidden;
        max-height: inherit;
    }
}

@media screen and (min-height: 901px) {

    /* page withscroll */
    .green {
        height: 80vh;
    }

    body {
        height: 100vh;
    }

}

@media screen and (min-height: 1000px)

/* @media screen and (max-width: 1024px) and (min-height: 1000px)    */
    {
    .phones {
        height: 50%;
        overflow: hidden;
    }

    img.picPhone {
        height: 100%;
    }
}