* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

html,
body {
    height: 100%;
    width: 100%;
}

.main {
    height: 100%;
    width: 100%
}

.part1 {
    height: 65%;
    width: 100%;
    display: flex;
    position: relative;
}

.img1 {
    width: 60%;
    height: 100%;
    position: relative;
}

.navigation {
    position: absolute;
    width: 100%;
    height: 100%;

    imgs {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

.imgs {
    height: 100%;
    width: 100%;

    img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

.navigation ul {
    width: 100%;
    list-style: none;
    display: flex;
    gap: 45px;
    align-items: center;
    justify-content: flex-start;
    padding: 30px 35px;
}

.navigation ul li {
    color: hsl(0, 100%, 100%);
    font-size: 18px;
    text-transform: lowercase;
    cursor: pointer;
    color: #fff;
}

.navigation ul .borders {
    border-bottom: 3px solid transparent;
    padding-bottom: 8px;
}

.navigation ul .borders:hover {
    border-bottom: 3px solid hsl(0, 100%, 100%);
    transition: all 0.8s;
}

.img2 {
    width: 40%;
    height: 100%;
    background-color: hsl(0, 100%, 100%);
    position: relative;

    .texts {
        height: 100%;
        width: 100%;
        padding: 0vh 3vw;
        display: flex;
        flex-direction: column;
        color: hsl(0, 0%, 0%);
        justify-content: center;
        align-items: center;
        gap: 20px;

        h2 {
            font-size: 35px;
            width: 70%;
        }

        .long-text {
            width: 70%;
            font-size: 13.5px;
            opacity: 0.5;
        }

        .shop {
            width: 70%;
            font-size: 18px;
            text-transform: uppercase;
            font-family: 600;
            opacity: 0.5;
            letter-spacing: 15px;

            img {
                color: hsl(0, 100%, 100%);
                font-size: 25px;
                font-weight: 800
            }
        }
    }
}

.arrows {
    height: 60px;
    width: 120px;
    display: flex;
    position: absolute;
    bottom: 0px;
    left: 0px;

    .one {
        height: 100%;
        width: 50%;
        display: flex;
        background-color: hsl(0, 0%, 0%);
        justify-content: center;
        align-items: center;
        font-size: 20px;
        font-weight: 900;
    }

    .two {
        height: 100%;
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        font-weight: 900;
        background-color: hsl(0, 0%, 0%);
    }

    .first:hover,
    .two:hover {
        background-color: hsl(0, 0%, 27%);
    }
}

.bottm {
    height: 35%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;

    .box1 {
        height: 100%;
        width: 28%;
        img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }
    }

    .box2 {
        height: 100%;
        width: 44%;
        background-color: hsl(0, 100%, 100%);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        h2 {
            width: 70%;
            font-weight: 800;
            letter-spacing: 4px;
            text-transform: uppercase;
        }

        p {
            margin-top: 15px;
            line-height: 20px;
            font-size: 14.5px;
            opacity: 0.5;
            width: 70%;
        }
    }

    .box3 {
        height: 100%;
        width: 28%;

        img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }
    }

}

@media (max-width:600px) {

    .part1 {
        height: 100%;
        width: 100%;
        flex-direction: column;
        .img1 {
            height: 50%;
            width: 100%;
            background-color: red;
            position: relative;
        }

        .navigation {
            display: none;
        }

        .imgs {
            height: 50vh;
            width: 100vw;
            background-color: red;

            .ravi0 {
                height: 100%;
                width: 100%;
                object-fit: cover;
            }
        }

        .img2 {
            height: 50vh;
            width: 100%;
            position: relative;
            .texts {
                height: 100%;
                width: 100%;
                padding: 2.5vw 0vh;
                position: relative;

                h2 {
                    padding-top: 2.5vh;
                    line-height: normal;
                    font-size: 2rem;
                }

                .long-text {
                    padding-top: 3.5vh;
                    font-size: 14.5px;
                    opacity: 0.55;
                    line-height: 2.65vh;
                }

                .shop {
                    width: 70%;
                    font-size: 18px;
                    text-transform: uppercase;
                    font-family: 600;
                    opacity: 0.8;
                    letter-spacing: 13px;
                    color: #000;
                    padding-top: 5vh;
                }
            }
        }

        .arrows {
            height: 60px;
            width: 120px;
            position: absolute;
            top: -60px;
            .one {
                height: 100%;
                width: 50%;
                display: flex;
                background-color: hsl(0, 0%, 0%);
                justify-content: center;
                align-items: center;
                font-size: 20px;
                font-weight: 900;
            }

            .two {
                height: 100%;
                width: 50%;
                display: flex;
                justify-content: center;
                align-items: center;
                font-size: 20px;
                font-weight: 900;
                background-color: hsl(0, 0%, 0%);
            }

            .first:hover,
            .two:hover {
                background-color: hsl(0, 0%, 27%);
            }
        }
    }

    .bottm {
        flex-direction: column;
        height: 100%;
        width: 100%;

        .box1 {
            height: 33.33%;
            width: 100%;

            img {
                height: 100%;
                width: 100%;
                object-fit: cover;
            }
        }

        .box2 {
            height: 33.33%;
            width: 100%;

            h2 {
                letter-spacing: 8px;
                letter-spacing: 2px;
                justify-content: flex-start;
            }

            p {
                margin-top: 10px;
                line-height: 18px;
            }
        }

        .box3 {
            height: 33.33%;
            width: 100%;

            img {
                height: 100%;
                width: 100%;
                object-fit: cover;
            }
        }
    }
}
