@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://use.typekit.net/khb2fkg.css');

* {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --white1: #DAEDFD;
    --white2: rgba(218, 237, 253, 0.4);
    --white3: rgba(218, 237, 253, 0.6);
    --blue1: #2196F3;
    --blue2: #1E313F;
    --orange: #F29E1F;
    --violett: #7030A0;
    --green: #A3A60D;
    --rot: #C13E40;
    --blue3: #12B9DB;
    --blue4: #0560A6;
    --yellow: #F2C613;
}

body {
    background-color: var(--blue2);
    background-image: url(../assets/Ariskon_HomePage.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.logo {
    height: 3rem;
}

.container {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0% 5%;
}

.container1 {
    display: flex;
    flex-direction: column;
    margin: 0% 5%;
}

.cheader {
    padding: 1rem;
    margin-top: 4%;
}

.cmain {
    text-align: left;
    padding: 1rem;
    max-width: 1200px;
}

.cmain1 {
    text-align: left;
    padding: 1rem;
    max-width: 800px;
    margin-top: 10vh;
}

.cfooter {
    font-size: 0.8rem;
    color: var(--white2);
    text-align: left;
    padding: 1rem;
}

h1 {
    font-size: clamp(1.4rem, 2rem + 1.8vw, 6rem);
    font-weight: 600;
    line-height: 120%;
    color: var(--white1);
    margin-bottom: 2vh;
}

h2 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--white1);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1rem, 1.2rem + 1vw, 2.6rem);
    font-weight: 400;
    line-height: 110%;
    color: var(--white2);
    margin-bottom: 7rem;
}

h4 {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4rem;
    color: var(--white1);
    margin: 0.2rem 0;
}

p {
    font-size: 1rem;
    line-height: 1.4rem;
    color: var(--white3);
    padding-bottom: 1rem;
}

a {
    color: var(--white2);
}

a:hover,
a:focus {
    color: var(--white1);
    text-decoration: none;
}

.button-cta {
    font-size: 1.2rem;
    font-family: "Nasalization", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--white1);
    padding: 0.4rem 3rem 0.6rem 3rem;
    text-decoration: none;
    border: 1px solid var(--white2);
    border-radius: 0.4rem;
    background-color: var(--blue1);
    text-transform: uppercase;
    margin: 0;
}

a:hover.button-cta {
    box-shadow: 0 0 20px 2px var(--orange);
}

ul {
    list-style: inside;
    color: var(--white3);
    padding: 0 0 0.6rem 0.2rem;
    line-height: 1.4rem;
}