body {
    font-family: 'Inter', sans-serif;
}

/* Headings */
.font-inter-bold {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

/* Banner Titles */
.font-inter-black {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
}

.btn-color {
    background-color: #1dad99;
    color: white;
}

.text-justify {
    text-align: justify;
}

.color-1 {
    color: #3e228f;
}

.color-2 {
    color: #1dad99;
}

.paragraph-color {
    color: #5b5b5b;
}

.navbar .nav-link.active {
    color: #3e228f; 
}

.navbar .nav-link:hover {
    color: #3e228f; 
}

/* Navbar Logo */
/* Small screens */
@media (max-width: 576px) {
    .navbar-brand img {
        max-width: 80%;
    }
}

/* Medium screens */
@media (min-width: 576px) and (max-width: 768px) {
    .navbar-brand img {
        max-width: 60%;
    }
}

/* Large screens */
@media (min-width: 768px) {
    .navbar-brand img {
        max-width: 100%;
    }
}

/* Preloader */
.desktop-navbar{
    position: relative;
    z-index: 9999; /* lower than preloader */
}

.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    background-color: white;
    transition: opacity 0.5s ease-out;
}

.loading svg polyline {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.loading svg polyline#back {
    fill: none;
    stroke: #1dad9a98;
}

.loading svg polyline#front {
    fill: none;
    stroke: #1dad99;
    stroke-dasharray: 48, 144;
    stroke-dashoffset: 192;
    animation: dash_682 1.4s linear infinite;
}

@keyframes dash_682 {
    72.5% {
        opacity: 0;
    }

    to {
        stroke-dashoffset: 0;
    }
}
.loading{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.preloader.hide {
    opacity: 0;
    pointer-events: none;
}

.loading.hide {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

/* Animated Button */
.animated-button {
    background-color: #1dad99;
    border: none;
    color: #ffffff;
    padding: 10px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 17px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.animated-button:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.animated-button:hover:after {
    width: 210px;
    height: 200px;
    opacity: 1;
}

.animated-button:focus {
    outline: none;
}

.animated-button:active {
    transform: translateY(2px);
    box-shadow: none;
}




.animated-buttons {
    background-color: #1dad99;
    border: none;
    color: #ffffff;
    /*padding: 15px 32px;*/
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 17px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.animated-buttons:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.animated-buttons:hover:after {
    width: 210px;
    height: 200px;
    opacity: 1;
}

.animated-buttons:focus {
    outline: none;
}

.animated-buttons:active {
    transform: translateY(2px);
    box-shadow: none;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

@media (min-width: 1200px) {
    .footer .container {
        max-width: 70% !important;
    }
}

@media (max-width: 1200px) {
    .footer .container {
        max-width: 90% !important;
    }
}

@media (max-width: 768px) {
    .footer .container .mx-auto {
        margin: 40px 0px 0px 0px !important;
    }

    .footer .container .mx-auto .get-social {
        margin-top: 50px !important;
    }

    .footer .container .useful-links {
        margin-top: 0px !important;
    }
}