@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

*{
    font-family: 'Roboto', sans-serif;
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    transition: all .2s linear;
}

:root{
    --main-color:#d03422;
    --bg:#000000;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar{
    width: .8rem;
}

html::-webkit-scrollbar-track{
    background: transparent;
}

html::-webkit-scrollbar-thumb{
    background: #000000;
    border-radius: 5rem;
}

body{
    background: rgb(255, 255, 255);
}

section{
    padding:2rem 9%;
}

.header{
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:1.5rem 7%;
    border-bottom: var(--border);
    position: fixed;
    top:0; left: 0; right: 0;
    z-index: 1000;
}

.header .logo img{
    height: 6rem;
}

.btn{
    margin-top: 1rem;
    display: inline-block;
    padding:.9rem 3rem;
    font-size: 1.7rem;
    color:#ffffff;
    background: #d03422;
    cursor: pointer;
}

.btn:hover{
    color:#000000;
}

.main-content{
    display: flex;
    align-items: center;
    min-height: 50vh;
}

.main-content .content{
    max-width: 200rem;
}

.main-content .content h3{
    margin-top: 10rem;
    font-size: 3rem;
    text-transform: uppercase;
    color:#000000;
}

.main-content .content h2{
    margin-top: 2rem;
    font-size: 2rem;
    text-transform: uppercase;
    color:#000000;
}

.main-content .content p{
    font-size: 1.5rem;
    font-weight: light;
    line-height: 1.5;
    padding:1rem 0;
    color:#000000;
}

.main-content .content p a {
    text-decoration: none;
    color: #d03422;
}

ul {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    list-style: circle;
    line-height: 1.8;
    font-size: 1.5rem;
    margin-left: 2rem;
}

ul a {
    text-decoration: none;
    color: #d03422;
}

.footer{
    position: absolute;
    padding:1rem 0;
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 1rem;
    color: white;
    background-color: #d03422;
}

.footer-menus{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 40%;
}

.footer-container{
    height: fit-content;
    width: 100%;
    padding: 3rem 6rem;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-content-container{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.footer-content-container a {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    color: white;
    font-size: 1.3rem;
}

.footer-content-container a:hover {
    color: #000000;
}

.footer .website-logo{
    margin-bottom: 1.2rem;
    font-size: calc(1vw + 20px);
}
