/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
.font-roboto {
    font-family: 'Roboto', sans-serif;
}

.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}

.font-montserrat-semibold {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.color-1 {
    color: #fbb03b;
}

.color-gray {
    color: rgb(83, 78, 78);
}

.bg-1 {
    background-color: #fbb03b;
}

/* Preloader */
.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    z-index: 9999;
}

.dot-wave {
    --uib-size: 50px;
    --uib-speed: 0.6s;
    --uib-color: #fbb03b;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    width: var(--uib-size);
    height: calc(var(--uib-size) * 0.17);
    padding-top: calc(var(--uib-size) * 0.34);
}

.dot-wave__dot {
    flex-shrink: 0;
    width: calc(var(--uib-size) * 0.17);
    height: calc(var(--uib-size) * 0.17);
    border-radius: 50%;
    background-color: var(--uib-color);
    will-change: transform;
}

.dot-wave__dot:nth-child(1) {
    animation: jump824 var(--uib-speed) ease-in-out
        calc(var(--uib-speed) * -0.45) infinite;
}

.dot-wave__dot:nth-child(2) {
    animation: jump824 var(--uib-speed) ease-in-out
        calc(var(--uib-speed) * -0.3) infinite;
}

.dot-wave__dot:nth-child(3) {
    animation: jump824 var(--uib-speed) ease-in-out
        calc(var(--uib-speed) * -0.15) infinite;
}

.dot-wave__dot:nth-child(4) {
    animation: jump824 var(--uib-speed) ease-in-out infinite;
}

@keyframes jump824 {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-200%);
    }
}


/* button effect */
.btn-style {
    background-color: #fbb03b;
    color: #ffffff;
    font-weight: Bold;
    transition: all 0.5s;
    border-radius: 5px;
    -webkit-transition: all 0.5s;
    padding: 15px 40px;
    text-decoration: none;
}

.btn-style:hover {
    background-color: #FCC46C;
    box-shadow: 0 0 20px #f7c76f50;
}

.btn-style:active {
    background-color: #FBB03B;
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    box-shadow: none;
}

.text-justify {
    text-align: justify;
}

.padding-top {
    padding-top: 50px;
}

.padding-bottom {
    padding-bottom: 50px;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: white;
    height: 150px;
    font-size: 14px;
    transition: all 0.5s;
    color: #fff;
    padding: 0;
}

#topbar .contact-info i {
    font-style: normal;
    color: #fff;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
    padding-left: 5px;
    color: #fff;
}

#topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
    transition: 0.3s;
}

#topbar .contact-info i a:hover {
    color: #fff;
    text-decoration: underline;
}

#topbar .social-links a {
    color: rgba(255, 255, 255, 0.7);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}

#topbar .social-links a:hover {
    color: white;
}

/*--------------------------------------------------------------
# Navbar
--------------------------------------------------------------*/
.navbar-nav .nav-item .active {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

.navbar-nav .nav-item:hover {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}


/* Homepage - About Us */
.about-section .text-container {
    padding-right: 150px;
}
