* {
    color: #747474;
    font-family: 'Antic Slab', Arial, Helvetica, sans-serif;
}

a,
button,
a:active,
button:active,
a:focus,
button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.more-btn {
    color: #1a80b6;
}

.nav-link {
    color: #333333;
    font-family: 'Antic Slab', Arial, Helvetica, sans-serif;
}

.nav-custom .nav-item {
    border-top: 3px solid transparent;
}

.nav-custom .nav-item:hover {
    color: #1a80b6;
    border-top: 3px solid #1a80b6;
}

.navbar-on-top {
    margin-top: 0px;
    background: #fff;
    transition: ease 0.3s;
    height: 60px;
}

.navbar-brand {
    margin-left: 50px;
}

.navbar-on-top .navbar-brand img {
    height: 43px;
    transition: ease 0.3s;
}

.navbar-below {
    margin-top: 108px;
    background: #fff;
    border-top: 1px solid #1a80b6;
    /* transition: ease-in-out 0.3s; */
    height: 120px;
}

.jumbotron {
    background: url('../images/blue-bckg-fade.jpg');
    margin-top: 100px;
}

.jumbotron-text {
    white-space: nowrap;
    font-size: 20px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 50px;
    color: rgb(116, 116, 116);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform-origin: 50% 50% 0px;
}

.animation-fade-in {
    animation: fade-in 1s;
}

.questions-icon {
    border-color: #333333;
    border-width: 1px;
    background-color: #333333;
    height: 42px;
    width: 42px;
    line-height: 42px;
    border-radius: 100%;
    color: #1e73be;
    font-size: 21px;
    text-align: center;
}

.like-icon {
    border-color: #333333;
    border-width: 1px;
    background-color: #83a1bf;
    height: 42px;
    width: 42px;
    line-height: 42px;
    border-radius: 100%;
    color: #1e73be;
    font-size: 21px;
    text-align: center;
}

.rules-icon {
    border-color: #333333;
    border-width: 1px;
    background-color: #333333;
    height: 42px;
    width: 42px;
    line-height: 42px;
    border-radius: 100%;
    color: 1e73be;
    font-size: 21px;
    text-align: center;
}

.about-icon {
    border-color: #333333;
    border-width: 1px;
    background-color: #333333;
    height: 42px;
    width: 42px;
    line-height: 42px;
    border-radius: 100%;
    color: #ffffff;
    font-size: 21px;
    text-align: center;
}

.plus-icon {
    border-color: #333333;
    border-width: 1px;
    background-color: #333333;
    height: 22px;
    width: 22px;
    line-height: 22px;
    color: #ffffff;
    font-size: 12px;
    text-align: center;
}

.tab-pane {
    white-space: pre-line;
    padding: 25px;
    border: 1px solid #dee2e6;
    border-top: 0;
}

#myTab .nav-link {
    background: #dee2e6;
}

#myTab .nav-link.active {
    border-top: 2px solid #1a80b6;
    background: transparent;
}

.footer {
    background-color: #282a2b;
    border-color: #4b4c4d;
    padding-top: 18px;
    padding-bottom: 16px;
    font-size: 12px;
}

.div-without-a-reason {
    background-color: #363839;
    border-color: #e9eaee;
    padding-top: 43px;
    padding-bottom: 40px;
}


/* .delay-1 {
    animation-delay: 1s;
}

.delay-2 {
    animation-delay: 1.5s;
}

.delay-3 {
    animation-delay: 2s;
}

.delay-4 {
    animation-delay: 2.5s;
}

.delay-5 {
    animation-delay: 3s;
}

.delay-6 {
    animation-delay: 3.5s;
} */

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(-60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}