#other-products {
    display: flex;
}

.product-tile {
    display: flex;
    width: calc(100%/3);
    height: 380px;
    flex-wrap: wrap;
    flex-direction: column;
}

#main-product {
    width: 100%;
    height: 630px;
}

.product-tile h1 {
    font-family: var(--tit-font);
    font-weight: var(--tit-wght);
    font-size: 30px;
    color: var(--ac-color);
    text-align: center;
    margin-top: 15px;
}

#main-product h1 {
    font-size: var(--tit-size);
    margin-top: 20px;
}

.product-tile p {
    font-family: var(--des-font);
    font-weight: var(--lex-wght);
    font-size: 12px;
    color: var(--ac-color);
    text-align: center;
    /*margin-top: -20px;*/
}

#main-product p {
    font-size: 20px;
    margin-top: 0px;
}

.product-tile img {
    width: 300px;
    height: 200px;
    border: 5px solid var(--ac-color);
    border-radius: 30px;
    margin: 20px auto auto auto;
}

#main-product img {
    width: 600px;
    height: 400px;
    border-radius: 50px;
}

.product-tile span {
    display: flex;
    width: 300px;
    justify-content: space-around;
    margin: 5px auto auto auto;
}

#main-product span {
    width: 500px;
}

.product-tile span a {
    display: flex;
    width: 130px;
    height: 45px;
    background-color: var(--ac-color);
    border: 5px solid var(--ac-color);
    border-radius: 100px;
    text-decoration: none;
    font-family: var(--puw-font);
    font-weight: var(--lex-wght);
    font-size: 15px;
    color: var(--menu-color);
    justify-content: center;
    align-items: center;
    transition-timing-function: ease-in-out;
    transition-duration: 0.4s;
    cursor: pointer;
}

.product-tile span a:hover {
    background-color: var(--menu-color);
    color: var(--ac-color);
    transition-timing-function: ease-in-out;
    transition-duration: 0.4s;
}

#main-product span a {
    width: 180px;
    height: 50px;
    font-size: 20px;
}

.divider-mob {
    display: none;
}

@media (max-width: 930px) {
    #main-product {
        width: 100%;
        height: 380px;
    }

    #main-product h1 {
        font-size: 30px;
    }

    #main-product p {
        font-size: 12px;
        margin-top: -20px;
    }

    #main-product img {
        width: 300px;
        height: 200px;
        border-radius: 30px;
    }

    #main-product span {
        width: 300px;
        margin: 5px auto auto auto;
    }

    #main-product span a {
        width: 130px;
        height: 45px;
        font-size: 15px;
    }

    #other-products {
        display: flex;
        height: 1150px;
        margin: auto;
        flex-wrap: wrap;
        flex-direction: column;
    }

    #other-products div {
        width: 100%;
        height: auto;
        margin: auto;
        overflow: hidden;
    }

    .divider-mob {
        display: block;
        width: 100%;
        height: 5px;
        background-color: var(--ac-color);
        border: none;
    }
}
