body,
header {
    background-color: #2e2e2e
}

#nav-list ul,
body {
    display: flex;
    margin: 0
}

body,
main {
    min-height: 100vh;
    flex-direction: column
}

.no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

body {
    font-family: Nunito_Sans !important;
    padding: 0;
    justify-content: flex-start;
    transition: background-color .5s, color .5s, background .5s, transform .3s ease-in-out;
    color: #000
}

header {
    display: flex;
    height: 80px;
    width: 100%;
    position: fixed;
    top: 0;
    transition: height .3s, box-shadow .3s;
    align-items: center;
    z-index: 2
}

.logo-container {
    height: calc(100% - 20px);
    margin-left: 10px;
    transition: height .3s;
}

.logo-container img {
    height: 100%;
    width: 100%;
}

#tucked-header.hidden #nav-list ul li a {
    font-size: 17px
}

#nav-list {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

#nav-list ul {
    flex-direction: row;
    align-items: center;
    gap: 30px;
    padding-left: 0;
    text-align: center;
    list-style-type: none
}

nav ul li a {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 30px;
    transition: background-color .5s, color .5s;
    position: relative
}

#nav-list ul li {
    margin: 15px 0
}

#nav-list ul li a {
    color: #000;
    font-size: 18px;
    transition: font-size .3s
}

nav ul li a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 3px;
    background: #000;
    transition: width .3s ease-in-out, left .3s ease-in-out
}

nav ul li a.current::after,
nav ul li a:focus::after,
nav ul li a:hover::after {
    width: 100%;
    left: 0
}

#nav-list.show {
    transform: translateX(0);
    box-shadow: 0 8px 12px -6px rgb(0 0 0 / 66%)
}

.mobile-only {
    display: none
}

#hamburger-icon {
    cursor: pointer;
    position: absolute;
    right: 10px;
    z-index: 1001
}

.hamburger-line {
    stroke: currentColor;
    stroke-width: 2;
    transition: transform .3s, opacity .3s
}

#call-button,
.language-switcher {
    cursor: pointer;
    transition: transform .3s;
    display: flex
}

.hamburger-line.nav_bottom,
.hamburger-line.nav_top {
    transform-origin: center
}

.hamburger-line.nav_middle {
    opacity: 1
}

#hamburger-icon.nav_active .hamburger-line.nav_top {
    transform: translateY(6px) translateX(-6px) rotate(45deg)
}

#hamburger-icon.nav_active .hamburger-line.nav_middle {
    opacity: 0
}

#hamburger-icon.nav_active .hamburger-line.nav_bottom {
    transform: translateY(-6px) translateX(-6px) rotate(-45deg)
}

.language-switcher {
    position: absolute;
    right: 20px;
    width: 35px;
    align-items: center;
    justify-content: center
}

.back-to-home,
main {
    align-items: center;
    display: flex
}

.language-switcher img {
    height: 100%;
    width: 100%;
    border: 2px solid;
    border-radius: 3px
}

.language-switcher:hover {
    transform: scale(1.2)
}

main {
    margin-top: 80px;
    background-color: #2e2e2e
}

main>:last-child {
    margin-bottom: 20px
}

header.hidden {
    height: 60px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2)
}

.logo-pos {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end
}

.logo-pos-title {
    font-size: 26px;
    transition: font-size .3s
}

.logo-pos-subtitle {
    color: #585858;
    font-size: 16px;
    transition: font-size .3s
}

.back-to-home {
    margin-top: 20px;
    width: calc(100% - 40px);
    max-width: 800px;
    gap: 5px;
    font-size: 19px;
    cursor: pointer
}

.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000
}

#call-button {
    background-color: #25d366;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    align-items: center;
    justify-content: center
}

#call-button:hover {
    transform: scale(1.1)
}

footer {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: #fff;
    border-top: 1px solid #484848;
    font-family: RedHat;
}

.footer-content {
    display: flex;
    padding: 20px 0 0;
    margin-left: 20px;
    margin-right: 20px;
    position: relative;
    width: 100%;
    max-width: 1000px;
    justify-content: space-around
}

.footer-column {
    margin: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px
}

.footer-column span {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
    margin-top: 0
}

.footer-column a,
.footer-column p {
    color: var(--text-color);
    font-size: 14px;
    display: flex;
    flex-direction: row;
    gap: 5px;
    text-decoration: none;
    margin: 0
}

.footer-bottom {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-left: 20px;
    margin-right: 20px;
    width: 100%;
    color: #fff
}

.footer-bottom p,
.footer-links a {
    color: #fff;
    font-size: 14px;
    text-decoration: none
}

.footer-links {
    display: flex;
    gap: 20px
}

.powered-by {
    height: 25px;
    width: 33px
}

@media (max-width:1300px) {
    .header-phone {
        right: 60px
    }

    .language-switcher {
        right: 10px;
        top: 10px
    }

    .mobile-only {
        display: unset
    }

    .hamburger-menu {
        display: block
    }

    #nav-list {
        width: unset;
        background: #fff;
        color: #000;
        transition: .2s ease-in-out;
        border-radius: 0 0 0 20px;
        position: fixed;
        top: 80px;
        transition: top .3s, box-shadow .3s, transform .3s;
        transform: translateX(100%);
        right: 0;
        left: unset;
        min-height: 200px
    }

    .short-gap {
        top: 60px !important
    }

    #nav-list ul {
        flex-direction: column;
        gap: 0
    }

    #nav-list ul li {
        margin: 15px
    }
}

@media (max-width:880px) {
    .powered-by-container {
        position: unset
    }
}

@media (max-width:768px) {
    .language-switcher {
        width: 30px
    }

    .footer-bottom,
    .footer-content {
        flex-direction: column;
        gap: 30px
    }

    .social-media {
        margin-top: auto;
        display: flex;
        width: 100%;
        justify-content: center;
        margin-bottom: 0
    }

    .back-to-home {
        margin-top: 10px;
        font-size: 17px
    }
}

@media(max-width:500px) {
    .logo-container {
        height: calc(100% - 10px);
    }

    main {
        margin-top: 60px
    }

    header {
        height: 60px
    }

    header.hidden {
        height: 50px;
    }

    #nav-list {
        top: 60px
    }
}