
/*--------------------Front Page--------------------*/

.spacing {
    width: 60%;
    display: block;
    margin: auto;
}

.block-1 {
    background-color: #5abcd3;
    height: auto;
    z-index: 0;
}

.block-header {
    background-image: linear-gradient(#5abcd3 0%, white 10%, white 90%, #5abcd3 100%);
    height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
    z-index: 0;
}

.front-banner {
    display: block;
    margin: auto;
}

.logo-block-1 {
    position: absolute;
    z-index: 2;
    width: 20%;
    margin-left: 10%;   
}

.puppy-bath {
    z-index: 1;
    width: 30%;
    position: relative;
    margin-left: 20%;
    margin-top: 5%;
    margin-bottom: 40px;
}

.block-1-text {
    width: 40%;
    max-height: auto;
    background-color: #fff;
    position: absolute;
    z-index: 3;
    margin-left: 45%;
    margin-top: 10%;
    padding: 0px 20px 20px 20px;
    border: 2px solid #a4a4a4
}

.block-1-title {
    font-size: 30px;
}

.view-products {
    background-color: #fff;
    border: 3px solid #5abcd3;
    cursor: pointer;
    padding: 10px;
    color: #111111;
    transition-duration: 0.2s;
    font-weight: 600;
    font-family: arial;
}

.view-products:hover {
    background-color: #5abcd3;
    color: #fff;
}

.block-2 {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.block-2-img {
    flex: 0 0 30%;   /* fix image at 30% of container */
    max-width: 40%;  /* prevent it from growing larger */
    height: auto;    /* keep aspect ratio */
    margin-left: 5%;
}

.blocks {
    flex: 1;                          /* take the rest of the row */
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    grid-gap: 20px;
}

.cell-1, .cell-2, .cell-3 {
    background-color: #fff;
    padding: 20px;
    border: 2px solid #a4a4a4;
    display: flex;
    flex-direction: column;
}


.bottles {
    vertical-align: top;
    width: auto;
    height: 190px;
    background-color: transparent;
    display: inline-block;
    margin: 0px 0px 20px 20px;
    padding: 0px 0px 0px 0px;
}

.bottle {
	width: 35%;
    margin-top: 15%;
}

.block-3 {
	height: 550px;
	width: 100%;
    background: #fff;
    background-size: 100%;
    margin-top: 40px;
}

.view-products-2 {
    background-color: white;
    border: 3px solid #5abcd3;
    cursor: pointer;
    padding: 10px;
    color: #5abcd3;
    transition-duration: 0.2s;
    font-weight: 600;
    font-family: arial;
}

.slideshow-container {
  height: inherit;
}

@media (max-width:800px) {
    .logo-block-1 {
        display: none;
    }
    .puppy-bath {
        display: inline-block;
        width: 80%;
        margin-left: 10%;
        margin-top: 10px;
    }
    .block-1 {
        height: auto;
    }
    .block-1-title {
        font-size: 22px;
    }
    .block-1-text {
        display: block;
        height: auto;
        margin-top: 60%;
        margin-left: 10%;
        width: 80%;
        font-size: 22px;
        padding: 10px;
        box-sizing: border-box;
    }
    .view-products {
        display: none;
    }
    .block-2 {
        margin-top: 100px;
        height: 1300px;
    }
    .block-2-img {
        margin-top: 40px;
        margin-left: 10%;
        width: 80%;
    }
    .blocks {
        display: block;
    }
    .cell-1, .cell-2, .cell-3 {
        width: 80%;
        margin-left: 10%;
        margin-bottom: 20px;
        height: auto;
        font-size: 22px;
        padding: 10px;
        box-sizing: border-box;
    }
    .bottles {
        width: 80%;
        height: auto;
        background-color: transparent;
        margin-left: 10%;
}
    h2 {
        font-size: 22px;
    }
    h1 {
        font-size: 22px;
    }
    .block-3 {
        background: #5abcd3;
    }
}

