/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Header
- Features
- Details Lightbox
- Statistics
- Testimonials
- Pricing
- Conclusion
- Footer
- Copyright
- Back To Top Button
- Media Queries
******************************************/

/*****************************************
Colors:
- Primary Green - #2e7d32
- Light Green - #4caf50
- Dark Green - #1b5e20
- Backgrounds - light gray #f8fafc
- Headings text - dark #1a1a2e
- Body text - gray #4a5568
******************************************/

/**************************/
/*     General Styles     */
/**************************/

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body,
p {
    color: #4a5568;
    font: 400 1.0625rem/1.75rem "Open Sans", sans-serif;
}

h1 {
    color: #1a1a2e;
    font-weight: 700;
    font-size: 2.75rem;
    line-height: 3.25rem;
    letter-spacing: -0.5px;
}

h2 {
    color: #1a1a2e;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 2.75rem;
    letter-spacing: -0.4px;
}

h3 {
    color: #1a1a2e;
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 2.375rem;
    letter-spacing: -0.3px;
}

h4 {
    color: #1a1a2e;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -0.2px;
}

h5 {
    color: #1a1a2e;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.75rem;
}

h6 {
    color: #1a1a2e;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.5rem;
}

.h1-large {
    font-size: 3rem;
    line-height: 3.625rem;
}

.p-large {
    font-size: 1.1875rem;
    line-height: 1.875rem;
}

.p-small {
    font-size: 0.9375rem;
    line-height: 1.625rem;
}

.bg-gray {
    background-color: #f8fafc;
}

.container {
    margin-left: auto;
    margin-right: auto;
}

.btn-solid-reg {
    display: inline-block;
    padding: 1.25rem 2.25rem;
    border: 2px solid #2e7d32;
    border-radius: 12px;
    background-color: #2e7d32;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(46, 125, 50, 0.3);
}

.btn-solid-reg:hover {
    border: 2px solid #1b5e20;
    background-color: #1b5e20;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.btn-solid-lg {
    display: inline-block;
    padding: 1.375rem 2.5rem;
    border: 2px solid #2e7d32;
    border-radius: 12px;
    background-color: #2e7d32;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 14px rgba(46, 125, 50, 0.3);
}

.btn-solid-lg:hover {
    border: 2px solid #1b5e20;
    background-color: #1b5e20;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.btn-solid-lg .fab {
    margin-right: 0.625rem;
    font-size: 1.25rem;
    line-height: 0;
    vertical-align: top;
}

.btn-solid-lg .fab.fa-google-play {
    font-size: 1.125rem;
    margin-top: 8px;
}

#home-download-btn {
    position: relative;
}

.btn-solid-lg.secondary {
    border: 2px solid #1a1a2e;
    background-color: #1a1a2e;
    box-shadow: 0 4px 14px rgba(26, 26, 46, 0.3);
}

.btn-solid-lg.secondary:hover {
    border: 2px solid #000000;
    background-color: #000000;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-outline-reg {
    display: inline-block;
    padding: 1.25rem 2.25rem;
    border: 2px solid #2e7d32;
    border-radius: 12px;
    background-color: transparent;
    color: #2e7d32;
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-reg:hover {
    background-color: #2e7d32;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-outline-lg {
    display: inline-block;
    padding: 1.375rem 2.5rem;
    border: 2px solid #1a1a2e;
    border-radius: 12px;
    background-color: transparent;
    color: #1a1a2e;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-lg:hover {
    background-color: #1a1a2e;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-outline-sm {
    display: inline-block;
    padding: 1rem 1.5rem;
    border: 2px solid #1a1a2e;
    border-radius: 10px;
    background-color: transparent;
    color: #1a1a2e;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-sm:hover {
    background-color: #1a1a2e;
    color: #ffffff;
    text-decoration: none;
}

.list .fas {
    color: #2e7d32;
    font-size: 0.875rem;
    line-height: 1.75rem;
}

.list div {
    flex: 1 1 0%;
    margin-left: 0.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.label-control {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    color: #6b7280;
    opacity: 1;
    font-size: 0.9375rem;
    line-height: 1.5rem;
    cursor: text;
    transition: all 0.2s ease;
}

.form-control-input:focus + .label-control,
.form-control-input.notEmpty + .label-control,
.form-control-textarea:focus + .label-control,
.form-control-textarea.notEmpty + .label-control {
    top: 0.25rem;
    color: #2e7d32;
    opacity: 1;
    font-size: 0.75rem;
    font-weight: 600;
}

.form-control-input,
.form-control-select {
    display: block;
    width: 100%;
    padding-top: 1.25rem;
    padding-bottom: 0.25rem;
    padding-left: 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background-color: #ffffff;
    color: #1a1a2e;
    font-size: 1rem;
    line-height: 1.75rem;
    transition: all 0.3s ease;
    -webkit-appearance: none;
}

.form-control-select {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    height: 3.5rem;
    color: #6b7280;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-image: url("../images/down-arrow.png");
    background-position: 96% 50%;
    background-repeat: no-repeat;
    outline: none;
}

.form-control-textarea {
    display: block;
    width: 100%;
    height: 14rem;
    padding-top: 1.75rem;
    padding-left: 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background-color: #ffffff;
    color: #1a1a2e;
    font-size: 1rem;
    line-height: 1.625rem;
    transition: all 0.3s ease;
}

.form-control-input:focus,
.form-control-select:focus,
.form-control-textarea:focus {
    border: 2px solid #2e7d32;
    outline: none;
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1);
}

.form-control-input:hover,
.form-control-select:hover,
.form-control-textarea:hover {
    border: 2px solid #a5d6a7;
}

.checkbox {
    font-size: 0.875rem;
    line-height: 1.375rem;
}

input[type="checkbox"] {
    vertical-align: -10%;
    margin-right: 0.5rem;
    accent-color: #2e7d32;
}

.form-control-submit-button {
    display: inline-block;
    width: 100%;
    height: 3.5rem;
    border: 2px solid #2e7d32;
    border-radius: 12px;
    background-color: #2e7d32;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(46, 125, 50, 0.3);
}

.form-control-submit-button:hover {
    border: 2px solid #1b5e20;
    background-color: #1b5e20;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

/* Fade-move Animation For Details Lightbox - Magnific Popup */
.my-mfp-slide-bottom .zoom-anim-dialog {
    opacity: 0;
    transition: all 0.3s ease-out;
    -webkit-transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
    -ms-transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
    transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
}

.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
    opacity: 1;
    -webkit-transform: translateY(0) perspective(37.5rem) rotateX(0);
    -ms-transform: translateY(0) perspective(37.5rem) rotateX(0);
    transform: translateY(0) perspective(37.5rem) rotateX(0);
}

.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
    opacity: 0;
    -webkit-transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg);
    -ms-transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg);
    transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg);
}

.my-mfp-slide-bottom.mfp-bg {
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.my-mfp-slide-bottom.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.my-mfp-slide-bottom.mfp-removing.mfp-bg {
    opacity: 0;
}

/**********************/
/*     Navigation     */
/**********************/

.navbar {
    position: relative;
    background-color: #2e7d32;
    padding: 0.75rem 1.25rem;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.navbar-toggler-icon {
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}

.navbar-collapse {
    flex-basis: 100%;
}

.offcanvas-collapse {
    position: fixed;
    top: 3.5rem;
    bottom: 0;
    left: 100%;
    width: 100%;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    overflow-y: auto;
    visibility: hidden;
    background-color: #2e7d32;
    transition: visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.offcanvas-collapse.open {
    visibility: visible;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.nav-link {
    display: block;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.dropdown-toggle {
    white-space: nowrap;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.3em;
    vertical-align: 0.2em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropdown.show > a,
.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.1);
}

.dropdown-menu {
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 12rem;
    padding: 0.75rem 0;
    margin: 0.5rem 0;
    font-size: 0.9375rem;
    color: #1a1a2e;
    list-style: none;
    background-color: #ffffff;
    background-clip: padding-box;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: fadeDropdown 0.3s;
}

@keyframes fadeDropdown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu.show {
    display: block;
    top: 90%;
    left: auto;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.625rem 1.25rem;
    clear: both;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.9375rem;
    line-height: 1.25;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
    text-decoration: none;
    background-color: #e8f5e9;
    color: #2e7d32;
}

.dropdown-divider {
    overflow: hidden;
    width: 90%;
    height: 1px;
    margin: 0.5rem auto;
    background-color: #e2e8f0;
}

/*****************/
/*    Header     */
/*****************/
.header {
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 50%, #81c784 100%);
    position: relative;
}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

/********************/
/*     Features     */
/********************/
.cards-1 {
    padding-top: 5rem;
    padding-bottom: 2rem;
    text-align: center;
    background-color: #f8fafc;
}

.cards-1 .card {
    margin-bottom: 2rem;
    padding: 2.5rem 1.5rem 2rem;
    border: none;
    border-radius: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.cards-1 .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.cards-1 .card-image {
    margin-bottom: 1.5rem;
}

.cards-1 .card-image img {
    width: 80px;
    height: 80px;
    margin-right: auto;
    margin-left: auto;
}

.cards-1 .card-image i {
    color: #2e7d32;
}

.cards-1 .card-body {
    padding: 0;
}

.cards-1 .card-title {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

/****************************/
/*     Details Lightbox     */
/****************************/
.lightbox-basic {
    position: relative;
    max-width: 1150px;
    margin: 2.5rem auto;
    padding: 3rem 1.5rem;
    background-color: #ffffff;
    text-align: left;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.lightbox-basic .btn-solid-reg.mfp-close {
    position: relative;
    width: auto;
    height: auto;
    color: #ffffff;
    opacity: 1;
    font-weight: 600;
    font-family: "Open Sans";
}

.lightbox-basic .btn-solid-reg.mfp-close:hover {
    color: #ffffff;
}

.lightbox-basic .btn-outline-reg.mfp-close.as-button {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    margin-left: 0.5rem;
    padding: 1.25rem 2.25rem;
    border: 2px solid #1a1a2e;
    background-color: transparent;
    color: #1a1a2e;
    opacity: 1;
    font-family: "Open Sans";
}

.lightbox-basic .btn-outline-reg.mfp-close.as-button:hover {
    background-color: #1a1a2e;
    color: #ffffff;
}

.lightbox-basic button.mfp-close.x-button {
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    color: #4a5568;
    font-size: 1.5rem;
}

/**********************/
/*     Statistics     */
/**********************/
.counter {
    padding-top: 3rem;
    padding-bottom: 5rem;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f5e9 100%);
}

.counter #counter {
    margin-bottom: 1rem;
}

.counter #counter .cell {
    display: inline-block;
    width: 140px;
    margin-right: 1.5rem;
    margin-bottom: 3rem;
    margin-left: 1.5rem;
    vertical-align: top;
}

.counter #counter .counter-value {
    color: #2e7d32;
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 4rem;
    vertical-align: middle;
}

.counter #counter .counter-info {
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 500;
    color: #4a5568;
    vertical-align: middle;
}

/************************/
/*     Testimonials     */
/************************/

.slider-1 {
    background-color: #ffffff;
}

.slider-1 .slider-container {
    position: relative;
}

.slider-1 .swiper-container {
    position: static;
    width: 86%;
    text-align: center;
}

.slider-1 .swiper-button-prev:focus,
.slider-1 .swiper-button-next:focus {
    outline: none;
}

.slider-1 .swiper-button-prev {
    left: -14px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%232e7d32'%2F%3E%3C%2Fsvg%3E");
    background-size: 18px 28px;
}

.slider-1 .swiper-button-next {
    right: -14px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%232e7d32'%2F%3E%3C%2Fsvg%3E");
    background-size: 18px 28px;
}

.slider-1 .card {
    position: relative;
    border: none;
    background-color: transparent;
}

.slider-1 .card-image {
    width: 90px;
    height: 90px;
    margin-right: auto;
    margin-bottom: 1.5rem;
    margin-left: auto;
    border-radius: 50%;
    border: 4px solid #e8f5e9;
    object-fit: cover;
}

.slider-1 .testimonial-author {
    margin-bottom: 0;
    color: #1a1a2e;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.5rem;
}

.slider-1 .card-body p.italic {
    font-size: 1.0625rem;
    line-height: 1.75rem;
    color: #4a5568;
}

/*******************/
/*     Pricing     */
/*******************/
.cards-2 {
    position: relative;
    padding-top: 8rem;
    background: linear-gradient(rgba(30, 40, 50, 0.9), rgba(30, 40, 50, 0.9)), url("../images/pricing-background.jpg") center center no-repeat;
    background-size: cover;
    text-align: center;
}

.cards-2 .card {
    position: relative;
    display: block;
    background-color: #ffffff;
    max-width: 350px;
    margin-right: auto;
    margin-bottom: 6rem;
    margin-left: auto;
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cards-2 .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cards-2 .card .card-body {
    padding: 3rem 2rem 2.5rem;
}

.cards-2 .card .card-title {
    margin-bottom: 1.25rem;
    color: #2e7d32;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: center;
}

.cards-2 .card p {
    margin-bottom: 1.25rem;
    text-align: left;
    font-size: 1rem;
}

.cards-2 .card .value {
    color: #1a1a2e;
    font-weight: 700;
    font-size: 4.5rem;
    line-height: 5rem;
    text-align: center;
}

.cards-2 .card .currency {
    margin-right: 0.25rem;
    color: #1a1a2e;
    font-size: 2rem;
    vertical-align: 80%;
}

.cards-2 .card .frequency {
    margin-bottom: 1.75rem;
    font-size: 1rem;
    text-align: center;
    color: #6b7280;
}

.cards-2 .card .button-wrapper {
    position: absolute;
    right: 0;
    bottom: -1.5rem;
    left: 0;
    text-align: center;
}

.cards-2 .card .btn-solid-reg:hover {
    background-color: #1b5e20;
}

.cards-2 .card .label {
    position: absolute;
    top: 0;
    right: 0;
    width: 10.625rem;
    height: 10.625rem;
    overflow: hidden;
}

.cards-2 .card .label .best-value {
    position: relative;
    width: 13.75rem;
    padding: 0.4rem 0 0.4rem 4rem;
    background-color: #2e7d32;
    color: #ffffff;
    font-weight: 600;
    -webkit-transform: rotate(45deg) translate3d(0, 0, 0);
    -ms-transform: rotate(45deg) translate3d(0, 0, 0);
    transform: rotate(45deg) translate3d(0, 0, 0);
}

/**********************/
/*     Conclusion     */
/**********************/
.basic-5 {
    padding-top: 5rem;
    padding-bottom: 8rem;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.9), rgba(76, 175, 80, 0.9)), url("../images/conclusion-background.jpg") center center no-repeat;
    background-size: cover;
    text-align: center;
}

.basic-5 p {
    color: #ffffff;
}

/******************/
/*     Footer     */
/******************/
.footer {
    padding-top: 5rem;
    padding-bottom: 3rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    text-align: center;
}

.footer h4 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.75rem;
}

.footer a {
    text-decoration: none;
    color: #a5d6a7;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #ffffff;
}

.footer .fa-stack {
    width: 2.5em;
    margin-bottom: 1.5rem;
    margin-right: 0.5rem;
    font-size: 1.375rem;
}

.footer .fa-stack .fa-stack-1x {
    color: #1a1a2e;
    transition: all 0.3s ease;
}

.footer .fa-stack .fa-stack-2x {
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer .fa-stack:hover .fa-stack-1x {
    color: #ffffff;
}

.footer .fa-stack:hover .fa-stack-2x {
    color: #2e7d32;
}

/*********************/
/*     Copyright     */
/*********************/
.copyright {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
    background-color: #1a1a2e;
    text-align: center;
}

.copyright a {
    color: #a5d6a7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.copyright a:hover {
    color: #ffffff;
}

.copyright .list-unstyled li {
    color: #9ca3af;
}

.copyright .list-unstyled li a {
    color: #9ca3af;
}

.copyright .list-unstyled li a:hover {
    color: #ffffff;
}

.copyright .statement {
    color: #9ca3af;
}

/******************************/
/*     Back To Top Button     */
/******************************/
a.back-to-top {
    position: fixed;
    z-index: 999;
    right: 16px;
    bottom: 16px;
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #2e7d32 url("../images/up-arrow.png") no-repeat center 47%;
    background-size: 18px 18px;
    text-indent: -9999px;
    box-shadow: 0 4px 14px rgba(46, 125, 50, 0.4);
    transition: all 0.3s ease;
}

a:hover.back-to-top {
    background-color: #1b5e20;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.5);
}

/***********************/
/*     Extra Pages     */
/***********************/
.ex-header {
    padding-top: 9rem;
    padding-bottom: 5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f5e9 100%);
}

.ex-basic-1 .list-unstyled .fas {
    font-size: 0.5rem;
    line-height: 1.75rem;
    color: #2e7d32;
}

.ex-basic-1 .text-box {
    padding: 1.5rem 1.5rem 0.75rem;
    background-color: #f8fafc;
    border-radius: 12px;
}

.ex-cards-1 .card {
    border: none;
    background-color: transparent;
}

.ex-cards-1 .card .fa-stack {
    width: 2em;
    font-size: 1.25rem;
}

.ex-cards-1 .card .fa-stack-2x {
    color: #2e7d32;
}

.ex-cards-1 .card .fa-stack-1x {
    color: #ffffff;
    font-weight: 700;
    line-height: 2.25rem;
}

/*************************/
/*     Media Queries     */
/*************************/

/* Min-width 768px */
@media (min-width: 768px) {
    .ex-basic-1 .text-box {
        padding: 2rem 2.25rem 1rem;
    }
}

/* Min-width 1024px */
@media (min-width: 1024px) {
    /* General Styles */
    .h1-large {
        font-size: 3.25rem;
        line-height: 3.875rem;
    }

    .btn-solid-lg {
        margin-right: 0.75rem;
        margin-left: 0;
    }

    /* Navigation */
    .navbar {
        background-color: transparent;
        flex-wrap: nowrap;
        justify-content: start;
        padding-left: 0;
        padding-right: 0;
        padding-top: 2rem;
        box-shadow: none;
    }

    .navbar-collapse {
        flex-basis: auto;
    }

    .navbar.top-nav-collapse {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        background-color: #2e7d32;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .offcanvas-collapse {
        position: static;
        top: auto;
        bottom: auto;
        left: auto;
        width: auto;
        padding-right: 0;
        padding-left: 0;
        background-color: transparent;
        overflow-y: visible;
        visibility: visible;
    }

    .offcanvas-collapse.open {
        -webkit-transform: none;
        transform: none;
    }

    .nav-link {
        padding-right: 0.875rem;
        padding-left: 0.875rem;
    }

    .dropdown-menu {
        position: absolute;
        margin-top: 0.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }

    .dropdown-divider {
        width: 90%;
    }

    /* Details Lightbox */
    .lightbox-basic {
        padding: 3.5rem 3.5rem;
    }

    /* Features */
    .cards-1 .card {
        display: inline-block;
        width: 320px;
        vertical-align: top;
    }

    .cards-1 .card:nth-of-type(3n + 2) {
        margin-right: 1.25rem;
        margin-left: 1.25rem;
    }

    /* Statistics */
    .counter {
        padding-top: 6rem;
    }

    /* Testimonials */
    .slider-1 .swiper-container {
        width: 92%;
    }

    .slider-1 .swiper-button-prev {
        left: -20px;
        width: 24px;
        background-size: 24px 36px;
    }

    .slider-1 .swiper-button-next {
        right: -20px;
        width: 24px;
        background-size: 24px 36px;
    }

    /* Pricing */
    .cards-2 .card {
        display: inline-block;
        max-width: 100%;
        width: 330px;
        vertical-align: top;
    }

    .cards-2 .card:nth-of-type(3n + 2) {
        margin-right: 0.5rem;
        margin-left: 0.5rem;
    }

    /* Conclusion */
    .basic-5 {
        text-align: left;
    }

    /* Copyright */
    .copyright {
        text-align: left;
    }

    .copyright .list-unstyled li {
        display: inline-block;
        margin-right: 1.25rem;
    }

    .copyright .statement {
        text-align: right;
    }

    /* Extra Pages */
    .ex-cards-1 .card {
        display: inline-block;
        width: 320px;
        vertical-align: top;
    }

    .ex-cards-1 .card:nth-of-type(3n + 2) {
        margin-right: 1.25rem;
        margin-left: 1.25rem;
    }
}

/* Min-width 1280px */
@media (min-width: 1280px) {
    /* General Styles */
    .h1-large {
        font-size: 3.5rem;
        line-height: 4.125rem;
    }

    .container {
        max-width: 76rem;
    }

    /* Features */
    .cards-1 .card {
        width: 360px;
        padding-right: 2.5rem;
        padding-left: 2.5rem;
    }

    .cards-1 .card:nth-of-type(3n + 2) {
        margin-right: 1.75rem;
        margin-left: 1.75rem;
    }

    /* Statistics */
    .counter #counter .cell {
        margin-right: 3rem;
        margin-left: 3rem;
    }

    .counter #counter .counter-value {
        font-size: 4rem;
        line-height: 4.5rem;
    }

    /* Pricing */
    .cards-2 .card {
        width: 360px;
    }

    .cards-2 .card:nth-of-type(3n + 2) {
        margin-right: 2.5rem;
        margin-left: 2.5rem;
    }

    .cards-2 .card .card-body {
        padding-right: 2.5rem;
        padding-left: 2.5rem;
    }

    /* Extra Pages */
    .ex-cards-1 .card {
        width: 350px;
    }

    .ex-cards-1 .card:nth-of-type(3n + 2) {
        margin-right: 3rem;
        margin-left: 3rem;
    }
}
