
html,
body,
header,
.view {
    height: 105%;
}

.basic-content {
    margin-top: 8rem;
}

.feature-section {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.feature-container {
    position: relative;
}

.feature-container-inside {
    position: absolute;
    top: -25vw;
    height: 60vw;
    width: 60vw;
    background: #00c851;
    border-radius: 50%;
    transform: scale(.01);
    opacity: 0;
    transition: all .4s ease;
    border: 1ps solid black;
    box-shadow: 0 0 20px -10px black;
}

.feature-container-inside.active {
    opacity: 1;
    transform: scale(1);
}

.feature-container-inside-text {
    width: 40vw;
    min-width: 260px;
    line-height: 3rem;
    margin: 8vw auto;
    font-size: 2.4rem;
    font-weight: 500;
}

.feature-trigger-outline {
    position: relative;
    width: 100px;
    height: 100px;
}

.feature-trigger-outline::before {
    content: "";
    display: block;
    position: absolute;
    width: 100px !important;
    height: 100px;
    border-radius: 50%;
    opacity: 0;
    background-color: #f8f9fa;
    box-shadow: 0 0 20px -10px black;
    transition: all .4s ease;
    z-index: 2;
}

.feature-trigger-outline.active::before {
    opacity: 1;
}

.feature-trigger {
    opacity: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 3;
}

/* Starbucks Theme */
.sb-font-h1 {
    font-size: 2.6em;
    font-family: Helvetica, Georgia, sans-serif;
    margin-top: 8px;
    margin-bottom: 7px;
    font-weight: normal;
    line-height: 1.1;
    color: #1CA347;
}

.sb-font-h2 {
    font-size: 1.6em;
    font-family: Helvetica, Georgia, sans-serif;
    margin-top: 8px;
    margin-bottom: 7px;
    font-weight: normal;
    line-height: 1.1;
    color: #1CA347;
}

.sb-text-p1 {
    font-size: 1.0em;
    font-family: Helvetica, Georgia, sans-serif;
    margin-top: 8px;
    margin-bottom: 7px;
    font-weight: normal;
    line-height: 1.4;
    color: #1CA347;
}

.space-5 {
    padding:25px;
}

input[type="text"], input[type="email"], input[type="password"] {
    -webkit-appearance: none;
    border-color: #38B349;
    border-width: 1px;
    border-style: solid;
    background: #fff;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    width: 80%;
    padding: 0 .9em;
    height: 30px;
    font-size: 1.16666667em;
    line-height: 1em;
    margin-top: 1px;
    color: #464646;
}
.btn-register {
    background-color: #1CA347;
    outline: none;
    color: #fff;
    border-color: #1CB94A;
}
.btn-infor {
    background-color: #1CA347;
    outline: none;
    color: #fff;
    border-color: #1CB94A;
}

/* to blur modal */
.modal-open .container-fluid, .modal-open  .container {
    -webkit-filter: blur(2px) grayscale(50%);
}
/* to blur modal end */



/* Navigation Bar */
.dark-skin .navbar {
    background-color:#3b3b3b;
}

.dark-skin .top-nav-collapse {
    background-color: #3b3b3b;
}
@media only screen and (max-width: 992px) {
    .navbar {
        background-color: #3b3b3b;
    }
}