body {

}
.navbar {
    min-height: 80px;
    background-color: rgba(30,100,210,0.9);
}
.navbar-brand {
    color: #ffffff;
}
.nav-link {
    color: #ffffff;
    text-transform: uppercase;
    transition: .5s;
    line-height:48px;
}
.nav-link:hover {
    color: #ffe8a1;
}
.navbar-toggler {
    color:#ffffff;
}
.navbar-nav {
    text-align: center;
}
.dropdown-menu {
    color: #fff;
    text-align: left;
    list-style: none;
    background-color: rgba(0,0,30,0.8);
    background-clip: padding-box;
    border: none;
    border-radius: .25rem;
    -webkit-box-shadow: 0px 9px 20px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 9px 20px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 9px 20px 0px rgba(34, 60, 80, 0.2);
}
.dropdown-divider {
    height: 0;
    margin: .5rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.4);
}
.dropdown-item {
    color: #fff;
}
.dropdown-item:hover {
    background-color: transparent;
    color: #ffe8a1;
}
.btn-pill {
    border-radius: 25px;
}
.modal-content,
.bg-gradient,
.banner {
    background: rgb(139,19,176);
    background: -moz-linear-gradient(53deg, rgba(139,19,176,1) 0%, rgba(7,113,179,1) 50%, rgba(0,114,255,1) 100%);
    background: -webkit-linear-gradient(53deg, rgba(139,19,176,1) 0%, rgba(7,113,179,1) 50%, rgba(0,114,255,1) 100%);
    background: linear-gradient(53deg, rgba(139,19,176,1) 0%, rgba(7,113,179,1) 50%, rgba(0,114,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8b13b0",endColorstr="#0072ff",GradientType=1);
}
.banner__wrap {
    /*min-height: 400px;*/
    width:100%;
    background-image: url("../img/bg-banner.png");
    background-size: 100%;
    transition: 1s;
    background-position: center;
    color: #fff;
}
.banner__wrap:hover {
    background-size: 105%;
}
.btn-banner {
    background: rgb(176,19,161);
    background: -moz-linear-gradient(53deg, rgba(176,19,161,1) 0%, rgba(255,186,0,1) 100%);
    background: -webkit-linear-gradient(53deg, rgba(176,19,161,1) 0%, rgba(255,186,0,1) 100%);
    background: linear-gradient(53deg, rgba(176,19,161,1) 0%, rgba(255,186,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b013a1",endColorstr="#ffba00",GradientType=1);
    color: #ffffff;
    transition: .5s;
    padding-left:1rem;
    padding-right:1rem;
    border: 1px solid rgb(255,186,0);
}
.btn-banner:hover {
    padding-left:1.4rem;
    padding-right:1.4rem;
}
.card-img {
    transform: rotate(0deg);
    transition:.5s;
}
.card:hover .card-img {
    transform: rotate(-2deg);
}
.phone:hover {
    text-decoration:none;
}
.modal-content {
    border:none;
}
.modal-header {
    border-bottom: 1px solid #3878b8;
}
.modal-footer {
    border-top: 1px solid #3878b8;
}
.close {
    color: #fff;
    text-shadow: none;
    opacity: 1;
}
.form-control {
    border:none;
    border-radius:25px;
}
span.error {
    color:#FF7D13;
}
.content {
    min-height:500px;
}
@media (max-width: 991px) {
    .display-4 {
        font-size: 2rem;
    }
}