* {
    margin: 0;
    padding: 0;
   font-family: sans-serif; 
   box-sizing: border-box;
}


.container {
    width: 100%;
    position: relative;
}

/* navbar */
#navbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: #F2AA4CFF;
    line-height: 93px;
}

#logo {
    height: 77px;
}
#logo img {
    height: 53px;
    margin: 4px 40px;        /* Top, Left*/
    
}

/* Navigation Bar: List Styling */
#navbar ul li {
    display: inline-block;
    position: relative;
    margin: 0px 20px;      
}

#navbar ul li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    text-transform: uppercase;
}

#navbar ul li::after {
    content: '';
    height: 3px;
    width: 0;
    position: absolute;
    background: black;
    left: 0;
    bottom: 35px;
    transition: 0.5s ease;
}

#navbar ul li:hover::after {
    width: 100%;
}
/* ending navbar */

body {
    background: #101820FF;
}

.container .main {
    width: 95%;
    height: 45%;
    position: absolute;
    left: 2%;
    top: 14%;   
    background-image: url("Avengers1.jpeg");
    background-size: 100% 100%;
    box-shadow: 1px 2px 10px 5px white;
    /*hr (left & Right), Vr(Top & Bottom), how much blur, spread,color */
    animation: slider 9s infinite linear;
    /*Name time until? (smooth: same speed from start to end)*/
}

@keyframes slider {
    0% {
        background-image: url("Avengers1.jpeg");
    }
    
    25% {
        background-image: url("dead-pool.jpg");
    }
    
    75% {
        background-image: url("movies.jpg");
    }
}

/* footer */
footer .container1 {
    margin-top: 700px;
    width: 100%;
    padding: 45px 7%;                /*Top, Left*/
    background-color: black;
    display: flex;
}

footer .container1 div {
    text-align: center;
}

.container1 div h3 {
    position: relative;
    color: #fff;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/*Underline*/
.container1 .col-1 h3::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 41px;
    width: 56px;
    height: 2px;
    background-color: rgb(255, 0, 0);
}

.container1 .col-2 h3::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 250px;
    width: 75px;
    height: 2px;
    background-color: rgb(255, 0, 0);
}

.container1 .col-3 h3::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 44px;
    width: 59px;
    height: 2px;
    background-color: rgb(255, 0, 0);
}

/* Col 1*/
.col-1 {
    width: 200px;
}

.col-1 .info li {
    display: flex;
    margin: 16px;
}

.col-1 .info li span:nth-child(n) {
    color: gold;
    font-size: 14px;
    margin-right: 9px;
    cursor: pointer;
}

.col-1 .info li span:nth-child(n):hover {
    color: #fff;
}

.col-1 .info li p {
    color: bisque;
    font-size: 15px;
}

.col-1 .info li p:hover {
    color: white;
}
/*For phone*/
.col-1 .info li a {
    color: bisque;
    text-decoration: none;
    font-size: 15px;
}
.col-1 .info li a:hover {
    color: white;
}

/*Ending  Col 1*/


/* Col 2 */
.col-2 {
    flex-grow: 1;
}

/* Underline */
form input {
    width: 400px;
    height: 45px;
    border-radius: 4px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
    border: none;
}

form button {
    background: transparent;
    border: 3px solid gold;
    color: #fff;
    border-radius: 30px;
    padding: 10px 30px;  
    /*10 px from top & bottom, 30 px from left & Right*/
    cursor: pointer;
}

/* End col2 */

/* Col3 */
.socialicons {
    margin-bottom: 10px;
    display: flex;

}

.socialicons li {
    list-style: none;
}

.socialicons li a {
    width: 30px;
    display: inline-flex;
    text-decoration: none;
    font-size: 22px;
    margin: 10px;
    color: gold;
}

.socialicons li a:hover {
    font-size: 22px;
    color: white;
}


.quicklinks ul li a {
    color: bisque;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
}

.quicklinks ul li a:hover {
    color: #fff;
}
/* End Col3 */