* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Jost';
}

.super-container {
    max-width: 1500px;
    width: 100%;
    margin: auto;
}

header {
    display: flex;
    flex-direction: column;
}

header .header-info {
    background-color: #E53636;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

header .header-info .text {
    width: fit-content;
    text-align: center;
    font-size: 11px;
    color: white;
}

header .nav-container {
    background-color: #003A5F;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header .nav-container .sup-info {
    width: 80%;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 16px;
}

header .nav-container .sup-info .link-list {
    /* width: 100%; */
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 80px;
    justify-content: center;
    margin: auto;
}

header .nav-container .sup-info a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

header .nav-container .search-container {
    background-color: white;
    width: 100%;
}

header .nav-container .search-container .search-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    column-gap: 30px;
    width: 80%;
    margin: 15px auto;
    align-items: center;
    justify-content: center;
}

header .nav-container .search-container .search-bar .search {
    /* background-color: rgba(88, 46, 46, 0.2); */
    border-radius: 9px;
    height: 55px;
    width: 100%;
    height: 100%;
    max-width: 505px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: auto;
}

header .nav-container .search-container .search-bar .search h1 {
    color: #003A5F;
    font-size: 35px;
    text-transform: uppercase;
    margin-bottom: 5px;
    text-align: center;
}

header .nav-container .search-container .search-bar .search input {
    width: calc(100% - 17px);
    max-width: 488px;
    height: 40px;
    border: 1px solid rgba(88, 46, 46, 0.5);
    padding-left: 20px;
    border-radius: 8px;
    outline: none;
    color: black;
}

header .nav-container .search-container .search-bar .search input::placeholder {
    color: #666666;
}

header .nav-container .search-container .search-bar .search button {
    position: absolute;
    top: 76%;
    transform: translateY(-50%);
    right: 25px;
    background: none;
    color: #E53636;
    border: none;
    border-left: 2px solid #E53636;
    padding-left: 10px;
    cursor: pointer;
}

header .nav-container .search-container .search-bar .action-list {
    display: grid;
    grid-template-columns: auto;
    row-gap: 10px;
}

header .nav-container .search-container .search-bar .action-list .responsive-button {
    display: none;
}

header .nav-container .search-container .search-bar .action-list a {
    position: relative;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    color: black;
    font-size: 14px;
    text-decoration: none;
    font-weight: 700;
    gap: 5px;
    text-transform: uppercase;
    text-align: center;
}
header .nav-container .search-container .search-bar .action-list a.contact {
    font-size: 20px;
}


header .nav-container .search-container .search-bar .action-list a .counter {
    position: absolute;
    top: -5px;
    right: -13px;
    background-color: black;
    color: white;
    font-size: 11px;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

header .nav-container nav {
    display: flex;
    width: 80%;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
}

header .nav-container nav .dropdown-btn {
    background-color: #E53636;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 214px;
    height: 48px;
    border-radius: 7px 7px 0 0;
    font-size: 11px;
    font-weight: 600;
}

header .nav-container nav .dropdown-btn span {
    margin: 0 15px;
}

header .nav-container nav .nav-elements {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    column-gap: 25px;
    font-size: 13px;
}

header .nav-container nav .nav-elements a {
    color: white;
    text-decoration: none;

}

.responsive-menu {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: end;
}

.responsive-menu .content {
    height: 100%;
    padding-top: 50px;
    width: 350px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 75px;
    color: #003A5F;
}

.responsive-menu .content > button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.responsive-menu .content h2 {
    font-size: 30px;
    font-weight: 800;
}

.responsive-menu .content .nav-elements {
    width: 100%;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 30px;
}

.responsive-menu .content .nav-elements a {
    font-size: 22px;
    text-decoration: none;
    color: #003A5F;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 15px;
}

.responsive-menu .content .action-list {
    display: grid;
    grid-template-columns: auto;
    row-gap: 30px;
}
.responsive-menu .content .action-list a {
    position: relative;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    color: #003A5F;
    font-size: 12px;
    text-decoration: none;
    font-weight: 700;
    gap: 5px;
    text-transform: uppercase;
}

.responsive-menu .content .action-list a .counter {
    position: absolute;
    top: -8px;
    right: -13px;
    background-color: #003A5F;
    color: white;
    font-size: 11px;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

@keyframes slideR2L {
    0% {
        right: -600px;
    }
    100% {
        right: 0px;
    }
}
.slideLeft {
    animation-name: slideR2L;
    animation-duration: .5s;
    animation-timing-function: ease-in;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.fadeOut {
    animation-name: fadeOut;
    animation-duration: .5s;
    animation-timing-function: ease-out;
}

footer {
    background-color: #1F2B31;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer .newsletter {
    width: auto;
    margin: 30px auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}

footer .newsletter .label {
    font-size: 23px;
    font-weight: 700;
    color: white;
    text-align: center;
}

footer .newsletter form {
    display: flex;
}

footer .newsletter form input {
    width: 533px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 40px;
    font-size: 23px;
    border-radius: 12px 0 0 12px;
}

footer .newsletter form input::placeholder {
    color: #BFBFBF;
}

footer .newsletter form button {
    font-size: 21px;
    font-weight: 700;
    width: 193px;
    height: 50px;
    background: none;
    background-color: #BE5354;
    color: white;
    border: none;
    border-radius: 0 12px 12px 0;
    text-transform: uppercase;
}

footer .banner-container {
    background-color: #E7E9EA;
    width: 100%;
    height: 138px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

footer .banner-container .banner-content {
    display: grid;
    width: auto;
    grid-template-columns: repeat(4, auto);
    gap: 70px;
}

footer .banner-container .banner-content .content {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    line-height: 18px;
}

footer .supinfo {
    display: grid;
    grid-template-columns: repeat(4, auto);
    margin: 25px auto;
    width: 80%;
    color: white;
    column-gap: 80px;
    font-size: 15px;
    font-weight: 300;
}

footer .supinfo h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 20px;
}

footer .supinfo ul {
    margin-left: 45px;
}

footer .supinfo .payment .image {
    margin-top: 20px;
    display: grid;
    width: fit-content;
    grid-template-columns: repeat(3, auto);
    gap: 5px;
}

footer .credits {
    background-color: white;
    height: 67px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .credits a {
    color: black;
    text-decoration: none;
}

@media (max-width: 1300px) {

    header .nav-container .sup-info {
        width: 95%;
    }

    header .nav-container .search-container .search-bar {
        width: 95%;
    }

    header .nav-container nav {
        width: 95%;
    }

    footer .newsletter {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px;
        width: 100%;
    }
    footer .newsletter {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    footer .newsletter form {
        display: flex;
        width: 100%;
        padding: 0 20px;
        justify-content: center;
        align-items: center;
    }

    footer .newsletter form input {
        width: 100%;
        max-width: 533px;
    }

    footer .supinfo {
        width: 95%;
    }

    footer .banner-container {
        height: 108px;
    }
    footer .banner-container .banner-content {
        gap: 50px;
    }

    footer .banner-container .banner-content .content {
        font-size: 11px;
    }
}

@media (max-width: 1090px) {

    header .nav-container .search-container .search-bar .action-list {
        grid-template-columns: auto;
    }

    header .nav-container .search-container .search-bar .action-list a {
        display: none;
    }
    header .nav-container .search-container .search-bar .action-list a.responsive-button {
        display: flex;
        background-color: #003A5F;
        color: white;
        padding: 20px;
        border-radius: 50%;
        cursor: pointer;
    }
    header .nav-container nav {
        display: none;
    }
}

@media (max-width: 1000px) {
    footer .banner-container {
        display: none;
    }
    footer .supinfo {
        column-gap: 40px;
    }
}

@media (max-width: 850px) {
    footer .supinfo {
        padding: 0 30px;
        column-gap: none;
        row-gap: 50px;
        grid-template-columns: 1fr 1fr;
        justify-content: center;
    }
}

@media (max-width: 650px) {
    header .header-info {
        display: none;
    }
    header .nav-container .sup-info > div {
        display: none;
    }
    header .nav-container .sup-info .link-list {
        display: grid;
        grid-template-columns: auto auto auto;
        width: 100%;
        justify-content: space-around;
        font-size: 16px;
    }
    header .nav-container .search-container .search-bar .logo img {
        text-align: center;
        width: 80px;
        height: auto;
    }
    header .nav-container .search-container .search-bar .search h1 {
        font-size: 25px;
    }
    header .nav-container .search-container .search-bar .search button {
        position: absolute;
        top: 76%;
        transform: translateY(-50%);
        right: 25px;
        background: none;
        color: #E53636;
        border: none;
        border-left: 2px solid #E53636;
        padding-left: 10px;
        cursor: pointer;
    }
    footer .newsletter form {
        display: flex;
        width: 100%;
        padding: 0;
    }
    footer .newsletter form input {
        font-size: 15px;
    }
    footer .newsletter form button {
        font-size: 13px;
    }
    footer .supinfo {
        padding: 0 30px;
        column-gap: none;
        row-gap: 50px;
        grid-template-columns: 1fr;
        justify-content: center;
    }
}

@media (max-width: 650px) {
    header .nav-container .search-container .search-bar .search > input, header .nav-container .search-container .search-bar .search > button {
        display: none;
    }
    header .nav-container .search-container .search-bar .search > h1 {
        font-size: 20px;
    }

    header .nav-container .search-container .search-bar .action-list a.responsive-button {
        display: flex;
        background-color: #003A5F;
        color: white;
        padding: 15px;
        border-radius: 50%;
        cursor: pointer;
    }
}
