.topbar {
    background-color: #000;
    padding: 10px 0;
}

.topbar .btn-try {
    background-color: #fecf17;
    font-size: 15px;
    color: #000;
    font-weight: 400;
    border-radius: 15px;
    padding: 3px 12px;
    display: inline-block;
    margin-left: 10px;
    text-transform: uppercase;
    text-decoration: none;
}

.topbar,
.topbar p {
    font-size: 15px;
    color: #fff;
}
.topbar .contact-info a {
    text-decoration: none;
    color: #fff;
}

.logo-main {
    width: 220px;
    height: auto;
}

.main-nav li a {
    font-size: 15px;
    color: #303030;
    font-weight: 400;
}

.main-nav .navbar-toggler:focus {
    box-shadow: none;
}

.main-nav .navbar-nav .dropdown-menu {
    border: 0;
    border-top: 2px solid #fecf17;
    border-radius: 0;
}

.main-nav .navbar-nav .dropdown-menu .dropdown-item:focus {
    background-color: #fff;
    color: #000;
}
@keyframes slideIn {
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }

    100% {
        transform: translateY(0rem);
        opacity: 1;
    }

    0% {
        transform: translateY(1rem);
        opacity: 0;
    }
}

@-webkit-keyframes slideIn {
    0% {
        -webkit-transform: transform;
        -webkit-opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        -webkit-opacity: 1;
    }

    0% {
        -webkit-transform: translateY(1rem);
        -webkit-opacity: 0;
    }
}

.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}

@media (max-width:767px) and (orientation:portrait) {
    .topbar {
        text-align: center;
    }
    .main-nav {
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    }

}

@media (min-width:768px) and (max-width:1024px) and (orientation:landscape) {

    .topbar,
    .topbar p {
        font-size: 14px;
    }
}

@media (max-width:800px) and (orientation: landscape) {
    header.sticky-top {
        position: static;
    }
}

@media (min-width:992px) {
    .logo-main {
        width: 220px;
    }

    .main-nav .navbar-nav li:last-child .dropdown-menu {
        right: 0;
        left: auto;
    }
    .main-nav .navbar-nav li.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    .animate {
        animation-duration: 0.3s;
        -webkit-animation-duration: 0.3s;
        animation-fill-mode: both;
        -webkit-animation-fill-mode: both;
    }
}