
/** BACKGROUND COLORS **/


.bg-sky-700{
    background-color: #0369A1;
}

.bg-sky-200{
    background-color: #7298c0;
}

.bg-kale {
    background-color: #007c89;
}

.bg-salmon {
    color: #ff8376;
}





/** TEXT COLORS **/
.text-sky-700{
    color: #0369A1;
}

.text-kale{
    color: #007c89;
}

.text-salmon {
    color: #f18e84;
}




/** BORDER COLORS **/


.border-sky-700{
    border-color: #0369A1;
}

.border-kale{
    border-color: #007c89;
}

/*BORDERS*/
.rounded {
    border-radius: 0.5rem;
}

/** FONTS **/
body{
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
}

h1 {
    font-family: 'Unbounded', serif;
}

h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}


/*Hover*/

button:hover {
    background-color: white;
    border: 1px solid #007c89;
    color: #007c89
}

nav a:hover{
    color:#007c89;
}

p a:hover{
    color: #f18e84;
}

#pricing a:hover{
    background-color: white;
    border: 1px solid #007c89;
    color: #007c89
}

#first-section a:hover{
    background-color: white;
    border: 1px solid #007c89;
    color: #007c89
}

/*MARGINS*/

.ml--24{
    margin-left: -24px;
}

/*ANIMATIONS*/


/*=======  Back to top  =======*/
.back-to-top {
    position: fixed;
    right: 30;
    bottom: 40px;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    
    z-index: 99;
    color: #007c89;
    font-size: 18px;
    /*opacity: 0;
    visibility: hidden;*/
}



