@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
html, body{
    font-family: "Inter", sans-serif;
    color: #1c1c1c;
    font-size: 16px;
}
.container{
    max-width: 1225px;
}
a{
    color: inherit;
}
header{
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 0 5px rgba(28,28,28,0.2);
}
.btn{
    border-radius: 0;
    padding: 15px;
    background-color: #FA9E32;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
}
.btn:hover{
    background-color: #1c1c1c;
    color: #ffffff;
}
.banner{
    height: clamp(445px,50vh,650px);
}
.btn.green{
    background-color: #00a86b;
    padding: 20px 10px;
}
.btn.green:hover{
    background-color: #008353;
}
footer{
    border-top: 2px solid #E5E5E5;
}
.c-orange{
    margin-bottom: 15px;
    color: #FA9E32;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    font-family: "Metropolis",Helvetica,Arial,sans-serif;
}
.banner{
    background: url(../pictures/banner.png) no-repeat top/cover;
    height: clamp(445px,50vh,650px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: -2;
}
.banner:before {
    top: 0;
    left: 0;
    height: 100%;
    background-color: rgba(28,28,28,0.45);
    content: "";
    position: absolute;
    width: 100%;
    z-index: -1;
}
.banner h1{
    font-family: "Metropolis",Helvetica,Arial,sans-serif;
    font-size: 50px;
    max-width: 860px;
    width: 100%;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    text-align: center;
    z-index: 1;
}
.container-sm{
    max-width: 860px;
}