/*
 * Copyright 2020 brothernetwork
 */

/* Font */
 .font-sm {
    font-size: 0.75rem;
 }
 .font-md {
    font-size: 0.80rem;
 }
 .font-18 {
    font-size: 18px;
 }
/* background */
.bg-aqua-gradient {
   background: #1c92d2;  /* fallback for old browsers */
   background: -webkit-linear-gradient(to left, #f2fcfe, #1c92d2);  /* Chrome 10-25, Safari 5.1-6 */
   background: linear-gradient(to left, #f2fcfe, #1c92d2); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

/* Navbar */
.active-light {
    background: #fff;
}
.active-dark {
    background: $000;
}
.border-animation {
    left: 0;
    position: absolute;bottom: 0;
    width: 1px;
    transition: width .35s ease-in-out;
    -webkit-transition: width .35s ease-in-out;
}

.link-hover:hover + .border-animation {
    width: 100%;
    padding: 0.8px;
}
.border-animation-active {
    left: 0;
    bottom: 0;
    position: absolute;
    padding: 0.8px;
    width: 100%;
}

/* Contet */
.section-mask-dark {
    background: rgb(0, 0, 0, 0.4);
}


/* Assets */
.h-auto {
    height: auto;
}
.h-100vh {
    height:100vh;
}
.h-90vh {
    height:90vh;
}
.h-80vh {
    height:80vh;
}
.h-70vh {
    height:70vh;
}
.h-60vh {
    height:60vh;
}
.h-50vh {
    height:50vh;
}
