
body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    height: 100vh;
    width: 100%;
    color: black;
    overflow-x: hidden;
    
    font-family: "Nunito", serif;
    font-weight: 200;
    scroll-behavior: smooth;
    
}

footer a {
    text-decoration: none;
    color: black;
    font-size: 16px;
}

.d_none {
    display: none !important;
}

nav a {
    color: black;
    text-decoration: none;
    font-size: 20px;
}


a {
    text-decoration: none;
    color: black;
}

a:active {
    transform: scale(0.9);
}


button {
    width: 200px;
    height: 50px;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 500;
    background-color: var(--main-color);
    border: none;
    color: white;
    cursor: pointer;

}

button:active {
    transform: scale(0.95);
}

input {
    width: calc(100% - 16px);
    height: 40px;
    border-radius: 4px;
    border-width: 1px;
    box-shadow: unset;
    font-size: 16px;
    border-style: solid;
    padding-left: 12px;

}


input:hover {
    border-color: var(--main-color);
}

input:active {
    border-color:var(--main-color);
}

textarea {

    width: calc(100% - 26px);

    height: 200px;
    border-radius: 4px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    padding: 12px;
}


textarea:hover {
    border-color: #0c7b26;
}

h3{

    margin-block: 0;
}

.space{
    
    letter-spacing: 0.3em;
}


@media(max-height: 450px){
    body{
        height: unset;
        min-height: 100vh;
    }
}

/*rgb(54,100,118)
#366476*/

.dividing-line-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.dividing-line {
    width: 100%;
    height: 1px;
    background-color: var(--main-color);
}

.offerbutton-container{
    width: 100%;
}

.offerbutton-container{
width: calc(100% - 112px);
max-width: 1440px;
margin-block: 50px;
}

.offerbutton {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    height: 100%;
    width: 100%;

}

.offerbutton h2{
    font-weight: 300;
}

:root{

   /* --main-color: #366476;*/
    --main-color: #005477;
    --secondary-color: #2295DD;
    --border-color:rgba(128, 128, 128, 0.317);
}

@font-face {
    font-display: swap;
    font-family: 'Nunito';
    src: url('/fonts/Nunito/Nunito-VariableFont_wght.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family:'Montserrat' ;
    src: url('/fonts/Montserrat/Montserrat-VariableFont_wght.woff2') format('woff2');
}