/*
    Color Primary (LightSeaBlue): #20b2aa
    Color Contrast (Pink): #bd0969
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body { font-family: 'Kumbh Sans', sans-serif; }

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

h1 { line-height: 1.4; }
p { line-height: 1.8; }
p, .text-gray { color: #838E95; }
a.text-gray:hover { color: #20b2aa; }
.img-fluid { max-width: 100%; }
li { list-style: none; }

/* Utility classes */
.logo-text-primary { color: #00A9A4; } /*F6911B*/
.logo-text-secondary { color: #c18bbb; } /*00A9A4*/
.text-center { text-align: center; }
.d-block { display: block; }
.mt-50 { margin-top: 50px; }
.mr-10 { margin-right: 10px; }
.mb-10 { margin-bottom: 10px; }
.mb-30 { margin-bottom: 30px; }
.mb-80 { margin-bottom: 80px; }
.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3334%;
    flex: 0 0 33.3334%;
    width: 33.3334%;
    max-width: 360px;
    padding-left: 15px;
    padding-right: 15px;
}

.card {
    border-radius: 5px;
    -webkit-box-shadow: 0 25px 20px -20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 0, 0, 0.06);
    box-shadow: 0 25px 20px -20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 0, 0, 0.06);
}

.card img {
    border-radius: 5px;
}

.card-text {
    padding: 20px;
}

.card-text a {
    color:  #bd0969;
}

.card-text a:hover {
    text-decoration: underline;
    text-decoration-style: dotted;
}

/**/

.container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.navbar-brand {
    font-size: 1.8rem;
    padding-top: 15px;
    padding-bottom: 15px;
}

.tag-line {
    font-size: 0.8rem;
    padding-left: 20px;    
}

.navbar-toggler { display: none; }

.navbar {
    padding-top: 25px;
    padding-bottom: 25px;
}

.navbar-admin {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 30px;
    background-color: #2d2d2d;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-ul {
    display: flex;
}

.nav-link {
    display: block;
    padding: 12px 25px;
    color: #838E95;
}

.nav-link:hover {
    color: #2da9a4;
}

.navbar-admin .nav-link {
    color: #cec8c8;
}

.navbar-admin .tag-line {
    color: #cec8c8;
}

.hero {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.template-nav-ul {
    display: flex;
}

.template-nav-ul li {
    display: inline-block;
    margin-right: 30px;
    color: #838E95;
}

.template-nav-ul li a {
    display: block;
}

.btn {
    padding: 12px 30px;
    background: #20b2aa;
    border: 1px solid #20b2aa;
    color: white;
    border-radius: 5px;
}

.btn-r {
    background: transparent;
    color: #20b2aa;
}

.btn:hover,
.btn-r:hover {
    background: #079794;
    color: white;
}

.btn-neutral {
    background: #999999;
    border: 1px solid #999999;
}

.btn-neutral-r {
    background: transparent;
    border: 1px solid #999999;
    color: #999999;
}

.btn-neutral:hover,
.btn-neutral-r:hover {
    background: #999999;
    color: white;
}

.footer {
    padding: 25px 15px;
    font-size: 0.9rem;
}

#live-view {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.normal-list { padding-left: 30px; }
.normal-list li {
    list-style: disc;
    line-height: 1.8;
}

@media (max-width: 1200px) {
    .col-4 {
        flex: 0 0 100%;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .template-nav-ul {
        flex-wrap: wrap;
    }
    .template-nav-ul li {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        flex-direction: column;
        margin-top: 15px;
        margin-bottom: 25px;
    }

    .nav-ul {
        flex-wrap: wrap;
    }
}