@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
    position: relative;
    outline: none;

    margin: 0;
    padding: 0;
}

:root {
    --color-main: #1F3A5F;
    --color-back: #F4F6F8;
    --color-alter: #5F6B73;
}

p,b,u,i,h1,h2,h3,span,font,ul,li {
    cursor: default;
}

html, body {
    padding: 0;
    margin: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-back);
}

body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

header {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    height: 60px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    padding: 20px 100px;
}

header > nav {
    margin-left: auto;
}

header > nav > ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: auto;
    list-style-type: none;
}

header > nav > ul > li > a {
    padding: 0 20px;
    border-right: 2px solid white;
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-decoration: none;
}

header > nav > ul > li:last-of-type > a {
    padding: 0 0 0 20px;
    border-right: none;
}

header > a {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
}

header > a * {
    cursor: pointer;
    font-weight: 600;
    color: white;
    font-size: 16px;
}

header > a > img, .s1 > div > span > span > img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.s1, .s1 > div {
    width: 100%;
    min-height: 120vh;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.s1 {
    background-image: url("image/back.webp");
    background-position: left top;
    background-size: cover;
    background-repeat: no-repeat;
}


.s1 > div {
    padding: 0 100px;
    background-color: rgba(31,58,95,0.9);
}

.s1 > div > h1 {
    font-size: 42px;
    color: white;
    margin-bottom: 30px;
}

.s1 > div > p {
    color: white;
    font-size: 20px;
}

.s1 > div > span {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 50px;
    margin: 100px 0;
}

.s1 > div > span > span {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
}

.s1 > div > span > span * {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.s1 > div > div {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 50px;
    align-items: center;
}

.s1 > div > div > a {
    padding: 16px 24px;
    background-color: white;
    color: var(--color-main);
    cursor: pointer;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
}

.s1 > div > div > a::before {
    content: " ";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 0;
    margin-left: -10px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
    transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.s2 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    padding: 0 100px;
    overflow: visible;
}

.s2::before {
    content: " ";
    width: 150vw;
    height: 200px;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: -100px;
    margin-left: -25vw;
    background-color: var(--color-back);
    transform: rotate(5deg);
    -webkit-transform: rotate(5deg);
}

.s2 > div.text {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 20px;
    width: 35%;
}

.s2 h2, .s3 h2, .s4 h2, .s5 h2, .s6 h2 {
    color: var(--color-alter);
    font-size: 42px;
    border-bottom: 1px solid var(--color-alter);
    display: inline;
    width: 200px;
}

.s2 h3 {
    color: var(--color-alter);
    font-size: 20px;
}

.s2 p {
    color: var(--color-alter);
}

.s2 > div.image {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    width: 65%;
    gap: 50px;
}

.s2 > div.image > img {
    border-radius: 10px;
    box-shadow: 10px 10px 19px 0px rgba(166,166,166,0.75);
    -webkit-box-shadow: 10px 10px 19px 0px rgba(166,166,166,0.75);
    -moz-box-shadow: 10px 10px 19px 0px rgba(166,166,166,0.75);
}

.s2 > div.image > img:nth-child(1) {
    width: 260px;
    height: 350px;
    object-fit: cover;
}

.s2 > div.image > img:nth-child(2) {
    width: 660px;
    height: 500px;
    object-fit: cover;
}

.s3 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 100px;
    margin-top: 100px;
    align-items: center;
    justify-content: center;
}

.s3 h2 {
    border-bottom: none;
    width: 100%;
    margin-bottom: 20px;
}

.s3 > div {
    background-color: var(--color-main);
    box-shadow: 10px 10px 19px 0px rgba(166,166,166,0.75);
    -webkit-box-shadow: 10px 10px 19px 0px rgba(166,166,166,0.75);
    -moz-box-shadow: 10px 10px 19px 0px rgba(166,166,166,0.75);
    width: 500px;
    min-height: 600px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.s3 > div:nth-child(3) {
    margin-left: auto;
    margin-right: auto;
}

.s3 > div > h3 {
    width: 100%;
    color: white;
    text-align: center;
    font-size: 26px;
}

.s3 > div > p {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0;
    text-align: center;
}

.s3 > div > ul {
    margin-top: 50px;
}

.s3 > div > img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
}

.s3 > div li {
    color: white;
    font-size: 16px;
    line-height: 32px;
}

.s4 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 150px 0 100px 0;
    padding: 0 100px;
    gap: 3%;
}

.s4 h2 {
    border-bottom: none;
    width: 100%;
    text-align: center;
    margin-bottom: 100px;
}

.s4 > div {
    width: 30%;
    border-left: 3px solid var(--color-main);
    padding-left: 20px;
    margin-bottom: 100px;
}

.s4 > div > h3 {
    font-size: 20px;
    color: var(--color-alter);
    margin-bottom: 30px;
}

.s4 > div > p {
    color: var(--color-alter);
}

.s5 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    padding: 0 100px;
    margin-bottom: 150px;
}

.s5 > div.left {
    width: 70%;
}

.s5 > div.right {
    width: 30%;
}

.s5 > div.right {
    text-align: right;
}

.s5 h2 {
    border-bottom: none;
}

.s5 h3 {
    color: var(--color-main);
    font-size: 32px;
    margin-bottom: 50px;
}

.s5 ol {
    margin-top: 50px;
    font-weight: 600;
    color: var(--color-main);
    font-size: 20px;
    line-height: 60px;
}

.s5 ol > li {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.s5 ol > li > p {
    width: 250px;
}

.s5 ol font {
    color: var(--color-alter);
    font-weight: normal;
    margin-left: 100px;
}

.s5 ul {
    list-style-type: none;
}

.s5 ul > li {
    color: var(--color-main);
    font-size: 16px;
    line-height: 32px;
}

.s6 {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin-bottom: 100px;
}

.s6 > h2 {
    border-bottom: none;
    width: 100%;
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
}

.s6 > div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 50px;
    padding: 0 100px;
}

.s6 > div > img {
    height: 250px;
    width: auto;
    flex-grow: 1;
    object-fit: cover;
}

.s7 {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0 100px;
    justify-content: center;
    margin-bottom: 200px;
}

.s7 form {
    background-color: var(--color-main);
    box-shadow: 10px 10px 19px 0px rgba(166,166,166,0.75);
    -webkit-box-shadow: 10px 10px 19px 0px rgba(166,166,166,0.75);
    -moz-box-shadow: 10px 10px 19px 0px rgba(166,166,166,0.75);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    width: 600px;
    padding: 20px;
    overflow: hidden;
}

.s7 form h3 {
    color: white;
    font-size: 32px;
    width: 100%;
    text-align: center;
    margin: 50px 0;
}

.s7 form .hp-field {
    position: absolute;
    left: 0;
    width: 0;
    overflow: hidden;
}

.s7 form input, .s7 form textarea {
    border-radius: 5px;
    padding: 16px;
    width: 100%;
    font-size: 16px;
    border: none;
}

.s7 form textarea {
    height: 150px;
    resize: vertical;
}

.s7 form > span {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.s7 form > span > p {
    color: white;
    width: 40%;
    font-size: 16px;
}

.s7 form > span > input {
    border-radius: 50px;
    background-color: white;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-alter);
    cursor: pointer;
    width: 250px;
    margin-left: auto;
    transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.s7 > div.right {
    margin-left: 200px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.s7 > div.right > div {
    background-color: var(--color-main);
    box-shadow: 10px 10px 19px 0px rgba(166,166,166,0.75);
    -webkit-box-shadow: 10px 10px 19px 0px rgba(166,166,166,0.75);
    -moz-box-shadow: 10px 10px 19px 0px rgba(166,166,166,0.75);
    border-radius: 10px;
    padding: 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 100px;
}

.s7 > div.right > div img {
    width: 32px;
    height: 32px;
    margin-right: 20px;
    object-fit: contain;
}

.s7 > div.right > div a {
    color: white;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
}

.s7 > div.right p {
    color: var(--color-main);
}

footer {
    padding: 100px 100px 20px 100px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    background-color: var(--color-main);
}

footer > .content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
}

footer > .content ul {
    list-style-type: none;
}

footer > .content a {
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
}

footer > .content p {
    margin-left: auto;
    text-align: right;
    font-size: 14px;
}

footer > .content li {
    line-height: 32px;
}

footer * {
    color: white;
}

footer .bottom {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-top: 100px;
}

footer .bottom * {
    font-size: 14px;
    font-weight: 600;
}

footer .bottom a {
    margin-left: auto;
    text-decoration: none;
}

.gdpr {
    padding: 100px;
    width: 100%;
    height: auto;
}

header > a > p::before {
    content: " ";
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-bottom: 1px solid white;
    transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

@media (hover: hover) and (pointer: fine) {
    header > a:hover > p::before {
        width: 100%;
    }

    header > nav > ul > li > a:hover, footer a:hover {
        text-decoration: underline;
    }

    .s1 > div > div > a:hover::before {
        bottom: -10px;
    }

    .s7 form > span > input:hover {
        color: var(--color-main);
    }
}

/* ========================= */
/* TABLET */
/* ========================= */

@media (max-width: 1500px) and (min-width: 1201px) {
    .s1 > div > h1 { font-size: 32px; }
    .s1 > div > p { font-size: 16px; }
    .s1 > div > span > span * { font-size: 14px; }
    .s2 > div.image > img:nth-child(1) { display: none; }
    .s2 > div.image > img:nth-child(2) { width: 80%; }
    .s3 > div { width: 30%; padding: 30px 10px; }
    .s3 > div > ul { margin-left: 30px; }
    .s5 ol { font-size: 16px; }
    .s5 ol > li > p { width: 200px; }
    .s5 h3 { font-size: 20px; }
    .s7 form { width: 500px; }
}

@media (max-width: 1200px) {

    header {
        padding: 20px 40px;
    }
    
    .s1 > div {
        padding: 0 40px;
    }
    
    .s2,
    .s3,
    .s4,
    .s5,
    .s7 {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .s2 {
        flex-direction: column;
        gap: 40px;
    }
    
    .s2 > div.text {
        width: 100%;
    }
    
    .s2 > div.image {
        width: 100%;
        justify-content: center;
    }
    
    .s2 > div.image > img:nth-child(2) {
        width: 100%;
        height: auto;
    }
    
    .s3 > div {
        width: 100%;
        max-width: 500px;
    }
    
    .s4 > div {
        width: 48%;
    }
    
    .s5 {
        flex-direction: column;
        gap: 50px;
    }
    
    .s5 > div.left,
    .s5 > div.right {
        width: 100%;
    }
    
    .s7 {
        flex-direction: column;
        gap: 60px;
    }
    
    .s7 > div.right {
        margin-left: 0;
    }
    
    }
    
    
    /* ========================= */
    /* MOBILE */
    /* ========================= */
    
    @media (max-width: 900px) {

        .s1 > div > h1 { margin-bottom: 0; }

        .s1, .s1 > div { min-height: 80vh; }

        .s3 { margin-top: 50px; }

        .s6 > div {
            flex-direction: column;
            padding: 0 20px;
        }

        .s6 > h2 {
            font-size: 16px;
        }

        .s6 > div > img {
            width: 100%;
            height: auto;
        }

        .s6 > div > img { display: none; }
        .s6 > div > img:nth-child(1), .s6 > div > img:nth-child(2), .s6 > div > img:nth-child(3), .s6 > div > img:nth-child(4) { display: block; }

    .s2 > div.image > img:nth-child(1) {
        display: none;
    }

    .s2 > div.text {
        margin-top: 50px;
    }

    .s2 h2, .s3 h2, .s4 h2, .s5 h2, .s6 h2 {
        border-bottom: none;
    }

    .s2::before {
        display: none;
    }

    .s1 > div > span > span {
        width: 100%;
    }

    .s1 > div > span {
        gap: 50px;
    }

    .gdpr {
        padding: 20px;
    }
    
    header {
        padding: 20px;
        flex-direction: column;
        gap: 10px;
    }
    
    header > nav {
        display: none;
    }

    header > a {
        width: 100%;
        justify-content: center;
    }
    
    .s1 > div {
        padding: 100px 20px 50px 20px;
    }
    
    .s1 > div > h1 {
        font-size: 32px;
        text-align: center;
    }
    
    .s1 > div > p {
        display: none;
    }
    
    .s1 > div > span {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .s1 > div > div {
        flex-direction: column;
        gap: 20px;
    }
    
    /* sekce 2 */
    
    .s2 {
        padding: 0 20px;
    }
    
    .s2 > div.image {
        flex-direction: column;
    }
    
    .s2 > div.image > img:nth-child(1) {
        width: 100%;
        height: auto;
    }
    
    .s2 > div.image > img:nth-child(2) {
        width: 100%;
        height: auto;
    }
    
    /* sekce 3 */
    
    .s3 {
        padding: 0 20px;
    }

    .s3 h2 {
        text-align: center;
    }
    
    .s3 > div {
        width: 100%;
        min-height: auto;
        margin-bottom: 20px;
        border-radius: 5px;
    }
    
    .s3 > div > img { margin-bottom: 20px; display: none; }

    /* sekce 4 */
    
    .s4 {
        padding: 0 20px;
        margin: 50px 0 50px 0;
    }
    
    .s4 > div {
        width: 100%;
        margin-bottom: 50px;
    }
    
    /* sekce 5 */
    
    .s5 {
        padding: 0 20px;
    }
    
    .s5 ol font {
        margin-left: 20px;
    }

    .s5 h2 {
        width: 100%;
        text-align: center;
        display: block;
    }

    .s5 ol font {
        display: none;
    }

    .s5 > div.right {
        margin-top: 50px;
    }
    
    /* sekce 7 */
    
    .s7 {
        padding: 0 20px;
    }
    
    .s7 form {
        width: 100%;
    }
    
    .s7 form > span {
        flex-direction: column;
        gap: 10px;
    }
    
    .s7 form > span > p {
        width: 100%;
    }
    
    .s7 form > span > input {
        width: 100%;
    }

    .s7 form h3 {
        margin: 0;
        font-size: 26px;
    }
    
    /* footer */
    
    footer {
        padding: 60px 20px 20px 20px;
    }
    
    footer > .content {
        flex-direction: column;
        gap: 30px;
    }
    
    footer > .content p {
        margin-left: 0;
        text-align: left;
    }
    
    footer .bottom {
        flex-direction: column;
        gap: 10px;
    }
    
    footer .bottom a {
        margin-left: 0;
    }
    
    }
    
    
    /* ========================= */
    /* SMALL PHONES */
    /* ========================= */
    /*
    @media (max-width: 480px) {
    
    .s1 > div > h1 {
        font-size: 26px;
    }
    
    .s2 h2,
    .s3 h2,
    .s4 h2 {
        font-size: 28px;
    }
    
    .s7 form h3 {
        font-size: 24px;
    }
    
    }
    */