:root {
    --cb-blue: #0090e3;
    --cb-blue-less: rgba(0, 144, 227, 0.2);
    --cb-dark-blue: #285dab;
    --cb-darker-blue: #036;
    --cb-darkest-blue: #00162c;
    --cb-orange: #f60;
    --cb-dark-orange: #ec4040;
    --cb-darker-orange: #be0000;
    --cb-green: #00b900;
    --cb-gray: #ddd;
    --cb-gray-less: rgba(221, 221, 221, 0.5);
    --cb-white: #fff;
}

body::-webkit-scrollbar {
    display: none;
}

body {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* header */

header {
    height: 12.5vh;
    width: 100vw;
    background: var(--cb-blue);
    display: flex;
    align-items: center;
    padding-left: 2rem;
    overflow: hidden;
    position: fixed;
    z-index: 1;
}

.logo {
    height: 150%;
}

.logo__link {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__section {
    width: 90%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4rem;
    padding-right: 1rem;
}

.header__link {
    font-size: 2.5rem;
    color: white;
    text-decoration: none;
}

.shoppingcart__div {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.shoppingcart__link {
    height: 100%;
    width: 100%;
}

.shoppingcart__icon {
    font-size: 4rem;
    color: white;
}

.shoppingcart__amount {
    background: var(--cb-orange);
    color: white;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    position: absolute;
    top: -10%;
    right: -10%;
}

/* footer */

footer {
    margin-top: 2%;
    width: 100%;
    border-top: solid 1px var(--cb-gray);
    font-size: 1.5rem;
    background: var(--cb-blue);
}

.footer__section {
    width: 100%;
    padding: 0 11%;
}

.footer__section1 {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background: white;
    height: 5rem;
}

.footer__section1>div {
    width: 50%;
    display: flex;
    align-items: center;
}

.footer__section1__div1 {
    font-weight: 700;
    font-size: 2rem;
}

.footer__section1__div1 i {
    color: var(--cb-blue);
}

.footer__section1__div2 {
    justify-content: flex-end;
}

.footer__section1__div2 span {
    color: var(--cb-orange);
}

.footer__section1__div2 i {
    color: var(--cb-green);
}

.footer__section2 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: white;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    height: 30rem;
}

.footer__section2__image {
    height: 100%;
    margin-right: 5%;
}

.footer__section2__div1 {
    margin-right: 5%;
    height: 70%;
    margin-top: 5%;
}

.footer__section2__div2 {
    height: 70%;
    margin-top: 5%;
}

.footer__section2__div2>p {
    width: 80%;
}

.footer__form {
    margin-top: 5%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__form__email {
    border: 1px solid var(--cb-gray);
    width: 80%;
    height: 4rem;
    padding: 1rem;
    border-radius: 0.5rem;
}

.footer__form__button {
    width: 10rem;
    height: 4.5rem;
    background: var(--cb-dark-blue);
    border: none;
    border-radius: 0.4rem;
    font-size: 2rem;
    box-shadow: inset 0 -2px 0 0 var(--cb-darker-blue);
    transition: 0.1s all;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer__form__button:hover {
    background: var(--cb-darker-blue);
    box-shadow: inset 0 -2px 0 0 var(--cb-darkest-blue);
    cursor: pointer;
}

.footer__section3 {
    padding: 2% 0;
    background: var(--cb-blue);

}

.footer__ul {
    display: flex;
    justify-content: space-evenly;
    color: white;
}

.footer__list {
    color: white;
    list-style: none;
    display: flex;
    flex-direction: column;
    width: 20rem;
    gap: 1rem;
}

.footer__list__link {
    text-decoration: none;
    color: white;
    width: auto;
}

.footer__list__link:hover {
    text-decoration-line: underline;
}

@media screen and (max-width: 57rem) {
    .footer__section1 {
        height: auto;
    }
    .header__section{
        gap: 2rem;
    }
}

@media screen and (max-width: 82rem) {
    .footer__section2 {
        flex-direction: column;
        height: auto;
        justify-content: center;
        align-items: center;
        padding-bottom: 2rem;
    }

}