a:hover, a:active {
    color: #3bc6ed;
}

a.hyperlink:hover {
    color: #33469d;
}

.banner-image {
    margin: auto;
    display: block;
    width: 30%;
    background: #fff;
    padding: 20px 20px;
}

.dress-code-image {
    width:70%;
}

footer.four-color-bar {
    background: #fff;
    padding: 30px 0 !important;
}

.social-media .social-media-icon {
    border: 1px solid #000;
    border-radius: 50%;
    transition-timing-function: ease-in-out;
    transition-duration: .2s;
    margin: 0 4px;
}

.social-media a {
    display: block;
    text-align: center;
    align-content: center;
    width: 40px;
    height: 40px;
}

.social-media a > i {
    color: #000;
    transition-timing-function: ease-in-out;
    transition-duration: .2s;
}

.social-media .social-media-icon:hover {
    border-color: #3bc6ed;
}

.social-media a:hover > i{
    color: #3bc6ed;
}

/* Logout Btn Style */
.Btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition-duration: .3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
    background-color: rgb(255, 65, 65);
}

/* plus sign */
.sign {
    width: 100%;
    transition-duration: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sign svg {
    width: 17px;
}

.sign svg path {
    fill: white;
}
/* text */
.text {
    position: absolute;
    right: 0%;
    width: 0%;
    opacity: 0;
    color: white;
    font-size: 1.2em;
    font-weight: 600;
    transition-duration: .3s;
}
/* End */

@media (max-width: 769px) {
    .container {
        width: 90%;
    }
}

@media (min-width: 576px) {
    /* hover effect on button width */
    .Btn:hover {
        width: 125px;
        border-radius: 40px;
        transition-duration: .3s;
    }

    .Btn:hover .sign {
        width: 30%;
        transition-duration: .3s;
        padding-left: 20px;
    }
    /* hover effect button's text */
    .Btn:hover .text {
        opacity: 1;
        width: 70%;
        transition-duration: .3s;
        padding-right: 10px;
    }
    /* button click effect*/
    .Btn:active {
        transform: translate(2px ,2px);
    }
}

@media screen and (max-width:480px) {
    .reg-form {
        padding: 1.5rem!important;
    }

    .banner-image {
        width:50%;
    }

    .dress-code {
        padding-bottom:0px;
    }

    .dress-code h4{
        font-size:15px;
    }

    .dress-code h5{
        font-size:13px;
    }

    .dress-code p{
        font-size:10px;
    }

    .dress-code-image {
        width:100%;
    }
}