:root{
    --cyan: #4d96a9;
    --dark-purple: #855fb1;
    --dark-greyish-blue: #28283d;
    --grey: #87879d;
    --light-blue: #8fe3f9;
    --light-purple: #d9b8ff;
    --white: #fafafa;
}

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

body{
    font-family: 'Red Hat Display', sans-serif;
    font-size: 16px;
    color: var(--grey);
    text-align: center;
}

.header{
    display:flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    padding-left: 24px;
    padding-right: 24px;
}

p{
    line-height: 1.7em;
    margin-bottom: 40px;
}

.logo{
    height:28px;
    width: 118px;
    margin-top:30px;
    margin-bottom: 40px;
}

.header-img{
    background-image: url(assets/tablet/image-hero.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 153px;
    width: 414px;
    margin-bottom: 40px;
}

h1{
    font-size: 40px;
    font-weight: 400;
    color: var(--dark-greyish-blue);
    margin-bottom: 40px;
}


button{
    display: block;
    height: 58px;
    border-radius: 30px;
    border: 0;
    color: var(--white);
    margin-bottom: 40px;
}

.download{
    background-color: var(--cyan);
    width: 193px;
}


button span{
    opacity: 70%;
}

.download:hover{
    background-color: var(--light-blue);
}

.whatisit{
    background-color: var(--dark-purple);
    width: 139px;
   margin-left: auto;
   margin-right: auto;
   
}
.whatisit:hover{
    background-color: var(--light-purple);
}



.vl{
    border-left: 0.1px solid var(--grey);
    height: 84px;
}
.one{
    border-color: var(--grey);
    border: 0.1px solid;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    padding-top: 10px;
}

.number{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.main{
    margin-left:20px;
    margin-right:20px;
    margin-bottom: 40px;
    display:flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    
}


.img-container{
    height: 310px;
    width: 327px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.img-container img{
    height:143px;
    width:152px;
    border-radius:5px;
}

.mainsub{
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 40px;
}
h2{
    font-size: 32px;
    font-weight: 400;
    color: var(--dark-greyish-blue);
    margin-bottom: 40px;
}

.footer{
    position:relative;
    display: flex;
    flex-direction: column;
    align-items: center;

    background-color: var(--cyan);
    background-image: url("assets/mobile/image-footer.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    height: 428px;
    

    background-blend-mode: soft-light;
    margin-top: 140px;

 
}

.footer .number{
    position: absolute;
    top:-110px;
    left: 50%;
    right: 50%;
    background-color: #fafafa;
  z-index:2;
}

.footer h2, .footer p{
    color: var(--white);
    margin-left:30px;
    margin-right:30px;
}
.footer h2{
    margin-top:80px;
}

.footer-button{
    background-color: var(--dark-purple);
    width: 193px;
}

.footer-button:hover{
    background-color: var(--light-purple);
}
@media (min-width: 768px){
    .header-img{
        background-image: url(assets/tablet/image-hero.png);
        background-repeat: no-repeat;
        background-size: cover;
        
        height: 303px;
        width: 820px;
       
    }
.header p{
    width:457px;
}

.header h1{
    font-size:48px;
}

   .download, .whatisit{
       display:inline;
    }
    .download {
        margin-right:20px;
    }
    
    .img-container{
        height: 164px;
        width: 689px;
        display: grid;
        grid-template-columns: repeat(4,1fr);
        column-gap: 10px;
        justify-items:center;
    }
    .img-container img{
        height:156px;
        width:164px;
    }
    .main h2{
        width:60%;
        font-size: 40px;
    }

    .main p{
        width:550px;
       
    }
    
.footer{
    height:540px;
    background-image: url("assets/tablet/image-footer.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}
.footer h2{
    width: 50%;
    font-size:40px;
}
.footer p{
    width:560px;
    font-size:18px;
}

}


@media (min-width: 992px){

    .header-img{
        background-image: url(assets/desktop/image-hero-left.png),
        url(assets/desktop/image-hero-right.png);
        background-position: left, right;
        position: relative;
        background-repeat: no-repeat, no-repeat;
        background-size: contain;
        height: 358px;
        width: 1504px;
    }

    .headercontent{
        position: absolute;
        top: 170px;
    }

    .headercontent h1{
        margin-bottom: 30px;
    }
 .headercontent p{
        margin-bottom:30px;
    }

    .headerbutton{
        position: absolute;
        top: 430px;
    }

    .img-container{
        height: 242px;
        width: 1110px;
        display: grid;
        grid-template-columns: repeat(4,1fr);
        column-gap: 15px;
        justify-items:center;

    }
    .img-container img{
        height:242px;
        width:255px;
    }
    .footer{
        display: flex;
        flex-direction: row;
        justify-items: center;
        justify-content: space-around;
        background-image: url("assets/desktop/image-footer.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        height: 308px;   
    }


    .footer h2, .footer p{
        text-align: left;
    }

    .footer h2{
        width:350px;
        margin-top:0;
    }
   .footer p{
    width:350px;
   }

    

    
        


}