*,
html {
    margin: 0;
    padding: 0;
}

body {
    background-color: greenyellow;
}

.container-img {
    position: absolute;
}

.container-navbar {
    background-color: yellowgreen;
    width: 100%;
    height: 50px;
}

.ul-navbar {
    display: flex;
    justify-content: right;
}

.img-navbar {
    width: 200px;
    height: 100px;
}

.li-navbar {
    list-style-type: none;
    padding: 0px;
    margin-top: 10px;
    margin: 15px;
    font-size: 15px;
}

.li-navbar:hover {
    background-color: whitesmoke;
    transition: .2s ease-in-out;
    transition-delay: .3s;
    border-radius: 6px;
}

.a-navbar {
    color: whitesmoke;
    font-weight: bold;
    text-decoration: none;
    list-style-type: none;
}

.a-list {
    color: blue;
    font-weight: bold;
}

.a-navpro {
    list-style-type: none;
    text-decoration: dashed;
    color: white;
    margin: 10px;
}

.search {
    list-style-type: none;
    margin-top: 10px;
    margin-right: 10px;
}

.container-content {
    margin-top: 35px;
    background-color: black;
    width: 100%;
    height: 350px;
}

.banner-text {
    display: flex;
    color: gold;
    padding: 10px;
    font-style: oblique;
    font-size: larger;
    font-weight: bolder;
}

.h2-text1 {
    margin-left: 650px;
    margin-top: 150px;
    position: absolute;
    font-family: 'gadugi';
    width: 35%;
    font-weight: bolder;
    font-style: normal;
}

.h2-text2 {
    position: absolute;
    margin-top: 185px;
    margin-left: 650;
    font-style: normal;
    color: whitesmoke;
    font-weight: bolder;
    width: 45%;
}

.container2 {
    background-color: #fff;
    display: flex;
    width: 100%;
    height: 350px;
    margin-top: -45px;
}

.img-content {
    margin-top: 29px;
    width: 650px;
    height: 350px;
}

.img-content2 {
    margin-top: 30px;
    width: 655px;
    height: 350px;
}

.wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    animation: slide 16s infinite;

}

.container-content2 {
    margin-top: -171px;
    margin-left: 310px;
    display: flex;
    width: 650px;
    height: 350px;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    overflow: hidden;
    border: 20px solid #fff
    border-radius: 8px:
    border-shadow: 10px 25px 50px rgba(30,30,200,0.3)
}

.img1-content2 {
    width: 650px;
    height: 350px;
}

.img2-content2 {
    width: 650px;
    height: 350px;
}

@keyframes slide {
    0% {
        transform: translate(0);
    }
    25% {
        transform: translate(0);
    }
    30% {
        transform: translate(-100%);
    }
    50% {
        transform: translate(-100%);
    }
    55% {
        transform: translate(-200%);
    }
    75% {
        transform: translate(-200);
    }
    80% {
        transform: translate(-300);
    }
    100% {
        transform: translate(-300);
    }

}

.container-footer {
    background-color: darkblue;
    margin-top: -150px;
    width: 100%;
    height: 75px;
}

.img-footer {
    display: flex;
    justify-content: center;
    alignment-baseline: central;
    width: 100%;
    height: 75px;
}
