@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css");

body {
    font-family: "Montserrat";
    background-color: rgb(59, 89, 152);
}

.heading-form {
    color: rgb(59, 89, 152);
    padding: 20px 0px 20px 0px;
    font-weight: 700;
}

.text-primary {
    color: #02378d !important;
}

.header-form {
    padding-top: 50px;
    background-color: rgb(59, 89, 152);
    height: 200px;
}

.header-form h2 {
    color: whitesmoke;
}
.content {
    background: linear-gradient(
        135deg,
        rgb(255, 255, 255) 0%,
        rgb(204, 204, 204) 100%
    );
}

.hovereffect:hover img {
    filter: grayscale(0);
}

.hovereffect button.info {
    text-transform: uppercase;
    font-size: 9px;
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.4s cubic-bezier(0.88, -0.99, 0, 1.81);
    transition: all 0.4s cubic-bezier(0.88, -0.99, 0, 1.81);
}

.hovereffect:hover button.info {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.circle-icon {
    background-color: #c4c4c4;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    vertical-align: middle;
    /* padding: 30px; */
}

.circle-icon.fa-facebook:hover {
    background-color: rgb(59, 89, 152);
}

.circle-icon.fa-linkedin:hover {
    background-color: rgb(0, 119, 181);
}

.circle-icon.fa-youtube:hover {
    background-color: rgb(255, 0, 0);
}

.circle-icon.fa-instagram:hover {
    background-color: rgb(195, 42, 163);
}

ul.nav-footer {
    margin-left: -15px;
}

.nav-footer li {
    padding: 0 15px;
    display: inline-block;
}
.nav-footer li a {
    font-size: 13px;
    color: #6c757d !important;
}

.nav-footer li a:hover {
    color: #02378d !important;
    text-decoration: none;
}

.nav-footer.spacer li:not(:first-child) {
    border-left: 2px solid #c4c4c4;
    margin: 0;
}

.collapse-custom {
    max-height: 0px;
    transition: max-height 0.1s ease-out;
    overflow: hidden;
    position: absolute;
}

.collapse-custom.show-custom {
    position: relative;
    max-height: 1000px;
    transition: max-height 0.25s ease-in;
}

.scroll-next {
    text-align: center;
    cursor: pointer;
    color: #02378d;
    position: absolute;
    bottom: 10%;
    left: 50%;
    -webkit-transform: translate(-12px, 0px);
    transform: translate(-12px, 0px);
    fill: #2046f2;
    -webkit-animation: scrollDown 1.6s infinite;
    animation: scrollDown 1.6s infinite;
    font-size: 40px;
}

.bg-primary {
    background-color: #02378d !important;
}

.back {
    color: whitesmoke;
}
