html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.btn-myColor {
    background-color: #88b6e2;
    color: white;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.header {
    margin-bottom: 80px;
}

.bg-header {
    background-color: #ededf0;
}

.nav-link {
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    color: #031D44;
    padding: 5px 5px;
    display: inline-block;
    position: relative;
    opacity: 0.75;
}

a.underline {
    text-decoration: none;
    background-image: linear-gradient(green, #88b6e2);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 3px;
    transition: background-size 1s;
}

    a.underline:hover, a.underline:focus {
        background-size: 100% 3px;
    }

a.inlineLink {
    text-decoration: none;
    background-image: linear-gradient(#88b6e2, #88b6e2);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size 1s;
    font-weight: bold;
    color: #88b6e2;
}

    a.inlineLink:hover, a.inlineLink:focus {
        background-size: 100% 2px;
    }

.activeLink {
    background-color: grey;
    color: white !important;
}

.profil-box-element {
    margin-top: 15px;
    align-content: center;
    border: 2px solid blue;
    background-color: #88b6e2;
    color: white;
    width: 100%;
    border-radius: .7rem !important;
    padding-top: 5px;
    padding-bottom: 10px;
}

.profil-box-element-main-text {
    font-size: 1.4rem !important;
}

.profil-box-element-sub-text {
    font-size: 1.0rem !important;
}

.profil-box-element:hover {
    background-color: green;
    color: white;
    transition: all 1s ease-in-out;
}

.centered-element {
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.headLine-m10 {
    margin-bottom: 10px;
}

.anime-profil-foto {
    animation: turner 4s 1 ease-in-out;
}

@keyframes turner {
    from {
        transform: rotatey(0deg)
    }

    to {
        transform: rotatey(360deg)
    }
}

.img-customer-brand {
    margin-right: 25px;
}

.img-profil {
    border: 1px solid black;
    border-radius: 10px;
    width: 270px;
    margin-top: 7px;
    margin-right: 15px;
}

.img-border {
    border: 1px solid gray;
    border-radius: 10px;
}

.btn-scroll-top.btn-icon {
    text-align: center;
    background: #88b6e2;
    text-decoration: none;
    position: fixed;
    z-index: 99999;
    bottom: 125px;
    right: 0px;
    -webkit-border-top-left-radius: 50px;
    -webkit-border-bottom-left-radius: 50px;
    -moz-border-radius-topleft: 50px;
    -moz-border-radius-bottomleft: 50px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    display: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    padding: 15px;
    color: #fff;
}

.btn-scroll-top:before {
    content: 'Top';
}
