/* All CSS relative to menu and footer that we can find on every page */

/* Font imports */
@font-face {
    font-family: "Outfit";
    src: url("../../assets/fonts/Outfit.ttf") format("truetype");
}

::selection { background: #fc653f; color: #fff; }

h1, p, a {
    overflow-wrap: normal;
}
html {
    font-family: "Outfit";
    --nav-bar-height: 84px;
}
body {
    background: rgb(30, 30, 30);
    padding: 0;
    margin: 0;
    display: block;
}
.container-body {
  margin-left: 4vw;
  margin-right: 4vw;
}

/* Slide side menu */
#sidebarMenu {
    top: var(--nav-bar-height);
    z-index: 10;
    height: 100%;
    position: fixed;
    right: 0;
    width: 250px;
    transform: translateX(250px);
    transition: transform 250ms ease-in-out;
    background: linear-gradient(180deg, #F33C03 0%, #FF9801 100%);
}
.sidebarMenuInner{
    margin:0;
    padding:0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.sidebarMenuInner li{
    list-style: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.sidebarMenuInner li span{
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.50);
}
.sidebarMenuInner li a{
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: block;
    padding: 20px;
    transition: all 0.2s ease-in-out;
}
.sidebarMenuInner li a:hover{
    color: #fff;
    background-color: #ffffff15;
    padding-left: 30px;
}
.slidebar-expand {
    transform: none !important;
}
.sidebarMenuInner .login {
    border-radius: 4px;
    padding: 8px !important;
    margin-top: 5px;
    display: inline-block;
}
.sidebarMenuInner .login:hover {
    color: #FF9801;
}

/* top element slide side menu */
.top-li-menu {
    cursor: default !important;
}
.top-li-container {
    display: flex;
    flex-direction: row;
    margin: 10px;
    justify-content: center;
    border-radius: 50px;
    background-color: white;
}
.top-li-img-container {
    height: 42px;
    padding: 8px;
    padding-left: 0px;
}
.top-li-txt-container {
    display: inline-flex;
}
.top-li-txt {
    color: black;
    margin: auto;
}

/* button */
.btn-track {
    margin-top: 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    background: rgb(255, 206, 196);
    box-shadow: 0 8px 20px -6px rgba(0,0,0,0.3);
    border-radius: 8px;
    transition: all 0.25s ease;
  }
  .btn-track:hover {
    background: #dbb6aa;
  }
  .btn-track .--icon {
    box-sizing: border-box;
    position: relative;
    width: 8px;
    height: 45px;
    background: #f33c03;
    float: left;
    transition: all 0.25s ease;
  }

  .btn-track .--text {
    box-sizing: border-box;
    float: left;
    color: #000;
    white-space: nowrap;
    line-height: 20px;
    padding-left: 8px;
    border-radius: 0 8px 8px 0;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.25s ease;
  }
  .btn-track:active {
    transform: translateY(1px);
  }

/* Animated menu icon : display */
.hamburger {
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: inherit;
}
.hamburger-box {
    width: 30px;
    height: 19px;
    display: inline-block;
    position: relative;
}
.hamburger-inner {
    display: block;
    top: 50%;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 30px;
    height: 3px;
    background-color: inherit;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
}
.hamburger-inner::before {
    top: -7px;
}
.hamburger-inner::after {
    bottom: -7px;
}

/* Animated menu icon : effects */
.hamburger--spin .hamburger-inner {
    transition: transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color linear 0.25s;
}
.hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in, background-color linear 0.25s;
}
.hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color linear 0.25s;
}
.hamburger--spin.is-active .hamburger-inner {
    transform: rotate(225deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out, background-color linear 0.25s;
}
.hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), background-color linear 0.25s;
}

/* Top navigation bar */
#NavBar {
  top: 0px
}
.navbar {
    width: 100%;
    background-color: #F33C03;
    overflow: auto;
    position: fixed;
    transition: all linear 0.25s;
    z-index: 10;
}
.navbar-a {
    cursor: pointer;
    padding: 12px;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all linear 0.25s;
}
.logo-navbar {
    vertical-align: middle;
    height: 60px;
    transition: all linear 0.25s;
}
.text-navbar {
    text-align:center;
    display:inline-block;
    font-size: 200%;
    margin: 0;
    vertical-align: middle;
    padding-left: 10px;
    transition: all linear 0.25s;
}
.MenuButtonNavBar {
    float: right;
    padding: 31px;
    transition: all linear 0.25s;
    cursor: pointer;
}
.MenuButtonNavBar:hover {
    background-color: rgba(0, 0, 0, 0.253);
}
@media only screen and (max-width: 700px) {
    .text-navbar {
        font-size: 105%;
        padding-left: 4px !important;
    }
    .logo-navbar {
        height: 42px;
    }
    .MenuButtonNavBar {
        padding: 22px;
    }
}

/* footer */
.footer {
    display: flex;
    flex-flow: row wrap;
    padding: 30px 30px 20px 30px;
    color: #fff;
    background-color: #2f2f2f;
    border-top: 1px solid #4f4f4f;
    width: auto;
}
.footer > * {
    flex:  1 100%;
}
.footer__addr {
    margin-right: 1.25em;
    margin-bottom: 2em;
}
.footer__logo {
    font-weight: 400;
    font-size: 1.5rem;
}
.footer__addr h2 {
    margin-top: 1.3em;
    font-size: 15px;
    font-weight: 400;
}
.nav__title {
    font-weight: 400;
    font-size: 15px;
}
.footer address {
    font-style: normal;
    color: #999;
}
.footer__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    max-width: max-content;
    background-color: rgb(34, 34, 34);
    border-radius: 4px;
    color: #f33c03;
    line-height: 0;
    margin: 0.6em 0;
    font-size: 1rem;
    padding: 0 1.3em;
}
.footer ul {
    list-style: none;
    padding-left: 0;
}
.footer li {
    line-height: 2em;
}
.footer a {
    text-decoration: none;
}
.footer__nav {
    display: flex;
    flex-flow: row wrap;
}
.footer__nav > * {
    flex: 1 50%;
    margin-right: 1.25em;
}
.nav__ul a {
    color: #999;
}
.nav__ul--extra {
    column-count: 2;
    column-gap: 1.25em;
}
.legal {
    display: flex;
    flex-wrap: wrap;
    color: #999;
    justify-content: center;
    text-align: center;
}
.legal__links {
    display: flex;
    align-items: center;
}
.top-footer-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    border-radius: 50px;
    background-color: white;
    width: min-content;
    padding: 0px 20px 0px 20px;
}
.top-footer-txt {
    color: #000;
    margin: auto;
    font-weight: 600;
    font-size: 19px;
}
.top-footer-img-container {
    height: 42px;
    padding: 8px;
    padding-left: 8px;
    padding-left: 0px;
}
.a_contact {
    display: flex;
}
.a_img_contact {
    width: 20px;
    height: 20px;
    filter: invert(45%);
}
.a_p_contact {
    color: #999;
    margin: 0px;
    margin-left: 3px;
}

@media screen and (min-width: 24.375em) {
    .legal .legal__links {
        margin-left: auto;
    }
}
@media screen and (min-width: 40.375em) {
    .footer__nav > * {
        flex: 1;
    }
    .nav__item--extra {
        flex-grow: 2;
    }
    .footer__addr {
        flex: 1 0px;
    }
    .footer__nav {
        flex: 2 0px;
    }
}
@media screen and (max-width:620px) {
    .top-footer-txt {
        font-size: 16px;
        font-weight: 500;
    }
    .top-footer-img-container {
        height: 32px;
    }
    #c_adress_btn {
        flex-direction: column;
    }
}

  /* CSS class to stop scrolling */
.stop-scrolling {
    height: 100%;
    overflow: hidden;
}