* {
    margin: 0; 
    padding: 0;
    font-family: sans-serif;
}
.container {
    width: 100%;
    min-height: 800px;
    padding-left: 8%;
    padding-right: 8%;
    box-sizing: border-box;
    overflow: hidden;
}
.navbar {
    width: 100%;
    display: flex;
    align-items: center;
}
.logo {
    width: 150px;
    cursor: pointer;
    margin: 30px 0 0 0;
}
.menu-icon {
    width: 25px;
    cursor: pointer;
    display: none;
}
nav {
    flex: 1;
    text-align: right;
}
nav ul li {
    list-style: none;
    display: inline-block;
    margin-right: 30px;
}
nav ul li a {
    text-decoration: none;
    color: green;
    font-size: 14px;
}
nav ul li a:hover {
    color: black;
}
.anchor {
    border: 0;
    border-radius: 3px;
    color: white;
    background-color: green;
    width: 80px;
    height: 30px;
    padding: 15px;
    margin-top: 20px;
    font-size: 18px;
    text-decoration: none;
}
.anchor3 {
    border: 0;
    border-radius: 3px;
    color: white;
    background-color: green;
    width: 80px;
    height: 30px;
    padding: 15px;
    font-size: 16px;
    text-decoration: none;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 100px 0;
}
.col1 {
    flex-basis: 40%;
    position: relative;
    margin-left: 50px;
}
.col1 h2 {
    font-size: 54px;
}
.col1 h3 {
    font-size: 30px;
    color: #707070;
    font-weight: 100;
    margin: 20px 0 10px;
}
.col1 p {
    font-size: 16px;
    color: #b7b7b7;
    font-weight: 100;
}
.col1 h4 {
    margin: 30px 0;
    font-size: 20px;
}
button {
    width: 140px;
    border: 0;
    padding: 12px 10px;
    outline: none;
    color: #fff;
    background: linear-gradient(to right, #1be636, #088b1a);
    border-radius: 6px;
    cursor: pointer;
    transition: width 0.5s;
}
button:hover {
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.col1::after {
    content: "";
    width: 10px;
    height: 57%;
    background: linear-gradient(#2ad680, #178d48);
    position: absolute;
    left: -40px;
    top: 8px;
}
.col2{
    position: relative;
    flex-basis: 60%;
    display: flex;
    align-items: center;
}
.col2 .controller {
    width: 90%;
}
.color-box {
    position: absolute;
    right: 0;
    top: 0;
    background: linear-gradient(to right, #2ad680, #178d48);
    border-radius: 20px 0 0 20px;
    height: 100%;
    width: 80%;
    z-index: -1;
    transform: translateX(150px);
}
.add-btn img {
    width: 35px;
    margin-bottom: 5px;
}
.add-btn {
    text-align: center;
    color: #fff;
    cursor: pointer;
}
.container2 {
    display: flex;
    background: grey;
    width: 100%;
    }
    .container2 > div {
    width: 33.3%;
    height: 250px;
    margin: 5px;
    padding: 5px;
    line-height: 30px;
    font-size: 16px;
    border-radius: 10px;
    color: white;
    overflow: hidden;
    }
    .head2 {
        margin: 70px 0 10px 0;
    }
    .ctn1 {
        background-color: rgb(151, 167, 7);
    }
    .ctn2 {
        background-color: rgb(75, 74, 74);
    }
    .ctn3 {
        background-color: green;
    }
    .container5 {
        background: rgb(216, 205, 141);
    }
    .container5::after {
        content: "";
        display: block;
        clear: both;
    }
    .box4 {
        width: 40%;
        height: 400px;
        margin: 0 40px 40px 40px;
        line-height: 30px;
        color: green;
        float: left;
    }
    .box4 > img {
        width: 100%;
        height: 350px;
    }

@media only screen and (max-width:700px) {
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    .container{
        min-height: 500px;
    }
    nav ul {
        width: 100%;
        background: linear-gradient(#2ad680, #178d48);
        position: absolute;
        top: 75px;
        right: 0;
        z-index: 2;
    }
    nav ul li {
        display: block;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    nav ul li a {
        color: #fff;
    }
    .menu-icon {
        display: block;
    }
    #menuList {
        overflow: hidden;
        transition: 0.5s;
    }
    .anchor {
        padding: 5px;
    }
    marquee {
        font-size: 12px;
    }
    .row {
        flex-direction: column-reverse;
        margin: 50px 0;
    }
    .col2 {
    flex-basis: 100%;
    margin-bottom: 50px;
    }
    .col2 .controller {
        width: 77%;
    }
    .color-box {
    transform: translateX(75px) ;
    }
    .col1 {
    flex-basis: 100%;
    }
    .col1 h2 {
        font-size: 35px;
    }
    .col1 h3 {
        font-size: 15px;
    }
    .container2 {
    display: flex;
    flex-direction: column;
    background: grey;
    }
    .container2 > div {
    width: 100%;
    height: 100px;
    margin: 5px;
    font-size: 12px;
    line-height: 14px;
    color: white;
    overflow: hidden;
    }
    h3 {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .ctn1 {
        background-color: rgb(151, 167, 7);
    }
    .ctn2 {
        background-color: rgb(75, 74, 74);
    }
    .ctn3 {
        background-color: green;
    }
    .container5 {
        background: rgb(216, 205, 141);
        text-align: center;
    }
    .container5::after {
        content: "";
        display: block;
        clear: both;
    }
    .box4 {
        width: 100%;
        height: 370px;
        margin: 0 0 0 0;
        line-height: 20px;
        color: green;
        float: left;
    }
    .box4 > img {
        width: 100%;
        height: 350px;
    }
}
