* {
    box-sizing: border-box;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #C3002F;
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 24px;
    background: #fff;
    color: #333;
    margin: 0;
}

header{
    position: relative;
        background:#C3002F;
}

header::before, footer::before{
    content:"";
    height:100%;
    width: 100%;
    display: block;
    position: absolute;
    background:url(../media/Pattern.svg);
    top:0;
    left:0;
    background-size:cover;
    pointer-events: none;
}

header .inner-header{
    background:#C3002F;
    max-width:1280px;
    margin:auto;
    padding:8px;
}

.inner-header img{
    max-height: 64px;
}

.container{
    max-width:1280px;
    margin:auto;
    padding:8px;
}

#content{
    padding-top:40px;
    padding-bottom:40px;
}

#content h1{
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px; 
}

#content h2{
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    margin-bottom:-16px;
}

.buttons{
    display: flex;
    flex-direction: column;
    gap:24px;
    margin-top:48px;
}

.button{
    width: fit-content;
    text-decoration: none;
    padding:16px  40px;
    border-radius: 50px;
    display: flex;
    gap: 16px;
    transition: all ease 0.3s;
}

.button.download .icon {
    max-width: 48px;
}

.button.webshop .icon {
    max-width: 24px;
}

.button.download{
    background:#C3002F;
}

.button.download:hover{
    background:#333;
}

.button.webshop{
    background:#333;
}

.button.webshop:hover{
    background:#C3002F;
}

.button span{
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
    color:#fff;
    text-decoration: none;
    position: relative;
}

footer{
    position: relative;
    background:#C3002F;
    color:#fff;  
}

footer .container{
    padding-top:40px;
       padding-bottom:40px;
}

footer h2{
    font-size:32px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    margin-bottom:0px;
    padding-bottom:0px;
}

footer .columns{
    display: flex;
    flex-direction: column;
}

footer .columns .column{
    width: 100%;
}

footer .columns .column h3{
    margin-bottom:0px;
    padding-bottom:0px;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
}

footer .columns .column ul{
    margin:0;
    padding:0;
}

footer .columns .column ul li{
    list-style-type: none;
    z-index: 100;
}

footer .columns .column ul li a{
    color:#fff;
    transition: all ease 0.3s;
}

footer .columns .column ul li a:hover{
    cursor:pointer;
   color:#afafaf;

}
.bottom-footer{
    padding:8px;
    max-width:1280px;
    margin:auto;
   
}

.bottom-footer p{
    padding:0;
    margin:0;
    opacity: 0.5;
    font-size: 14px;
    font-weight: 400;
}


@media only screen and (min-width: 640px) {
    footer .columns{
        display: flex;
        flex-direction: row;
    }

    footer .columns .column{
        width: 50%;
    }
}

@media only screen and (min-width: 768px) {
    .button span{
        font-size: 16px;
        font-weight: 700;
        line-height: 48px;
        text-transform: uppercase;
        color:#fff;
        text-decoration: none;
        position: relative;
    }
.inner-header img{
    max-height: 80px;
}
    footer h2{
        font-size: 40px;
    }

    #content{
        padding-top:80px;
        padding-bottom:80px;
    }

    #content h1{
        font-size: 40px;
        line-height: 48px; 
    }
    footer .container{
    padding-top:80px;
       padding-bottom:80px;
}

.button span{
    font-size: 16px;
    font-weight: 700;
    line-height: 25px;
}


}

@media only screen and (min-width: 1024px) {

    .button span{
        line-height: 48px;
    }

}
