html {

}

body {
    margin: 0;
    background: white;
    font-family: 'Dosis', sans-serif;
    color: #1A1A1A;
    word-wrap: break-word;
    height: 100svh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
    /*background: white;*/
    font-family: 'Dosis', sans-serif;
    color: #1A1A1A;
    /*word-wrap: break-word;*/
    /*display: flex;*/
    /*flex-direction: column;*/
    width: 100vw;
    /*position: absolute;*/
    /*bottom: 0;*/
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

/*Container*/
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.container_flex {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;        
}

/*Header*/
.header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 50px;
    padding-left: 10px;
}

/*Logo*/
.header__logo {
    width: 139px;
    height: 100%;
    content: url(../images/logo.svg);
}

/*Intro*/
.intro {
    width: 100%;
    padding-left: 20px;
    background: url(../images/intro_bg.svg) center no-repeat;
    background-size: cover;
}

.green__label {
    background-color: #04B800;
    color: #FBFBF1;
    font-size: 16px;
    font-family: Dosis, serif;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    letter-spacing: 0.2em;
    padding: 12px 32px; 
    display: inline-block;
    border-radius: 6px;
    margin: 160px auto 0;
}

.intro__title {
    color: #1A1A1A;
    font-size: 64px;
    font-family: Dosis, serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 64px;
    margin: 40px auto 0;
}

.intro__technologies {
    color: #1A1A1A;
    font-size: 24px;
    font-family: Dosis, serif;
    font-weight: 500;
    line-height: 28px;
    margin: 55px auto 0;
}

ul {
    display: block;
    list-style-image: url(../images/bullet.svg);
    padding-left: 20px;
}

li {
    padding-left: 15px;
    margin: 0 0 30px 0;
}

.intro__small {
    color: #1A1A1A;
    font-size: 16px;
    font-family: Dosis, serif;
    font-weight: 500;
    line-height: 18px;
    text-decoration: none;
    transition: color 0.2s linear;
    margin: 60px 0 auto;
}

.intro__small a{
    color: #1A1A1A;
    font-size: 16px;
    font-family: Dosis, serif;
    font-weight: 500;
    line-height: 18px;
    text-decoration: none;
    transition: color 0.2s linear; 
    margin-right: 60px;
}

.intro__small a:hover{
    color: #04B800;
    transition: 0.2s;
}

.intro__small a.green {
    color: #04B800;
    font-weight: 700;
    transition: color 0.2s linear; 
}

.intro__small a.green:hover{
    color: #1A1A1A;
    transition: 0.2s;
}

.email__icon {
    content: url(../images/email.svg);
    display: inline-block;
    margin: 0 10px 0 0;
}

/*Ermine*/

.ermine_bottom {
    position: relative;
    bottom: -40px;
}


/*Partners*/

.partners {
    height: 40px;
    background: #04B800;
    display: flex;
    align-items: center;
}

.partners__logo {
    flex: 20%;
    padding: 20px;
    transition: 0.2s linear; 
}

.partners__logo:hover {
    filter: invert(51%) sepia(45%) saturate(4908%) hue-rotate(87deg) brightness(100%) contrast(103%);
    transition: 0.2s;
}

/*Adaptive*/

@media only screen and (max-width: 1200px) {

    .header {
        padding-left: 10px;
    }


    .intro {
        padding-left: 20px;
    }

    .partners__logo {

    }

    @media only screen and (max-width: 992px) {

        .intro__title {
            font-size: 60px;
        }

        .partners {
            height: 100px;
        }
    }

    @media only screen and (max-width: 768px) {

        .intro__title {
            font-size: 28px;
            line-height: 34px;
        }

        .intro__technologies {
            font-size: 16px;
        }

        li {
            margin: 0 0 10px 0;
        }

        .partners {
            height: 70px;
        }

    }
    @media only screen and (max-width: 480px) {

        .intro__small {
            color: #1A1A1A;
            font-size: 10px;
            font-family: Dosis, serif;
            font-weight: 500;
            line-height: 30px;
            text-decoration: none;
            transition: color 0.2s linear;
            margin-right: 10px;
        }

        .intro__small a {
            color: #1A1A1A;
            font-size: 10px;
            font-family: Dosis, serif;
            font-weight: 500;
            line-height: 30px;
            text-decoration: none;
            transition: color 0.2s linear;
            margin-right: 10px;
        }

        .partners {
            height: 55px;
        }

    }

    @media only screen and (max-width: 320px) {
        /*  */
    }
}