@-webkit-keyframes loading-screen-animate {
    0% {
        transform: rotateY(0deg)
    }
    25% {
        transform: rotateY(-45deg)
    }
    50% {
        transform: rotateY(0deg)
    }
    75% {
        transform: rotateY(45deg)
    }
    to {
        transform: rotateY(0deg)
    }
}

@keyframes loading-screen-animate {
    0% {
        transform: rotateY(0deg)
    }
    25% {
        transform: rotateY(-45deg)
    }
    50% {
        transform: rotateY(0deg)
    }
    75% {
        transform: rotateY(45deg)
    }
    to {
        transform: rotateY(0deg)
    }
}

#loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #343a3e;
    top: 0;
    left: 0;
    z-index: 99999
}

#loading-screen .wrapper {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 800px
}

#loading-screen .wrapper img {
    width: 250px;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: loading-screen-animate;
    animation-name: loading-screen-animate;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

#top-navbar {
    padding: 5px 16px
}

#bottom-navbar {
    font-size: 16px;
    font-weight: 700;
    background: #fff
}

#bottom-navbar .navbar-nav {
    margin-left: 120px
}

#bottom-navbar .navbar-nav .nav-item {
    margin: 8px 0
}

#bottom-navbar .navbar-nav .nav-item .nav-link {
    margin-top: 2px
}

#bottom-navbar .navbar-nav .nav-item .nav-link:after {
    content: " ";
    background: #b9202d;
    height: 2px;
    display: block;
    width: 0;
    transition: all .5s ease-in-out
}

@media (min-width: 769px) {
    #bottom-navbar .navbar-nav .nav-item:not(:last-of-type) .nav-link {
        border-right: 1px solid #ccc
    }
}

#bottom-navbar .navbar-nav .nav-item .nav-link {
    padding: 0 10px
}

#bottom-navbar .navbar-nav .nav-item:hover .nav-link:after {
    width: 100%
}

#bottom-navbar .service:hover .services-menu {
    display: block;
    height: auto
}

#bottom-navbar .service .services-menu {
    height: 0;
    overflow: hidden;
    display: none;
    width: 100%;
    z-index: 99;
    background: #fff;
    border-radius: 5px;
    padding-top: 10px
}

@media (min-width: 769px) {
    #bottom-navbar .service .services-menu {
        position: absolute;
        width: 200px
    }
}

#bottom-navbar .service .services-menu:hover {
    display: block
}

#bottom-navbar .service .services-menu li {
    padding: 5px 10px
}

@media (max-width: 768px) {
    #bottom-navbar .service .services-menu li {
        margin: 0 30px
    }
}

#bottom-navbar .service .services-menu li a {
    color: #000
}

#bottom-navbar .service .services-menu li:not(:last-of-type) {
    border-bottom: 1px solid #ccc
}

#carouselExampleIndicators .carousel-item {
    max-height: 650px;
    overflow: hidden
}

#section-A {
    background: #b9202d;
    color: #fff;
    padding: 120px 0;
    font-size: 18px
}

#section-A h2 span:last-of-type {
    font-size: 45px
}

#section-A p {
    max-width: 500px
}

@media (min-width: 768px) {
    #section-A p {
        padding-left: 60px
    }
}

#section-A img {
    border: 1px solid #fff;
    border-radius: 5px
}

#section-B {
    background: #f5f5f5;
    padding: 70px 50px;
    font-size: 18px
}

#section-B h2 {
    font-size: 30px
}

#section-C {
    background: #f5f5f5;
    padding: 30px 50px
}

#section-C #partners .carousel-item .partner-wrapper {
    width: 150px;
    height: 80px;
    overflow: hidden;
    margin: 0 10px;
    display: inline-block
}

#section-D {
    background: #333;
    color: #fff;
    padding: 50px
}

#section-D span:first-of-type {
    font-size: 40px;
    color: #b9202d;
    font-weight: bolder
}

#footer {
    background: #000;
    color: #fff;
    padding: 5px 0
}
