* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

:root {
    --prcolor: #ff9c56;
    /* --prcolor: #003; */
    --prcolor: #012;
    /*--prcolor:#5aa;*/
    --secolor: #ffffff;
    --trcolor: #555;
}

body {
    background-color: var(--secolor);
    color: var(--trcolor);
    width: 100%;
    height: auto;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 1rem;
    overflow: hidden;
    overflow-y: scroll;
    scroll-behavior: smooth;
    font-size: 15px;
}

.header {
    width: 100%;
    height: 100px;
    background-color: var(--secolor);
    display: flex;
    justify-content: center;
    box-shadow: 0px 1px 4px -1px #00000099;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
}

.header.active {
    transition: all 0.4s linear;
    position: fixed;
    left: 0px;
    z-index: 999;
    animation: h 1s 1 forwards;
    -webkit-animation: h 1s 1 forwards;
}

.header.inactive {
    animation: 1s 1 reverse;
    -webkit-animation: 1s 1 reverse;
}

@keyframes h {
    0% {
        top: -100px;
    }

    100% {
        top: 0px;
    }
}

.top-nav {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-navigation {
    width: auto;
    gap: 15px;
    display: flex;
    align-items: center;
}

.brand {
    display: flex;
    gap: 15px;
}

.side-brand {
    display: none;
}

.menu-btn,
.close-menu-btn {
    width: 40px;
    height: 40px;
    background-color: var(--secolor);
    color: var(--prcolor);
    font-size: 1.5rem;
    border: none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    display: none;
}

.brand-link {
    text-decoration: none;
    color: var(--trcolor);
    font-family: "teko", sans serif
}

.brand-title {
    font-size: 2rem;
    font-weight: 900;
}

.brand-title span:nth-child(1) {
    color: var(--prcolor);
}

.footer-title span:nth-child(1) {
    color: var(--secolor);
}

.footer-title span:nth-child(2) {
    color: var(--trcolor);
}

.top-nav-ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

.top-nav-link {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--trcolor);
    padding: 5px 15px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.top-nav-link.active,
.top-nav-link:hover {
    background-color: var(--prcolor);
    color: var(--secolor);
}

.account {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
}

main,
.main {
    width: 100%;
    min-height: 100vh;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
}

section,
.section {
    width: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 70px;
}

section .container,
.section .container {
    width: 90%;
}

footer,
.footer {
    width: 100%;
    background-color: #001;
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding-top: 35px;
}

.footer-cols {
    width: 100%;
    padding: 35px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 35px;
}

.footer-col {
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer-brand {
    max-width: 300px;
    background-color: #012;
    color: var(--secolor);
    line-height: 2;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.footer-title-box {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    padding: 35px;
}

.footer-title {
    font-family: "teko", sans serif
}

.detail-lines {
    padding: 35px;
}

.detail-line {
    font-size: normal;
}

.detail-link {
    text-decoration: none;
    color: var(--secolor);
}

.footer-detail {
    display: flex;
    gap: 10px;
}

.line-box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 35px;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.footer-heading {
    color: var(--secolor);
}

.quick-link strong {
    color: var(--prcolor);
}

.quick-link span {
    color: var(--secolor);
}

.quick-link:hover span {
    color: var(--prcolor);
}

.newsletter {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social-link {
    text-decoration: none;
    font-size: 1.7rem;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secolor);
    color: var(--trcolor);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.social-link:hover {
    background-color: var(--prcolor);
    color: var(--secolor);
}

.bottom-line {
    width: 100%;
    height: 1px;
    background-color: var(--trcolor);
    border: none;
    outline: none;
}

.brand-line {
    background-color: var(--secolor);
}

.copyright {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px;
}

@media screen and (max-width:1000px) {
    .footer-cols {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width:900px) {
    .side-brand {
        display: flex;
        height: 100px;
        align-items: center;
    }

    .top-nav-ul {
        padding-left: 30px;
        background-color: var(--secolor);
        position: fixed;
        width: 200px;
        height: 100vh;
        display: flex;
        flex-direction: column;
        left: -200px;
        top: 0px;
        z-index: 999;
        transition: all 0.4s linear;
        -webkit-transition: all 0.4s linear;
        -moz-transition: all 0.4s linear;
        -ms-transition: all 0.4s linear;
        -o-transition: all 0.4s linear;
    }

    .menu-btn,
    .close-menu-btn {
        display: block;
    }

    .footer-cols {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-col {
        justify-content: left;
    }
}

@media screen and (max-width:600px) {
    .footer-cols {
        grid-template-columns: repeat(1, 1fr);
    }
}