html {
    width: 100vw;
    overflow-x: hidden;
}

body {
    margin: 0px;
    padding: 0px;
    background-color: #141414;
    color: white;
}

a {
    color: white;
}

@font-face {
    font-family: 'Fake Serif';
    src: url("Fake Serif.otf");
}

/* VIA STRIP */
.via-strip {
    height: 80px;
    background-color: #494143;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.primary-logo {
    height: 100%;
    margin-left: 15.995px;
}

.primary-logo #v {
    transform: translateY(-130%);
}

.primary-logo #red-light {
    fill: #320000;
}

.primary-logo #yellow-light {
    fill: #322d00;
}

.primary-logo #green-light {
    fill: #003200;
}

.primary-logo #a {
    transform: translateY(130%);
}

.primary-logo #text {
    fill: rgba(255, 255, 255, 0);
}

#nav-bar .double-yellow-lines {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.double-yellow {
    background-color: #fee40b;
    height: 1px;
}

.space {
    background-color: #494143;
    height: 1px;
}

/* VIA LOGO ANIMATION */
@keyframes reset-position-y {
    0% {transform: translateY(inherit);}
    100% { transform: translateY(0); }
}

.animate-letters__animated {
    animation-name: reset-position-y;
    animation-delay: 0.5s;
    animation-duration: 0.51s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

@keyframes set-color-red {
    100% { fill: #ff0000;}
}

@keyframes set-color-dim-red {
    100% { fill: #320000;}
}

.animate-red-light__animated {
    animation-name: set-color-red, set-color-dim-red, set-color-red;
    animation-delay: 1.23s, 2.65s, 4.2s;
    animation-duration: 0s, 0s, 1s;
    animation-fill-mode: forwards;
}

@keyframes set-color-yellow {
    100% { fill: #ffe500;}
}

@keyframes set-color-dim-yellow {
    100% { fill: #322d00;}
}

.animate-yellow-light__animated {
    animation-name: set-color-yellow, set-color-dim-yellow, set-color-yellow;
    animation-delay: 1.77s, 2.65s, 4.2s;
    animation-duration: 0s, 0s, 1s;
    animation-fill-mode: forwards;
}

@keyframes set-color-green {
    100% { fill: #00ff00;}
}

@keyframes set-color-dim-green {
    100% {fill: #003200;}
}

.animate-green-light__animated {
    animation-name: set-color-green, set-color-dim-green, set-color-green;
    animation-delay: 2.65s, 3.35s, 4.2s;
    animation-duration: 0s, 0.5s, 1s;
    animation-fill-mode: forwards;
}

@keyframes set-opacity {
    0% {fill: rgba(255, 255, 255, 0);}
    100% {fill: rgb(255, 255, 255);}
}

.animate-via-logo-text__animated {
    animation-name: set-opacity;
    animation-delay: 5.2s;
    animation-duration: 0.6s;
    animation-fill-mode: forwards;
}

/* Hero Section */
#hero-content {
    display: flex;
    align-content: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    flex-direction: column;
}

#hero-title {
    font-family: 'Fake Serif', sans-serif;
    font-weight: unset;
    font-size: 3rem;
    line-height: 50px;
    margin-block-start: 26px;
    margin-block-end: 16px;
}

.enl-h-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 2.75rem;
}

.hero-left-gap {
    margin-left: 6px;
}

#hero-body {
    font-family: "Carlito", sans-serif;
    font-weight: 400;
    line-height: 24px;
    margin-block-start: 0px;
    margin-block-end: 26px;
}

#hero-body span {
    font-weight: 700;
}

#hero-content .delivery-price {
    margin-bottom: 31.34px;
}

.hero-image-container {
    display: flex;
    position: relative;
    width: 100%;
}

.hero-image-container .embla {
    background-color: rgba(0, 0, 0, 0.55);
    font-weight: bold;
    text-align: center;
    line-height: 24px;
    position: absolute;
    bottom: 0;
    width: var(--slide-size);
}

.hero-image-container .embla__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
}

.hero-image-container .embla__slide__img {
    height: initial;
    opacity: 0;
}

.hero-image-container .embla__slide:nth-child(3) .embla__slide__img,
.hero-image-container .embla__slide:nth-child(6) .embla__slide__img,
.hero-image-container .embla__slide:nth-child(7) .embla__slide__img {
    font-size: 14px;
}

.hero-image-container .embla__slide:nth-child(4) .embla__slide__img {
    padding: 0 38px;
}

.hero-image-container .embla__slide:nth-child(5) .embla__slide__img {
    padding: 0 28px;
}

/* Review Quote Transition ANIMATION */
.animate-quote__animated {
    animation-name: fadeInRight, fadeOutLeft;
    animation-duration: 1s, 1s;
    animation-delay: 0s, 6s;
    animation-fill-mode: forwards;
}

/* Review Section */
#review-section {
    margin-top: 31.34px;
}

.review-images {
    display: flex;
    flex-wrap: wrap;
}

/* Feature Section */
.feat-content {
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

.feat-title {
    font-family: 'Fake Serif', sans-serif;
    font-size: 48px;
    margin-top: 23.75px;
    padding-left: 7px;
    padding-right: 7px;
}

#feature-1 .feat-title {
    padding-left: 7.9805px;
    padding-right: 23.9805px
}

#feature-2 .feat-title {
    margin-bottom: 5px;
}

.feat-desc {
    font-family: "Carlito", sans-serif;
    line-height: 24px;
    margin: 0px;
    padding: 11.33px 17px 14.33px 17px;
    max-width: 384.500px;
}

.feat-desc:last-child {
    padding-bottom: 36.39px;
}

#feature-3 .feat-desc {
    padding-top: 18px;
    max-width: 312.594px;
}

#feature-4 .feat-desc {
    max-width: 360px;
}

#feature-4 .feat-desc:nth-of-type(1) {
    padding-top: 17px;
}

#feature-5 .feat-desc {
    padding-top: 9px;
    padding-left: 16px;
    padding-right: 16px;
    min-width: 327.679px;
}

#feature-7 .feat-desc {
    padding-top: 10px;
    max-width: 311.343px;
}

/* Buy Section */
.buy-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    text-align: center;
    flex-direction: column;
}

#buy-title {
    margin-top: 44.7px;
    margin-bottom: 26px;
}

.extras-list {
    margin: 0;
    text-align: left;
    font-family: "Carlito", sans-serif;
    font-weight: 700;
    list-style: none;
    padding-inline-start: 0px;
}

.extras-list li {
    margin-bottom: 10px;
    padding-left: 30px;
}

.extras-yellow-icon {
    background: url(../assets/icons/yellow-plus-icon.svg) no-repeat left center;
}

.extras-green-icon {
    background: url(../assets/icons/green-plus-icon.svg) no-repeat left center;
}

.buy-content .kit-price {
    margin-top: 15px;
}

.collection-notice {
    font-family: 'Roboto', sans-serif;
    line-height: 24px;
    margin: 26px 0;
}

.collection-notice span {
    font-size: 20px;
    font-weight: 500;
}

/* Extras Section */
#extras-section {
    margin-top: 50px;
}

.extras > *:not(.via-strip) {
    margin-bottom: 30.80px;
}

.extras > .via-strip {
    margin-top: 18.80px;
}

#extras-intro-title, #extras-intro-desc {
    margin: auto;
    text-align: center;
}

#extras-intro-desc {
    font-family: "Carlito", sans-serif;
    line-height: 24px;
    margin-top: 20px;
    width: max-content;
}

#extras-intro-desc span {
    font-weight: 700;
}

.extras-carousel:first-child {
    margin-top: 19px;
}

.carousel-header-img {
    display: block;
}

.extras-title {
    font-family: 'Fake Serif', sans-serif;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
    margin-top: 26px;
}

#final-content-sell-msg {
    font-size: 44px;
    margin-bottom: 30.80px;
}

/* Footer */
footer {
    margin-top: 44.37px;
}

#footer-list {
    font-family: "Carlito", sans-serif;
    font-weight: 700;
    list-style: none;
    padding-inline-start: 0px;
    display: flex;
    flex-wrap: wrap;
    width: 325px;
    margin: auto;
    justify-content: space-between;
}

.foot-item {
    vertical-align: top;
    margin-top: -4px;
}

#follow-info {
    margin-right: 60px;
}

.foot-item-title {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.foot-entry {
    margin-bottom: 14.78px;
}

.foot-entry-content, .foot-entry-desc {
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 32.5px;
    text-decoration: none;
}

.foot-entry-desc, #address {
    font-size: 14px;
    font-weight: 400;
}

#contact-info :not(.foot-entry) + .foot-entry {
    margin-bottom: 4px;
}

#address-info {
    text-align: center;
    margin-top: 0;
}

.main-logo {
    margin-bottom: 8px;
}

#follow-facebook {
    background: url(../assets/icons/facebook--24px-size--2px-stroke-width.svg) no-repeat left center;
}

#follow-instagram {
    background: url(../assets/icons/instagram--24px-size--2px-stroke-width.svg) no-repeat left center;
}

#contact-num {
    background: url(../assets/icons/phone--24px-size--2px-stroke-width.svg) no-repeat left center;
}

#contact-mail {
    background: url(../assets/icons/mail--24px-size--2px-stroke-width.svg) no-repeat left center;
}

/* Road */
.road {
    height: 176px;
    background-color: #494143;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-block: 20px;
}

.road-double-yellow {
    background-color: #fee40b;
    height: 3px;
}

.road-space {
    background-color: #494143;
    height: 3px;
}

.white-lines {
    display: inline-flex;
    justify-content: space-between;
}

.white-line {
    display: none;
    width: 84.26px;
    height: 2.75px;
    background-color: white;
}

#road-white-1, #road-white-2, #road-white-3 {
    display: inline-block;
}

/* Miscellaneous */
.buy-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 232px;
    height: 56px;
    color: black;
    text-decoration: none;
    background-color: #80f75b;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 500;
    border-radius: 8.593px;
}

.images {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.hero-image, #feature-1 .images *, #feature-5 .feature-images,
#feature-6 .images * {
    width: 50%;
    height: 50%;
}

.hero-image:first-child, .review-image, #feature-1 .feature-images:first-child, 
#feature-2 .feature-images, #feature-3 .feature-images,
#feature-6 .feature-images:first-child, #feature-7 .feature-images, .carousel-header-img
{
    width: 100%;
    height: 100%;
}

.kit-price {
    font-family: 'Roboto', sans-serif;
    margin-bottom: 4.415px;
}

.kit-price span {
    font-weight: 500;
    font-size: 20px;
}

.delivery-price {
    font-family: 'Carlito', sans-serif;
}

#buy-title, #extras-intro-title {
    font-family: 'Fake Serif', sans-serif;
    font-size: 56px;
    line-height: 48px;
}

/* Credits */
#credits {
    font-family: 'Carlito', sans-serif;
    margin: 40px auto;
    width: fit-content;
}

@media only screen and (min-width: 560px) {
    #footer-list {
        width: auto;
        justify-content: center;
    }

    #contact-info {
        margin-right: 60px;
    }
}

@media only screen and (min-width: 768px) {
    /* Hero Section */
    .hero-image:nth-child(2) {
        order: 1;
    }

    .hero-image-container {
        width: 66.66666666666666%;
    }

    .hero-image-container .embla {
        width: 100vw;
    }

    .hero-image-container .embla__slide:nth-child(3) {
        font-size: 16px;
        line-height: 24px;
    }

    .hero-image-container .embla__slide__img {
        max-width: 768px;
    }

    /* Feature Section */
    .feat-descs {
        max-width: 768px;
        padding-left: 5.86px;
    }

    #feature-1 .feat-desc, #feature-5 .feat-desc, #feature-6 .feat-desc {
        width: 326.234px;
        display: inline-block;
        vertical-align: top;
        padding-left: 26.14px;
        padding-right: 26.14px;
    }

    #feature-2 .feat-desc {
        max-width: 324.093px;
    }

    #feature-5 .feat-descs {
        padding-left: 0;
    }
    
    #feature-5 .feat-desc {
        padding-bottom: 0;
    }

    #feature-5.feature-section {
        padding-bottom: 36.39px;
    }

    #feature-6 .feat-desc:last-child {
        margin-top: -49.66px;
    }

    /* Miscellaneous */
    #hero-section .images, #feature-1 .images {
        max-height: calc(384px + 20vw);
    }
    
    .hero-image, #feature-1 .feature-images, #feature-5 .feature-images {
        width: 33.3333333333%;
    }

    .review-image:not(:last-child), #feature-2 .feature-images {
        width: 50%;
    }

    #feature-1 .feature-images:first-child {
        width: 66.66666666666666%;
    }

    #hero-section .images, #feature-1 .images {
        flex-direction: column;
    }

    /* Road */
    .road {
        height: 375.47px;
    }

    .road-double-yellow {
        height: 5px;
    }

    .road-space {
        height: 6px;
    }

    .white-line {
        width: 179.74px;
        height: 5.87px;
    }
}

@media only screen and (min-width: 1200px) {
    /* VIA STRIP */
    .via-strip {
        height: 135px;
        width: 100%;
    }

    .primary-logo {
        width: 203.886px;
        margin-left: 25px;
    }

    .double-yellow, .space {
        height: 2px;
    }
    
    /* Hero Section */
    #hero-section .images {
        flex-direction: row;
    }

    #hero-title {
        font-size: 64px;
        line-height: 72px;
        margin-top: 23px;
        margin-bottom: 23px;
    }

    .enl-h-title {
        font-size: inherit;
    }

    #hero-body {
        font-size: 18px;
        line-height: 27px;
        margin-bottom: 31px;
    }

    .kit-price {
        font-size: 20px;
        line-height: 36px;
        margin-bottom: 0px;
    }

    .kit-price span {
        font-size: 24px;
    }

    .delivery-price {
        font-size: 20px;
    }

    #hero-section .delivery-price {
        margin-bottom: 41px;
    }

    .hero-image-container {
        width: 33.3333333333%;
    }

    /* Review Section */
    #review-section {
        margin-top: 40.33px;
    }

    /* Features Section */
    #feature-1 .images {
        flex-direction: unset;
    }

    .feat-title {
        font-size: 72px;
        line-height: 72px;
        margin-top: 36px;
        margin-bottom: 12px;
    }

    .feat-descs {
        max-width: 1200px;
        padding-left: 0px;
    }

    .feat-desc {
        font-size: 18px;
        line-height: 27px;
        max-width: 423.255px;
    }

    #feature-1 .feat-desc {
        width: 422.824px;
        display: block;
        font-size: clamp(14.5px, 1vw, 18px);
        padding-bottom: clamp(8px, 1vw, 14.33px);
    }

    #feature-2 .feat-desc {
       max-width: 424.255px;
       padding-top: 32px;
    }

    #feature-3 .feat-desc {
        max-width: 422.154px;
        padding-top: 25px;
    }

    #feature-1.feature-section, #feature-3.feature-section, #feature-4.feature-section, #feature-7.feature-section,
    .extras-carousel#extra-mini-kit {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    #feature-1 .feat-content, #feature-3 .feat-content, #feature-4 .feat-content, #feature-7 .feat-content {
        flex-grow: 1;
    }
    
    #feature-3 .images, #feature-4 .embla-thumbs, #feature-7 .images {
        order: 1;
    }

    #feature-1 .embla, #feature-1 .embla-thumbs, #feature-3 .feature-images, #feature-4 .embla, #feature-4 .embla-thumbs,
    #feature-7 .feature-images, .extras-carousel#extra-mini-kit .embla,
    .extras-carousel#extra-mini-kit .embla-thumbs  {
        width: 56.094vw;
        /* width: 56.100520833333334vw; */
    }

    #feature-4 .feat-desc {
        max-width: 400.154px;
    }

    #feature-5 .feature-images {
        width: 25%;
    }

    #feature-5 .feat-desc {
        width: 424.255px;
        max-width: none;
        padding-left: 103px;
        padding-right: 65px;
    }

    #feature-6 .feature-images:first-child, #feature-6 .feature-images:nth-child(2) {
        width: 50%;
    }

    #feature-6 .feat-desc {
        width: unset;
        padding-left: 103px;
        padding-right: 65px;
    }

    #feature-7 .feat-desc {
        max-width: 423.255px;
    }

    /* Extras Section */
    #buy-title {
        margin-bottom: 26px;
    }
    
    #buy-title, #extras-intro-title {
        font-size: 80px;
        line-height: 80px;
    }
    
    .extras-list li {
        background-size: 18.333px;
        padding-left: 36px;
    }

    .extras-list li, #extras-intro-desc {
        font-size: 20px;
    }

    .buy-content .kit-price {
        margin-top: 20px;
    }

    .collection-notice {
        font-size: 20px;
        line-height: 28px;
        margin: 37px 0;
    }

    .collection-notice span {
        font-size: 24px;
    }

    #extras-section {
        margin-top: 93.64px;
    }

    #extras-intro-desc {
        line-height: 30px;
        margin-top: 30px;
    }

    .extras > .via-strip {
        margin-top: 40px;
    }

    .extras > *:not(.via-strip) {
        margin-bottom: 37px;
    }

    .extras-carousel#extra-mini-kit {
        align-items: end;
    }

    .extras-title, #final-content-sell-msg {
        font-size: 60px;
        line-height: 72px;
    }
    
    #extras-final-content {
        flex-grow: 1;
        margin-bottom: 43px;
    }

    #final-content-sell-msg {
        margin-bottom: 47px;
    }

    /* Footer */
    footer {
        order: 1;
        flex-grow: 1;
        margin-top: 0;
        margin-bottom: 28px;
    }
    
    #follow-info, #contact-info {
        margin-right: 56px;
    }

    /* Road */
    .road {
        margin-block: 0px;
        height: 451.78px;
    }

    .road-double-yellow {
        height: 6px;
    }

    .road-space {
        height: 7px;
    }

    .white-line {
        display: inline-block;
        min-width: 120px;
        width: 11vw;
        max-width: 209.11px;
        height: 7.75px;
    }

    /* Miscellaneous */
    .review-image, .review-image:not(:last-child), 
    #feature-1 .feature-images, #feature-1 .feature-images:first-child,
    #feature-5 .feature-images, #feature-6 .feature-images  {
        width: 33.3333333333%;
    }
}