header {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 50px);
}

.scene {
    position: relative;
    width: 100%;
    height: 700px;
    background-image: url(https://shop.friendlymarketing.us/images/main/shopping_background_back.png);
    background-size: 100vw 100%;
    animation: scene 50s linear infinite;
}

@keyframes scene {
    100% {
        background-position: -300vw 0px,
            -200vw 0px,
            -100vw 0px;
    }
}

.scene img {
    position: absolute;
    bottom: 0;
    left: 50px;
    height: 500px;
}

.scene .sceneFront {
    position: relative;
    width: 100%;
    height: 100%;
    /* background-image: url(https://shop.friendlymarketing.us/images/main/shopping_background_front.png); */
    background-size: 100vw 100%;
    animation: scene 50s linear infinite;
}

.scene .sceneText {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* background-color: var(--glass); */
    padding: 50px 40px;
    border-radius: 15px;
    max-width: 500px;
    /* box-shadow: var(--main_shadow); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.scene .sceneText :is(p, a) {
    font-family: var(--font_primary);
    letter-spacing: 2px;
    /* color: var(--white); */
    color: black;
    text-shadow: var(--main_shadow);
    position: relative;
    overflow: hidden;
}

.scene .sceneText .subTitle {
    font-size: 25px;
    font-weight: 400;
    text-align: center;
}

.scene .sceneText .title {
    font-size: 50px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.scene .sceneText .searchBar {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    box-shadow: var(--main_shadow);
}

.scene .sceneText .searchBar form {
    width: 100%;
    display: flex;
    align-items: center;
}

.scene .sceneText .searchBar input {
    width: 100%;
    background-color: transparent;
    outline: none;
    border: none;
    font-size: 20px;
}

.scene .sceneText .searchBar input:placeholder-shown {
    text-transform: capitalize;
    letter-spacing: 1px;
}

.scene .sceneText .searchBar button {
    padding: 10px;
    outline: none;
    border: none;
    box-shadow: var(--main_shadow);
    border-radius: 10px;
    background-color: var(--main_primary_color);
    color: var(--white);
    cursor: pointer;
}

.scene .sceneText .searchBar button:hover {
    background-color: var(--main_primary_color_hover);
}

.scene .sceneText a {
    background-color: var(--main_primary_color);
    padding: 10px 20px;
    border-radius: 10px;
    text-transform: capitalize;
    color: var(--white);
    cursor: pointer;
}

.scene .sceneText a:hover {
    background-color: var(--main_primary_color_hover);
}

.categories,
.products,
.popularCategories {
    width: calc(100% - 20px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px;
}

.category {
    width: 350px;
    height: 300px;
    position: relative;
    border-radius: 15px;
    margin: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--main_shadow);
    transition: all 250ms linear;
}

.category:hover {
    transform: scale(1.02);
}

.category:hover img {
    filter: brightness(1) blur(0px);
}

.category:hover p {
    opacity: 0;
}

.categories img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.5) blur(2px);
    transition: all 250ms linear;
}

.category p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font_primary);
    text-transform: capitalize;
    color: var(--white);
    letter-spacing: 2px;
    width: 90%;
    text-align: center;
    font-size: 25px;
    transition: all 250ms linear;
}

.products {
    flex-direction: column;
}

.products .title {
    font-family: var(--font_primary);
    text-transform: capitalize;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 40px;
    margin-top: 25px;
    margin-bottom: 10px;
}

.products .productsCategoryButton {
    margin-top: 1rem;
}

.products .productsCategoryButton a {
    padding: 0.5rem 2rem;
    background-color: transparent;
    border-radius: 1rem;
    text-transform: capitalize;
    letter-spacing: 0.1rem;
    font-family: var(--font_primary);
    font-weight: bold;
    border: 2px solid var(--main_primary_color);
    transition: all 300ms ease-in-out;
    color: var(--main_primary_color);
}

.products .productsCategoryButton a:hover {
    background-color: var(--main_primary_color);
    color: var(--white);
}

.productsContainer {
    width: calc(270px * 4);
    display: flex;
    overflow: hidden;
}

.productsSlider {
    width: 100%;
    display: flex;
    transition: all 250ms linear;
}

.viewPointPlatform {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.viewPointPlatform .platform {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 80%;
    margin-top: 50px;
    margin-bottom: 50px;
}

.viewPointPlatform .platform .box {
    width: calc((100% / 3) - 60px);
    margin: 5px;
    padding: 5px;
    border-radius: 15px;
}

.viewPointPlatform .platform .box .boximage {
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
}

.viewPointPlatform .platform .box .boximage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.viewPointPlatform .platform .box .boxtitle,
.viewPointPlatform .platform .box .boxtext {
    width: 100%;
}

.viewPointPlatform .platform .box .boxtitle p,
.viewPointPlatform .platform .box .boxtext p {
    width: 100%;
    font-size: 17px;
    text-align: center;
    font-weight: 400;
    font-family: var(--font_primary);
}

.viewPointPlatform .platform .box .boxtitle p {
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 10px;
}

.viewPointPlatform .platform .box a {
    background-color: var(--main_primary_color);
    padding: 10px 20px;
    border-radius: 10px;
    text-transform: capitalize;
    color: var(--white);
    cursor: pointer;
    margin-top: 10px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    position: relative;
}


.scene .sceneText a::before,
.viewPointPlatform .platform .box a::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    left: -50%;
    background-color: white;
    opacity: 0.4;
    clip-path: polygon(50% 0%, 100% 0%, 50% 100%, 0% 100%);
    transition: all 500ms linear;
}

.scene .sceneText a:hover::before,
.viewPointPlatform .platform .box a:hover::before {
    left: 100%;
}

.popularCategories {
    justify-content: center;
}

.categorybox {
    min-width: 100px;
    margin: 5px;
    padding: 5px;
    width: calc(80% / 6);
    max-width: 200px;
    min-width: 150px;
    height: 200px;
}

.categorybox a {
    display: block;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    padding: 15px;
    border-radius: 15px;
    transition: all 250ms linear;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
}

.categorybox a .imageView {
    width: 100px;
    height: 100px;
    box-shadow: 0 0 5px var(--i);
    border-radius: 50%;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    /* animation: flashing 3s linear infinite; */
}

@keyframes flashing {

    0%,
    100% {
        box-shadow: 0 0 5px var(--i);
    }

    50% {
        box-shadow: 0 0 5px var(--i),
            0 0 15px var(--i),
            0 0 25px var(--i);
    }
}

.categorybox a .imageView .imageSlide {
    width: 100px;
    height: 100px;
    overflow: hidden;
}

.categorybox a .imageView .imageSlide .images {
    /* overflow: visible;
    transition: all 250ms linear;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center; */
    width: 100%;
    height: 100%;
}

.categorybox a .imageView img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex: none;
}

.categorybox a p {
    font-family: var(--font_primary);
    text-transform: capitalize;
    text-align: center;
    color: black;
    letter-spacing: 1px;
    /* white-space: nowrap; */
    margin-top: 10px;
    width: 100%;
}

.categorybox a:hover {
    /* border-top: 2px solid var(--i); */
    border-bottom: 2px solid var(--i);
}

.categorybox a:hover .imageView {
    animation: none;
}

.categorybox a:hover .imageView .imageSlide .images {
    transform: translateY(-50%);
}

.review {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.review .title {
    font-family: var(--font_primary);
    text-transform: capitalize;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 40px;
    margin-top: 25px;
    margin-bottom: 10px;
}

.review .reviewContainer {
    width: calc(290px * 4);
    height: 300px;
    display: flex;
    overflow: hidden;
    position: relative;
}

.review .reviewContainer .reviewSlides {
    width: 100%;
    display: flex;
    transition: all 250ms linear;
    cursor: grab;
    user-select: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 200%;
    pointer-events: none;
    transition: 0s ease-in;
}

.reviewBox {
    width: calc(100% - 20px);
    max-width: 250px;
    background-color: var(--white);
    box-shadow: var(--main_shadow);
    border-radius: 15px;
    overflow: hidden;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: none;
    padding: 10px;
}

.reviewBox .title {
    font-size: 1.2rem;
}

.reviewBox .stars i {
    color: orange;
    font-size: 1rem;
}

.reviewBox .reviewText {
    margin: 10px;
    text-align: justify;
    text-align-last: left;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: var(--main_primary_color); */
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
    width: 100%;
    height: 500px;
}

.contact svg {
    position: absolute;
    height: 220px;
}

.contact svg.contact_man {
    top: 10px;
    left: 15%;
    transform: translate(-50%);
}

.contact svg.contact_girl {
    bottom: 10px;
    left: 20%;
    transform: translate(-50%);
}

.contact svg.contact_phone {
    top: 50%;
    right: 25%;
    transform: translate(50%, -50%);
}

.contact svg.contact_lady {
    bottom: 10px;
    right: 15%;
    transform: translate(50%);
}

.contact svg #dot {
    animation: dotLoader 1s linear infinite;
    animation-delay: calc(var(--i) * 250ms);
}

@keyframes dotLoader {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.contact .contactContainer {
    width: calc(100% - 20px);
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px;
}

.contact .contactContainer .contactTitle {
    font-family: var(--font_primary);
    text-transform: capitalize;
    letter-spacing: 2px;
    font-size: 30px;
    font-weight: 600;
    width: 100%;
    /* color: var(--white); */
}

.contact .contactContainer .contactTitle p {
    width: 100%;
    text-align: left;
    white-space: nowrap;
}

.contact .contactContainer .contactTitle p span {
    color: var(--main_secondary_color);
}

.contact .contactContainer .contactTitle .indicater {
    margin-left: -12px;
    animation: indicater 1s infinite;
}

@keyframes indicater {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

.contact .contactContainer .contactForm {
    margin-top: 20px;
    width: calc(100% - 40px);
    padding: 20px;
    background-color: var(--glass);
    border-radius: 10px;
    box-shadow: var(--main_shadow);
}

.contact .contactContainer .contactForm form {
    width: 100%;
}

.contact .contactContainer .contactForm form .formGroup {
    width: calc(100% - 20px);
    margin: 10px;
}

.contact .contactContainer .contactForm form .formGroup .message {
    background-color: var(--error_background);
    padding: 10px;
    border-radius: 5px;
    text-transform: capitalize;
    text-align: center;
    font-family: var(--font_primary);
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--weak_color);
}

.contact .contactContainer .contactForm form .formGroup label {
    margin-bottom: 20px;
    text-transform: capitalize;
    font-family: var(--font_primary);
    letter-spacing: 2px;
    font-weight: 600;
}

.contact .contactContainer .contactForm form .formGroup .formInput {
    background-color: var(--light_gray);
    padding: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.contact .contactContainer .contactForm form .formGroup .formInput i {
    width: 20px !important;
    height: 20px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.contact .contactContainer .contactForm form .formGroup .formInput input {
    padding: 5px;
    outline: none;
    border: none;
    background-color: transparent;
    font-size: 16px;
    width: 100%;
    font-family: var(--font_primary);
    font-weight: 600;
}

.contact .contactContainer .contactForm form .formGroup .formInput input:placeholder-shown {
    letter-spacing: 2px;
}

.contact .contactContainer .contactForm form .formGroup .formInput input::-webkit-outer-spin-button,
.contact .contactContainer .contactForm form .formGroup .formInput input::-webkit-inner-spin-button {
    display: none;
}

.contact .contactContainer .contactForm form .formGroup button {
    margin-top: 10px;
    width: 100%;
    padding: 10px;
    font-family: var(--font_primary);
    letter-spacing: 2px;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    outline: none;
    border: none;
    /* background-color: var(--main_primary_color); */
    background-color: #8b1515;
    color: var(--white);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.contact .contactContainer .contactForm form .formGroup button:hover {
    /* background-color: var(--main_primary_color_hover); */
    background-color: #9f0e0e;
}

.contact .contactContainer .contactForm form .formGroup button .loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light_gray);
    cursor: not-allowed;
    display: none;
    justify-content: center;
    align-items: center;
}

.contact .contactContainer .contactForm form .formGroup button .loader span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--white);
    display: block;
    margin: 5px;
    animation: subLoader 500ms linear infinite;
    animation-delay: calc(var(--i) * 100ms);
}

@keyframes subLoader {

    0%,
    100% {
        transform: translate(0, 0px);
    }

    50% {
        transform: translate(0, -5px);
    }
}

.contact .contactContainer .contactForm form .formGroup button.active .loader {
    display: flex;
}

@media screen and (max-width: 1500px) {
    .viewPointPlatform .platform {
        width: 90%;
    }
}

@media screen and (max-width: 1360px) {
    .contact svg.contact_lady {
        right: 10%;
    }

    .contact svg.contact_man {
        left: 10%;
    }
}

@media screen and (max-width: 1270px) {
    .contact svg.contact_phone {
        right: 23%;
    }

    .contact svg.contact_girl {
        left: 15%;
    }
}

@media screen and (max-width: 1200px) {
    .productsContainer {
        width: calc(270px * 3);
    }

    .review .reviewContainer {
        width: calc(290px * 3);
    }

    .review .reviewContainer .reviewSlides {
        width: 300%;
    }

    .viewPointPlatform .platform {
        width: 98%;
    }
}

@media screen and (max-width: 1150px) {
    .scene {
        background-size: 120vw 100%;
    }

    .contact svg.contact_lady {
        display: none;
    }

    .contact svg.contact_phone {
        right: 15%;
    }
}

@media screen and (max-width: 1000px) {
    .scene {
        height: 600px;
        background-size: 130vw 100%;
        animation: scene 45s linear infinite;
    }

    .scene .sceneText {
        width: 100%;
    }

    .contact svg.contact_girl {
        display: none;
    }

    .contact svg.contact_man {
        left: 12%;
    }

    .contact svg.contact_phone {
        right: 12%;
    }

    .scene img {
        height: 400px;
    }
}

@media screen and (max-width: 880px) {
    .productsContainer {
        width: calc(270px * 2);
    }

    .review .reviewContainer {
        width: calc(290px * 2);
    }

    .review .reviewContainer .reviewSlides {
        width: 800%;
    }

    .contact {
        height: 700px;
        align-items: flex-end;
    }

    .contact svg.contact_man {
        /* display: none; */
        top: 20%;
        left: 25%;
        transform: translate(-50%, -50%);
    }

    .contact svg.contact_phone {
        height: 250px;
        right: 50%;
        top: 20%;
        transform: translate(50%, -50%);
    }

    .contact svg.contact_lady {
        display: inline;
        right: 25%;
        top: 20%;
        transform: translate(50%, -50%);
    }
}

@media screen and (max-width: 660px) {
    .viewPointPlatform .platform {
        flex-direction: column;
        align-items: center;
    }

    .viewPointPlatform .platform .box {
        width: calc(100% - 60px);
    }

    .scene {
        height: 500px;
        background-size: 170vw 100%;
        animation: scene 40s linear infinite;
    }

    .scene img {
        height: 350px;
    }

    .scene .sceneText {
        width: 60%;
    }

    .scene .sceneText .subTitle {
        font-size: 20px;
    }

    .scene .sceneText .title {
        font-size: 40px;
    }

    .contact svg.contact_lady {
        display: none;
    }

    .contact svg.contact_phone {
        right: 25%;
    }
}

@media screen and (max-width: 600px) {
    .productsContainer {
        width: 270px;
    }

    .review .reviewContainer {
        width: 290px;
    }

    .review .reviewContainer .reviewSlides {
        width: 500%;
    }

    .review .title,
    .products .title,
    .contact .contactContainer .contactTitle {
        font-size: 20px;
        text-align: center;
    }

    .scene {
        height: 450px;
    }

    .scene img {
        height: 320px;
    }

    .scene .sceneText {
        width: 90%;
        padding: 0;
    }

    .scene .sceneText .subTitle {
        font-size: 20px;
    }

    .scene .sceneText .title {
        font-size: 30px;
    }

    .scene .sceneText .searchBar {
        width: fit-content;
    }

    .contact .contactContainer {
        width: calc(100% - 60px);
        margin: 30px;
    }

    .categorybox a p {
        font-size: 13px;
    }
}