h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

.headerOrTitle {
    color: #dd6b4d;
    display: inline-block;
}

#topLogo {
    height: 64px;
}

#navLogo {
    height: 32px;
}

nav {
    border-radius: 0.85rem 2rem;
    background-color: #1c4b82cc;
    box-shadow: 0 0 0 1px #1c4b82fc;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav li {
    float: left;
}

nav li a {
    color: #dae1e7;
}

nav li a:hover {
    background-color: #183661cc;
    border-radius: 10px 30px;
    color: #dae1e7;
}

nav .active {
    background-color: #dd6b4dcc;
    border-radius: 10px 30px;
}

.lds-ripple {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

.lds-ripple div {
    position: absolute;
    border: 4px solid #fff;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
}

@keyframes lds-ripple {
    0% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: -1px;
        left: -1px;
        width: 58px;
        height: 58px;
        opacity: 0;
    }
}

.slide2 {
    -webkit-animation: slide2 2s forwards;
    -moz-animation: slide2 2s forwards;
    animation: slide2 2s forwards;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3;
}

body {
    background-color: #dae1e7;
    font-family: 'Mukta', sans-serif;
    color: #183661;
}

#mainSection {
    overflow: hidden;
    position: absolute;
    left: 0;
}

#mainSection img {
    z-index: 1;
}

#proShake {
    border-radius: 30px;
}

.things2slide {
    -webkit-animation: slide 2s forwards;
    -moz-animation: slide 2s forwards;
    animation: slide 2s forwards;
}

.fader {
    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 2s; /* Firefox < 16 */
    animation: fadein 2s;
}

#description {
    z-index: 2;
    right: 0;
    -webkit-animation: fadein 4s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 4s; /* Firefox < 16 */
    animation: fadein 4s;
}

.footer {
    width: 100%;
    height: 5em;
    line-height: 60px;
    background-color: #dd6b4dcc;
    bottom: -1.5em;
    transition: bottom ease 0.5s;
}

.footer:hover {
    bottom: 0;
}

.siteMap {
    text-decoration: none;
    color: #dae1e7;
    margin-left: 1rem;
}

.siteMap:hover {
    text-decoration: none;
    color: #183661;
}

.activeFoot {
    font-weight: bold;
}

#subForm input {
    height: 50%;
    border: none;
    border-radius: 8px;
    background-color: #dae1e7CC;
}

#subForm button {
    background-color: #1c4b82;
    border-radius: 8px;
    border: none;
    padding: 0 1rem;
    color: #dae1e7;
    margin: 1em;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
}

.product-card {
    width: 250px;
}

#mainSection > div > div > ul {
    border-radius: 2rem 0.85rem;
    background-color: #1c4b82cc;
    box-shadow: 0 0 0 1px #1c4b82fc;
    position: fixed;
    padding: 1em 1em 1em;
    width: 15vw;
}

main div div ul {
    list-style-type: none;
}

main div div ul li a {
    color: #dae1e7;
}

main div div ul a:hover {
    text-decoration: none;
    color: #dae1e7;
    background-color: #dd6b4d;
    padding: .5em;
    border-radius: 20px 5px;
}

#mainSection > div > div.col-12.col-md-10 > div > h1 {
    -webkit-animation: fadein 4s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 4s; /* Firefox < 16 */
    animation: fadein 4s;
}

#mainSection > div > div.col-12.col-md-10 > div > div {
    padding-bottom: 5vw;
}

#mainSection > div > div > ul > li:nth-child(1) {
    font-size: 1.2em;
    color: #dd6b4d;
    font-weight: bolder;
}

#mainSection > div > div.col-md-2.category-list > ul > li {
    margin: 1em;
}

#footer {
    margin-top: 0.5rem;
}

@keyframes slide {
    from {
        left: -100vw;
    }
    to {
        left: 0;
    }
}

@-moz-keyframes slide {
    from {
        left: -100vw;
    }
    to {
        left: 0;
    }
}

@-webkit-keyframes slide {
    from {
        left: -100vw;
    }
    to {
        left: 0;
    }
}

@keyframes slide2 {
    from {
        right: -100vw;
    }
    to {
        right: 0;
    }
}

@-moz-keyframes slide2 {
    from {
        right: -100vw;
    }
    to {
        right: 0;
    }
}

@-webkit-keyframes slide2 {
    from {
        right: -100vw;
    }
    to {
        right: 0;
    }
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}