body {
    font-family: 'Montserrat', sans-serif;
    color: #444;
}

a {
    text-decoration: none;
    color: #ffab3d;
}

a:hover {
    color: #ffab3d;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
}

h2, h3, h4, h5, h6 {
    color: #ff8f00;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #ffab3d;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all .4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #ffab3d;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: #1c1c1c;
    padding: 10px 0;
    font-size: 1.2rem;
    color: #9b9b9b;
}

#topbar .contact-info i {
    font-style: normal;
    color: #ff8f00;
}

#topbar .contact-info i a, #topbar .contact-info i span {
    padding-left: 5px;
    color: #fff;
}

#topbar .contact-info i a {
    line-height: 0;
    transition: .3s;
}

#topbar .contact-info i a:hover {
    color: #09f;
}

#topbar .social-links {
    font-size: 1.6rem;
}

#topbar .social-links a {
    color: #ff8f00;
    line-height: 0;
    transition: .3s;
    margin-left: 10px;
}

#topbar .social-links a:hover {
    color: white;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    /*height: 70px;*/
    transition: all .5s;
    z-index: 997;
    transition: all .5s;
    background: #fff;
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 11px 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

#header .logo h1 a, #header .logo h1 a:hover {
    color: #141414;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 100px;
}

.scrolled-offset {
    margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #141414;
    text-transform: uppercase;
    white-space: nowrap;
    transition: .3s;
}

.navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: #ff8f00;
}

.navbar .getstarted, .navbar .getstarted:focus {
    background: #ff8f00;
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
}

.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
    color: #fff;
    background: #ffab3d;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0 0 30px rgba(127, 137, 161, .25);
    transition: .3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #353535;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    color: #ffab3d;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #ff8f00;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: .5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(28, 28, 28, .9);
    transition: .3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 8px;
    background-color: #fff;
    overflow-y: auto;
    transition: .3s;
}

.navbar-mobile a, .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #353535;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    color: #ff8f00;
}

.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0 0 30px rgba(127, 137, 161, .25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
    color: #ff8f00;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 70vh;
    background: url('../img/hero_home_conservatory.jpg') top center;
    background-size: cover;
    position: relative;
}

#services-hero {
    width: 100%;
    height: 70vh;
    background: url('../img/hero_services-cover.jpg') top center;
    background-size: cover;
    position: relative;
}

#hero:before, #services-hero:before {
    content: '';
    background: rgba(0, 0, 0, .5);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .hero-container, #services-hero .services-hero-container {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0 15px;
}

#hero h1, #services-hero h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
}

#hero h2, #services-hero h2 {
    color: #eee;
    margin-bottom: 50px;
    font-size: 24px;
}


.btn-get-started {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 50px;
    transition: .5s;
    margin: 10px;
    background: #ff8f00;
    border: 2px solid #ffab3d;
    color: #000;
}

.btn-get-started:hover {
    border: 2px solid #ffab3d;
    background: transparent;
    color: #fff;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero {
        height: 100vh;
    }

    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 8px 20px;
    margin: 0;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
}

.section-title h3 {
    margin: 15px 0 0 0;
    font-size: 32px;
    font-weight: 700;
}



.section-title p {
    margin: 15px auto 0 auto;
    font-weight: 600;
}

@media (min-width: 1024px) {
    .section-title p {
        width: 50%;
    }
}

/*--------------------------------------------------------------
# Gaurantee Section
--------------------------------------------------------------*/
#guarantee {
    background: linear-gradient(rgba(2, 2, 2, .7), rgba(0, 0, 0, .9)), url(../img/hero_sunset_conservatory.jpg) top center;
    background-size: cover;
    padding: 6em 0;
}

#guarantee .check-mark-container {
    display: flex;
    align-content: center;
    justify-content: space-between;
}

#guarantee .check-mark-img {
    text-align: center;
    margin-bottom: 2em;
}

#guarantee h1, #guarantee p {
    color: #fff;
}

#guarantee .check-mark-text-container {
    display: flex;
    align-items: center;
}

#guarantee .check-mark-text {
    text-align: center;
}

#guarantee img.check-mark {
    max-width: 60%;
}

@media (min-width: 768px) {
    #guarantee img.check-mark {
        margin: 1em;
        width: auto;
        max-width: 100%;
    }

    #guarantee .check-mark-text {
        text-align: left;
    }

    #guarantee .check-mark-img {
        margin-bottom: 0;
    }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .box-heading h4 {
    font-size: .9rem;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 8px 0;
    margin: 0 0 15px 0;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
}

.about .box-heading h3 {
    font-size: 28px;
    font-weight: 700;
    color: #353535;
    margin-bottom: 15px;
}

.about .icon-box {
    margin-top: 40px;
}

.about .icon-box .icon {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 2px solid #d6e8bf;
    border-radius: 50px;
    transition: .5s;
}

.about .icon-box .icon i {
    color: #ffab3d;
    font-size: 32px;
}

.about .icon-box:hover .icon {
    background: #ffab3d;
    border-color: #ffab3d;
}

.about .icon-box:hover .icon i {
    color: #fff;
}

.about .icon-box .title {
    margin-left: 85px;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
}

.about .icon-box .title a {
    color: #343a40;
    transition: .3s;
}

.about .icon-box .title a:hover {
    color: #ffab3d;
}

.about .icon-box .description {
    margin-left: 85px;
    line-height: 24px;
    font-size: 14px;
}

@media (max-width:768px) {
    section.about {
        text-align: center;
    }
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: linear-gradient(rgba(2, 2, 2, .7), rgba(0, 0, 0, .9)), url(../img/hero_sunset_conservatory.jpg) fixed center center;
    background-size: cover;
    padding: 60px 0;
    font-size: 1.4rem;
}

.cta h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 500;
}

.cta p {
    color: #fff;
}

.cta .cta-btn {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 25px;
    transition: .5s;
    margin-top: 10px;
    border: 2px solid #fff;
    color: #fff;
}

.cta .cta-btn:hover {
    background: #ffab3d;
    border: 2px solid #ffab3d;
}

/*--------------------------------------------------------------
# Benefits
--------------------------------------------------------------*/
#benefits h4 {
    font-size: 24px;
    font-weight: 600;
    padding: 0;
    margin: 20px 0;
}

.benefits .icon-box-container {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
}


.benefits .icon-box {
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, .2);
    padding: 50px 30px;
    transition: all ease-in-out .4s;
    background: rgba(255,255,255,.6);
}

.benefits .icon-box .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background: #ffab3d;
    border-radius: 50px;
    border: 1px solid #ff8f00;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: ease-in-out .3s;
}

.benefits .icon-box .icon i {
    color: #fffbf5;
    font-size: 28px;
    transition: ease-in-out .3s;
}

.benefits .icon-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px;
    color: #241400;
}

.benefits .icon-box h4 a {
    color: #353535;
    transition: ease-in-out .3s;
}

.benefits .icon-box p {
    line-height: 24px;
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 600;
    color: #000;
}

.benefits .icon-box:hover {
    border-color: #fff;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, .1);
}

.benefits .icon-box:hover h4 a, .benefits .icon-box:hover .icon i {
    color: #ffce8f;
}

.benefits .icon-box:hover .icon {
    border-color: #ff8f00;
}

@media (max-width:768px) {
    section#benefits {
        text-align: center;
    }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio {
    padding-bottom: 40px;
}

.portfolio-container {
    display: flex;
}

.portfolio .portfolio-item {
    margin-bottom: 5px;
    position: relative;
}
.portfolio .portfolio-item .btn {
    position: absolute;
    top: 5px;
    right: 8px;
    z-index: 999;
}

.portfolio .portfolio-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.portfolio .portfolio-item .img-hover {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    opacity: 0;
    transition: opacity .5s;
}

.portfolio .portfolio-item:hover .img-hover {
    opacity: 1;
}

.portfolio-footer {
      margin-bottom: 30px;
}
.portfolio-footer p {
    font-weight: 600;
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
    padding: 80px 0;
    background: url('../img/testimonials-bg.jpg') no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

.testimonials div {
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(2, 2, 2, .7);
}

.testimonials .section-header {
    margin-bottom: 40px;
    position: relative;
}

.testimonials .section-header h1 {
    text-align: center;
    color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
    width: 100px;
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, .15);
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #fff;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #ddd;
    margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
    color: rgba(255, 255, 255, .4);
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
    color: #eee;
}

.testimonials .testimonial-item small {
    font-size: .8rem;
}

.testimonials .testimonial-item .item-meta {
    color: #fff;
    text-align: center;
}

.testimonials .testimonial-item ul {
    margin-bottom: 1em;
}
.testimonials .testimonial-item ul li img {
    max-width: 25px;
    margin-left: .5em;
}

.testimonials .testimonials-footer {
    text-align: center;
    color: #ff8f00;
}

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}


/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq {
    background: #f5faf0;
}

.faq .section-title h2 {
    background: #e9f3dd;
}

.faq .faq-list, .faq .faq-btn {
    padding: 0 100px;
}

.faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.faq .faq-list li + li {
    margin-top: 15px;
}

.faq .faq-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    position: relative;
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 30px;
    outline: none;
    cursor: pointer;
}

.faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: #ffab3d;
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list a.collapsed {
    color: #343a40;
}

.faq .faq-list a.collapsed:hover {
    color: #ff8f00;
}

.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
    display: none;
}

.faq .faq-btn .btn:hover {
    color: #000;
}

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.map-canvas-home {
    width: 100%;
    height: 600px;
}

section.contact {
    background-color: #141414;
}

.contact .info {
    width: 100%;
}

.contact .info i {
    font-size: 20px;
    color: #ff8f00;
    float: left;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all .3s ease-in-out;
}

.contact h1 {
    color: #fff;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ff8f00;
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #ff8f00;
}

.contact .info .email, .contact .info .phone {
    margin-top: 40px;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
    background: #ff8f00;
    color: #fff;
}

.contact .php-email-form {
    width: 100%;
}

.contact .php-email-form .alert {
    padding: 6px 12px;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .form-group .invalid-message {
    display: block;
    width: 100%;
    margin-top: .25rem;
    font-size: .875em;
    color: #ffca00;
}
.contact .php-email-form .form-group input:has(+ .invalid-message), .contact .php-email-form .form-group textarea:has(+ .invalid-message){
    border: solid 2px #FF0000;
}

.contact .php-email-form input:not[type='checkbox'], .contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input:not[type='checkbox'] {
    height: 44px;
}
.contact .php-email-form .form-check-label {
    color: #fff;
}

.contact .php-email-form input[type='checkbox'] {
    transform: scale(2);
    margin-right: 1em;
    margin-left: 8px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form .btn-get-started {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 768px) {
    .contact .php-email-form input[type='checkbox'] {
        float: none;
        margin: 0 1em 0 0;
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: url(../img/hero_grand_conservatory.jpg) center center no-repeat;
    color: #fff;
    font-size: 14px;
    position: relative;
}

#footer::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(15, 15, 15, .8);
    z-index: 1;
}

#footer .footer-top {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 0;
}

#footer .footer-top img {
    max-width: 220px;
}

#footer .footer-top h3 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    position: relative;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 0;
    margin-bottom: 0;
}

#footer .footer-top p {
    font-size: 15;
    font-style: italic;
    margin: 30px 0 0 0;
    padding: 0;
}

#footer .social-links {
    text-align: center;
}

#footer .footer-top .social-links a {
    font-size: 3rem;
    display: inline-block;
    background: #ffab3d;
    color: #fff;
    line-height: 1;
    padding: 11px 0;
    margin-right: 16px;
    border-radius: 50%;
    text-align: center;
    width: 70px;
    height: 70px;
    transition: .3s;
}

#footer .footer-top .social-links a:hover {
    background: #ff8f00;
    color: #fff;
    text-decoration: none;
}

#footer .footer-bottom {
    border-top: 1px solid #282828;
    z-index: 2;
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
}

#footer .copyright {
    text-align: left;
}

#footer .credits {
    text-align: right;
    font-size: 13px;
}

#footer .btn-get-started {
    font-size: 1.4rem;
    padding: 8px 50px;
    margin: 0 0 2em 0;
    width: 100%;
}

@media(max-width: 768px) {
    #footer .copyright {
        text-align: center;
    }

    #footer .credits {
        text-align: center;
        font-size: 13px;
    }
}

@media(min-width: 769px) {
    #footer .social-links {
        text-align: right;
    }

    #footer .btn-get-started {
        font-size: 1.4rem;
        padding: 0 50px;
        margin: 0;
        width: auto;
        float: left;
        height: 70px;
        line-height: 70px;
    }
}

/*--------------------------------------------------------------
# ADMIN
--------------------------------------------------------------*/
.admin-content form label {
    font-weight: 600;
}
