body {
    margin: 0;
    padding: 0;
    padding-bottom: 4vw;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: linear-gradient(90deg, rgb(223, 242, 250), rgb(253, 228, 232));
    color: #5243c2;
    font-weight: 450;
}

#bubbles {
    position: absolute;
    animation-name: bubbles-scroll;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-delay: 1s;
    bottom: 100vh;
    left: 100vw;
    height: 100vh;
}

@keyframes bubbles-scroll {
    0% {
        bottom: 0vh;
        left: 0vw;
    }

    100% {
        bottom: 100vh;
        left: 100vw;
    }
}

#logo {
    width: 30vw;
    margin-top: 1vw;
    margin-left: 35vw;
}

.main-divs {
    width: 90vw;
    margin: 5vw auto 0vw auto;
    text-align: center;
}

.headings {
    color: #ba2cde;
    font-size: 2.5vw;
    font-weight: 700;
    box-shadow: 1px 1px 10px 1px #5243c2;
    width: 30%;
    margin-left: auto;
    margin-right: auto;
    padding: 0.5vw;
    border-radius: 1vw;
    background-color: #ebe8ff;
}

#social-div {
    display: flex;
    justify-content: space-between;
    color: #ba2cde;
    font-weight: 600;
}

.social-inner-divs {
    width: 30%;
}

#social-tijarat {
    text-align: left;
}

#tijarat-logo,
#daraz-logo {
    width: 15%;
}

#social-daraz {
    text-align: center;
}

#social-facebook {
    text-align: right;
}

#facebook-logo {
    width: 7.5%;
}

#facebook-text {
    color: #4267B2;
    font-weight: 900;
}

a {
    text-decoration: none;
}

#about-content-div {
    margin-left: 1vw;
    margin-right: 1vw;
}

#about-capis-text {
    text-align: center;
}

.content-divs {
    font-size: 1.5vw;
    text-align: justify;
}

#capis-logo {
    width: 15%;
    box-shadow: 2.5px 2.5px 10px 5px #ba2cde;
    margin-left: 42.5%;
    padding: 0.5vw;
    box-sizing: border-box;
    margin-top: 1vw;
    margin-bottom: 1vw;
    background-color: #FFFFFF;
    border-radius: 0.5vw;
}

#flagship-content-div {
    /* position: relative; */
    display: flex;
    text-align: justify;
    justify-content: space-between;
    box-shadow: 2.5px 2.5px 10px 2.5px #ba2cde;
    box-shadow: 1px 1px 10px 1px #5243c2;
    border-radius: 1vw;
}

#flagship-text,
#flagship-img {
    position: relative;
    width: 49%;
    padding: 1vw;
}

#qualities {
    position: absolute;
    height: 70%;
    left: -30%;
    top: 25%;
}

#flagship-img {
    border-radius: 20px;
    aspect-ratio: 1;
}

#washing-powder-img {
    width: 100%;
    height: 100%;
    border-radius: 1vw;
}

#products-img-main-div {
    display: flex;
    justify-content: space-between;
}

.products-img-divs {
    width: 30%;
    box-shadow: 2.5px 2.5px 10px 2.5px #ba2cde;
    box-shadow: 1px 1px 10px 1px #5243c2;
    border-radius: 1vw;
    display: flex;
    text-align: center;
    justify-content: center;
    padding-top: 1vw;
    padding-bottom: 1vw;
}

.product-img {
    width: 95%;
    border-radius: 1vw;
}

#sizes-list {
    list-style: circle;
    font-size: 2vw;
    color: #5243c2;
    font-weight: 800;
}

.capis-in-text {
    width: 4vw;
}

#promises-list {
    list-style: circle;
    font-size: 1.75vw;
    color: #ba2cde;
    font-weight: 600;
}

#footer {
    border-top: 2px solid #5243c2;
    padding-top: 1vw;
}

#footer-content {
    text-align: center;
}

@media only screen and (max-width: 767px) {

    .headings {
        font-size: unset;
        width: 100%;
        height: 3vh;
        margin-top: 5vh;
    }

    #capis-logo {
        width: 30%;
        box-shadow: 1px 1px 10px 1px #ba2cde;
        margin-left: 35%;
    }

    .content-divs {
        font-size: unset;
        flex-direction: column;
    }

    #qualities {
        height: 60%;
        top: 25%;
        left: 72.5%;
    }

    #tijarat-logo,
    #daraz-logo {
        width: 25%;
    }

    #facebook-logo {
        width: 12.5%;
    }

    #social-tijarat,
    #social-daraz,
    #social-facebook {
        text-align: left;
        margin-bottom: 1vw;
    }

    #flagship-text,
    #flagship-img {
        width: 98%;
    }

    #products-img-main-div {
        flex-direction: column;
    }

    .products-img-divs {
        width: 100%;
        margin-bottom: 2vw;
    }

    #sizes-list {
        font-size: unset;
    }

    .capis-in-text {
        width: 10vw;
    }

    #promises-list {
        font-size: unset;
    }

}