html {
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

body {
    width: 100%;
    min-height: 100vh;
    position: relative;
    margin: 0 auto;
    background: #fff;
    color: #222;
}
.max-width {
    max-width: 1400px;
}

nav {
    z-index: 1021 !important;
    background: #fff;
    color: #222;
}
section{
    display: flex;
    flex-direction: column;
    align-items: center;
    
}
section:nth-child(odd){
    background-color: #f8f8fa;
    /*background-color: #ecf5fa;*/
}
section.header{
    height: 160px;
    background: url('../imgs/background.png') #f8f8fa;
    background-position: center;
    background-size: auto 100%;
    background-repeat: repeat-x;
}
.card-image{
    filter: grayscale(1);
}

#overview{
    background: url('../imgs/background.png') #f8f8fa;
    background-position: center;
    background-size: auto 100%;
    background-repeat: repeat-x;
    /*min-height: 80vh;*/
    padding: 50px 0 100px 0;
}

footer{
    background: #f8f8fa;
}
footer .logo{
    width: 10em;
    height: auto;
    filter: grayscale(1);
}
h1.fs-1{
    font-size: calc(2.375rem + 1.5vw)!important
}
h1 .logo{
    height: 2em;
}
p{
    max-width: 700px;
}

.navbar-brand{
    /*color: #de319c;*/
}
.nav-link{
    cursor: pointer;
    transition: all 0.4s;
}
.nav-link:hover{
    /*opacity: 0.6;*/
}
.logo{
    width: auto;
}
.navbar-logo .logo {
    height: 2em;
}

footer

:root {
    --left-bg-color: rgba(0, 0, 0, 0.5);
    --left-button-hover-color: rgba(0, 0, 0, 0.3);
    --right-bg-color: rgba(0, 0, 0, 0.5);
    --right-button-hover-color: rgba(0, 0, 0, 0.3);
    --hover-width: 75%;
    --other-width: 25%;
    --speed: 1000ms;
}

::-webkit-scrollbar {
    width: 2px;
}

::-webkit-scrollbar-track {
    background: rgb(158, 232, 255, 0);
    -webkit-box-shadow: inset 0 0 6px rgb(158, 232, 255, 0);
}

::-webkit-scrollbar-thumb {
    background: #c0c2ce;
    /*-webkit-box-shadow: inset 0 0 6px rgb(255, 255, 255, 0.6);*/
}

::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(255, 255, 255, 0.4);
}


.fs-7{
    font-size: 0.85em;
}
a,
a:hover {
    color: #222;

}
button:focus {
    outline: none;
}

.btn-check:focus+.btn,
.btn:focus {
    box-shadow: none;
}

input:focus,
textarea:focus,
select:focus,.form-select:focus {
    outline: none;
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.btn-outline-primary {
    border-color: #de319c;
    color: #de319c;
    background-color: #fff;
}

.btn-outline-primary:hover {
    background-color: #de319c;
    border-color: #de319c;
}

.btn-primary {
    background-color: #de319c;
    border-color: #de319c;
    color: #fff;
}

.btn-primary:hover {
    background-color: #ce2997;
    border-color: #ce2997;
    color: #fff;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
    background-color: #de319c;
    border-color: #de319c;
}
.btn-check:active+.btn-primary, .btn-check:checked+.btn-primary, .btn-primary.active, .btn-primary:active, .show>.btn-primary.dropdown-toggle{
    color: #fff;
    background-color: #de319c;
    border-color: #de319c;
}
.btn-check:active+.btn-outline-primary, .btn-check:checked+.btn-outline-primary, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show, .btn-outline-primary:active{
    color: #fff;
    background-color: #de319c;
    border-color: #de319c;
}
.avatar{
    border: 2px solid #222;
    background-color: #fff;
    width: 4em;
    height: 4em;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    border-radius: 100%;
}
.photo{
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    border-radius: 100%;
    width: 14em;
    height: 14em;
}
.bg-icons{
    bottom: 1rem;
    z-index: 2;
    animation: moving 14s infinite linear alternate;
    left: 0;
}

@keyframes moving {
    from {
        left: 0;
    }

    to {
        left: calc(100% - 23rem);

    }
}
@keyframes rotate {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);

    }
}
@keyframes shaking {
    0% {
        transform: rotate(0);
    }

    50% {
        transform: rotate(5deg);

    }
    100% {
        transform: rotate(-5deg);

    }

}
.bg-icon-container{
    position: relative;
}
.bg-icon-container:after{
    content: "";
    height: 5px;
    border-radius: 2px;
    background: #bdccd4;
    width: 40%;
    position: absolute;
    left: 45%;
    bottom: calc(10% - 1px);
    z-index: -1;
}
.bg-icon,.bg-icon-inner{
    height: 7rem;
    width: 7rem;
    background-repeat: no-repeat !important;
    background-position: center !important;
    border-radius: 100%;
    background-size: 80% !important;
}
.bg-icon-inner{
    position: absolute;
    left: 0;
    top: 0;
    background-size: 80% !important;
}
.bg-icon{
    animation: rotate 10s infinite linear alternate;
}
.bg-icon-inner.bg-icon-inner-a{
    background: url('../imgs/bg-icon-a-inner.png');
    animation: shaking 1s infinite ease alternate;
}
.bg-icon-inner.bg-icon-inner-b{
    background: url('../imgs/bg-icon-b-inner.png');
    animation: shaking 1.4s infinite ease alternate;
}
.bg-icon-inner.bg-icon-inner-c{
    background: url('../imgs/bg-icon-c-inner.png');
    animation: shaking 2s infinite ease alternate;
}
.bg-icon.bg-icon-a{
    background: url('../imgs/bg-icon-a.png');
}
.bg-icon.bg-icon-b{
    background: url('../imgs/bg-icon-b.png');
}
.bg-icon.bg-icon-c{
    background: url('../imgs/bg-icon-c.png');
}
#explore .icon{
    border: 2px solid #fff;
    width: 2.4em;
    height: 2.4em;
    background-position: center;
    background-size: 80%;
    background-repeat: no-repeat;
    border-radius: 100%;
    z-index: 1;
}
#explore .name {
    color: #000;
    padding-left: 1.7em;
    margin-left: -1.2em;
}
#explore .actions{
    z-index: 2;
    top: 50%;
    transform: translate(0,-50%);
    background: rgba(248, 248, 250, 0.9);
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}
.list-group-item{
    background-color: inherit;
}
