#container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 0;
    width: 100%;
    height: 100vh;
    align-items: center;
}

.container-right {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    /* height: 100vh; */
    align-items: center;
    grid-column: 2/2;
    grid-row: 1/3;
}

.container-left {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100vh;
    margin: auto;
    align-items: center;
    justify-content: center;
    grid-column: 1/2;
    grid-row: 1/3;
    background-color: #f5f6fa;
}

h1 {
    color: #0aa045;
    font-size: 4em;
    font-weight: 800;
    padding-bottom: 20px;
}

h2 {
    color: #0aa045;
    font-size: 3em;
    font-weight: 800;
}

h3 {
    color: #000;
    font-size: 2em;
    font-weight: 600;
}

p {
    color: #666666;
    font-size: 1em;
    grid-column: 2/2;
    margin-bottom: 40px;
}

h1,
p,
.view {
    grid-column: 2/2;
    grid-row: 1/1;
    margin-left: 70px;
    margin-right: 300px;
    align-self: center;
    position: relative;
}

.view ul li {
    grid-column: 2/2;
    background: #0aa045;
    width: 130px;
    height: 50px;
    border-radius: 50px;
    text-align: center;
    list-style: none;
    position: relative;
}

.tools {
    grid-column: 2/2;
    grid-row: 1/1;
    margin-left: 70px;
    margin-right: 80%;
    margin-bottom: 30px;
    align-self: center;
    position: relative;
}

.tools h3 {
    color: #0aa045;
    font-size: 20pt;
    margin-bottom: 15px;
}

.tools ul {
    margin-left: 20px;
}



/* .container-left ul li {
    width: 130px;

    height: 50px;
} */

.view a {
    position: absolute;
    top: 50%;
    left: 50%;
    text-decoration: none;
    color: #fff;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}






.arrow button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 20px 5px;
    color: #3c376f;
    font-size: 2rem;
}

.arrow button span {
    position: relative;
    display: inline-block;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.previous:hover span {
    transform: translateX(-10px) scale(1.2);
}

.next:hover span {
    transform: translateX(10px) scale(1.2);
}

.slider-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

.slider-nav li {
    display: flex;
    flex: 2;
    text-align: center;
    justify-content: center;
}

img,
iframe {
    max-width: 80%;
    max-height: 80vh;
    display: none;
    box-shadow: 10px 10px 20px 0 rgba(94, 47, 59, 0.2);
}

img.active,
iframe.active {
    margin: auto;
    display: block;
    animation: fadeImg 0.8s;
}

.slider-nav .arrow {
    flex: 0 0 20%;
}

.slider-nav span {
    display: block;
    width: 100%;
}

@keyframes fadeImg {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* test */

@media only screen and (max-width: 750px) {
    #container {
        display: flex;
        flex-direction: column;
    }

    .container-right {
        order: 1;
        margin-top: 80px;
    }

    .container-left {
        order: 2;
    }

    p {
        margin-right: 40px;
    }

}