:root {
    --container-bg-color: #333;
    --left-bg-color: rgb(0, 0, 0, 0.3);
    --left-button-hover-color: (0, 0, 0, 0.3);
    --right-bg-color: rgb(43, 43, 43, 0.8);
    --right-button-hover-color: rgb(0, 0, 0, 0.3);
    --hover-width: 75%;
    --other-width: 25%;
    --speed: 1000ms;
}

.logo {
    position: fixed;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    top: 70px;
    left: 0;
    z-index: 1040;
    justify-content: center
}

body {
    padding: 0;
    margin: 0;
}

.btn-popup-submit {
    width: 100%;
    height: 40px;
    font-size: 15px;
    background: #CC9E66;
    color: #fff;
}

html,
body {
    padding: 0;
    margin: 0;
    font-family: 'Lato', sans-serif;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
}

h1 {
    font-size: 3rem;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 40%;
    text-transform: uppercase;
    transform: translateX(-50%);
    white-space: nowrap;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 60%;
    height: 55px;
    width: 180px;
    text-align: center;
    color: #fff;
    border: #fff solid 0.2rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transform: translateX(-50%);
}

.button:hover {
    color: #fff;
    border: #fff solid 0.2rem;
    text-decoration: none;
}

.split.left .button:hover {
    background-color: var(--left-button-hover-color);
    border-color: var(--left-button-hover-color);
}

.split.right .button:hover {
    background-color: var(--right-button-hover-color);
    border-color: var(--right-button-hover-color);
}

.split {
    position: absolute;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.split.left {
    left: 0;
    background: url("../img/home/cleaning-home.webp") center center no-repeat;
    background-size: cover;
}

.split.left:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--left-bg-color);
}

.split.right {
    right: 0;
    background: url("../img/home/garden-cleaning.webp") center center no-repeat;
    background-size: cover;
}

.split.right:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--right-bg-color);
}

.split.left,
.split.right,
.split.right:before,
.split.left:before {
    transition: var(--speed) all ease-in-out;
}

.hover-left .left {
    width: var(--hover-width);
}

.hover-left .right {
    width: var(--other-width);
}

.hover-left .right:before {
    z-index: 2;
}

.hover-right .right {
    width: var(--hover-width);
}

.hover-right .left {
    width: var(--other-width);
}

.hover-right .left:before {
    z-index: 2;
}

@media(max-width: 800px) {
    h1 {
        font-size: 2.3rem;
    }

    .button {
        width: 12rem;

    }
}

@media(max-height: 700px) {
    .button {
        top: 60%;
    }
}

@media only screen and (max-width: 700px) {
    .logo_img {
        width: 230px;
        height: auto;
    }
}


.show-lg {
    display: block;
}

.show-xs {
    display: none
}

@media (min-width:300px) and (max-width:700px) {
    .show-lg {
        display: none;
    }

    .show-xs {
        display: block;
    }
}


.topcontainer {
    position: fixed;
    width: 100%;
    height: 44vh;
    background: url("../img/slider/1.jpeg") center center no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;

}

.bottomcontainer {
    position: fixed;
    width: 100%;
    height: 46vh;
    bottom: 0;
    background: url("../Garden-img/sliders/banner-1.jpg") no-repeat;
    background-position: center;
    background-size: cover;
}

.content-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0, .4);
    padding: 25px;
    display: flex;
    align-items: end;
    opacity: 1;
    flex-wrap: wrap;
    left: 0px;
    transition: .5s;
    color: #fff;
    padding-bottom: 20px;
}


.content-container h3 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 25px;
}

.content-container a {
    display: flex;
    width: 150px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 100px;
    text-decoration: none;
    align-items: center;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    justify-content: center;
}

.content-container i {
    font-size: 22px;
    color: #fff;
    margin-left: 15px;
}