body {
    color: #333;
    width: 100%;
    font-family: "Raleway", sans-serif;
    padding-top: 72px;
}

.text-black {
    color: #333 !important;
}

.text-blue {
    color: #43597A;
}

.text-small {
    font-size: 20px;
}

.text-shadow {
    text-shadow: 0 3px 26px #00000080;
}

.container-small {
    padding: 24px 16px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: #43597A;
    z-index: 50;
}

.header .logo {
    width: 83px;
}

.header .icon {
    color: white;
    font-size: 20px;
    transition: .3s;
    text-shadow: 0 3px 26px #00000080;
}

.header .icon:hover {
    color: #333;
    text-shadow: 0 3px 26px #ffffff80;
    transition: .3s;
}

.header .link {
    text-decoration: unset;
    font-size: 20px;
}

.header .link:hover {
    text-decoration: underline;
}

.header .link.active {
    text-decoration: underline;
}

.header .open-menu, .header .close-menu {
    font-size: 32px;
}

.header__menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100% - 72px);
    overflow: auto;
    background-color: #43597A;
}

a.text-blue:hover {
    color: #43597A;
}

@media (min-width: 768px){
    body {
        padding-top: 60px;
    }

    .container-small {
        padding: 40px 56px;
    }

    .header .icon {
        font-size: 24px;
    }

    .header .link {
        font-size: 16px;
    }
}

.footer {
    background-color: #43597A;
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-color: white;
    z-index: -1;
  }