* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

#navbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: #F2AA4CFF;
    line-height: 93px;
}

.logo {
    margin-left: 60px;
    margin-top: 5px;
    cursor: pointer;
}

/* logo */
#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: 0 20px;
}

#navbar ul li a {
    color: black;
    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%;

}

/* navbar ending */
body {
    background-color: bisque;

}

div.main {
    width: 400px;
    margin: 100px auto 0px auto;
}

h2 {
    text-align: center;
    padding: 20px;
}

label,span,h2 {
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.register {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    font-size: 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
    color: #ffff;
}

#register1 {
    margin: 40px;
}

label {
    font-size: 18px;
}

#name {
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 7px;
    background-color: #fff;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

#submit {
    width: 200px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 3px;
    background-color: rgb(242, 170, 76);
    color: #fff;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

/* footer */
footer .container1 {
    margin-top: 120px;
    width: 100%;
    padding: 54px 0%;
    /*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: 335px;
    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(1) {
    color: gold;
    font-size: 14px;
    margin-right: 9px;
    cursor: pointer;
}

.col-1 .info li span:nth-child(1):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 */