body {
    color: #797979;
    background: #def0f2;
    font-family: Verdana, sans-serif
}

h1, h2, h3, h4, h5, h6 {
    color: #04880d
}

a {
    color: #000;
    transition: .3s
}

a:active, a:focus, a:hover {
    color: #c9f7f7;
    outline: 0;
    text-decoration: none
}

.btn:focus, .form-control:focus {
    box-shadow: none
}

.container-fluid {
    max-width: 1366px
}

.back-to-top {
    position: fixed;
    display: none;
    background: #c9f7f7;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background .5s;
    z-index: 9
}

.back-to-top:hover {
    background: #04880d
}

.back-to-top:hover i {
    color: #c9f7f7
}

.back-to-top i {
    color: #04880d;
    padding-top: 10px
}

.navbar {
    position: relative;
    transition: .5s;
    z-index: 999
}

.navbar.nav-sticky {
    position: relative;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3)
}

.navbar-brand img {
    max-width: 200px;
}

.navbar .navbar-brand {
    margin: 0;
    color: #fff;
    font-size: 45px;
    line-height: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: .5s;
    max-width: 200px;
}

.navbar .navbar-brand span {
    color: #04880d;
    text-transform: lowercase;
    transition: .5s
}

.navbar.nav-sticky .navbar-brand span {
    color: #fff
}

.navbar .navbar-brand img {
    max-width: 100%;
    max-height: 40px
}

.navbar-dark .navbar-nav .nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
    padding: 10px 10px 8px 10px;
    color: #fff
}

.navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link:hover {
    background: rgba(256, 256, 256, .1);
    transition: none
}

.navbar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa
}

@media (min-width: 992px) {
    .navbar {
        position: relative;
        width: 100%;
        top: 0;
        z-index: 9;
        padding: 10px 60px;
        background: #04880d !important;
    }

    .navbar.nav-sticky {
        padding: 10px 60px;
        background: #04880d !important
    }

    .navbar a.nav-link {
        padding: 8px 15px;
        font-size: 14px;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-weight: bold;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 15px;
    }

    .navbar .navbar-brand span {
        color: #fff
    }

    .navbar a.nav-link {
        padding: 5px
    }

    .navbar .dropdown-menu {
        box-shadow: none
    }
}

.section-header {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 10px
}

.section-header p {
    display: inline-block;
    margin: 0 30px;
    padding: 0 10px;
    position: relative;
    font-size: 24px;
    font-weight: 600;
    background: #fff;
    line-height: 36px;
}

.section-header p::after {
    position: absolute;
    content: "";
    height: 2px;
    top: 18px;
    right: -30px;
    left: -30px;
    background: #54e4e4;
    z-index: -1
}

.section-header h1 {
    margin: 0 0 1rem;
    position: relative;
    font-size: 40px;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .section-header h1 {
        font-size: 30px
    }
}

.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0
}

.service .service-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, .07);
    transition: .3s
}

.service .service-item.active, .service .service-item:hover {
    background: #04880d;
    color: #fff
}

.service .service-icon {
    position: relative;
    margin: 0 auto 25px auto;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%
}

.service .service-icon i {
    position: relative;
    font-size: 50px;
    color: #04880d;
    z-index: 3
}

.service .service-icon:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #adf8f8;
    border-radius: 50%;
    animation: pulse-border 2s ease-out infinite
}

.service .service-icon:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #c9f7f7;
    border-radius: 50%;
    transition: all .2s
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
        opacity: 0
    }
}

.service .service-item h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    transition: .3s
}

.service .service-item.active h3, .service .service-item:hover h3 {
    color: #c9f7f7
}

.service .service-item p {
    margin: 0;
    font-size: 16px
}

.class {
    position: relative;
    /*padding: 30px 0 15px 0*/
    padding: 20px 0 0 0
}

.class #class-filter {
    padding: 0;
    margin: -15px 0 25px 0;
    list-style: none;
    font-size: 0;
    text-align: center
}

.class #class-filter li {
    cursor: pointer;
    display: inline-block;
    margin: 5px;
    padding: 6px 12px;
    color: #04880d;
    font-size: 14px;
    font-weight: 400;
    border-radius: 0;
    background: #fff;
    border: 1px solid #04880d;
    transition: .3s
}

.class #class-filter li.filter-active, .class #class-filter li:hover {
    background: #04880d;
    color: #c9f7f7
}

.class .class-item {
    position: relative;
    /*margin-bottom: 30px;*/
    overflow: hidden;
    transition: .3s
}

.class .class-wrap {
    position: relative;
    width: 100%
}

.class .class-img {
    position: relative
}

.class .class-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.class .class-text {
    position: relative;
    padding: 30px 30px 25px 30px;
    border-right: 1px solid rgba(0, 0, 0, .07);
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    border-left: 1px solid rgba(0, 0, 0, .07)
}

.class .class-text h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px
}

.class .class-teacher {
    position: relative;
    height: 40px;
    margin-top: -50px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border-radius: 40px
}

.class .class-teacher img {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background: #c9f7f7
}

.class .class-teacher h3 {
    width: calc(100% - 95px);
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 0 15px;
    white-space: nowrap;
    overflow: hidden
}

.class .class-teacher a {
    width: 40px;
    height: 40px;
    padding: 0 0 3px 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 100;
    color: #04880d;
    background: #c9f7f7;
    border-radius: 40px;
    transition: .3s
}

.class .class-wrap:hover .class-teacher a {
    color: #c9f7f7;
    background: #04880d
}

.class .class-meta {
    position: relative;
    display: flex;
    align-items: center
}

.class .class-meta p {
    margin: 0;
    font-size: 14px
}

.class .class-meta p i {
    margin-right: 5px;
    color: #04880d
}

.class .class-meta p:first-child {
    margin-right: 10px
}

.sidebar {
    position: relative;
    width: 100%
}

@media (max-width: 991.98px) {
    .sidebar {
        margin-top: 45px
    }
}

.sidebar .sidebar-widget {
    position: relative;
    margin-bottom: 45px
}

.sidebar .sidebar-widget .widget-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 5px;
    font-size: 30px;
    font-weight: 700
}

.sidebar .sidebar-widget .widget-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #c9f7f7
}

.sidebar .sidebar-widget .search-widget {
    position: relative
}

.sidebar .search-widget input {
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 0
}

.sidebar .search-widget input:focus {
    box-shadow: none
}

.sidebar .search-widget .btn {
    position: absolute;
    top: 6px;
    right: 15px;
    height: 40px;
    padding: 0;
    font-size: 25px;
    color: #c9f7f7;
    background: 0 0;
    border-radius: 0;
    border: none;
    transition: .3s
}

.sidebar .search-widget .btn:hover {
    color: #04880d
}

.sidebar .sidebar-widget .recent-post {
    position: relative
}

.sidebar .sidebar-widget .tab-post {
    position: relative
}

.sidebar .tab-post .nav.nav-pills .nav-link {
    color: #c9f7f7;
    background: #04880d;
    border-radius: 0
}

.sidebar .tab-post .nav.nav-pills .nav-link.active, .sidebar .tab-post .nav.nav-pills .nav-link:hover {
    color: #04880d;
    background: #c9f7f7
}

.sidebar .tab-post .tab-content {
    padding: 15px 0 0 0;
    background: 0 0
}

.sidebar .tab-post .tab-content .container {
    padding: 0
}

.sidebar .sidebar-widget .category-widget {
    position: relative
}

.sidebar .category-widget ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.sidebar .category-widget ul li {
    margin: 0 0 12px 22px
}

.sidebar .category-widget ul li:last-child {
    margin-bottom: 0
}

.sidebar .category-widget ul li a {
    display: inline-block;
    line-height: 23px
}

.sidebar .category-widget ul li::before {
    position: absolute;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #c9f7f7;
    left: 1px
}

.sidebar .category-widget ul li span {
    display: inline-block;
    float: right
}

.sidebar .sidebar-widget .tag-widget {
    position: relative;
    margin: -5px -5px
}

.single .tag-widget a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    border: 1px solid #ddd
}

.single .tag-widget a:hover {
    color: #c9f7f7;
    background: #04880d
}

.sidebar .image-widget {
    display: block;
    width: 100%;
    overflow: hidden
}

.sidebar .image-widget img {
    max-width: 100%;
    transition: .3s
}

.sidebar .image-widget img:hover {
    transform: scale(1.1)
}

.footer {
    position: relative;
    background: #000
}

.footer .container-fluid {
    padding: 90px 0 0 0;
    background: linear-gradient(rgba(52, 49, 72, .9), rgba(52, 49, 72, .9));
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain
}

.footer .footer-info {
    position: relative;
    width: 100%;
    text-align: LEFT
}

.footer .footer-info .footer-logo {
    display: inline-block;
    color: #c9f7f7;
    font-size: 60px;
    line-height: 60px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 45px
}

.footer .footer-info .footer-logo span {
    color: #fff;
    text-transform: lowercase
}

.footer .footer-info h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    color: #fff
}

.footer .footer-info p a {
    color: #d9d9d9;
    font-size: 14px;
    line-height: 80%;
    justify-content: flex-start;
    text-transform: uppercase
}

.footer .footerlink {
    color: #d9d9d9;
    font-size: 14px;
    justify-content: flex-start;
    text-transform: uppercase
}

.footer .footerhead {
    color: #f7cec9;
    font-size: 23px;
    font-weight: 600;
    text-transform: uppercase
}

.footer .footer-menu {
    width: 100%;
    display: flex;
    justify-content: CENTER
}

.footer .footer-menu p {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    padding: 0 10px;
    border-right: 1px solid #fff
}

.footer .footer-menu p:last-child {
    border: none
}

.footer .footer-social {
    position: relative;
    margin-top: 5px
}

.footer .footer-social a {
    display: inline-block
}

.footer .footer-social a i {
    margin-right: 15px;
    font-size: 20px;
    color: #fff;
    transition: .3s
}

.footer .footer-social a:last-child i {
    margin: 0
}

.footer .footer-social a:hover i {
    color: #c9f7f7
}

.footer .copyright {
    padding: 0 30px
}

.footer .copyright .row {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid rgba(256, 256, 256, .1)
}

.footer .copyright p {
    margin: 0;
    color: #fff
}

.footer .copyright .col-md-6:last-child p {
    text-align: right
}

.footer .copyright p a {
    color: #fff;
    font-weight: 600
}

.footer .copyright p a:hover {
    color: #c9f7f7
}

@media (max-width: 767.98px) {
    .footer .copyright .col-md-6:last-child p, .footer .copyright p {
        margin: 5px 0;
        text-align: center
    }
}

#share {
    width: 100%;
    margin: 10px auto;
    text-align: center
}

#share a {
    width: 50px;
    height: 50px;
    display: inline-block;
    margin: 8px;
    border-radius: 50%;
    font-size: 24px;
    color: #fff;
    opacity: .75;
    transition: opacity .15s linear
}

#share a:hover {
    opacity: 1
}

#share i {
    position: relative;
    top: 40%;
    transform: translateY(-50%)
}

.facebook {
    background: #3b5998
}

.twitter {
    background: #55acee
}

.googleplus {
    background: #dd4b39
}

.linkedin {
    background: #0077b5
}

.pinterest {
    background: #cb2027
}

.slider {
    display: inline-block;
    vertical-align: middle;
    position: relative
}

.slider.slider-horizontal {
    width: 80%;
    height: 30px
}

.slider.slider-horizontal .slider-track {
    height: 15px;
    width: 100%;
    margin-top: -8px;
    top: 50%;
    left: 0
}

.slider.slider-horizontal .slider-selection, .slider.slider-horizontal .slider-track-high, .slider.slider-horizontal .slider-track-low {
    height: 100%;
    top: 0;
    bottom: 0
}

.slider.slider-horizontal .slider-handle, .slider.slider-horizontal .slider-tick {
    margin-left: -10px
}

.slider.slider-horizontal .slider-handle.triangle, .slider.slider-horizontal .slider-tick.triangle {
    position: relative;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border-width: 0 10px 10px 10px;
    width: 0;
    height: 0;
    border-bottom-color: #2e6da4;
    margin-top: 0
}

.slider.slider-horizontal .slider-tick-container {
    white-space: nowrap;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%
}

.slider.slider-horizontal .slider-tick-label-container {
    white-space: nowrap;
    margin-top: 20px
}

.slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
    padding-top: 4px;
    display: inline-block;
    text-align: center
}

.slider.slider-horizontal .tooltip {
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.slider.slider-horizontal.slider-rtl .slider-track {
    left: initial;
    right: 0
}

.slider.slider-horizontal.slider-rtl .slider-handle, .slider.slider-horizontal.slider-rtl .slider-tick {
    margin-left: initial;
    margin-right: -10px
}

.slider.slider-horizontal.slider-rtl .slider-tick-container {
    left: initial;
    right: 0
}

.slider.slider-horizontal.slider-rtl .tooltip {
    -ms-transform: translateX(50%);
    transform: translateX(50%)
}

.slider.slider-vertical {
    height: 210px;
    width: 20px
}

.slider.slider-vertical .slider-track {
    width: 10px;
    height: 100%;
    left: 25%;
    top: 0
}

.slider.slider-vertical .slider-selection {
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0
}

.slider.slider-vertical .slider-track-high, .slider.slider-vertical .slider-track-low {
    width: 100%;
    left: 0;
    right: 0
}

.slider.slider-vertical .slider-handle, .slider.slider-vertical .slider-tick {
    margin-top: -10px
}

.slider.slider-vertical .slider-handle.triangle, .slider.slider-vertical .slider-tick.triangle {
    border-width: 10px 0 10px 10px;
    width: 1px;
    height: 1px;
    border-left-color: #2e6da4;
    border-right-color: #2e6da4;
    margin-left: 0;
    margin-right: 0
}

.slider.slider-vertical .slider-tick-label-container {
    white-space: nowrap
}

.slider.slider-vertical .slider-tick-label-container .slider-tick-label {
    padding-left: 4px
}

.slider.slider-vertical .tooltip {
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.slider.slider-vertical.slider-rtl .slider-track {
    left: initial;
    right: 25%
}

.slider.slider-vertical.slider-rtl .slider-selection {
    left: initial;
    right: 0
}

.slider.slider-vertical.slider-rtl .slider-handle.triangle, .slider.slider-vertical.slider-rtl .slider-tick.triangle {
    border-width: 10px 10px 10px 0
}

.slider.slider-vertical.slider-rtl .slider-tick-label-container .slider-tick-label {
    padding-left: initial;
    padding-right: 4px
}

.slider.slider-disabled .slider-handle {
    background-image: -webkit-linear-gradient(top, #dfdfdf 0, #bebebe 100%);
    background-image: -o-linear-gradient(top, #dfdfdf 0, #bebebe 100%);
    background-image: linear-gradient(to bottom, #dfdfdf 0, #bebebe 100%);
    background-repeat: repeat-x
}

.slider.slider-disabled .slider-track {
    background-image: -webkit-linear-gradient(top, #e5e5e5 0, #e9e9e9 100%);
    background-image: -o-linear-gradient(top, #e5e5e5 0, #e9e9e9 100%);
    background-image: linear-gradient(to bottom, #e5e5e5 0, #e9e9e9 100%);
    background-repeat: repeat-x;
    cursor: not-allowed
}

.slider input {
    display: none
}

.slider .tooltip {
    pointer-events: none
}

.slider .tooltip.top {
    margin-top: -36px
}

.slider .tooltip-inner {
    white-space: nowrap;
    max-width: none
}

.slider .hide {
    display: none
}

.slider-track {
    position: absolute;
    cursor: pointer;
    background-image: -webkit-linear-gradient(top, #f5f5f5 0, #f9f9f9 100%);
    background-image: -o-linear-gradient(top, #f5f5f5 0, #f9f9f9 100%);
    background-image: linear-gradient(to bottom, #f5f5f5 0, #f9f9f9 100%);
    background-repeat: repeat-x;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    border-radius: 4px
}

.slider-selection {
    position: absolute;
    background-image: -webkit-linear-gradient(top, #f9f9f9 0, #f5f5f5 100%);
    background-image: -o-linear-gradient(top, #f9f9f9 0, #f5f5f5 100%);
    background-image: linear-gradient(to bottom, #f9f9f9 0, #f5f5f5 100%);
    background-repeat: repeat-x;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 4px
}

.slider-selection.tick-slider-selection {
    background-image: -webkit-linear-gradient(top, #8ac1ef 0, #82b3de 100%);
    background-image: -o-linear-gradient(top, #8ac1ef 0, #82b3de 100%);
    background-image: linear-gradient(to bottom, #8ac1ef 0, #82b3de 100%);
    background-repeat: repeat-x
}

.slider-track-high, .slider-track-low {
    position: absolute;
    background: 0 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 4px
}

.slider-handle {
    position: absolute;
    top: 0;
    width: 27px;
    height: 27px;
    background-color: #000;
    background-image: -webkit-linear-gradient(top, #000 0, #434343 100%);
    background-image: -o-linear-gradient(top, #000 0, #434343 100%);
    background-image: linear-gradient(to bottom, #000 0, #434343 100%);
    background-repeat: repeat-x;
    filter: none;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
    border: 0 solid transparent
}

.slider-handle:hover {
    cursor: pointer
}

.slider-handle.round {
    border-radius: 50%
}

.slider-handle.triangle {
    background: transparent none
}

.slider-handle.custom {
    background: transparent none
}

.slider-handle.custom::before {
    line-height: 20px;
    font-size: 20px;
    content: '\2605';
    color: #726204
}

.slider-tick {
    position: absolute;
    cursor: pointer;
    width: 20px;
    height: 20px;
    background-image: -webkit-linear-gradient(top, #000 0, #434343 100%);
    background-image: -o-linear-gradient(top, #000 0, #434343 100%);
    background-image: linear-gradient(to bottom, #000 0, #434343 100%);
    background-repeat: repeat-x;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    filter: none;
    opacity: .8;
    border: 0 solid transparent
}

.slider-tick.round {
    border-radius: 100%
}

.slider-tick.triangle {
    background: transparent none
}

.slider-tick.custom {
    background: transparent none
}

.slider-tick.custom::before {
    line-height: 20px;
    font-size: 20px;
    content: '\2605';
    color: #726204
}

.slider-tick.in-selection {
    background-image: -webkit-linear-gradient(top, #8ac1ef 0, #82b3de 100%);
    background-image: -o-linear-gradient(top, #8ac1ef 0, #82b3de 100%);
    background-image: linear-gradient(to bottom, #8ac1ef 0, #82b3de 100%);
    background-repeat: repeat-x;
    opacity: 1
}

#energy-container .slider-selection {
    background: linear-gradient(to right, #11998e, #38ef7d);
    background-color: #11998e
}

#rangeslider4 .slider-selection {
    background: linear-gradient(to right, #ed213a, #93291e);
    background-color: #ed213a
}

#rangeslider3 .slider-selection {
    background: linear-gradient(to right, #24c6dc, #514a9d);
    background-color: #24c6dc
}

#rangeslider2 .slider-selection {
    background: linear-gradient(to right, #76b852, #8dc26f);
    background-color: #76b852
}

.border-3 {
    border-width: 3px !important;
    border-style: dotted;
    border-color: lightgrey;
    border-radius: 20px;
    background-color: #f2eeee;
    padding: 20px;
    width: 100%;
    margin: auto;
    align-items: center;
}

@media (max-width: 640px) {
    span.mobile {
        display: none
    }

    .border-3 {
        padding: 10px!important;
    }

    #util-list {
        display: none
    }
}


/*body {*/
/*    color: #797979;*/
/*    background: #f7f8fe;*/
/*    font-family: Verdana, sans-serif;*/
/*}*/

/*.container-fluid {*/
/*    max-width: 1366px;*/
/*}*/

/*.navbar {*/
/*    position: relative;*/
/*    transition: .5s;*/
/*    z-index: 999;*/
/*}*/

img {
    max-width: 100%
}


.toolsbottom {
    position: relative;
    width: 100%;
    padding: 45px 0 15px
}

.toolsbottom .toolsbottom-item {
    position: relative;
    margin-bottom: 30px
}

.toolsbottom .toolsbottom-body, .toolsbottom .toolsbottom-footer, .toolsbottom .toolsbottom-header {
    position: relative;
    width: 100%;
    text-align: center;
    background: #fff;
    overflow: hidden
}

.toolsbottom .toolsbottom-header {
    padding: 30px;
    background: #c9f7f7;
    color: #04880d
}

.toolsbottom .toolsbottom-item.featured-item .toolsbottom-header {
    background: #04880d;
    color: #c9f7f7
}

.toolsbottom .toolsbottom-status {
    margin-top: -30px;
    text-align: right
}

.toolsbottom .toolsbottom-status span {
    position: relative;
    display: inline-block;
    height: 30px;
    right: -30px;
    padding: 7px 10px;
    text-align: center;
    color: #04880d;
    font-size: 14px;
    line-height: 14px;
    background: #c9f7f7
}

.toolsbottom .toolsbottom-title h2 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase
}

.toolsbottom .toolsbottom-toolsbottoms h2 {
    font-size: 45px;
    font-weight: 700;
    margin-left: 10px
}

.toolsbottom .toolsbottom-toolsbottoms h2 small {
    position: absolute;
    font-size: 18px;
    font-weight: 400;
    margin-top: 9px;
    margin-left: -12px
}

.toolsbottom .toolsbottom-toolsbottoms h2 span {
    margin-left: 1px;
    font-size: 18px;
    font-weight: 400
}

.toolsbottom .toolsbottom-item.featured-item h2 {
    color: #c9f7f7
}

.toolsbottom .toolsbottom-body {
    padding: 25px 0 20px;
    border: 1px solid rgba(0, 0, 0, .07);
    border-bottom: none
}

.toolsbottom .toolsbottom-description ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.toolsbottom .toolsbottom-description ul li {
    padding: 7px;
    border-bottom: 1px solid rgba(0, 0, 0, .07)
}

.toolsbottom .toolsbottom-description ul li:last-child {
    border: none
}

.toolsbottom .toolsbottom-action {
    border: 1px solid rgba(0, 0, 0, .07);
    border-top: none
}

.toolsbottom .toolsbottom-action a.btn {
    margin-bottom: 30px;
    padding: 12px 20px;
    color: #04880d;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 0;
    background: #c9f7f7;
    transition: .3s
}

.toolsbottom .toolsbottom-action a:hover, .toolsbottom .toolsbottom-item.featured-item .toolsbottom-action a {
    color: #c9f7f7;
    background: #04880d
}

.toolsbottom .toolsbottom-item.featured-item .toolsbottom-action a:hover {
    color: #04880d;
    background: #c9f7f7
}


.bottom-list {
    display: flex;
    justify-content: end;
    gap: 1rem;
}

.cut-min {
    min-width: 100%;
    min-height: 450px;
}

.input-item {
    display: flex;
    margin: 15px 0;
}

.input-item span {
    margin-right: 10px;
}

.padding-right-0 {
    padding-right: 0;
}

.about-info a{
    color: #04c504;
}