@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Rubik:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    font-size: 1rem;
    /* font-family: "Montserrat",  sans-serif!important; */
    /* font-family: "Open Sans",  sans-serif; */
    font-family: 'Varela Round', sans-serif;

}

html {
    scroll-behavior: smooth;
}

.navbar {
    z-index: 10000;
    padding: 40px 100px;
    transition: .5s;
}
@media (max-width: 768px){
    .navbar {
        padding: 1rem 0 0 0;
    }
}
.nav-bg-color.scrolled {
    background: #FFF !important;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    color: #111111 !important;
    transition: .2s;
    padding: 5px 100px ;
}

.nav-bg-color.scrolled-2 {
    box-shadow: none;
    color: #fff !important;
    transition: .2s;
    background: transparent !important;
}

a {
    text-decoration: none !important;
    color: currentColor !important;
}

a:hover {
    color: currentColor !important;
}

.rounded-10 {
    border-radius: 10px !important;
}

.nowrap {
    white-space: nowrap;
}

.mt-7 {
    margin-top: 7rem !important;
}

.btn-pill {
    border-radius: 20px !important;

}

.smallText {
    font-size: .8em;
    color: hsl(0, 0%, 60%);
    font-weight: 600;
}

.smallText-md {
    font-size: 1em;
    color: hsl(0, 0%, 45%);
    font-weight: 600;
}

.fs-1-5 {
    font-size: 1.5rem;
}

.fs-2 {
    font-size: 2em;
}

.fs-4 {
    font-size: 4em;
}

.fw-bold {
    font-weight: bolder;
}

.fw-600 {
    font-weight: 600;
}

.rounded-10 {
    border-radius: 10px;
}

.p-6 {
    padding: 5rem;
}

.p-7 {
    padding: 6rem;
}

.pt-10_percent {
    padding-top: 10%;
}

.pt-20_percent {
    padding-top: 20%;
}

p {
    margin: 0 !important;
}

ul li {
    list-style: none;
}

.navbar-toggler-icon {
    background: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

/* GO TOP */

#GoTopbutton {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 2rem;
    border: none;
    outline: none;
    background-color: #1A1C29;
    color: white;
    cursor: pointer;
    padding: .5rem 1.1rem;
    border-radius: 50%;
    transition: 1s;
}

#GoTopbutton:hover {
    background-color: rgba(26, 28, 41, .7);
}

/* =========================================================== */