/* ----------------------------- */
/* ==Global css                  */
/* ----------------------------- */
svg.icon {
    height: 35px;
    width: 35px;
    display: inline-block;
}

    svg.icon.check {
        width: 20px;
        height: 20px;
    }

h1 {
    font-size: 55px;
    font-weight: 500;
    margin: 0;
    line-height: 1em;
}

h2 {
    font-size: 28px;
    line-height: 1.3em;
}

ul {
    margin: 0;
}

.btn {
    font-size: 20px;
    background-color: #ffffff;
    color: #a71273;
    font-weight: 700;
    border-radius: 5px;
    padding: 15px 40px;
}

    .btn:hover {
        background-color: #a71273;
        color: #ffffff;
    }

    .btn.pink {
        background-color: #a71273;
        color: #ffffff;
        border: 2px solid #a71273;
    }

        .btn.pink:hover {
            background-color: #ffffff;
            color: #a71273;
        }

header {
    position: fixed;
    width: 100%;
    background-color: #ffffff;
    top: 0;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

    header .page-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 15px;
    }

    header .menu {
        display: flex;
        align-items: center;
        font-size: 16px;
    }

    header .burger-menu {
        display: none;
    }

    header .menu a {
        margin: 0 15px;
        position: relative;
    }

        header .menu a .wording-mobile {
            display: none;
        }

        header .menu a:after {
            content: '';
            position: absolute;
            width: 100%;
            transform: scaleX(0);
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #a71273;
            transition: transform 0.25s ease-out;
            transform-origin: bottom center;
        }

        header .menu a:last-child:after {
            display: none;
        }

        header .menu a.active:after,
        header .menu a:hover:after {
            transform: scaleX(1);
        }

        header .menu a.icon {
            color: #a71273;
            margin-right: 0;
        }

            header .menu a.icon:hover {
                color: #192A6B;
            }

.section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 5%;
    flex-flow: wrap;
}

    .section .content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        width: 45%;
    }

    .section h2 {
        color: #05183d;
        margin-bottom: 40px;
    }

    .section.framed h2 {
        font-size: 35px;
    }

    .section h2.pink {
        color: #a71273;
    }

    .section .image {
        overflow: hidden;
        width: 50%;
        display: flex;
        align-items: center;
    }

        .section .image img {
            border-radius: 20px;
        }

    .section .btn {
        margin: 30px auto 0;
    }

    .section.bgBlue {
        background: #0560BB;
        background: radial-gradient(circle,rgba(5, 96, 187, 1) 0%, rgba(25, 42, 107, 1) 50%, rgba(24, 11, 45, 1) 100%);
        color: #ffffff;
    }

        .section.bgBlue h2 {
            color: #ffffff;
        }

footer.section {
    flex-wrap: wrap;
    padding: 30px 5%;
    align-items: center;
}

footer .link-list a {
    color: #ffffff;
    margin-left: 50px;
    position: relative;
}

    footer .link-list a:after {
        content: '';
        position: absolute;
        width: 100%;
        transform: scaleX(0);
        height: 2px;
        bottom: -5px;
        left: 0;
        background-color: #ffffff;
        transition: transform 0.25s ease-out;
        transform-origin: bottom center;
    }

    footer .link-list a:hover:after {
        transform: scaleX(1);
    }

footer .copyright {
    width: 100%;
    text-align: center;
    margin-top: 50px;
}

/*BreakPoint Desktop */
@media screen and (min-width: 1680px) {
    .section {
        align-items: center;
    }
}
/*BreakPoint Tablet & Mobile */
@media screen and (max-width: 1365.98px) {
    header .burger-menu {
        display: inline;
        color: #192A6B;
    }

    header .menu {
        position: absolute;
        right: 0;
        top: 73px;
        flex-direction: column;
        background-color: #ffffff;
        box-shadow: 0px 5px 10px -3px rgba(0, 0, 0, 0.3);
        display: none;
    }

        header .menu.active {
            display: flex;
        }

        header .menu a {
            margin: 0;
            padding: 10px 20px;
            width: 100%;
            font-weight: 700;
        }

            header .menu a.active {
                color: #a71273;
            }

            header .menu a:after,
            header .menu a .icon {
                display: none;
            }

            header .menu a .wording-mobile {
                display: inline;
                color: #192A6B;
            }

    h1 {
        font-size: 45px;
    }

    .section h2 {
        margin-bottom: 30px;
    }

    .section.framed h2 {
        font-size: 30px;
    }

    .section .image {
        width: 100%;
    }

    .section .content {
        width: 100%;
    }

    footer.section {
        justify-content: center;
    }

    footer .link-list {
        margin-top: 30px;
    }

        footer .link-list a {
            margin: 0 30px;
        }

            footer .link-list a:after {
                display: none;
            }
}

/*BreakPoint Tablet*/
@media screen and (min-width: 768px) and (max-width: 1365.98px) {
}

/*BreakPoint Mobile*/
@media screen and (max-width: 767.98px) {

    h1 {
        font-size: 35px;
    }

    .section {
        padding: 10% 5%;
    }

    footer .link-list {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

        footer .link-list a {
            margin: 0;
            padding: 10px 0;
        }
}
