* {
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;
    box-sizing: border-box;
}
body{
    font-family: sans-serif;
    color: black;
    line-height: 1.6;
    background-color: #fff;
}
/*MENU*/
.navbar{
    padding: .1rem 1rem !important;
}
.menu-bar{
    background-image: linear-gradient(-90deg, #d38312, #FF00FF);
}
.navbar-brand img{
    height: 30px !important;
    width: 50px !important;
    margin-top: 5px;
    margin-left: 20px;
}
.nav-link{
    font-size: 16px;
    margin: 8px;
    color: #fff !important;
    font-weight: 500;
}
.navbar-nav{
    text-align: left;
    margin-right: 10px;
}
/*DROPDOWN MENU*/
.dropdown-menu{
    animation-name: atthover;
    animation-duration: 1s;
    animation-iteration-count: finite;
    background-image: linear-gradient(-90deg, #d38312, #FF00FF);
    height: 105px;
}
.dropdown-menu a{
    color: #fff !important;
}
.dropdown-menu:hover{
    color: #fff !important;
}
.dropdown:hover{
    animation-play-state: running;
}
.dropdown:hover> .dropdown-menu{
    display: block;
}
.dropdown-item:hover{
    background-color: #5AB9EA !important;
}
.navbar .dropdown-menu a{
    text-align: left !important;
}
@keyframes atthover{
    0%{
        opacity: 0;
        margin-top: 20px;
    }
    50%{
        opacity: 1;
        margin-top: 0px;
    }
    100%{
        opacity: 100%;
    }
}
.menu-bar .navbar-toggler{
    padding-right: 20px;
    outline: none !important;
    border: none !important;
}
.navbar .fa{
    color: #fff !important;
    font-size: 26px;
}
.nav-link:hover{
    font-weight: 600;
    border-bottom: 2px solid #fff;
}
@media only screen and (max-width: 1000px) {
    .nav-link:hover{
        border-bottom: none !important;
    }
}

/*Button back to top*/
#myBtn {
    font-size: 10px;
    background: transparent;
    border: none;
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    outline: none;
    cursor: pointer;
}
#myBtn img{
    width: 60px;
    height: 60px;
}

/*Footer*/
.footer {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}
.container-footer{
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    background: black;
    color: white;
}
.footer .footer-information {
    min-height: 130px;
    margin: 0 0 12px 0;
    padding: 20px 15px 0 15px;
    background: rgba(0, 0, 0, .04);
}
.footer .footer-info {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.footer .footer-social i {
    font-size: 18px;
    color: #F172A1;
    margin-top: 10px;
}
.footer .footer-text {
    position: relative;
    width: calc(100% - 50px);
    display: flex;
    flex-direction: column;
    padding-left: 15px;
}
.footer .footer-text h1 {
    font-size: 28px;
    font-weight: 700;
    color: #F172A1;
}
.footer .footer-text p {
    margin: 0;
    font-size: 19px;
    color: white;
}
.footer .footer-social a {
    margin-right: 10px;
    font-size: 18px;
    color: #F172A1;
}
.footer-social i:hover {
    color: red;
}
/* copyright */
.copyright{ margin: auto;
    color: #00bbd3;
}
.copyright a{
    color: #00bbd3;
}
.col-lg-7{
    text-align: center;
}
