:root {
    --size-navbar-width: 75px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    font-size: 10px;
    max-height: 100vh;
    overflow: hidden;
}

.gz-section {
    height: 100vh;
    max-height: 100vh;
    width: 100%;
    min-width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: all .375s ease;
}

.gz-section.home {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    background-image: url("../images/bg-1.jpg");
    position: relative;
}

.gz-section.home:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.gz-section.home h1{
    margin-right: 50px;
    z-index: 50;
    color: #ffffff;
    font-size:1.5rem;
}

.gz-section.home h3 {
    margin-right: 50px;
    z-index: 50;
    color: #ffffff;
    font-size:1.5rem;
    font-weight:normal;
}

.gz-section.home h1 {
    font-size: 4rem;
}

.gz-section.service {
    display: grid;
    grid-template-columns: 3fr 2fr;
    align-items: center;
}

.gz-section.service h2,
h4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 1.2rem;
    text-align: center;
    letter-spacing: 3px;
    font-weight: 300;
}

.gz-section.service p{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 1rem;
    text-align: center;
    letter-spacing: 3px;
    font-weight: 300;
}

.gz-section.service h2 {
    font-size: 1.7rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.gz-section.service p {
    margin-bottom: 20px;
}

.gz-section.service h4 {
    font-weight: 500;
}

.gz-service-container-left {
    order: 1;
    margin: 0 0 0 var(--size-navbar-width);
    padding: 60px 100px;
}

.gz-service-container-right {
    order: 2;
    background-size: cover;
    background-position: 30% center;
    background-repeat: no-repeat;
    background-image: url("../images/bg-2.jpg");
    height: 100%;
}

.gz-section.benefit {
    display: grid;
    grid-template-columns: 2fr 3fr;
}

.gz-benefit-container-left {
    order: 1;
    background-size: cover;
    background-position: 30% center;
    background-repeat: no-repeat;
    background-image: url("../images/bg-3.jpg");
    height: 100%;
}

.gz-benefit-container-right {
    order: 2;
    display: flex;
    flex-direction: column;
}

.gz-section.benefit h1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    font-size: 4rem;
    padding: 75px 100px;
}

.gz-section.benefit img {
    background-size: contain;
    background-position: 30% bottom;
    background-repeat: no-repeat;
    background-image: url("../images/bg-4.jpg");
    height: 100%;
}

.gz-section.blog {
    background-color: yellow;
}

.gz-control-container {
    position: fixed;
    right: 50px;
    bottom: 50px;
    display: block;
    z-index: 999;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.gz-control-button.prev{
background-image:url("../arrow/prev-transparent.png")
}
.gz-control-button.next{

}
@media (max-width: 425px) {
    .gz-section.service {
        grid-template-columns: 1fr;
    }

    .toggle {
        left: 20px;
        right: auto;
    }

    .gz-service-container-left {
        order: 2;
    }

    .gz-service-container-right {
        order: 1;
    }
}