:root {
    --color-white: #FFF;
    --color-light-1: #F0F0F0;
    --color-light-2: #E0E0E0;
    --color-light-3: #CECECE;
    --color-black: #000;
    --color-dark-1: #101010;
    --color-dark-2: #313131;
    --color-medium-1: #696969;
    --color-medium-2: #B1B1B1;
    --color-yellow-1: #EFC700;
    --color-yellow-2: #FAD385;
    --color-yellow-3: #FBDEA3;
    --color-orange-1: #F58302;
    --color-orange-2: #F5A402;
    --color-orange-3: #F8C153;
    --color-green: #49C452;
    --line-border: 1px solid var(--color-white);
    --font-daynamex: "interface", sans-serif;
    --swiper-pagination-color: #FFF;
    --swiper-pagination-bullet-inactive-color: #FFF;
    --swiper-pagination-bullet-inactive-opacity: 0.5;
}

body {
    position: relative;
    background-color: var(--color-dark-1);
}

* {
    box-sizing: border-box;
    touch-action: manipulation;
    font-family: var(--font-daynamex);
}


/* --------------------------------------General-------------------------------------- */

/* Sections */
section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
section.full {
    min-height: calc(100vh - 60px);
}
section.start {
    align-items: start;
}
section.end {
    align-items: end;
}

.section-spacer {
    display: block;
    width: 100%;
    height: 80px;
    /* background-color: gray; */
}

.marker {
    position: absolute;
    top: calc(-1rem - 65px);
    left: 0;
    width: 10px;
    height: 10px;
    /* background-color: red;
    z-index: 3000; */
}

/* Header */
header {
    position: sticky;
    display: grid;
    grid-template-columns: 90px 1fr auto;
    align-items: center;
    column-gap: 4rem;
    top: 0;
    left: 0;
    padding: 0 1rem;
    width: 100%;
    height: 65px;
    background-color: var(--color-dark-1);
    color: var(--color-white);
    z-index: 1000;
}
header button {
    grid-column: 3 / 4;
    display: none;
    width: 44px;
    height: 44px;
    background-color: var(--color-yellow-1);
    outline: none;
    border: none;
    border-radius: 50%;
}

.logo {
    display: block;
    width: 100%;
    height: 100%;
}
.logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

nav {
    display: flex;
    align-items: center;
    column-gap: 3rem;
    row-gap: 1.5rem;
    height: 100%;
    text-align: center;
    font-size: 0.9em;
    font-weight: 700;
}
nav.mobile {
    display: none;
    flex-direction: column;
}
nav .current {
    color: var(--color-orange-2);
}

.header__end {
    display: flex;
    gap: 0.8rem;
}

.header__end a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.9rem;
    height: 44px;
    background-color: var(--color-white);
    border: 1px solid var(--color-white);
    border-radius: 22px;
    color: var(--color-black);
    text-align: center;
    font-size: 0.9em;
    font-weight: 700;
}
.header__end a.round {
    flex-shrink: 0;
    padding: 0;
    width: 44px;
    background-color: var(--color-yellow-1);
    border: none;
    color: var(--color-black);
    font-size: 1.05em;
}

.nav__mob-cont {
    position: fixed;
    display: block;
    top: 65px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #0d0d13E5;
    color: var(--color-light-1);
    overflow: hidden;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: height 0.6s ease;
    z-index: 1000;
}

.nav__mob {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 1.5rem 2rem 4rem 2rem;
}

/* Footer */
footer {
    display: grid;
    padding: 1.5rem;
    grid-template-columns: 8fr 140px 140px 8fr 65px 65px 5fr 140px;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    height: calc(140px + 3rem);
}

footer div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
    border-radius: 20px;
}
footer .two-row {
    grid-row: 1 / 3;
}
footer img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 110px;
    object-fit: contain;
}

.footer__privacy-notice {
    position: relative;
    padding: 1.5rem;
    align-items: end;

}
.footer__privacy-notice img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: unset;
    z-index: 0;
}
.footer__privacy-notice span {
    position: relative;
    color: var(--color-white);
    text-align: center;
    font-size: 0.8em;
    font-weight: 700;
    z-index: 1;
}

.footer__sm-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem;
    color: var(--color-white);
    font-size: 0.6em;
}
.footer__sm-link i {
    font-size: 2.6em;
}

.neptum {
    grid-column: 5 / 8;
    grid-row: 2 / 3;
}
.neptum div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.neptum img {
    display: block;
    width: 180px;
    max-width: unset;
    object-fit: contain;
}

.footer__year {
    gap: 4px;
    color: var(--color-light-1);
    font-size: 1.2em;
    font-weight: 700;
    font-style: italic;
}

/* Contact */
.contact {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 240px;
    column-gap: 4rem;
    row-gap: 4rem;
    padding: 0 5rem 3rem 4rem;
    width: 100%;
}

.contact__frame {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    width: 100%;
    height: min-content;
}

.contact__frame .main {
    display: grid;
    grid-template-columns: 33fr 17fr;
    gap: 1rem;
    padding: 2rem;
}

.contact__frame input,
.contact__frame textarea {
    display: block;
    padding: 0 1rem;
    width: 100%;
    height: 45px;
    min-width: 200px;
    background-color: var(--color-light-2);
    outline: none;
    border: none;
    border-radius: 5px;
    color: var(--color-black);
    font-size: 1em;
}
.contact__frame textarea {
    padding: 1rem;
    height: 180px;
    resize: none;
}

.contact__frame button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 1.2rem 0 0 0.8rem;
    padding: 0 1.5rem;
    width: max-content;
    height: 40px;
    background-color: transparent;
    border: 1px solid var(--color-white);
    outline: none;
    border-radius: 20px;
    color: var(--color-white);
    font-size: 0.9em;
    font-weight: 700;
    cursor: pointer;
}

.contact__cards-cont {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    position: relative;
    display: block;
    margin-top: 6rem;
    width: 100%;
    height: min-content;
    aspect-ratio: 48 / 59;
}

.contact__cards-cont .swiper {
    width: 100%;
    height: 100%;
}

.contact__cards-cont .swiper-slide {
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    width: 100%;
    height: 100%;
    aspect-ratio: 48 / 59;;
    border-radius: 20px;
}
.contact__cards-cont .swiper-slide h5 {
    margin: 0 0 0.5rem 0;
    font-size: 1em;
}
.contact__cards-cont .swiper-slide p {
    margin: 0 0 1.2rem 0;
    font-size: 0.95em;
    line-height: 1.3em;
}
.contact__cards-cont .swiper-slide span {
    text-decoration: underline;
    cursor: pointer;
}
.contact__cards-cont .swiper-slide a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: auto 0 0 auto;
    padding: 0 1.2rem;
    height: 30px;
    border: 1px solid var(--color-black);
    border-radius: 14px;
    font-size: 0.9em;
}

.contact__card-btns {
    position: absolute;
    display: grid;
    grid-template-columns: 40px 40px;
    grid-template-rows: 40px 40px;
    gap: 0.5rem;
    top: 3rem;
    right: 1.5rem;
}
.contact__card-btns button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    outline: none;
    border: none;
    border-radius: 50%;
    font-size: 1.3em;
    cursor: pointer;
}

.contact__shape {
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    width: 180px;
    height: 4rem;
    background-color: transparent;
    border-top: 1px solid var(--color-white);
    border-right: 1px solid var(--color-white);
    border-bottom: 1px solid var(--color-white);
    border-left: none;
    border-radius: 0 20px 20px 0;
}

.contact__copied-message {
    position: fixed;
    display: flex;
    align-items: center;
    top: 80px;
    right: 1rem;
    padding: 0 2rem;
    height: 40px;
    background-color: var(--color-yellow-1);
    border-radius: 20px;
    color: var(--color-black);
    font-size: 0.95em;
    font-weight: 700;
    z-index: 500;
}


/* Marquee */
.marquee-cont {
    display: block;
    width: calc(100% - 3rem);
    height: 70px;
    margin: 3rem 1.5rem 0 1.5rem;
    padding: 1rem;
    border: 1px solid var(--color-white);
    border-radius: 15px;
}
.marquee-cont div {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.marquee {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    width: max-content;
    height: 100%;
    list-style: none;
    animation: scrolling 50s linear infinite;
}

.marquee__item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 15px;
    width: max-content;
    height: 100%;
    color: var(--color-white);
    text-transform: uppercase;
    font-size: 1.05em;
    font-weight: 700;
    font-style: italic;
}

/* Loader */
.loader__modal {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    padding: 0 0 2rem 0;
    width: 100%;
    height: 100vh;
    background-color: #0016240C;
}

.loader__cont {
    position: relative;
    display: inline-block;
    width: 200px;
    height: 200px;
    overflow: hidden;
    background: transparent;
}
.loader__cont span {
    position: absolute;
    left: 54px;
    bottom: 2rem;
    color: #A8A9A8;
    text-align: center;
    font-size: 1.1em;
}

.loader {
    position: relative;
    width: 100%;
    height: 100%;
    transform: translateZ(0) scale(1);
    backface-visibility: hidden;
    transform-origin: 0 0;
}
.loader div {
    box-sizing: content-box;
    position: absolute;
    border-width: 4px;
    border-style: solid;
    opacity: 1;
    border-radius: 50%;
    animation: loader-animation 1.1363636363636365s cubic-bezier(0,0.2,0.8,1) infinite;
}
.loader div:nth-child(1) {
    border-color: #a8a9a8;
    animation-delay: 0s;
}
.loader div:nth-child(2) {
    border-color: #0d0d13;
    animation-delay: -0.5681818181818182s;
}

#loader-text {
    animation: loader-text 1.1363636363636365s ease-in-out infinite alternate;
}

/* Multipurpose */
.l-shaped-frame {
    display: grid;
    grid-template-columns: 1fr max-content;
    grid-template-rows: auto calc(40px + 1.2rem);
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}
.l-shaped-frame .bkg-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}
.l-shaped-frame .bkg-2 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}
.l-shaped-frame .bkg-3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    border-radius: 0 0 0px 0;
}
.l-shaped-frame .bkg-4 {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    border-radius: 20px 20px 20px 0;
}
.l-shaped-frame .bkg-5 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    border-radius: 0 0 20px 20px;
}
.l-shaped-frame .bkg-6 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    border-radius: 20px 0 0 0;
}

.l-shaped-frame .main {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}
.l-shaped-frame .corner {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}


.section-title {
    display: grid;
    grid-template-rows: auto 7px;
}
.section-title h3 {
    margin: 0 0 0.6rem 0;
    color: var(--color-white);
    text-transform: uppercase;
    font-size: 1.35em;
    font-weight: 700;
    font-style: italic;
    line-height: 1.3em;
}
.section-title img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 350px;
    object-fit: cover;
    object-position: top right;
}



/* ----------------------------------------Home---------------------------------------- */

/* Start */
.home__start {
    display: grid;
    grid-template-rows: auto min-content;
    gap: 1rem;
    padding: 1rem;
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 65px);
}

.home__hero-cont {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: top center no-repeat url(../assets/img/hero.jpg);
    background-size: cover;
}

.home__hero {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 4rem;
    padding: 1.5rem;
    width: 100%;
    height: 100%;
    background-color: #00000073;
}

.home__hero-links {
    display: flex;
    gap: 0.8rem;
    margin-left: auto;
}
.home__hero-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-white);
    outline: none;
    border: none;
    border-radius: 50%;
    font-size: 1.3em;
}

.home__hero-title {
    margin-left: 2rem;
    text-transform: uppercase;
    font-style: italic;
}
.home__hero-title h1 {
    margin: 0 0 0 10px;
    color: var(--color-white);
    font-size: 4.07em;
    font-weight: 900;
}
.home__hero-title h2 {
    margin: 0 0 1rem 0;
    color: var(--color-orange-2);
    font-size: 1.35em;
    font-weight: 700;
}

.home__hero-footer {
    display: flex;
    align-items: start;
    column-gap: 1rem;
    row-gap: 1.4rem;
    margin-left: auto;
}
.home__hero-footer img {
    display: block;
    height: 35px;
    object-fit: contain;
}
.home__hero-footer img:first-child {
    margin-top: 4px;
    height: 4px;
}
.home__hero-footer span {
    margin-top: 4px;
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.25em;
    font-style: italic;
    line-height: 1em;
}

.home__start-frames {
    display: grid;
    grid-template-columns: 4fr 4fr 5fr;
    column-gap: 1rem;
    row-gap: 2rem;
}
.home__start-frames > div {
    width: 100%;
    min-height: 200px;
}

.home__start-frames .main {
    position: relative;
    display: grid;
    grid-template-rows: auto 40px;
    row-gap: 1.2rem;
    padding: 1.2rem;
}

.home__start-frames .main
img:first-child {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    height: 100%;
    object-fit: contain;
    z-index: 0;
}
.home__start-frames .main
img:last-child {
    position: relative;
    align-self: end;
    display: block;
    width: min(65px, 25%);
    height: 7px;
    object-fit: contain;
    z-index: 1;
}

.home__start-frames .main p {
    position: relative;
    display: inline;
    margin: 0;
    width: 82%;
    font-weight: 700;
    font-size: 1.05em;
    z-index: 1;
}

.home__start-frames .corner a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin: 1.2rem 0 0 0.8rem;
    padding: 0 1.5rem;
    width: max-content;
    height: 40px;
    border: 1px solid var(--color-white);
    outline: none;
    border-radius: 20px;
    color: var(--color-white);
    font-size: 0.9em;
    font-weight: 700;
    z-index: 1;
}

.home__start-history {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem 1rem 1.8rem 1rem;
    width: 100%;
    height: 100%;
    background-color: var(--color-orange-1);
    border-radius: 20px;
    overflow: hidden;
}

.home__start-history img {
    position: absolute;
    display: block;
    top: 0;
    left: 50%;
    height: 100%;
    object-fit: contain;
    translate: -50%;
    z-index: 0;
}
.home__start-history a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-left: auto;
    padding: 0 1.5rem;
    width: max-content;
    height: 40px;
    background-color: var(--color-black);
    outline: none;
    border-radius: 20px;
    color: var(--color-white);
    font-size: 0.9em;
    font-weight: 700;
    z-index: 1;
}
.home__start-history p {
    position: relative;
    margin: 0;
    text-transform: uppercase;
    font-size: 0.95em;
    font-weight: 900;
    font-style: italic;
    z-index: 1;
}
.home__start-history span {
    font-size: 2.7em;
    font-weight: 700;
}
.home__start-history i {
    font-size: 0.9em;
}

/* Catalytic Converters */
.home__cat-conv {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    padding: 1.5rem 1.5rem 1.5rem 4.5rem;
    width: 100%;
}

.home__cat-conv-desc {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 3rem;
}

.home__cat-conv-desc h3 {
    max-width: 350px;
}
.home__cat-conv-desc p {
    max-width: 350px;
    color: var(--color-light-1);
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.65em;
}
.home__cat-conv-desc span {
    font-weight: 700;
}
.home__cat-conv-desc > img {
    display: block;
    width: min-content;
    height: 50px;
    object-fit: contain;
}

.home__cat-conv-frames {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    min-width: 440px;
    max-width: 600px;
}
.home__cat-conv-frames div {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem;
    border-radius: 20px;
    overflow: hidden;
}
.home__cat-conv-frames div:last-child {
    grid-column: 1 / 3;
    gap: 0.5rem;
}
.home__cat-conv-frames p {
    position: relative;
    margin: 2rem;
    font-size: 1em;
    z-index: 1;
}
.home__cat-conv-frames span {
    font-weight: 700;
}
.home__cat-conv-frames i {
    position: relative;
    margin-left: auto;
    font-size: 1.8em;
    z-index: 1;
}
.home__cat-conv-frames img {
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    height: 100%;
    object-fit: contain;
    z-index: 0;
}
.home__cat-conv-frames img:first-child {
    left: unset;
    right: 0;
}

/* Normative */
.home__norm {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    padding: 4rem 1rem 0 4rem;
    width: 100%;
    min-height: calc(100vh - 65px);
}

.home__norm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.home__norm-header img {
    display: block;
    height: 8px;
    object-fit: contain;
}

.home__norm-cont {
    display: grid;
    grid-template-columns: 1fr 6rem auto min-content;
    grid-template-rows: auto 70px;
    row-gap: 4rem;
    padding-right: 3rem;
    width: 100%;
    max-width: 1200px;
}

.home__norm-cont p {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    margin: 0;
    max-width: 370px;
    color: var(--color-light-1);
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.5em;
}
.home__norm-cont span {
    font-weight: 700;
}
.home__norm-cont a {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0 1.5rem;
    width: max-content;
    height: 40px;
    background-color: var(--color-green);
    border-radius: 20px;
    color: var(--color-black);
    font-size: 0.9em;
    font-weight: 700;
}
.home__norm-cont > img {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
    display: block;
    width: min-content;
    height: 100%;
    object-fit: contain;
}

.home__norm-imgs {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    align-self: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(10, 1fr);
    gap: 1rem;
    width: 100%;
    height: min-content;
    max-width: 600px;
    aspect-ratio: 163 / 141;
}

.home__norm-imgs img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    overflow: hidden;
}
.home__norm-imgs img:first-child {
    grid-column: 1 / 2;
    grid-row: 4 / 11;
    object-fit: contain;
}
.home__norm-imgs img:last-child {
    grid-column: 2 / 3;
    grid-row: 1 / 8;
}

/* Products */
.home__products {
    display: flex;
    flex-direction: column;
    padding: 2rem 1rem 1rem 4rem;
    width: 100%;

}

.home__pro-header {
    display: flex;
    justify-content: space-between;
}
.home__pro-header img {
    display: block;
    width: 200px;
    object-fit: contain;
}

.home__pro-swiper {
    position: relative;
    display: block;
    margin: 4rem 0 2rem 0;
    width: calc(100% - 3rem);
    height: 400px;
}
.home__pro-swiper > button {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    background-color: transparent;
    outline: none;
    border: none;
    color: var(--color-white);
    font-size: 1.25em;
    cursor: pointer;
    z-index: 5;
}
.home__pro-swiper > button:last-child {
    left: unset;
    right: 0;
}

.home__products > a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 3rem 0 auto;
    padding: 0 1.5rem;
    width: max-content;
    height: 40px;
    background-color: var(--color-orange-1);
    outline: none;
    border-radius: 20px;
    color: var(--color-black);
    font-size: 0.9em;
    font-weight: 700;
}

.home__products .swiper {
    width: 100%;
    padding-top: 40px;
}

.home__products .swiper-slide {
    background-position: center;
    background-size: cover;
    width: min-content;
    height: 360px;
    aspect-ratio: 1 / 1;
    background: linear-gradient(180deg, #202020 0%, #313131  100%);
    border-radius: 20px;
}
.home__products .swiper-slide > img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: contain;
}

.home__products .swiper-slide-active
.home__pro-detail {
    opacity: 1;
}

.home__pro-detail {
    position: absolute;
    display: block;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    border-radius: 20px;
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.25s ease;
}
.home__pro-detail div {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #202020 0%, #313131  100%);
}
.home__pro-detail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home__pro-detail a {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: var(--color-yellow-1);
    outline: none;
    border-radius: 50%;
    color: var(--color-black);
    font-size: 1.4em;
}
.home__pro-detail span {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 20px;
    left: 20px;
    padding: 0 2rem;
    height: 55px;
    background-color: var(--color-dark-2);
    border-radius: 12px;
    color: var(--color-light-1);
    font-size: 0.95em;
    font-weight: 700;
}

/* Product Search */
.home__search {
    position: relative;
    display: flex;
    width: 100%;
    padding: 1.5rem;
}
.home__search > img {
    position: absolute;
    display: block;
    width: 16%;
    left: 72%;
    bottom: 3rem;
    translate: -50%;
}
.home__search > img:last-child {
    top: 50%;
    left: calc(81%);
    bottom: unset;
    translate: 0 -50%;
}

.home__search-frame {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 5rem calc(9% + 4rem) 8rem 4rem;
    width: 72%;
    background-color: var(--color-light-1);
    border-radius: 20px;
}

.home__search-frame .section-title img {
    width: min(100%, 602px);
    object-fit: cover;
    object-position: right;
}
.home__search-frame h3 {
    color: var(--color-black);
}
.home__search-frame span {
    color: var(--color-black);
    font-size: 1.1em;
}

.home__search-frame form {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 55px 55px;
    gap: 1.5rem;
}
.home__search-frame select {
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
    outline: none;
    border: none;
    border-radius: 10px;
    color: var(--color-white);
    text-align: center;
    font-size: 1em;
    font-weight: 700;
}
.home__search-frame button {
    position: absolute;
    display: block;
    bottom: -20px;
    right: -1.5rem;
    width: 150px;
    height: 40px;
    background-color: var(--color-yellow-1);
    outline: none;
    border: none;
    border-radius: 20px;
    color: var(--color-black);
    font-size: 0.9em;
    font-weight: 700;
    cursor: pointer;
}

.home__search-frame i {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    font-size: 40px;
}

.home__search #search-error {
    position: absolute;
    left: 0;
    bottom: -1.8rem;

}

/* Questions & Experiences */
.home__questions,
.home__experiences {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 3rem 0 3rem 4rem;
    width: 100%;
    overflow: hidden;
}
.home__questions > i,
.home__experiences > i {
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    color: var(--color-medium-1);
    font-size: 250px;
    translate: -25%;
}
.home__questions p,
.home__experiences p {
    display: none;
}

.home__h-scroll {
    display: flex;
    gap: 1.2rem;
    margin-left: auto;
    padding: 0 1.2rem 1.2rem 0;
    width: 70%;
    overflow-x: scroll;
}
.home__h-scroll::-webkit-scrollbar {
    height: 4px;
}
.home__h-scroll::-webkit-scrollbar-track {
    background: var(--color-dark-2);
    opacity: 5%;
}
.home__h-scroll::-webkit-scrollbar-thumb {
    background: var(--color-yellow-1);
    border-radius: 2px;
}
.home__h-scroll.orange::-webkit-scrollbar-thumb {
    background-color: var(--color-orange-1);
}

.home__exp-frame,
.home__questions-frame {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    width: 210px;
    height: 215px;
    border-radius: 10px;
    background-color: var(--color-yellow-1);
}
.home__exp-frame {
    align-items: center;
    background-color: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
}

.home__questions-frame button {
    display: block;
    margin-left: auto;
    width: 40px;
    height: 40px;
    background-color: transparent;
    outline: none;
    border: 1px solid var(--color-black);
    border-radius: 50%;
    font-size: 1.25em;
    cursor: pointer;
}

.home__exp-frame h4 {
    margin: 0;
    font-size: 1.05em;
}
.home__exp-frame div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.1em;
}
.home__exp-frame span {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.05em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.home__exp-frame button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-left: auto;
    padding: 0 2rem;
    height: 30px;
    background-color: var(--color-light-3);
    outline: none;
    border: none;
    border-radius: 15px;
    cursor: pointer;
}

/* Home Pop-Up */
.home__pop-up {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    padding: 65px 2rem 0 2rem;
    width: 100%;
    height: 100vh;
    background-color: #10101080;
    z-index: 1000;
}

.home__pop-up-exp,
.home__pop-up-question {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 3rem 3rem 3rem 5rem;
    width: 100%;
    height: min-content;
    max-width: 650px;
    background-color: var(--color-white);
    border-radius: 20px;
}
.home__pop-up-exp {
    padding: 3rem;
    background-color: var(--color-dark-1);
    border: 1px solid var(--color-white);
}

.home__pop-up-exp #exit,
.home__pop-up-question button:first-child {
    margin-left: auto;
    background-color: transparent;
    outline: none;
    border: none;
    color: var(--color-medium-2);
    font-size: 1.8em;
    translate: 50%;
    cursor: pointer;
}

.home__pop-up-btns {
    display: flex;
    justify-content: space-evenly;
    gap: 1rem;
}

.home__pop-up-btns button,
.home__pop-up-question button:last-child {
    display: block;
    margin-left: auto;
    padding: 0 2.5rem;
    height: 40px;
    background-color: var(--color-yellow-1);
    outline: none;
    border: none;
    border-radius: 20px;
    color: var(--color-black);
    font-size: 0.9em;
    font-weight: 700;
    cursor: pointer;
}
.home__pop-up-btns button {
    margin-left: unset;
    background-color: var(--color-orange-1);
}
.home__pop-up-btns button:disabled {
    opacity: 0.25;
    cursor: default;
}

.home__pop-up-exp h4,
.home__pop-up-question h4 {
    margin: 0;
    color: var(--color-medium-2);
    font-size: 1em;
    font-weight: 700;
}
.home__pop-up-ext b,
.home__pop-up-question b {
    font-weight: 700;
}
.home__pop-up-exp p,
.home__pop-up-question p {
    display: block;
    margin: 1.5rem 0;
    padding-right: 0.5rem;
    width: 100%;
    max-height: 150px;
    color: var(--color-black);
    font-size: 1.1em;
    line-height: 1.4em;
    overflow: auto;
}
.home__pop-up-exp p {
    color: var(--color-light-1);
}
.home__pop-up-ext p::-webkit-scrollbar,
.home__pop-up-question p::-webkit-scrollbar {
    width: 4px;
}
.home__pop-up-ext p::-webkit-scrollbar-track,
.home__pop-up-question p::-webkit-scrollbar-track {
    background: var(--color-dark-2);
    opacity: 5%;
    border-radius: 2px;
}
.home__pop-up-ext p::-webkit-scrollbar-thumb,
.home__pop-up-question p::-webkit-scrollbar-thumb {
    background: var(--color-yellow-1);
    border-radius: 2px;
}



/* ---------------------------------------About Us-------------------------------------- */

/* Daynamex */
.us__daynamex {
    display: grid;
    grid-template-columns: minmax(270px, 3fr) 4fr;
    grid-template-rows: auto auto 1fr;
    column-gap: 4rem;
    row-gap: 0.8rem;
    padding: 6rem 1.5rem 8rem 4rem;
    width: 100%;
}
.us__daynamex h3 {
    grid-column: 1 / 3;
    margin: 0;
    color: var(--color-white);
    text-transform: uppercase;
    font-size: 1.35em;
    font-weight: 700;
    font-style: italic;
}
.us__daynamex > img:nth-child(2) {
    display: block;
    width: 100%;
    max-width: 330px;
    height: min-content;
    object-fit: contain;
}
.us__daynamex > img:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    align-self: end;
    display: block;
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    height: min-content;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}
.us__daynamex > img:last-child {
    position: absolute;
    top: 3rem;
    right: 1.5rem;
    height: 28px;
    object-fit: contain;
}

.us__daynamex-grid {
    grid-column: 2 / 3;
    grid-row: 2 / 4;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    height: 100%;
}
.us__daynamex-grid div {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.8rem 1.8rem 3.5rem 1.8rem;
    min-height: 230px;
    border-radius: 20px;
    color: var(--color-black);
    font-size: 1em;
    line-height: 1.3em;
    overflow: hidden;
}
.us__daynamex-grid div:last-child {
    grid-column: 1 / 3;
    min-height: unset;
}
.us__daynamex-grid p {
    position: relative;
    margin: 0;
    z-index: 5;
}
.us__daynamex-grid b {
    position: relative;
    font-weight: 700;
    z-index: 5;
}
.us__daynamex-grid div img {
    position: absolute;
    display: block;
    bottom: 0;
    right: 0;
    height: 200px;
    object-fit: contain;
    z-index: 1;
}
.us__daynamex-grid div:last-child img {
    height: 140px;
}

/* Services */
.us__services {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1.5rem 4rem 4rem;
    width: 100%;
}
.us__services > img {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 220px;
    object-fit: contain;
    translate: -50%;
}

.us__services-frames {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    margin-left: auto;
    gap: 1rem;
    padding-left: 120px;
}
.us__services-frames div {
    position: relative;
    flex-shrink: 0;
    display: block;
    padding: 1.2rem;
    width: 210px;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    font-size: 1.1em;
}
.us__services-frames p {
    position: relative;
    margin: 0;
    z-index: 5;
}
.us__services-frames b {
    font-weight: 700;
}
.us__services-frames img {
    position: absolute;
    display: block;
    bottom: 0;
    right: 0;
    width: 100%;
    object-fit: contain;
    z-index: 1;
}

/* NOM */
.us__nom {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 3rem 4rem;
    width: 100%;
}
.us__nom .section-title {
    padding-right: 4rem;
}
.us__nom img {
    position: absolute;
    display: block;
    object-fit: contain;
}

.us__nom-dots {
    left: 1rem;
    bottom: 40%;
    height: 65px;
}

.us__nom-squares {
    right: 2.5rem;
    top: 3rem;
    width: 80px;
}

.us__nom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    gap: 1rem;
}
.us__nom-grid span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    max-width: 300px;
    border-radius: 30px;
    color: var(--color-black);
    font-size: 0.9em;
    font-weight: 700;
}

.us__expectations {
    display: block;
    margin-top: 1rem;
    padding: 3.5rem 1.5rem;
    width: 100%;
    border: 1px solid var(--color-white);
    border-radius: 20px;
    color: var(--color-light-1);
    text-align: center;
    font-size: 1.05em;
    font-weight: 700;
}

/* Mission */
.us__mission {
    display: block;
    width: 100%;
    padding: 0 1rem 2rem 1rem;
}
.us__mission > img {
    position: absolute;
    display: block;
    bottom: 5rem;
    right: calc(2rem + 270px);
    width: 270px;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    object-fit: contain;
}
.us__mission > img:last-child {
    top: unset;
    bottom: 0;
    right: 1rem;
}

.us__mission-frame {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 4rem 8rem 4rem 4rem;
    width: 63%;
    min-height: 420px;
    background-color: var(--color-light-1);
    border-radius: 20px;
}
.us__mission-frame h3 {
    color: var(--color-black);
}
.us__mission-frame p {
    max-width: 370px;
    color: var(--color-black);
    font-size: 1.1em;
    line-height: 1.3em;
}

/* Timeline */
.us__timeline-cont {
    display: flex;
    flex-direction: column;
    margin: 4rem 0;
    width: 100%;
}
.us__timeline-cont .section-title {
    margin-left: 4rem;
}

.us__timeline-grid {
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    grid-auto-rows: auto 50px;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
}

.us__timeline-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem 1.5rem;
    width: 100%;
    border: 1px solid var(--color-white);
    border-radius: 15px;
    color: var(--color-white);
}
.us__timeline-item h5 {
    margin: 0;
    font-weight: 800;
    font-size: 2.2em;
    font-style: italic;
}
.us__timeline-item p {
    margin: 0;
    font-size: 0.95em;
}

.us__timeline-item:nth-child(1) {
    grid-column: 7 / 10;
    grid-row: 1 / 3;
}
.us__timeline-item:nth-child(2) {
    grid-column: 13 / 16;
    grid-row: 2 / 4;
}
.us__timeline-item:nth-child(3) {
    grid-column: 3 / 6;
    grid-row: 4 / 6;
}
.us__timeline-item:nth-child(4) {
    grid-column: 9 / 12;
    grid-row: 7 / 8;
}
.us__timeline-item:nth-child(5) {
    grid-column: 5 / 8;
    grid-row: 9 / 11;
}
.us__timeline-item:nth-child(6) {
    grid-column: 13 / 16;
    grid-row: 10 / 12;
}
.us__timeline-item:nth-child(7) {
    grid-column: 8 / 11;
    grid-row: 12 / 15;
}
.us__timeline-item:nth-child(8) {
    grid-column: 3 / 6;
    grid-row: 14 / 17;
}
.us__timeline-item:nth-child(9) {
    grid-column: 13 / 16;
    grid-row: 16 / 18;
}
.us__timeline-item:nth-child(10) {
    grid-column: 5 / 8;
    grid-row: 19 / 21;
}
.us__timeline-item:nth-child(11) {
    grid-column: 11 / 14;
    grid-row: 21 / 23;
}
.us__timeline-item:nth-child(12) {
    grid-column: 3 / 6;
    grid-row: 22 / 25;
}
.us__timeline-item:nth-child(13) {
    grid-column: 9 / 12;
    grid-row: 24 / 26;
}
.us__timeline-item:nth-child(14) {
    grid-column: 5 / 8;
    grid-row: 27 / 28;
}
.us__timeline-item:nth-child(15) {
    grid-column: 13 / 16;
    grid-row: 29 / 31;
}
.us__timeline-item:nth-child(16) {
    grid-column: 3 / 6;
    grid-row: 30 / 32;
}
.us__timeline-item:nth-child(17) {
    grid-column: 9 / 12;
    grid-row: 33 / 34;
}

.us__timeline-line {
    display: block;
    width: 100%;
    height: 100%;
}
.us__timeline-line:nth-child(18) {
    grid-column: 10 / 15;
    grid-row: 1 / 2;
    align-self: end;
    width: 90%;
    height: 50%;
    border-top: var(--line-border);
    border-right: var(--line-border);
    border-radius: 0 15px 0 0;
}
.us__timeline-line:nth-child(19) {
    grid-column: 7 / 13;
    grid-row: 3 / 4;
    align-self: end;
    width: 100%;
    height: 50px;
    border-top: var(--line-border);
    border-left: var(--line-border);
    border-radius: 15px 0 0 0;
}
.us__timeline-line:nth-child(20) {
    grid-column: 6 / 8;
    grid-row: 4 / 6;
    width: calc(50% + 1px);
    height: 50%;
    border-right: var(--line-border);
    border-bottom: var(--line-border);
    border-radius: 0 0 15px 0;
}
.us__timeline-line:nth-child(21) {
    grid-column: 1 / 3;
    grid-row: 4 / 6;
    align-self: end;
    justify-self: end;
    width: 75%;
    height: 50%;
    border-top: var(--line-border);
    border-left: var(--line-border);
    border-radius: 15px 0 0 0;
}
.us__timeline-line:nth-child(22) {
    grid-column: 1 / 9;
    grid-row: 6 / 8;
    justify-self: end;
    width: calc(100% * (15 / 16));
    height: 100px;
    border-left: var(--line-border);
    border-bottom: var(--line-border);
    border-radius: 0 0 0 15px;
}
.us__timeline-line:nth-child(23) {
    grid-column: 8 / 11;
    grid-row: 8 / 10;
    width: calc(100% * (5 / 6));
    height: 100px;
    border-right: var(--line-border);
    border-bottom: var(--line-border);
    border-radius: 0 0 15px 0;
}
.us__timeline-line:nth-child(24) {
    grid-column: 6 / 13;
    grid-row: 11 / 12;
    justify-self: end;
    width: calc(100% * (13 / 14));
    height: calc(50% - 25px);
    border-left: var(--line-border);
    border-bottom: var(--line-border);
    border-radius: 0 0 0 15px;
}
.us__timeline-line:nth-child(25) {
    grid-column: 11 / 15;
    grid-row: 12 / 14;
    width: calc(100% * (7 / 8));
    height: calc(50% + 25px);
    border-right: var(--line-border);
    border-bottom: var(--line-border);
    border-radius: 0 0 15px 0;
}
.us__timeline-line:nth-child(26) {
    grid-column: 4 / 8;
    grid-row: 13 / 14;
    align-self: end;
    justify-self: end;
    width: calc(100% * (7 / 8));
    height: 50%;
    border-top: var(--line-border);
    border-left: var(--line-border);
}
.us__timeline-line:nth-child(27) {
    grid-column: 4 / 5;
    grid-row: 13 / 14;
    align-self: center;
    justify-self: center;
    width: 12.5px;
    height: 12.5px;
    border: var(--line-border);
    border-radius: 50% 50% 0 50%;
    translate: -50% -50%;
}
.us__timeline-line:nth-child(28) {
    grid-column: 6 / 15;
    grid-row: 15 / 16;
    align-self: end;
    width: calc(100% * (17 / 18));
    height: 50%;
    border-top: var(--line-border);
    border-right: var(--line-border);
    border-radius: 0 15px 0 0;
}
.us__timeline-line:nth-child(29) {
    grid-column: 8 / 15;
    grid-row: 18 / 20;
    width: calc(100% * (13 / 14));
    height: 100px;
    border-right: var(--line-border);
    border-bottom: var(--line-border);
    border-radius: 0 0 15px 0;
}
.us__timeline-line:nth-child(30) {
    grid-column: 6 / 11;
    grid-row: 21 / 22;
    justify-self: end;
    width: 90%;
    height: 50px;
    border-left: var(--line-border);
    border-bottom: var(--line-border);
    border-radius: 0 0 0 15px;
}
.us__timeline-line:nth-child(31) {
    grid-column: 14 / 17;
    grid-row: 22 / 23;
    width: 100%;
    height: 50%;
    border-bottom: var(--line-border);
}
.us__timeline-line:nth-child(32) {
    grid-column: 1 / 3;
    grid-row: 22 / 23;
    width: 100%;
    height: 50%;
    border-bottom: var(--line-border);
}
.us__timeline-line:nth-child(33) {
    grid-column: 6 / 11;
    grid-row: 23 / 24;
    align-self: end;
    width: 90%;
    height: 50px;
    border-top: var(--line-border);
    border-right: var(--line-border);
    border-radius: 0 15px 0 0;
}
.us__timeline-line:nth-child(34) {
    grid-column: 8 / 11;
    grid-row: 26 / 28;
    width: calc(100% * (5 / 6));
    height: calc(50% + 25px);
    border-right: var(--line-border);
    border-bottom: var(--line-border);
    border-radius: 0 0 15px 0;
}
.us__timeline-line:nth-child(35) {
    grid-column: 6 / 13;
    grid-row: 28 / 30;
    justify-self: end;
    width: calc(100% * (13 / 14));
    height: 100px;
    border-left: var(--line-border);
    border-bottom: var(--line-border);
    border-radius: 0 0 0 15px;
}
.us__timeline-line:nth-child(36) {
    grid-column: 6 / 15;
    grid-row: 31 / 32;
    width: calc(100% * (17 / 18));
    height: 50%;
    border-right: var(--line-border);
    border-bottom: var(--line-border);
    border-radius: 0 0 15px 0;
}
.us__timeline-line:nth-child(37) {
    grid-column: 4 / 9;
    grid-row: 32 / 34;
    justify-self: end;
    width: 90%;
    height: calc(50% + 25px);
    border-left: var(--line-border);
    border-bottom: var(--line-border);
    border-radius: 0 0 0 15px;
}

.us__timeline-float {
    grid-column: 1 / 2;
    grid-row: 22 / 23;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
.us__timeline-float:nth-child(39) {
    grid-column: 16 / 17;
}
.us__timeline-float div {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(50vw - 600px);
    height: 50%;
    border-bottom: var(--line-border);
    translate: -100%;
}
.us__timeline-float:nth-child(39) div {
    left: unset;
    right: 0;
    width: calc(50vw - 610px);
    translate: 100%;
}

.us__timeline-swiper {
    position: relative;
    display: none;
    margin: 2rem auto 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    max-width: 380px;
    height: 400px;
}

.us__timeline-swiper .swiper {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    display: block;
    width: 100%;
    height: 100%;
}

.timeline-swiper .swiper-slide {
    display: block;
    padding-right: 2rem;
    width: 100%;
    height: 100%;
    background-color: var(--color-dark-1);
}
.timeline-swiper .swiper-slide:active {
    cursor: grabbing;
}
.timeline-swiper .us__timeline-item {
    height: 100%;
}

/* Supplier */
.us__supplier {
    display: grid;
    grid-template-columns: 1fr 300px;
    column-gap: 1.5rem;
    row-gap: 4rem;
    margin-bottom: 5rem;
    padding: 0 6rem 0 4rem;
    width: 100%;
}
.us__supplier .section-title {
    grid-column: 1 / 3;
}
.us__supplier p {
    margin: 0;
    max-width: 460px;
    color: var(--color-white);
    font-size: 1.05em;
    line-height: 1.35em;
}
.us__supplier b {
    font-weight: 700;
}

.us__supplier-jm {
    justify-self: center;
    display: block;
    padding: 2rem;
    width: 100%;
    max-width: 300px;
    height: min-content;
    aspect-ratio: 32 / 17;
    background-color: var(--color-light-2);
    border-radius: 20px;
}
.us__supplier-jm img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}



/* --------------------------------------Catalogue-------------------------------------- */

.catalogue {
    display: grid;
    grid-template-rows: auto 40px;
    gap: 1rem;
    width: 100%;
    height: calc(100vh - 65px);
    padding: 1rem;
}
.catalogue object {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.catalogue span {
    max-width: 450px;
    color: var(--color-white);
    text-align: center;
    font-size: 1.4em;
    font-weight: 700;
    line-height: 1.9em;
}
.catalogue a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-left: auto;
    padding: 0 2.5rem;
    width: max-content;
    height: 40px;
    background-color: transparent;
    outline: none;
    border: 1px solid var(--color-white);
    border-radius: 20px;
    color: var(--color-white);
    font-size: 0.9em;
    font-weight: 700;
    cursor: pointer;
}



/* ----------------------------------------Store---------------------------------------- */

.store__header {
    display: flex;
    flex-direction: column;
    padding: 4rem;
    width: 100%;
}

/* Search */
.store__search {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    grid-template-rows: min-content min-content;
    column-gap: 2rem;
    row-gap: 3rem;
    padding: 3rem 3rem 4rem 3rem;
    width: 100%;
    background-color: var(--color-light-1);
    border-radius: 20px;
}
.store__search h3 {
    color: var(--color-black);
}

.store__search .section-title img {
    width: 100%;
    object-fit: cover;
    object-position: right;
}

.store__search-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    color: var(--color-black);
    font-size: 1.1em;
}
.store__search-col form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 50px 50px;
    gap: 1rem;
}
.store__search-col select {
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
    outline: none;
    border: none;
    border-radius: 10px;
    color: var(--color-white);
    text-align: center;
    font-size: 0.85em;
    font-weight: 700;
}
.store__search-col input {
    display: block;
    width: 100%;
    background-color: transparent;
    outline: none;
    border: none;
    color: var(--color-black);
    text-align: center;
    font-size: 0.9em;
}
.store__search-col button {
    grid-column: 2 / 3;
    justify-self: end;
    display: block;
    padding: 0 3rem;
    width: max-content;
    height: 100%;
    outline: none;
    border: none;
    border-radius: 25px;
    color: var(--color-black);
    font-size: 0.85em;
    font-weight: 700;
    cursor: pointer;
}
.store__search-col div {
    grid-column: 1 / 3;
    display: grid;
    grid-template-columns: 25px 1fr 25px;
    align-items: center;
    justify-items: center;
    column-gap: 0.6rem;
    padding: 0 1.2rem;
    background-color: var(--color-light-2);
    border-radius: 10px;
}
.store__search-col i {
    font-size: 1.2em;
}
span#search-error {
    grid-column: 1 / 3;
    font-style: italic;
    font-size: 0.85em;
}

.store__search > i {
    align-self: center;
    justify-self: end;
    color: var(--color-black);
    font-size: 35px;
}

.store__search .spacer {
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
}

/* Categories */
.store__categories {
    position: relative;
    display: block;
    margin: 3rem 0 1rem 0;
    padding: 0 20px;
    width: 100%;
    height: 200px;
}

.store__categories > img {
    position: absolute;
    display: block;
    top: 20%;
    right: 0;
    width: 35px;
    translate: 100%;
}

.store__categories .swiper {
    width: 100%;
    height: 100%;
}

.store__categories .swiper-slide {
    display: block;
    align-items: center;
    justify-content: center;
    height: 200px;
    width: min-content;
    aspect-ratio: 54 / 41;
}

.store__category {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--color-medium-1);
    border-radius: 15px;
    overflow: hidden;
}
.store__category.current {
    border: 3px solid var(--color-orange-2);
}

.store__category img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.store__category div {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000080;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    color: var(--color-white);
    font-size: 1.15em;
    font-weight: 700;
    font-style: italic;
}
.store__category.current div {
    background-color: #00000040;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
}

/* Products */
.store__products {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem;
    width: 100%;
}

.store__products > button {
    display: block;
    margin-left: auto;
    padding: 0 2.5rem;
    width: max-content;
    height: 40px;
    background-color: transparent;
    outline: none;
    border: 1px solid var(--color-white);
    border-radius: 20px;
    color: var(--color-white);
    font-size: 0.9em;
    font-weight: 700;
    cursor: pointer;
}

.store__pro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,  minmax(270px, 1fr));
    gap: 4rem;
    margin: 2rem 0 6rem 0;
    width: 100%;
    justify-content: center;
}

.store__pro-item {
    justify-self: center;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    max-width: 360px;
}
.store__pro-item img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    object-fit: cover;
}

.store__pro-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.store__pro-info span {
    color: var(--color-white);
    font-size: 0.9em;
    font-weight: 700;
}
.store__pro-info span:first-child {
    color: var(--color-orange-2);
    font-size: 0.95em;
}

.store__pro-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.store__pro-tags div {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 0 0.8rem;
    height: 32px;
    background-color: #E8E8E8;
    border-radius: 16px;
    font-size: 0.9em;
}

.store__nav {
    display: grid;
    grid-template-columns: 130px 75px 130px;
    align-items: center;
    justify-items: center;
    margin: 0 auto;
}
.store__nav button {
    display: block;
    width: 100%;
    height: 40px;
    background-color: transparent;
    outline: none;
    border: 1px solid var(--color-white);
    border-radius: 20px;
    color: var(--color-white);
    font-size: 0.9em;
    font-weight: 700;
    cursor: pointer;
}
.store__nav span {
    color: var(--color-white);
    font-size: 1.1em;
    font-weight: 700;
    font-style: italic;
}

/* Offers */
.store__offers {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 6rem;
    width: 100%;
}

.store__offers .section-title {
    padding: 0 4rem;
}

.store__offers-grid {
    position: relative;
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    justify-items: center;
    row-gap: 2.5rem;
    width: 100%;
    overflow: hidden;

}
.store__offers-grid button {
    align-self: center;
    background-color: transparent;
    outline: none;
    border: none;
    color: var(--color-white);
    font-size: 1.6em;
    cursor: pointer;
}

.offers-swiper {
    width: calc(100vw - 170px);
    height: max-content;
}

.offers-swiper .swiper-slide {
    display: block;
    width: 270px;
}

/* Filter Pop-Up */
.store__pop-up {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    padding: 0 1.5rem;
    width: 100%;
    height: 100vh;
    background-color: #10101080;
    z-index: 1000;
}

.store__filter {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 2.5rem 2.5rem 3.5rem 2.5rem;
    width: 100%;
    max-width: 500px;
    background-color: var(--color-light-1);
    box-shadow: 0px 0px 99px #000000BF;
    border-radius: 20px;
}

.store__filter div:first-child {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.store__filter h4 {
    margin: 0;
    text-transform: uppercase;
    font-size: 1.15em;
    font-weight: 700;
    font-style: italic;
}

.store__filter #exit {
    margin-left: auto;
    background-color: transparent;
    outline: none;
    border: none;
    color: var(--color-medium-2);
    font-size: 1.8em;
    translate: 50%;
    cursor: pointer;
}

.store__filter-checks {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-size: 1em;
}

.custom-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.custom-check input {
    display: none;
}
.custom-check input:checked + .mark div {
    background-color: var(--color-orange-1);
}
.custom-check .mark {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    width: 22px;
    height: 22px;
    border: 2px solid var(--color-orange-1);
    border-radius: 50%;
}
.custom-check .mark div {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: transparent;
}
.custom-check span {
    font-size: 1.1em;
    user-select: none;
}

.store__filter-btns {
    display: flex;
    justify-content: end;
    gap: 1rem;
}

.store__filter-btns input {
    display: block;
    width: 135px;
    height: 45px;
    background-color: var(--color-yellow-1);
    outline: none;
    border: none;
    border-radius: 22.5px;
    color: var(--color-black);
    font-size: 0.9em;
    font-weight: 700;
    cursor: pointer;
}
.store__filter-btns input:first-child {
    background-color: transparent;
    border: 1px solid var(--color-black);
}



/* -----------------------------------Product Detail----------------------------------- */
.detail__cont {
    display: flex;
    flex-direction: column;
    padding: 2rem 0 4rem 0;
    width: 100%;
}

.detail__cont > button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-left: 1rem;
    width: 135px;
    height: 40px;
    background-color: transparent;
    outline: none;
    border: 1px solid var(--color-white);
    border-radius: 20px;
    color: var(--color-white);
    font-size: 0.9em;
    font-weight: 700;
    cursor: pointer;
}

.product-detail {
    display: grid;
    grid-template-columns: repeat(auto-fit,  minmax(350px, 1fr));
    align-items: center;
    justify-items: center;
    column-gap: 6rem;
    row-gap: 3rem;
    padding: 0 4rem;
    width: 100%;
}

.detail__desc,
.detail__specs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    height: max-content;
    max-width: 500px;
    color: var(--color-white);
}
.detail__desc {
    gap: 3rem;
    padding: 2rem 0;
}

.detail__desc h2 {
    margin: 0;
    font-size: 1.2em;
    font-weight: 700;
    font-style: italic;
}
.detail__desc p {
    margin: 0;
    font-size: 1.05em;
}

.detail__labels {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail__labels div {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 0 0.8rem;
    height: 32px;
    border-radius: 16px;
    font-size: 0.9em;
}

.detail__swiper {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: var(--color-light-2);
    border-radius: 20px;
    overflow: hidden;

}

.detail__swiper .swiper {
    width: 100%;
    height: 100%;
}
.detail-swiper .swiper-slide {
    display: block;
    width: 100%;
    height: 100%;
}
.detail-swiper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: grab;
}
.detail-swiper img:active {
    cursor: grabbing;
}
.detail-swiper .swiper-button-prev,
.detail-swiper .swiper-button-next {
    color: var(--color-medium-1);
}
.detail__swiper .swiper-pagination-bullet-active {
    background-color: var(--color-black);
}

.detail__specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 45px 45px;
    column-gap: 0.8rem;
    row-gap: 2rem;
}
.detail__specs-grid select {
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--color-dark-1);
    outline: none;
    border: 1px solid var(--color-white);
    border-radius: 8px;
    color: var(--color-white);
    text-align: center;
    font-size: 1em;
    font-weight: 700;
}
.detail__specs-grid span {
    color: var(--color-white);
    font-size: 1.1em;
    font-weight: 700;
}
.detail__specs-grid button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    background-color: var(--color-orange-1);
    outline: none;
    border: none;
    border-radius: 22.5px;
    color: var(--color-black);
    font-size: 0.95em;
    font-weight: 700;
    cursor: pointer;
}

/* Added to cart Pop-Up */
.detail__pop-up {
    position: fixed;
    display: grid;
    grid-template-rows: 65px 40px auto;
    align-items: center;
    justify-items: end;
    top: 0;
    left: 0;
    padding: 0 1rem;
    width: 100%;
    height: 100vh;
    background-color: #10101080;
    z-index: 1000;
}
.detail__pop-up a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 44px;
    height: 44px;
    background-color: var(--color-yellow-1);
    border-radius: 22px;
    color: var(--color-black);
    font-size: 1.05em;
    font-weight: 700;
}

.detail__pop-up span {
    align-self: end;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 1.5rem;
    height: 34px;
    background-color: var(--color-yellow-1);
    border-radius: 17px;
    color: var(--color-black);
    font-size: 0.9em;
}


/* ------------------------------------Shopping Cart------------------------------------ */

.cart {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 3rem 4rem 6rem 4rem;
    width: 100%;
}
.cart > a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    width: 180px;
    height: 40px;
    background-color: var(--color-orange-1);
    outline: none;
    border: none;
    border-radius: 20px;
    color: var(--color-black);
    font-size: 0.9em;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.cart__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 6rem;
    row-gap: 2.5rem;
    margin-top: 3rem;
}

.cart__item {
    display: grid;
    grid-template-columns: 130px 1fr auto;
    grid-template-rows: min-content min-content auto;
    align-items: center;
    width: 100%;
    max-width: 500px;
}
.cart__item img {
    grid-row: 1 / 4;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 15px;
    object-fit: cover;
}
.cart__item > span {
    margin: 0.5rem 0;
    color: var(--color-white);
    font-size: 1.05em;
    font-weight: 700;
}
.cart__item > span:nth-child(2) {
    margin: 0.5rem 0 0.5rem 0.8rem;
}
.cart__item p {
    margin: 0 0 0 0.8rem;
    grid-column: 2 / 4;
    grid-row: 2 / 3;
    color: var(--color-white);
    font-size: 1.1em;
}
.cart__item div {
    grid-column: 2 / 4;
    grid-row: 3 / 4;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    justify-items: center;
    column-gap: 4px;
    margin: 5px 0 auto auto;
    padding: 0 0.6rem;
    width: 120px;
    height: 30px;
    background-color: transparent;
    border: 1px solid var(--color-white);
    border-radius: 18px;
}
.cart__item div span {
    color: var(--color-white);
    font-size: 1em;
}
.cart__item button {
    background-color: transparent;
    border: none;
    outline: none;
    color: var(--color-white);
    font-size: 1em;
    cursor: pointer;
}

.cart__no-products {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    color: var(--color-white);
}
.cart__no-products span {
    text-align: center;
    font-size: 1.15em;
}
.cart__no-products a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0 1.5rem;
    height: 40px;
    background-color: var(--color-yellow-1);
    border-radius: 22.5px;
    color: var(--color-black);
    font-size: 0.9em;
    font-weight: 700;
}

/* Similar Products */
.cart__similar {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 6rem;
    width: 100%;
}

.cart__similar .section-title {
    padding: 0 4rem;
}

.cart__similar-grid {
    position: relative;
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    justify-items: center;
    width: 100%;
    overflow: hidden;

}
.cart__similar-grid button {
    align-self: center;
    background-color: transparent;
    outline: none;
    border: none;
    color: var(--color-white);
    font-size: 1.6em;
    cursor: pointer;
}

.cart-swiper {
    width: calc(100vw - 170px);
    height: max-content;
}

.cart-swiper .swiper-slide {
    display: block;
    width: 270px;
}

/* Cart Pop-Up */
.cart__pop-up {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    padding: 0 2rem;
    width: 100%;
    height: 100vh;
    background-color: #10101080;
    z-index: 1000;
}

.cart__delete-frame {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 40px;
    row-gap: 4rem;
    padding: 1rem 2rem 2.5rem 2.5rem;
    width: 100%;
    max-width: 450px;
    background-color: var(--color-light-1);
    border-radius: 20px;

}
.cart__delete-frame #exit {
    align-self: start;
    background-color: transparent;
    outline: none;
    border: none;
    color: var(--color-medium-2);
    font-size: 1.8em;
    translate: 50%;
    cursor: pointer;
}
.cart__delete-frame h4 {
    margin: 1.2rem 0 0 0;
    color: var(--color-black);
    text-transform: uppercase;
    font-size: 1.15em;
    font-weight: 700;
    font-style: italic;
}
.cart__delete-frame div {
    grid-column: 1 / 3;
    display: flex;
    justify-content: end;
    gap: 1rem;
    width: 100%;
    height: 100%;
}
.cart__delete-frame div button {
    display: block;
    width: 120px;
    height: 100%;
    background-color: var(--color-yellow-1);
    outline: none;
    border: none;
    border-radius: 20px;
    color: var(--color-black);
    font-size: 0.95em;
    font-weight: 700;
    cursor: pointer;
}
.cart__delete-frame div
button:first-child {
    background-color: transparent;
    border: 1px solid var(--color-black);
}

/* Cart Resume */
.cart__resume {
    position: absolute;
    display: block;
    top: 3rem;
    right: 4rem;
    height: 0;
    width: 0;
    background-color: var(--color-dark-2);
    border-radius: 10px;
    transition: height 0.6s ease-in-out, width 0.6s ease-in-out;
    z-index: 1000;
    overflow: hidden;
}

.cart__resume-grid {
    display: grid;
    grid-template-columns: 200px auto;
    grid-template-rows: auto 40px;
    justify-items: end;
    column-gap: 2rem;
    padding: 2rem;
    width: 100%;
    color: var(--color-light-1);
}
.cart__resume-grid button {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    display: block;
    width: 35px;
    height: 35px;
    background-color: transparent;
    outline: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5em;
    translate: 30% -40%;
    cursor: pointer;
}
.cart__resume-grid p {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    align-self: end;
    margin: 1rem 0;
    text-transform: uppercase;
    font-size: 1.05em;
    font-weight: 700;

}
.cart__resume-grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: auto;
    width: 90%;
    height: 40px;
    background-color: var(--color-orange-1);
    outline: none;
    border: none;
    border-radius: 20px;
    color: var(--color-black);
    font-size: 0.9em;
    font-weight: 700;
}

.cart__resume-img {
    grid-row: 1 / 3;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    object-fit: cover;
}

/* ---------------------------------------Payment-------------------------------------- */
.payment {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 4rem 4rem 1.5rem;
    width: 100%;
    min-height: calc(100vh - 65px);
}
.payment > button {
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    width: max-content;
    height: 40px;
    gap: 0.6rem;
    background-color: transparent;
    outline: none;
    border: 1px solid var(--color-white);
    border-radius: 20px;
    color: var(--color-white);
    font-size: 0.9em;
    font-weight: 700;
    cursor: pointer;
}

.pay__stages {
    display: block;
    width: 100%;
    min-height: calc(100vh - 8rem - 105px);
    height: max-content;
    padding-left: 12rem;
}

.pay__stage {
    display: none;
    grid-template-columns: 1fr 180px;
    grid-template-rows: min-content 1fr 40px;
    row-gap: 3rem;
    width: 100%;
    height: 100%;
    min-height: inherit;
    color: var(--color-white);
}
.pay__stage:nth-child(1) {
    display: grid;
}
.pay__stage h3 {
    grid-column: 1 / 3;
    margin: 0;
    text-transform: uppercase;
    font-size: 1.2em;
    font-weight: 700;
    font-style: italic;
}
.pay__stage > button {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--color-orange-1);
    outline: none;
    border: none;
    border-radius: 20px;
    color: var(--color-black);
    font-size: 0.9em;
    font-weight: 700;
    cursor: pointer;
}

/* Delivery */
.pay__delivery {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    width: 100%;
    height: 100%;
}
.pay__delivery button {
    display: grid;
    grid-template-rows: 30px auto 30px;
    align-items: center;
    justify-items: center;
    padding: 1rem;
    width: 300px;
    aspect-ratio: 64 / 55;
    background-color: var(--color-light-1);
    border-radius: 20px;
    color: var(--color-black);
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.pay__delivery button.selected {
    background-color: var(--color-yellow-3);
}
.pay__delivery span {
    font-size: 1.1em;
    font-weight: 700;
}
.pay__delivery i {
    justify-self: end;
    font-size: 1.5em;
}

/* Delivery Info */
.pay__delivery-info {
    grid-column: 1 / 3;
    grid-row: 2 / 4;
    align-self: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 1rem;
    width: 90%;
}

.pay__buyer-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    width: 100%;
    height: max-content;
    background-color: var(--color-light-1);
    border-radius: 20px;
}
.pay__buyer-form div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 0.8rem;
}
.pay__buyer-form h4 {
    margin: 0 0 0 auto;
    color: var(--color-black);
    text-transform: uppercase;
    font-size: 1.1em;
    font-weight: 700;
    font-style: italic;
}
.pay__buyer-form input {
    display: block;
    padding: 0 1rem;
    width: 100%;
    height: 40px;
    background-color: var(--color-white);
    outline: none;
    border: none;
    border-radius: 8px;
    color: var(--color-black);
    font-size: 1em;
}
.pay__buyer-form span {
    color: var(--color-dark-1);
    font-size: 0.9em;
}

/* Contact */
.pay__contact {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.pay__contact .pay__buyer-form {
    max-width: 500px;
}

/* Branch */
.pay__branches {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    display: grid;
    grid-template-columns: repeat(auto-fill, 170px);
    justify-content: center;
    gap: 2rem;
    margin: 0 auto;
    width: 100%;
    max-width: 1100px;
}

.pay__branch {
    display: flex;
    flex-direction: column;
    padding: 0.6rem 0.6rem 1rem 1rem;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: var(--color-light-1);
    border-radius: 15px;
    color: var(--color-black);
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.pay__branch.selected {
    background-color: var(--color-yellow-3);
}
.pay__branch i {
    font-size: 1.4em;
    margin-left: auto;
}
.pay__branch h4 {
    margin: 0.6rem 0 0.8rem 0;
    font-size: 1.1em;
    font-weight: 700;
}
.pay__branch span {
    font-size: 0.95em;
    line-height: 1.4em;
}

/* Resume */
.pay__resume {
    grid-column: 1 / 3;
    grid-row: 2 / 4;
    display: grid;
    grid-template-columns: 5fr 4fr;
    grid-auto-rows: min-content;
    column-gap: 4rem;
    row-gap: 3rem;
}

.pay__resume-cont {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}

.pay__resume-frame {
    position: absolute;
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: end;
    gap: 2rem;
    top: 0;
    left: -6rem;
    padding: 2rem;
    width: calc(100% + 6rem);
    background-color: var(--color-dark-2);
    border-radius: 20px;
}
.pay__resume-frame img {
    display: block;
    width: 100%;
    aspect-ratio: 25 / 22;
    border-radius: 15px;
    object-fit: cover;
}

.pay__coupon {
    display: flex;
    flex-direction: column;
}
.pay__coupon > span {
    color: var(--color-white);
    font-size: 1em;
    font-weight: 700;
}
.pay__coupon input {
    grid-column: 1 / 3;
    display: block;
    width: 100%;
    height: 40px;
    background-color: var(--color-light-1);
    outline: none;
    border: none;
    border-radius: 8px;
    color: var(--color-black);
    text-align: center;
    font-size: 0.95em;
}
.pay__coupon button {
    display: block;
    margin-left: auto;
    padding: 0 2rem;
    height: 34px;
    background-color: var(--color-yellow-1);
    outline: none;
    border: none;
    border-radius: 17px;
    color: var(--color-black);
    font-size: 0.9em;
    font-weight: 700;
    cursor: pointer;
}
.pay__coupon button:disabled {
    opacity: 0.65;
    cursor: default;
}

.pay__coupon-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    margin-top: 2rem;
}
.pay__coupon-grid span {
    align-self: center;
    font-size: 0.8em;
}

.pay__resume-amounts {
    justify-self: end;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
    max-width: 200px;
    color: var(--color-white);
    font-size: 0.95em;
}
.pay__resume-amounts div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.6rem;
    width: 100%;
}
.pay__resume-amounts p {
    margin: 0;
}
.pay__resume-amounts span {
    text-transform: uppercase;
    font-weight: 700;
}

div.pay__resume-sub,
div.pay__resume-discount {
    display: none;
}

.pay__method {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.pay__method span {
    color: var(--color-white);
    font-size: 1em;
    font-weight: 700;
}
.pay__method select {
    display: block;
    width: 100%;
    height: 40px;
    background-color: var(--color-light-1);
    outline: none;
    border: none;
    border-radius: 8px;
    color: var(--color-black);
    text-align: center;
    font-size: 0.95em;
    font-weight: 700;
}



/* ---------------------------------------Stripe--------------------------------------- */

.stripe {
    display: grid;
    grid-template-columns: 550px 1fr;
    grid-template-rows: 40px auto;
    column-gap: 1rem;
    row-gap: 2rem;
    padding: 2rem 1rem 1rem 1rem;
    width: 100%;
    min-height: calc(100vh - 65px - 1rem);
}
.stripe > button {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    width: max-content;
    height: 100%;
    gap: 0.6rem;
    background-color: transparent;
    outline: none;
    border: 1px solid var(--color-white);
    border-radius: 20px;
    color: var(--color-white);
    font-size: 0.9em;
    font-weight: 700;
    cursor: pointer;
}
.stripe > img {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    align-self: end;
    justify-self: end;
    display: block;
    width: 300px;
    object-fit: contain;
}

.stripe__frame {
    display: block;
    padding: 2rem;
    width: 100%;
    height: 100%;
    background-color: var(--color-light-1);
    border-radius: 20px;
    overflow: hidden;
}

.stripe__img {
    display: block;
    width: 100%;
    height: calc(100vh - 5rem - 105px);
    border-radius: 20px;
    overflow: hidden;
}
.stripe__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}



/* ---------------------------------Transaction success-------------------------------- */
.success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding: 0 1.5rem;
    width: 100%;
    height: calc(100vh - 65px);
}
.success > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 40px;
    background-color: var(--color-yellow-1);
    outline: none;
    border: none;
    border-radius: 20px;
    color: var(--color-black);
    font-size: 0.9em;
    font-weight: 700;
}

.success__frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding: 5rem 2rem;
    width: 100%;
    max-width: 550px;
    background-color: var(--color-light-1);
    border-radius: 20px;
    color: var(--color-black);
    text-align: center;
}
.success__frame h2 {
    margin: 0;
    text-transform: uppercase;
    font-size: 1.35em;
    font-weight: 700;
    font-style: italic;
}
.success__frame p {
    margin: 0;
    max-width: 400px;
    font-size: 1.1em;
    line-height: 1.3em;
}



/* ----------------------------------------Blog---------------------------------------- */
.blog {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6rem;
    margin: 4rem 0;
    padding: 0 3rem;
    width: 100%;
}

.blog__search {
    display: flex;
    gap: 1rem;
    width: 100%;
    height: 40px;
    max-width: 600px;
}
.blog__search input {
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    outline: none;
    border: none;
    border-radius: 8px;
    color: var(--color-black);
    font-size: 0.95em;
    text-align: center;
}

.blog__pagination {
    display: grid;
    grid-template-columns: 135px 1fr 135px;
    align-items: center;
    justify-items: center;
    margin-top: 2rem;
    width: 100%;
    height: 40px;
    max-width: 350px;
}
.blog__pagination span {
    color: var(--color-white);
    font-size: 1.1em;
    font-weight: 700;
    font-style: italic;
}

.blog__search button,
.blog__pagination input[type=submit] {
    display: block;
    padding: 0 2.5rem;
    height: 100%;
    background-color: transparent;
    outline: none;
    border: 1px solid var(--color-white);
    border-radius: 20px;
    color: var(--color-white);
    font-size: 0.9em;
    font-weight: 700;
    cursor: pointer;
}
.blog__pagination input[type=submit] {
    padding: 0;
    width: 100%;
}

/* Grid */
.blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    column-gap: 3rem;
    row-gap: 4rem;
    width: 100%;
}

.blog__grid > div {
    justify-self: center;
    width: 100%;
    max-width: 450px;
    height: 250px;
}

.blog__grid .light :nth-child(3),
.blog__grid .light :nth-child(4),
.blog__grid .light :nth-child(5),
.post__swiper-cont .light :nth-child(3),
.post__swiper-cont .light :nth-child(4),
.post__swiper-cont .light :nth-child(5) {
    background-color: var(--color-light-1);
}
.blog__grid .orange :nth-child(3),
.blog__grid .orange :nth-child(4),
.blog__grid .orange :nth-child(5),
.post__swiper-cont .orange :nth-child(3),
.post__swiper-cont .orange :nth-child(4),
.post__swiper-cont .orange :nth-child(5) {
    background-color: var(--color-orange-2);
}
.blog__grid .dark :nth-child(3),
.blog__grid .dark :nth-child(4),
.blog__grid .dark :nth-child(5),
.post__swiper-cont .dark :nth-child(3),
.post__swiper-cont .dark :nth-child(4),
.post__swiper-cont .dark :nth-child(5) {
    background-color: var(--color-dark-2);
    color: var(--color-white);
}

.blog__grid .main,
.post__swiper-cont .main {
    display: grid;
    grid-template-columns: 1fr 120px;
    grid-template-rows: auto calc(40px + 1.2rem);
    padding: 2rem 2rem 0 2rem;
    color: inherit;
}
.blog__grid .main h4,
.post__swiper-cont .main h4 {
    grid-column: 1 / 3;
    margin: 0 0 2rem 0;
    font-size: 1.2em;
    font-weight: 700;
}
.blog__grid .dark h4,
.post__swiper-cont .dark h4 {
    color: var(--color-white);
}
.blog__grid .main div,
.post__swiper-cont .main div {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 0.6rem;
    padding: 0 1rem 2.5rem 0;

}
.blog__grid .main img,
.post__swiper-cont .main img {
    display: block;
    width: min-content;
    height: 4px;
    object-fit: contain;
}
.blog__grid span,
.post__swiper-cont span {
    font-size: 0.95em;
}
.blog__grid .dark span,
.post__swiper-cont .dark span {
    color: var(--color-white);
}

.blog__grid .corner a,
.post__swiper-cont .corner a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin: 1.2rem 0 0 0.8rem;
    width: 120px;
    height: 40px;
    border: 1px solid var(--color-white);
    outline: none;
    border-radius: 20px;
    color: var(--color-white);
    font-size: 0.9em;
    font-weight: 700;
    z-index: 1;
}


/* --------------------------------------Blog Post------------------------------------- */
.post {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 2rem 0 4rem 0;
    width: 100%;
}

.post > button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-left: 1rem;
    width: 135px;
    height: 40px;
    background-color: transparent;
    outline: none;
    border: 1px solid var(--color-white);
    border-radius: 20px;
    color: var(--color-white);
    font-size: 0.9em;
    font-weight: 700;
    cursor: pointer;
}

.post__cont {
    padding: 0 6rem;
    color: var(--color-white);
}

.post__cont h1 {
    margin: 0.4rem 0;
    font-size: 2.8em;
    font-weight: 900;
    font-style: italic;
}
.post__cont h2 {
    margin: 0 0 0.8rem 0;
    font-size: 1.4em;
    font-weight: 700;
    font-style: italic;
}
.post__cont h3 {
    margin: 0;
    color: var(--color-orange-2);
    font-size: 1.35em;
    font-weight: 700;
    font-style: italic;
}
.post__cont p {
    margin: 0;
    font-size: 1.15em;
    line-height: 1.35em;
}
.post__cont p:last-child {
    text-align: end;
}
.post__cont img {
    display: block;
    width: 100%;
    height: min-content;
    max-height: calc((100vw - 12rem) * 25 / 57);
    border-radius: 20px;
    object-fit: cover;
}
.post__cont b {
    display: block;
    text-align: end;
    font-size: 1.15em;
    font-weight: 700;
}

/* Suggestions */
.post__suggestions {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 4rem;
    width: 100%;
}
.post__suggestions .section-title {
    margin-left: 6rem;
}

.post__swiper-cont {
    position: relative;
    display: block;
    width: 100%;
    padding: 0 1.5rem;
}

.post__swiper-cont .swiper {
    width: 100%;
}

.post__swiper-cont .swiper-slide {
    width: 350px;
    min-height: 200px;
}
.post__swiper-cont .swiper-slide div {
    width: 100%;
    height: 100%;
}



/* --------------------------------------Thank You------------------------------------- */
.thanks {
    display: grid;
    grid-template-columns: 34fr 55fr;
    column-gap: 1rem;
    row-gap: 1.5rem;
    padding: 1rem 1.5rem 1.5rem 0;
    width: 100%;
    height: calc(100vh - 65px);
}

.thanks__img {
    display: block;
    padding: 3rem 2rem;
    width: 100%;
    height: 100%;
    border-radius: 0 20px 20px 0;
    background: center center no-repeat url(../assets/img/thank-you.png);
    background-size: cover;
}
.thanks__img button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0 2rem;
    width: max-content;
    height: 45px;
    background-color: #10101086;
    outline: none;
    border: 1px solid var(--color-white);
    border-radius: 22.5px;
    color: var(--color-white);
    font-size: 0.95em;
    font-weight: 700;
    cursor: pointer;
}

.thanks .l-shaped-frame {
    grid-template-rows: auto calc(1rem + 210px);
}

.thanks__message {
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 3rem;
    padding: 0 4rem 2rem 4rem;
    width: 88%;
    height: calc(100% - 1rem - 210px);
    color: var(--color-white);
}
.thanks__message h1 {
    margin: 0;
    font-size: 2.4em;
    font-weight: 800;
    font-style: italic;
}
.thanks__message span {
    max-width: 250px;
    font-size: 1.15em;
    line-height: 1.35em;
}

.thanks__sm {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 1rem 0 0 1rem;
    padding: 0 4rem;
    height: 210px;
    background-color: var(--color-orange-2);
    border-radius: 15px;
    color: var(--color-black);
}

.thanks__sm h2 {
    margin: 0;
    font-size: 1.2em;
    font-weight: 700;
}
.thanks__sm div {
    display: flex;
    gap: 2.5rem;
}
.thanks__sm a {
    font-size: 1.6em;
}



/* --------------------------------------Error 404------------------------------------- */
.no-found__cont {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem;
    padding: 0 2rem;
    width: calc(100% - 3rem);
    height: calc(100vh - 3rem);
    border: 1px solid var(--color-white);
    border-radius: 20px;
}

.no-found {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: end;
    column-gap: 6rem;
    row-gap: 4rem;
    max-width: 950px;
    color: var(--color-light-1);
}
.no-found img {
    display: block;
    width: 350px;
    object-fit: contain;
}
.no-found div {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.no-found h1 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 800;
}
.no-found span {
    font-size: 1.15em;
}
.no-found a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    width: 220px;
    height: 40px;
    background-color: var(--color-orange-1);
    border-radius: 20px;
    color: var(--color-black);
    font-size: 0.9em;
    font-weight: 700;
}



/* --------------------------------------Specials-------------------------------------- */
.hidden {
    display: none;
}

.light-1 {
    background-color: var(--color-light-1);
    color: var(--color-black);
}
.dark-1 {
    background-color: var(--color-dark-1);
}
.dark-2 {
    background-color: var(--color-dark-2);
    color: var(--color-light-1);
}
.yellow-1 {
    background-color: var(--color-yellow-1);
    color: var(--color-black);
}
.yellow-2 {
    background-color: var(--color-yellow-2);
    color: var(--color-black);
}
.yellow-3 {
    background-color: var(--color-yellow-3);
    color: var(--color-black);
}
.orange-1 {
    background-color: var(--color-orange-1);
    color: var(--color-black);
}
.orange-2 {
    background-color: var(--color-orange-2);
    color: var(--color-black);
}
.orange-3 {
    background-color: var(--color-orange-3);
    color: var(--color-black);
}
.green {
    background-color: var(--color-green);
    color: var(--color-black);
}



/* -------------------------------------Responsive------------------------------------- */

@media screen and (max-width: 1200px) {
    .store__search {
        grid-template-columns: 7fr 1px 5fr;
    }
}

@media screen and (max-width: 1024px) {
    /* Header */
    nav {
        display: none;
    }
    nav.mobile {
        display: flex;
    }
    header .header__end {
        display: none;
    }
    header button {
        display: block;
    }
    /* Contact */
    .contact {
        grid-template-columns: 1fr auto;
        padding: 0 2rem 3rem 2rem;
    }
    .contact__frame {
        grid-column: 1 / 3;
    }
    .contact__cards-cont {
        grid-column: 1 / 3;
        grid-row:  4 / 5;
        justify-self: center;
        margin-top: 0;
        width: 240px;
    }
    .contact__card-btns {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
        position: unset;

    }
    .contact__shape {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        align-self: center;
        position: relative;
        left: -2rem;
    }
    /* Footer */
    footer {
        grid-template-columns: 65px 65px 1fr 65px 65px 1fr 65px 65px 140px;
        grid-template-rows: repeat(4, 1fr);
        height: calc(280px + 3rem);
    }
    footer div:nth-child(1) {
        grid-column: 1 / 7;
        grid-row: 1 / 3;
    }
    footer div:nth-child(2) {
        grid-column: 7 / 9;
        grid-row: 1 / 3;
    }
    footer div:nth-child(3) {
        grid-column: 9 / 10;
        grid-row: 1 / 3;
    }
    footer a:nth-child(4) {
        grid-column: 5 / 9;
        grid-row: 3 / 5;
    }
    footer a:nth-child(5) {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }
    footer a:nth-child(6) {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }
    footer div:nth-child(7) {
        grid-column: 3 / 5;
        grid-row: 3 / 4;
    }
    footer a:nth-child(8) {
        grid-column: 1 / 5;
        grid-row: 4 / 5;
    }
    footer div:nth-child(9) {
        grid-column: 9 / 10;
        grid-row: 3 / 5;
    }
    /* Home */
    .home__hero-cont {
        background: top left no-repeat url(../assets/img/hero.jpg);
        background-size: cover;
    }
    .home__start-history {
        padding: 1rem 1rem 1rem 1rem;
    }
    .home__start-frames .main img:first-child {
        height: 85%;
    }
    .home__cat-conv {
        padding: 1.5rem 1.5rem 1.5rem 2rem;
    }
    .home__norm {
        padding: 4rem 1rem 0 2rem;
    }
    .home__norm-cont {
        grid-template-columns: 1fr 4rem auto min-content;
        padding-right: 1.5rem;
    }
    .home__norm-cont p {
        grid-column: 3 / 5;
        grid-row: 1 / 2;
        margin: 0;
        max-width: 310px;
        color: var(--color-light-1);
        font-size: 1.1em;
        font-weight: 300;
        line-height: 1.5em;
    }
    .home__pro-detail {
        left: -10%;
        width: 120%;
    }
    .home__pro-detail img {
        object-fit: contain;
    }
    .home__search {
        padding: 1.5rem calc(1.5rem + 65px) 5rem 1.5rem;
    }
    .home__search-frame {
        padding: 5rem calc(9% + 4rem) 8rem 2.2rem;
        width: 100%;
    }
    .home__search > img {
        left: unset;
        right: 0;
        bottom: -3rem;
        width: 130px;
    }
    .home__search > img:last-child {
        top: 57%;
        left: unset;
        right: 1.5rem;
    }
    /* About us */
    .us__daynamex {
        padding: 6rem 2.5rem 8rem 2.5rem;
    }
    .us__daynamex > img:nth-child(3) {
        align-self: center;
    }
    .us__daynamex-grid {
        grid-row: 3 / 4;
    }
    .us__services {
        padding: 0 2.5rem 4rem 2.5rem;
    }
    .us__nom-squares {
        right: 2rem;
        width: 60px;
    }
    .us__mission-frame {
        padding: 4rem 6rem 4rem 3rem;
    }
    .us__mission > img {
        top: 1.5rem;
        bottom: unset;
        right: calc(1rem + 100px);
        width: 200px;
    }
    .us__supplier {
        margin-right: auto;
        padding: 0 2.5rem;
        max-width: calc(4rem + 460px);
    }
    /* Store */
    .store__search {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto 1px auto;
    }
    .store__search .section-title {
        grid-column:  1 / 2;
        grid-row: 1 / 2;
    }
    .store__search > i {
        grid-column:  1 / 2;
        grid-row: 1 / 2;
    }
    .store__search div:nth-child(2) {
        display: none;
    }
    /* Cart */
    .cart__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    /* Payment */
    .payment {
        gap: 4rem;
    }
    .pay__stages {
        padding-left: 3rem;
        min-height: calc(100vh - 10rem - 105px);
    }
    .pay__delivery-info {
        width: 100%;
    }
    .pay__resume {
        grid-template-columns: 1fr;
        max-width: 650px;
    }
    .pay__resume-cont {
        height: min-content;
    }
    .pay__resume-frame {
        position: unset;
        width: 100%;
    }
    /* Stripe */
    .stripe {
        grid-template-columns: 480px 1fr;
    }
    /* Blog Post */
    .post__cont {
        padding: 0 4rem;
    }
    .post__suggestions .section-title {
        margin-left: 4rem;
    }
    /* Error 404 */
    .no-found {
        column-gap: 4rem;
    }
    .no-found img {
        width: 280px;
    }
}

@media screen and (max-width: 768px) {
    /* Contact */
    .contact__frame .main {
        grid-template-columns: 1fr;
        padding: 1.5rem 1.5rem calc(40px + 3rem) 1.5rem;
    }
    .contact__frame input:last-child {
        grid-row: 3 / 4;
    }
    /* Marquee */
    .marquee-cont {
        margin: 3rem 1rem 0 1rem;
        width: calc(100% - 2rem);
    }
    /* Footer */
    footer {
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: 140px auto 140px auto 90px;
        height: auto;
    }
    .footer__sm-link {
        justify-content: space-evenly;
        height: min-content;
        aspect-ratio: 1 / 1;
    }
    footer div:nth-child(1) {
        grid-column: 1 / 13;
        grid-row: 1 / 2;
    }
    footer div:nth-child(2) {
        grid-column: 5 / 9;
        grid-row: 2 / 3;
        aspect-ratio: 1 / 1;
    }
    footer div:nth-child(3) {
        grid-column: 1 / 5;
        grid-row: 2 / 3;
        aspect-ratio: 1 / 1;
    }
    footer a:nth-child(4) {
        grid-column: 1 / 13;
        grid-row: 3 / 4;
    }
    footer a:nth-child(5) {
        grid-column: 1 / 4;
        grid-row: 4 / 5;
    }
    footer a:nth-child(6) {
        grid-column: 4 / 7;
        grid-row: 4 / 5;
    }
    footer div:nth-child(7) {
        grid-column: 7 / 13;
        grid-row: 4 / 5;
    }
    footer a:nth-child(8) {
        grid-column: 1 / 13;
        grid-row: 5 / 6;
    }
    footer div:nth-child(9) {
        grid-column: 9 / 13;
        grid-row: 2 / 3;
        aspect-ratio: 1 / 1;
    }
    /* Home */
    .home__hero-title {
        margin-left: 0;
    }
    .home__hero-title h2 {
        font-size: 1.15em;
    }
    .home__hero-title h1 {
        font-size: 2.9em;
    }
    .home__hero-footer {
        flex-direction: column;
        align-items: end;
        max-width: 260px;
    }
    .home__hero-footer span {
        text-align: end;
    }
    .home__start-frames {
        grid-template-columns: 1fr 1fr;
    }
    .home__start-history {
        grid-column: 1 / 3;
    }
    .home__cat-conv {
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 1.5rem 4.5rem 1.5rem;
    }
    .home__cat-conv-desc {
        width: 100%;
        max-width: 600px;
    }
    .home__cat-conv-desc > img {
        position: absolute;
        left: 1.5rem;
        bottom: -1rem;
    }
    .home__norm {
        padding: 4rem 2.5rem 0 2.5rem;
    }
    .home__norm-header {
        align-items: start;
        gap: 10px;
    }
    .home__norm-header h3 {
        margin: 0;
    }
    .home__norm-header img {
        width: 72px;
        height: 30px;
    }
    .home__norm-cont {
        grid-template-columns: 1fr auto;
    }
    .home__norm-cont p {
        grid-column: 1 / 3;
        max-width: unset;
    }
    .home__norm-cont a {
        grid-column: 1 / 2;
    }
    .home__norm-cont > img {
        grid-column: 2 / 3;
    }
    .home__norm-imgs {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }
    .home__products {
        padding: 2rem 2.5rem 1rem 2.5rem;
    }
    .home__pro-swiper {
        width: 100%;
    }
    .home__pro-swiper > button {
        font-size: 1.7em;
    }
    .home__products .swiper {
        padding-top: 60px;
    }
    .home__products .swiper-slide {
        height: 280px;
    }
    .home__pro-detail {
        left: 0;
        width: 100%;
    }
    .home__products > a {
        margin: 0 0 0 auto;
    }
    .home__search {
        padding: 1.5rem 2rem 7rem 2rem;
    }
    .home__search-frame {
        padding: 5rem 3.5rem 10rem 3.5rem;
    }
    .home__search-frame button {
        bottom: -1.2rem;
        translate: 0 100%;
    }
    .home__search-frame form {
        grid-template-columns: 1fr;
        grid-template-rows: unset;
        grid-auto-rows: 55px;
        gap: 1.2rem;
    }
    .home__search > img {
        right: 6rem;
    }
    .home__search > img:last-child {
        top: unset;
        right: 1rem;
        bottom: 0;
        translate: 0 0;
    }
    .home__questions > i {
        top: 0;
        bottom: unset;
        font-size: 6em;
    }
    .home__experiences > i {
        top: 1rem;
        bottom: unset;
        translate: -40%;
        font-size: 4.6em;
    }
    .home__h-scroll {
        margin-left: 0;
        width: 100%;
    }
    /* About Us */
    .us__daynamex {
        grid-template-columns: 1fr;
    }
    .us__daynamex h3 {
        grid-column: 1 / 2;
    }
    .us__daynamex > img:nth-child(3) {
        justify-self: center;
        margin: 3rem 0;
    }
    .us__daynamex-grid {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
    }
    .us__services {
        padding: 0 1.5rem 4rem 1.5rem;
    }
    .us__services .section-title {
        padding-left: 3rem;
    }
    .us__services > img {
        top: -25px;
        bottom: unset;
        height: 80px;
    }
    .us__services-frames {
        padding-left: 0;
        max-width: 550px;
    }
    .us__services-frames div {
        width: 190px;
    }
    .us__services-frames p {
        font-size: 0.95em;
    }
    .us__nom-grid {
        grid-template-columns: 1fr;
    }
    .us__mission {
        padding: 0 1.5rem 160px 1.5rem;
    }
    .us__mission > img {
        top: unset;
        right: calc(4rem + 200px);
        bottom: 4rem;
        width: 180px;
    }
    .us__mission > img:last-child {
        right: 3rem;
    }
    .us__mission-frame {
        padding: 4rem 6rem 4rem 3rem;
        width: 100%;
    }
    .us__timeline-cont .section-title {
        margin-left: 2.5rem;
    }
    .us__timeline-grid {
        display: none;
    }
    .us__timeline-swiper {
        display: block;
    }
    .us__supplier {
        grid-template-columns: 1fr;
    }
    .us__supplier .section-title {
        grid-column: 1 / 2;
    }
    /* Store */
    .store__header {
        padding: 2rem;
    }
    .store__search {
        padding: 5rem 2rem 4rem 2rem;
    }
    .store__search > i {
        position: absolute;
        top: -3.5rem;
        right: -0.5rem;
    }
    .store__search-col form {
        grid-template-columns: 1fr;
    }
    .store__search-col form.specs {
        grid-template-rows: repeat(3, 48px) auto;
    }
    .store__search-col div {
        grid-column: 1 / 2;
    }
    .store__search-col button {
        grid-column: unset;
        margin-top: 1rem;
        height: 48px;
    }
    .store__categories,
    .store__categories .swiper-slide {
        height: 130px;
    }
    .store__categories > img {
        top: unset;
        bottom: -2rem;
        translate: 0 100%;
    }
    /* Product Detail */
    .product-detail {
        padding: 0 3rem;
    }
    /* Cart */
    .cart {
        padding: 3rem 1rem 6rem 4rem;
    }
    .cart__resume {
        right: 1rem;
    }
    .cart__resume-grid {
        grid-template-columns: 170px auto;
    }
    /* Payment */
    .payment {
        padding: 2rem 3rem 4rem 1.5rem;
    }
    .pay__stages {
        padding-left: 0rem;
    }
    .pay__resume-frame {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .pay__delivery-info {
        grid-row: 2 / 3;
        grid-template-columns: 1fr;
        justify-self: center;
        max-width: 550px;
    }
    .pay__resume {
        grid-row: 2 / 3;
    }
    .pay__resume-frame img {
        justify-self: center;
        margin-bottom: 3rem;
        width: 200px;
    }
    .pay__resume-amounts {
        justify-self: start;
    }
    .pay__resume-amounts:nth-child(4) {
        margin-top: 0.6rem;
    }
    .pay__coupon {
        grid-row: 4 / 5;
        margin-top: 3rem;
    }
    /* Stripe */
    .stripe {
        grid-template-columns: 1fr;
        grid-template-rows: 40px auto 20%;
    }
    .stripe > button {
        grid-column: 1 / 2;
    }
    .stripe > img {
        grid-column: 1 / 2;
        width: 250px;
    }
    .stripe__img {
        width: 100%;
        height: 100%;
    }
    .stripe__img img {
        object-position: center bottom;
    }
    /* Blog */
    .blog {
        padding: 0 1.5rem;
    }
    /* Blog Post */
    .post__cont {
        padding: 0 3rem;
    }
    .post__cont img {
        max-height: 350px;
    }
    .post__suggestions .section-title {
        margin-left: 3rem;
    }
    .post__swiper-cont .swiper-slide {
        width: 300px;
    }
    /* Thanks */
    .thanks {
        grid-template-columns: 1fr;
        grid-template-rows: 20% auto;
        padding: 1rem 1.5rem;
    }
    .thanks__img button {
        position: relative;
        top: 50%;
        margin: auto 0;
        translate: 0 -50%;
    }
    .thanks__img {
        border-radius: 20px;
    }
    /* Error 404 */
    .no-found {
        grid-template-columns: 1fr;
        justify-items: center;
        max-width: 500px;
    }
}

@media screen and (max-width: 480px) {
    /* Contact */
    .contact__card-btns {
        grid-column: 1 / 3;
        justify-self: end;
    }
    /* Home */
    .home__hero {
        gap: 6rem;
        padding: 1rem;
    }
    .home__hero-cont {
        background: no-repeat url(../assets/img/hero.jpg);
        background-position: 60% 50%;
        background-size: cover;
    }
    .home__hero-title h1 {
        font-size: 2.2em;
    }
    .home__start-frames {
        grid-template-columns: 1fr;
    }
    .home__start-history {
        grid-column: 1 / 2;
    }
    .home__cat-conv-frames {
        min-width: unset;
    }
    .home__cat-conv-frames div {
        gap: 2rem;
    }
    .home__cat-conv-frames p {
        margin: 0.8rem 0.6rem;
    }
    .home__norm {
        padding: 4rem 1.5rem 0 1.5rem;
    }
    .home__norm-header img {
        width: 60px;
    }
    .home__norm-cont {
        grid-template-rows: auto 50px auto;
        padding-right: 0;
    }
    .home__search-frame {
        padding: 5rem 2.5rem 10rem 2.1rem;
    }
    .home__search > img {
        width: 110px;
        right: 5.5rem;
        bottom: -1.6rem;
    }
    .home__search > img:last-child {
        bottom: 0.6rem;
    }
    .home__pop-up-exp,
    .home__pop-up-question {
        padding: 3rem 2.5rem 3rem 2.5rem;
    }
    .home__pop-up-btns button {
        padding: 0;
        width: 100%;
    }
    /* About Us */
    .us__daynamex {
        padding: 6rem 1.5rem 8rem 1.5rem;
    }
    .us__services {
        gap: 3rem;
    }
    .us__services-frames {
        justify-content: center;
    }
    .us__services-frames div {
        width: 160px;
        aspect-ratio: 3 / 4;
    }
    .us__nom {
        padding: 6rem 2.5rem 3rem 2.5rem;
    }
    .us__nom .section-title {
        padding-right: 0;
    }
    .us__nom-squares {
        top: 0rem;
    }
    .us__nom-grid {
        padding: 0 1.5rem;
    }
    .us__expectations {
        margin: 1rem 1.5rem 0 1.5rem;
        width: calc(100%  - 3rem);
    }
    .us__mission {
        padding: 0 1.5rem 120px 1.5rem;
    }
    .us__mission > img {
        right: calc(4rem + 150px);
        bottom: 2rem;
        width: 150px;
    }
    .us__mission-frame {
        padding: 4rem 3rem 7rem 3rem;
    }
    /* Store */
    .store__header {
        padding: 2rem 1.5rem;
    }
    .store__search {
        padding: 5rem 1.5rem 4rem 1.5rem;
    }
    .store__products {
        padding: 4rem 2rem;
    }
    .store__pro-item {
        width: 85%;
    }
    .store__nav {
        grid-template-columns: 115px 1fr 115px;
        width: 100%;
    }
    .store__offers .section-title {
        padding: 0 1.5rem;
    }
    .store__offers-grid {
        grid-template-columns: 1fr 1fr;
    }
    .store__offers-swiper {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        justify-self: center;
    }
    .offers-swiper {
        width: 90vw;
    }
    .offers-swiper .swiper-slide {
        display: flex;
        justify-content: center;
    }
    /* Product Detail */
    .product-detail {
        grid-template-columns: repeat(auto-fit,  minmax(300px, 1fr));
        padding: 0 1.5rem;
        width: 100%;
    }
    .detail__specs-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto repeat(3, 45px);
        row-gap: 1.5rem;
    }
    .detail__specs-grid span {
        grid-row: 1 / 2;
        margin: 1rem 0 1.5rem 0;
        text-align: center;
    }
    /* Cart */
    .cart {
        padding: 3rem 1.5rem 6rem 1.5rem;
    }
    .cart h3 {
        margin: 2.5rem 0 0.6rem 0;
    }
    .cart__grid {
        gap: 4rem;
    }
    .cart__item {
        grid-template-columns: 130px 1fr;
        column-gap: 1.2rem;
        row-gap: 0.8rem;
    }
    .cart__item img {
        grid-row: 1 / 5;
        align-self: start;
    }
    .cart__item span,
    .cart__item > span:nth-child(2) {
        margin: 0
    }
    .cart__item p {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
        margin: 0;
    }
    .cart__item div {
        grid-column: 2 / 3;
        grid-row: 4 / 5;
        align-self: end;
        justify-self: end;
        margin: 1rem 0 0 0;
    }
    .cart__similar .section-title {
        padding: 0 1.5rem;
    }
    .cart__similar-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 2.5rem;
    }
    .cart__similar-swiper {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        justify-self: center;
    }
    .cart-swiper {
        width: 90vw;
    }
    .cart-swiper .swiper-slide {
        display: flex;
        justify-content: center;
    }
    .cart__resume {
        right: 1.5rem;
    }
    .cart__resume-grid {
        grid-template-columns: 220px;
        grid-template-rows: unset;
    }
    .cart__resume-grid button {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    .cart__resume-grid p {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        justify-self: center;
    }
    .cart__resume-grid a {
        justify-self: center;
        margin-right: unset;
    }
    .cart__resume-img {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    /* Payment */
    .payment {
        padding: 2rem 1.5rem 3rem 1.5rem;
    }
    .pay__delivery {
        justify-self: center;
        flex-direction: column;
        max-width: 200px;
    }
    .pay__delivery button {
        width: 100%;
    }
    .pay__resume-frame {
        padding: 2rem 1.2rem;
    }
    .pay__branches {
        grid-template-columns: repeat(auto-fill, 130px);
        gap: 1.6rem;
    }
    .pay__branch {
        padding: 0.8rem 0.8rem 1.2rem 1.2rem;
        aspect-ratio: unset;
    }
    /* Stripe */
    .stripe {
        grid-template-rows: calc(40px + 1rem) auto 20%;
    }
    .stripe > button {
        margin-bottom: 1rem;
        height: 40px;
    }
    .stripe > img {
        width: 190px;
    }
    /* Blog */
    .blog__search {
        flex-direction: column;
        height: auto;
    }
    .blog__search input,
    .blog__search button {
        height: 40px;
    }
    .blog__search button {
        margin-left: auto;
    }
    .blog__pagination {
        grid-template-columns: 115px 1fr 115px;
        width: 100%;
    }
    /* Blog Post */
    .post__cont {
        padding: 0 2rem;
    }
    .post__suggestions .section-title {
        margin-left: 2rem;
    }
    /* Thanks */
    .thanks .l-shaped-frame {
        grid-template-rows: auto calc(1rem + 90px);
    }
    .thanks__img {
        padding: 1rem;
    }
    .thanks__img button {
        position: unset;
        translate: unset;
    }
    .thanks__sm {
        height: 90px;
        gap: 1rem;
    }
    .thanks__message {
        padding: 2rem 2rem 150px 2rem;
        width: 100%;
        height: unset;
    }
    /* Error 404 */
    .no-found h1 {
        font-size: 1.6em;
    }
    .no-found img {
        width: 220px;
    }
}

/* IPhone SE */
@media screen and (max-width: 376px) and (max-height: 668px) {
    /* About Us */
    .us__services {
        padding: 0 1rem 4rem 1rem;
    }
    .us__mission > img {
        right: calc(4rem + 130px);
        bottom: 3rem;
        width: 130px;
    }
    .us__mission > img:last-child {
        bottom: 1rem;
    }
    /* Success */
    .success__frame p {
        max-width: 240px;
    }
}



/* -------------------------------------Animations------------------------------------- */

.home__pop-up.appear,
.cart__pop-up.appear,
.store__pop-up.appear {
    animation: fade-in 0.3s ease;
}

.home__pop-up.disappear,
.cart__pop-up.disappear,
.store__pop-up.disappear {
    animation: fade-out 0.3s ease forwards;
}

.detail__pop-up.animate,
.contact__copied-message.animate {
    animation: fade-in-out 3s ease;
}


/* Keyframes */
@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
@keyframes fade-out {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fade-in-out {
    0% {
        opacity: 0;
    }
    20%, 80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes scrolling {
    0% {
        translate: 0;
    }

    100% {
        translate: var(--marquee-width);
    }
}

@keyframes loader-animation {
    0% {
        top: 96px;
        left: 96px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: 78px;
        left: 78px;
        width: 36px;
        height: 36px;
        opacity: 0;
    }
}
@keyframes loader-text {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}