body {
    font-family: Poppins;
}

.display-1 {
    font-family: 'Lato-Bold';
    font-size: 4.5rem;
}

.display-2 {
    font-family: 'Lato-Light';
    font-size: 3rem;
}

.display-4 {
    font-family: 'Lato-Regular';
    font-size: 1rem;
}

.display-5 {
    font-family: 'Lato-Light';
    font-size: 2.00rem;
}

.display-7 {
    font-family: 'Lato-Light';
    font-size: 1.4rem;
}

/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
    .display-1 {
        font-size: 3.6rem;
        font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-2 {
        font-size: 2.4rem;
        font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-4 {
        font-size: 0.8rem;
        font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-5 {
        font-size: 1.2rem;
        font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
    }
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border-radius: 3px;
}

.btn-sm {
    padding: 0.8rem 1.5rem;
    border-radius: 3px;
}

.btn-md {
    padding: 1rem 2rem;
    border-radius: 3px;
}

.btn-lg {
    padding: 1.2rem 3.2rem;
    border-radius: 3px;
}

.bg-primary {
    background-color: #fab900 !important;
}

.bg-success {
    background-color: #0da6e6 !important;
}

.bg-info {
    background-color: #fde8aa !important;
}

.bg-warning {
    background-color: #d5e7b7 !important;
}

.bg-danger {
    background-color: #aee1f7 !important;
}

.btn-primary {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
}

.btn-primary:before {
    content: "";
    position: absolute;
    z-index: -1;
    height: 2rem;
    width: 2rem;
    top: calc(50% - 1rem);
    left: calc(50% - 1rem);
    -webkit-transform: scale(0);
    transform: scale(0);
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    background-color: #ae8000;
    border-color: #ae8000;
    border-radius: 100px;
}

.btn-primary,
.btn-primary:active,
.btn-primary.active {
    background-color: #fab900 !important;
    border-color: #fab900 !important;
    color: #ffffff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
    color: #ffffff !important;
    background-color: #ae8000 !important;
    border-color: #ae8000 !important;
}

.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before {
    -webkit-transform: scale(10);
    transform: scale(10);
}

.btn-primary.disabled,
.btn-primary:disabled {
    color: #ffffff !important;
    background-color: #ae8000 !important;
    border-color: #ae8000 !important;
}

.btn-secondary {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
}

.btn-secondary:before {
    content: "";
    position: absolute;
    z-index: -1;
    height: 2rem;
    width: 2rem;
    top: calc(50% - 1rem);
    left: calc(50% - 1rem);
    -webkit-transform: scale(0);
    transform: scale(0);
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    background-color: #55771a;
    border-color: #55771a;
    border-radius: 100px;
}

.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
    background-color: #81b628 !important;
    border-color: #81b628 !important;
    color: #ffffff !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
    color: #ffffff !important;
    background-color: #55771a !important;
    border-color: #55771a !important;
}

.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before {
    -webkit-transform: scale(10);
    transform: scale(10);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
    color: #ffffff !important;
    background-color: #55771a !important;
    border-color: #55771a !important;
}

.btn-info {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
}

.btn-info:before {
    content: "";
    position: absolute;
    z-index: -1;
    height: 2rem;
    width: 2rem;
    top: calc(50% - 1rem);
    left: calc(50% - 1rem);
    -webkit-transform: scale(0);
    transform: scale(0);
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    background-color: #fbd45f;
    border-color: #fbd45f;
    border-radius: 100px;
}

.btn-info,
.btn-info:active,
.btn-info.active {
    background-color: #fde8aa !important;
    border-color: #fde8aa !important;
    color: #a47c04 !important;
}

.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
    color: #a47c04 !important;
    background-color: #fbd45f !important;
    border-color: #fbd45f !important;
}

.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before {
    -webkit-transform: scale(10);
    transform: scale(10);
}

.btn-info.disabled,
.btn-info:disabled {
    color: #a47c04 !important;
    background-color: #fbd45f !important;
    border-color: #fbd45f !important;
}

.btn-success {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
}

.btn-success:before {
    content: "";
    position: absolute;
    z-index: -1;
    height: 2rem;
    width: 2rem;
    top: calc(50% - 1rem);
    left: calc(50% - 1rem);
    -webkit-transform: scale(0);
    transform: scale(0);
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    background-color: #09729e;
    border-color: #09729e;
    border-radius: 100px;
}

.btn-success,
.btn-success:active,
.btn-success.active {
    background-color: #0da6e6 !important;
    border-color: #0da6e6 !important;
    color: #ffffff !important;
}

.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
    color: #ffffff !important;
    background-color: #09729e !important;
    border-color: #09729e !important;
}

.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before {
    -webkit-transform: scale(10);
    transform: scale(10);
}

.btn-success.disabled,
.btn-success:disabled {
    color: #ffffff !important;
    background-color: #09729e !important;
    border-color: #09729e !important;
}

.btn-warning {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
}

.btn-warning:before {
    content: "";
    position: absolute;
    z-index: -1;
    height: 2rem;
    width: 2rem;
    top: calc(50% - 1rem);
    left: calc(50% - 1rem);
    -webkit-transform: scale(0);
    transform: scale(0);
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    background-color: #b4d47e;
    border-color: #b4d47e;
    border-radius: 100px;
}

.btn-warning,
.btn-warning:active,
.btn-warning.active {
    background-color: #d5e7b7 !important;
    border-color: #d5e7b7 !important;
    color: #597728 !important;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
    color: #597728 !important;
    background-color: #b4d47e !important;
    border-color: #b4d47e !important;
}

.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before {
    -webkit-transform: scale(10);
    transform: scale(10);
}

.btn-warning.disabled,
.btn-warning:disabled {
    color: #597728 !important;
    background-color: #b4d47e !important;
    border-color: #b4d47e !important;
}

.btn-danger {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
}

.btn-danger:before {
    content: "";
    position: absolute;
    z-index: -1;
    height: 2rem;
    width: 2rem;
    top: calc(50% - 1rem);
    left: calc(50% - 1rem);
    -webkit-transform: scale(0);
    transform: scale(0);
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    background-color: #68c7f0;
    border-color: #68c7f0;
    border-radius: 100px;
}

.btn-danger,
.btn-danger:active,
.btn-danger.active {
    background-color: #aee1f7 !important;
    border-color: #aee1f7 !important;
    color: #0f6e97 !important;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
    color: #0f6e97 !important;
    background-color: #68c7f0 !important;
    border-color: #68c7f0 !important;
}

.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before {
    -webkit-transform: scale(10);
    transform: scale(10);
}

.btn-danger.disabled,
.btn-danger:disabled {
    color: #0f6e97 !important;
    background-color: #68c7f0 !important;
    border-color: #68c7f0 !important;
}

.btn-black {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
}

.btn-black:before {
    content: "";
    position: absolute;
    z-index: -1;
    height: 2rem;
    width: 2rem;
    top: calc(50% - 1rem);
    left: calc(50% - 1rem);
    -webkit-transform: scale(0);
    transform: scale(0);
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    background-color: #0d0d0d;
    border-color: #0d0d0d;
    border-radius: 100px;
}

.btn-black,
.btn-black:active,
.btn-black.active {
    background-color: #333333 !important;
    border-color: #333333 !important;
    color: #ffffff !important;
}

.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
    color: #ffffff !important;
    background-color: #0d0d0d !important;
    border-color: #0d0d0d !important;
}

.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before {
    -webkit-transform: scale(10);
    transform: scale(10);
}

.btn-black.disabled,
.btn-black:disabled {
    color: #ffffff !important;
    background-color: #0d0d0d !important;
    border-color: #0d0d0d !important;
}

.btn-white {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
}

.btn-white:before {
    content: "";
    position: absolute;
    z-index: -1;
    height: 2rem;
    width: 2rem;
    top: calc(50% - 1rem);
    left: calc(50% - 1rem);
    -webkit-transform: scale(0);
    transform: scale(0);
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    background-color: #d9d9d9;
    border-color: #d9d9d9;
    border-radius: 100px;
}

.btn-white,
.btn-white:active,
.btn-white.active {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color: #808080 !important;
}

.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
    color: #808080 !important;
    background-color: #d9d9d9 !important;
    border-color: #d9d9d9 !important;
}

.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before {
    -webkit-transform: scale(10);
    transform: scale(10);
}

.btn-white.disabled,
.btn-white:disabled {
    color: #808080 !important;
    background-color: #d9d9d9 !important;
    border-color: #d9d9d9 !important;
}

.btn-white,
.btn-white:active,
.btn-white.active {
    color: #333333 !important;
}

.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
    color: #333333 !important;
}

.btn-white.disabled,
.btn-white:disabled {
    color: #333333 !important;
}

.btn-primary-outline {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
}

.btn-primary-outline:before {
    content: "";
    position: absolute;
    z-index: -1;
    height: 2rem;
    width: 2rem;
    top: calc(50% - 1rem);
    left: calc(50% - 1rem);
    -webkit-transform: scale(0);
    transform: scale(0);
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    background-color: #fab900;
    border-color: #fab900;
    border-radius: 100px;
}

.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
    background: none;
    border-color: #946e00;
    color: #946e00 !important;
}

.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
    color: #ffffff !important;
    background-color: #fab900;
    border-color: #fab900;
}

.btn-primary-outline:hover:before,
.btn-primary-outline:focus:before,
.btn-primary-outline.focus:before {
    -webkit-transform: scale(10);
    transform: scale(10);
}

.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
    color: #ffffff !important;
    background-color: #fab900 !important;
    border-color: #fab900 !important;
}

.btn-secondary-outline {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
}

.btn-secondary-outline:before {
    content: "";
    position: absolute;
    z-index: -1;
    height: 2rem;
    width: 2rem;
    top: calc(50% - 1rem);
    left: calc(50% - 1rem);
    -webkit-transform: scale(0);
    transform: scale(0);
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    background-color: #81b628;
    border-color: #81b628;
    border-radius: 100px;
}

.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
    background: none;
    border-color: #466216;
    color: #466216 !important;
}

.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
    color: #ffffff !important;
    background-color: #81b628;
    border-color: #81b628;
}

.btn-secondary-outline:hover:before,
.btn-secondary-outline:focus:before,
.btn-secondary-outline.focus:before {
    -webkit-transform: scale(10);
    transform: scale(10);
}

.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
    color: #ffffff !important;
    background-color: #81b628 !important;
    border-color: #81b628 !important;
}

.btn-info-outline {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
}

.btn-info-outline:before {
    content: "";
    position: absolute;
    z-index: -1;
    height: 2rem;
    width: 2rem;
    top: calc(50% - 1rem);
    left: calc(50% - 1rem);
    -webkit-transform: scale(0);
    transform: scale(0);
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    background-color: #fde8aa;
    border-color: #fde8aa;
    border-radius: 100px;
}

.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
    background: none;
    border-color: #fbcd46;
    color: #fbcd46 !important;
}

.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
    color: #a47c04 !important;
    background-color: #fde8aa;
    border-color: #fde8aa;
}

.btn-info-outline:hover:before,
.btn-info-outline:focus:before,
.btn-info-outline.focus:before {
    -webkit-transform: scale(10);
    transform: scale(10);
}

.btn-info-outline.disabled,
.btn-info-outline:disabled {
    color: #a47c04 !important;
    background-color: #fde8aa !important;
    border-color: #fde8aa !important;
}

.btn-success-outline {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
}

.btn-success-outline:before {
    content: "";
    position: absolute;
    z-index: -1;
    height: 2rem;
    width: 2rem;
    top: calc(50% - 1rem);
    left: calc(50% - 1rem);
    -webkit-transform: scale(0);
    transform: scale(0);
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    background-color: #0da6e6;
    border-color: #0da6e6;
    border-radius: 100px;
}

.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
    background: none;
    border-color: #086085;
    color: #086085 !important;
}

.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
    color: #ffffff !important;
    background-color: #0da6e6;
    border-color: #0da6e6;
}

.btn-success-outline:hover:before,
.btn-success-outline:focus:before,
.btn-success-outline.focus:before {
    -webkit-transform: scale(10);
    transform: scale(10);
}

.btn-success-outline.disabled,
.btn-success-outline:disabled {
    color: #ffffff !important;
    background-color: #0da6e6 !important;
    border-color: #0da6e6 !important;
}

.btn-warning-outline {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
}

.btn-warning-outline:before {
    content: "";
    position: absolute;
    z-index: -1;
    height: 2rem;
    width: 2rem;
    top: calc(50% - 1rem);
    left: calc(50% - 1rem);
    -webkit-transform: scale(0);
    transform: scale(0);
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    background-color: #d5e7b7;
    border-color: #d5e7b7;
    border-radius: 100px;
}

.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
    background: none;
    border-color: #a8cd6b;
    color: #a8cd6b !important;
}

.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
    color: #597728 !important;
    background-color: #d5e7b7;
    border-color: #d5e7b7;
}

.btn-warning-outline:hover:before,
.btn-warning-outline:focus:before,
.btn-warning-outline.focus:before {
    -webkit-transform: scale(10);
    transform: scale(10);
}

.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
    color: #597728 !important;
    background-color: #d5e7b7 !important;
    border-color: #d5e7b7 !important;
}

.btn-danger-outline {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
}

.btn-danger-outline:before {
    content: "";
    position: absolute;
    z-index: -1;
    height: 2rem;
    width: 2rem;
    top: calc(50% - 1rem);
    left: calc(50% - 1rem);
    -webkit-transform: scale(0);
    transform: scale(0);
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    background-color: #aee1f7;
    border-color: #aee1f7;
    border-radius: 100px;
}

.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
    background: none;
    border-color: #51bfee;
    color: #51bfee !important;
}

.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
    color: #0f6e97 !important;
    background-color: #aee1f7;
    border-color: #aee1f7;
}

.btn-danger-outline:hover:before,
.btn-danger-outline:focus:before,
.btn-danger-outline.focus:before {
    -webkit-transform: scale(10);
    transform: scale(10);
}

.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
    color: #0f6e97 !important;
    background-color: #aee1f7 !important;
    border-color: #aee1f7 !important;
}

.btn-black-outline {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
}

.btn-black-outline:before {
    content: "";
    position: absolute;
    z-index: -1;
    height: 2rem;
    width: 2rem;
    top: calc(50% - 1rem);
    left: calc(50% - 1rem);
    -webkit-transform: scale(0);
    transform: scale(0);
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    background-color: #333333;
    border-color: #333333;
    border-radius: 100px;
}

.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
    background: none;
    border-color: #000000;
    color: #000000 !important;
}

.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
    color: #ffffff !important;
    background-color: #333333;
    border-color: #333333;
}

.btn-black-outline:hover:before,
.btn-black-outline:focus:before,
.btn-black-outline.focus:before {
    -webkit-transform: scale(10);
    transform: scale(10);
}

.btn-black-outline.disabled,
.btn-black-outline:disabled {
    color: #ffffff !important;
    background-color: #333333 !important;
    border-color: #333333 !important;
}

.btn-white-outline {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
}

.btn-white-outline:before {
    content: "";
    position: absolute;
    z-index: -1;
    height: 2rem;
    width: 2rem;
    top: calc(50% - 1rem);
    left: calc(50% - 1rem);
    -webkit-transform: scale(0);
    transform: scale(0);
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    background-color: #ffffff;
    border-color: #ffffff;
    border-radius: 100px;
}

.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
    background: none;
    border-color: #ffffff;
    color: #ffffff !important;
}

.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
    color: #333333 !important;
    background-color: #ffffff;
    border-color: #ffffff;
}

.btn-white-outline:hover:before,
.btn-white-outline:focus:before,
.btn-white-outline.focus:before {
    -webkit-transform: scale(10);
    transform: scale(10);
}

.text-primary {
    color: #fab900 !important;
}

.text-secondary {
    color: #81b628 !important;
    line-height: 1.3;
}

.text-success {
    color: #0da6e6 !important;
}

.text-info {
    color: #fde8aa !important;
}

.text-warning {
    color: #d5e7b7 !important;
}

.text-danger {
    color: #aee1f7 !important;
}

.text-white {
    color: #ffffff !important;
}

.text-black {
    color: #000000 !important;
}

a.text-primary:hover,
a.text-primary:focus {
    color: #946e00 !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
    color: #466216 !important;
}

a.text-success:hover,
a.text-success:focus {
    color: #086085 !important;
}

a.text-info:hover,
a.text-info:focus {
    color: #fbcd46 !important;
}

a.text-warning:hover,
a.text-warning:focus {
    color: #a8cd6b !important;
}

a.text-danger:hover,
a.text-danger:focus {
    color: #51bfee !important;
}

a.text-white:hover,
a.text-white:focus {
    color: #b3b3b3 !important;
}

a.text-black:hover,
a.text-black:focus {
    color: #4d4d4d !important;
}

.alert-success {
    background-color: #0da6e6;
}

.alert-info {
    background-color: #fde8aa;
}

.alert-warning {
    background-color: #d5e7b7;
}

.alert-danger {
    background-color: #aee1f7;
}

.mbr-section-btn a.btn:not(.btn-form) {
    border-radius: 100px;
    transition-property: background-color, color, border-color, box-shadow;
    transition-duration: .3s, .3s, .3s, .8s;
    transition-timing-function: ease-in-out;
}

.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
    box-shadow: none !important;
}

.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
    -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}

.mbr-gallery-filter li a {
    border-radius: 100px !important;
}

.mbr-gallery-filter li.active .btn {
    background-color: #fab900;
    border-color: #fab900;
    color: #ffffff;
}

.mbr-gallery-filter li.active .btn:focus {
    box-shadow: none;
}

.nav-tabs .nav-link {
    border-radius: 100px !important;
}

a,
a:hover {
    color: #fab900;
}

.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
    color: #fff0c7;
}

.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
    color: #c3ebfc;
}

.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
    color: #ffffff;
}

.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
    color: #ffffff;
}

.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
    color: #ffffff;
}

/* Scroll to top button*/
.scrollToTop_wraper {
    display: none;
}

.form-control {
    font-family: 'Lato-Light';
    font-size: 1.1rem;
}

blockquote {
    border-color: #fab900;
}

/* Forms */
.mbr-form .btn {
    margin: .3rem 0;
}

.mbr-form .input-group-btn a.btn {
    border-radius: 100px !important;
}

.mbr-form .input-group-btn a.btn:hover {
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}

.mbr-form .input-group-btn button[type="submit"] {
    border-radius: 100px !important;
    padding: 1rem 2rem;
}

.mbr-form .input-group-btn button[type="submit"]:hover {
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}

.special-form {
    border-radius: 100px !important;
}

.jq-selectbox li:hover,
.jq-selectbox li.selected {
    background: #efefef;
    color: #000000;
}

.jq-selectbox li {
    border-radius: 22px;
    background-color: #fab900;
    border: 1px solid #e8e8e8;
}

.jq-selectbox li:not(:nth-last-child(1)) {
    margin-bottom: 5px;
}

.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
    transition: 0.4s;
    border-top-color: currentColor;
    border-bottom-color: currentColor;
}

.jq-number__spin {
    border-radius: 22px;
}

.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
    border-top-color: #fab900;
    border-bottom-color: #fab900;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
    color: #000000 !important;
    background-color: #fab900 !important;
    box-shadow: none !important;
}

.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
    color: #000000 !important;
    background: #81b628 !important;
    box-shadow: none !important;
}

.lazy-bg {
    background-image: none !important;
}

.lazy-placeholder:not(section) {
    display: block;
    position: relative;
    padding-bottom: 56.25%;
}

iframe.lazy-placeholder,
.lazy-placeholder:after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: transparent no-repeat center;
    background-size: contain;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-image: url("../../../data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23fab900' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}

section.lazy-placeholder:after {
    opacity: 0.5;
}

.cid-rDE9DuvthI .dropdown-item:before {
    font-family: MobiriseIcons !important;
    content: '\e966';
    display: inline-block;
    width: 0;
    position: absolute;
    left: 1rem;
    top: 0.5rem;
    margin-right: 0.5rem;
    line-height: 1;
    font-size: inherit;
    vertical-align: middle;
    text-align: center;
    overflow: hidden;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.cid-rDE9DuvthI .nav-item:focus,
.cid-rDE9DuvthI .nav-link:focus {
    outline: none;
}

@media (min-width: 992px) {
    .cid-rDE9DuvthI .dropdown-item:hover:before {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        width: 16px;
    }

    .cid-rDE9DuvthI .nav-item .nav-link {
        position: relative;
    }

    .cid-rDE9DuvthI .nav-item .nav-link::before {
        position: absolute;
        content: '';
        width: 0;
        height: 3px;
        bottom: -0.5rem;
        left: 50%;
        background: linear-gradient(90deg, #fab900, #81b628);
        transition: width 200ms linear, left 200ms linear;
    }

    .cid-rDE9DuvthI .nav-item.open .nav-link::before {
        bottom: .2rem;
        width: 80% !important;
        left: 10% !important;
    }

    .cid-rDE9DuvthI .nav-item .nav-link:hover::before {
        width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-rDE9DuvthI .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    padding: 0.235em 2.5385em 0.235em 3.5385em;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.cid-rDE9DuvthI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
}

.cid-rDE9DuvthI .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
}

.cid-rDE9DuvthI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
    margin-left: -1.8rem;
    padding-right: 1rem;
    font-size: inherit;
}

.cid-rDE9DuvthI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
    display: inline-block;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.cid-rDE9DuvthI .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}

.cid-rDE9DuvthI .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}

.cid-rDE9DuvthI .navbar {
    min-height: 77px;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    display: -webkit-flex;
    -webkit-align-items: center;
    background: none;
}

.cid-rDE9DuvthI .navbar .mbr-overlay {
    z-index: -1;
    transition: all .3s;
    background: #efefef;
    background: linear-gradient(#ffffff, #efefef);
}

.cid-rDE9DuvthI .navbar.opened .mbr-overlay {
    transition: all .3s;
    background: #efefef !important;
    background: linear-gradient(#ffffff, #efefef) !important;
}

.cid-rDE9DuvthI .navbar .dropdown-item {
    padding: .25rem 1.5rem;
}

.cid-rDE9DuvthI .navbar .navbar-collapse {
    width: 100%;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    -webkit-justify-content: center;
    justify-content: center;
    z-index: 1;
    padding: .5rem 1rem;
}

@media (max-width: 991px) {
    .cid-rDE9DuvthI .navbar .navbar-collapse {
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }
}

.cid-rDE9DuvthI .navbar.collapsed.opened .dropdown-menu {
    top: 0;
}

.cid-rDE9DuvthI .navbar.collapsed.opened .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.cid-rDE9DuvthI .navbar.collapsed .navbar-collapse.show,
.cid-rDE9DuvthI .navbar.collapsed .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.cid-rDE9DuvthI .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-rDE9DuvthI .navbar.collapsed .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
}

.cid-rDE9DuvthI .navbar.collapsed .dropdown-menu {
    background: transparent !important;
}

.cid-rDE9DuvthI .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-rDE9DuvthI .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-rDE9DuvthI .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
}

.cid-rDE9DuvthI .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-rDE9DuvthI .navbar.collapsed .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.cid-rDE9DuvthI .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
}

.cid-rDE9DuvthI .navbar.collapsed .right-menu,
.cid-rDE9DuvthI .navbar.collapsed .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
}

@media (max-width: 991px) {
    .cid-rDE9DuvthI .navbar .navbar-collapse.show,
    .cid-rDE9DuvthI .navbar .navbar-collapse.collapsing {
        transition: all .3s linear;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .cid-rDE9DuvthI .navbar .navbar-collapse.show .brand-container,
    .cid-rDE9DuvthI .navbar .navbar-collapse.collapsing .brand-container {
        -webkit-order: -1;
        order: -1;
    }

    .cid-rDE9DuvthI .navbar.opened .dropdown-menu {
        top: 0;
    }

    .cid-rDE9DuvthI .navbar .dropdown-menu {
        background: transparent !important;
    }

    .cid-rDE9DuvthI .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }

    .cid-rDE9DuvthI .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }

    .cid-rDE9DuvthI .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
        margin-left: .25rem;
        border-top: 0.35em solid;
        border-right: 0.35em solid transparent;
        border-left: 0.35em solid transparent;
        border-bottom: 0;
        top: 55%;
    }

    .cid-rDE9DuvthI .navbar .navbar-logo img {
        height: 3.8rem !important;
    }

    .cid-rDE9DuvthI .navbar ul.navbar-nav li {
        margin: auto;
    }

    .cid-rDE9DuvthI .navbar .navbar-buttons {
        margin: 0;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .cid-rDE9DuvthI .navbar .dropdown-menu .dropdown-item {
        padding: .25rem 1.5rem;
        text-align: center;
    }

    .cid-rDE9DuvthI .navbar .right-menu,
    .cid-rDE9DuvthI .navbar .left-menu {
        -webkit-flex-basis: auto;
        flex-basis: auto;
    }
}

.cid-rDE9DuvthI .navbar.navbar-short {
    min-height: 60px;
}

.cid-rDE9DuvthI .navbar.navbar-short .mbr-overlay {
    background: #efefef !important;
    background: linear-gradient(#ffffff, #efefef) !important;
}

.cid-rDE9DuvthI .navbar.navbar-short .navbar-logo img {
    height: 3rem !important;
}

.cid-rDE9DuvthI .navbar.navbar-short .navbar-brand {
    padding: 0;
}

.cid-rDE9DuvthI .navbar-brand {
    -webkit-align-items: center;
    align-items: center;
    margin-right: 0;
    padding: 0;
    transition: all .3s;
    word-break: break-word;
    z-index: 1;
}

.cid-rDE9DuvthI .navbar-brand .navbar-caption {
    line-height: inherit !important;
}

.cid-rDE9DuvthI .navbar-brand .navbar-logo a {
    outline: none;
}

.cid-rDE9DuvthI .dropdown-item.active,
.cid-rDE9DuvthI .dropdown-item:active {
    background-color: transparent;
}

.cid-rDE9DuvthI .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-rDE9DuvthI .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

.cid-rDE9DuvthI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.667em;
}

.cid-rDE9DuvthI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #efefef;
}

.cid-rDE9DuvthI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
    left: 100%;
}

.cid-rDE9DuvthI .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-rDE9DuvthI ul.navbar-nav {
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .cid-rDE9DuvthI ul.navbar-nav {
        -webkit-flex-direction: column;
        flex-direction: column;
    }
}

.cid-rDE9DuvthI .navbar-buttons {
    margin-left: auto;
}

.cid-rDE9DuvthI button.navbar-toggler {
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all .2s;
    position: relative;
    margin: 1rem;
    -webkit-align-self: center;
    align-self: center;
}

.cid-rDE9DuvthI button.navbar-toggler .hamburger span {
    position: absolute;
    right: 0;
    width: 30px;
    height: 2px;
    border-right: 5px;
    background-color: #232323;
}

.cid-rDE9DuvthI button.navbar-toggler .hamburger span:nth-child(1) {
    top: 0;
    transition: all .2s;
}

.cid-rDE9DuvthI button.navbar-toggler .hamburger span:nth-child(2) {
    top: 8px;
    transition: all .15s;
}

.cid-rDE9DuvthI button.navbar-toggler .hamburger span:nth-child(3) {
    top: 8px;
    transition: all .15s;
}

.cid-rDE9DuvthI button.navbar-toggler .hamburger span:nth-child(4) {
    top: 16px;
    transition: all .2s;
}

.cid-rDE9DuvthI nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.cid-rDE9DuvthI nav.opened .hamburger span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all .25s;
    width: 20px;
    right: -2px;
}

.cid-rDE9DuvthI nav.opened .hamburger span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: all .25s;
    width: 20px;
    left: -2px;
}

.cid-rDE9DuvthI nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.cid-rDE9DuvthI .navbar-dropdown {
    position: fixed;
}

.cid-rDE9DuvthI a.nav-link {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.cid-rDE9DuvthI .mbr-iconfont {
    font-size: 1.5rem;
    padding-right: .5rem;
}

.cid-rDE9DuvthI .right-menu,
.cid-rDE9DuvthI .left-menu {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
}

.cid-rDE9DuvthI .left-menu .navbar-nav {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.cid-rDE9DuvthI .left-menu .navbar-nav ul {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.cid-rDE9DuvthI .brand-container {
    padding: 0 2rem;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.cid-rDE9DuvthI .menu-top {
    text-align: center;
    width: 100%;
    background-color: #fe525b;
    padding: .5rem 0;
}

.cid-rDE9DuvthI .full-link {
    width: 100%;
    font-size: 0;
    z-index: 2;
}

.cid-rDE9DuvthI .card-wrapper {
    z-index: 3;
}

.cid-rDE9DuvthI .popup-btn.card-wrapper {
    z-index: 1 !important;
}

@media (max-width: 991px) {
    .cid-rDE9DuvthI .navbar-collapse {
        padding-top: 0;
    }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .cid-rDE9DuvthI .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-rDEBzveFWm {
    padding-top: 135px;
    padding-bottom: 135px;
    background-image: url("../../../assets/images/346-864x649.jpg");
}

.cid-rDEBzveFWm .mbr-overlay {
    background: #81b628;
    background: linear-gradient(45deg, #81b628, #000000);
    background: radial-gradient(#81b628, #000000);
}

.cid-rDEBzveFWm .mbr-section-title {
    margin: 0;
}

.cid-rDIYyvzzWC {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #ffffff;
}

.cid-rDIYyvzzWC .mbr-section-subtitle {
    color: #767676;
}

.cid-rDIYyvzzWC .mbr-text {
    color: #767676;
    text-align: center;
}

.cid-rDIYyvzzWC .card {
    display: block;
    position: relative;
}

.cid-rDIYyvzzWC .media-container-row {
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.cid-rDIYyvzzWC .card-wrapper {
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    transition: box-shadow 0.3s;
}

.cid-rDIYyvzzWC .card-wrapper .card-img {
    display: block;
    position: relative;
    overflow: hidden;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.cid-rDIYyvzzWC .card-wrapper .card-img .mbr-overlay {
    background: #fab900;
    display: block;
    opacity: 0.7;
    transition: all .3s;
    border-bottom-left-radius: 50%;
    background: linear-gradient(135deg, #fab900, #81b628);
}

.cid-rDIYyvzzWC .card-wrapper .card-img .mbr-section-btn {
    text-align: center;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    transition: opacity .3s;
    margin: auto;
}

.cid-rDIYyvzzWC .card-wrapper .card-box {
    background-color: #ffffff;
    padding: 0 2rem 2rem 2rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.cid-rDIYyvzzWC .card-wrapper .card-box h4 {
    font-weight: 500;
    margin-bottom: 0;
    padding-top: 2rem;
}

.cid-rDIYyvzzWC .card-wrapper .card-box p {
    margin-bottom: 0;
    padding-top: 1.5rem;
}

.cid-rDIYyvzzWC .card-wrapper:hover {
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.cid-rDIYyvzzWC .popup-btn .mbr-overlay {
    opacity: 0;
    height: 0;
    bottom: 0;
    top: auto;
    border-bottom-left-radius: 0 !important;
}

.cid-rDIYyvzzWC .popup-btn .mbr-section-btn {
    opacity: 0;
}

.cid-rDIYyvzzWC .popup-btn:hover .mbr-overlay {
    opacity: 0.7;
    height: 100%;
}

.cid-rDIYyvzzWC .popup-btn:hover .mbr-section-btn {
    opacity: 1;
}

.cid-rDIYyvzzWC .underline {
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.cid-rDIYyvzzWC .underline .line {
    width: 5rem;
    height: 3px;
    background: linear-gradient(90deg, #fab900, #81b628);
    display: inline-block;
}

@media (min-width: 768px) {
    .cid-rDIYyvzzWC .mbr-section-title,
    .cid-rDIYyvzzWC .underline,
    .cid-rDIYyvzzWC .mbr-section-subtitle {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

.cid-rDIYyvzzWC .card-title {
    color: #81b628;
}

.cid-rDK68CcNSH {
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: #abce70;
}

.cid-rDK68CcNSH .img-wrap {
    width: 100% !important;
    height: 100% !important;
}

.cid-rDK68CcNSH .row-element,
.cid-rDK68CcNSH .image-element {
    padding: 0;
}

.cid-rDK68CcNSH .image-element {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}

.cid-rDK68CcNSH .image-element img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.cid-rDK68CcNSH .underline {
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.cid-rDK68CcNSH .underline .line {
    width: 5rem;
    height: 3px;
    background: linear-gradient(90deg, #fab900, #81b628);
    display: inline-block;
}

@media (min-width: 1500px) {
    .cid-rDK68CcNSH .text-content {
        padding: 5rem;
    }
}

@media (min-width: 768px) and (max-width: 1499px) {
    .cid-rDK68CcNSH .text-content {
        padding: 3rem;
    }
}

@media (max-width: 767px) {
    .cid-rDK68CcNSH .text-content {
        padding: 2rem 1rem;
    }

    .cid-rDK68CcNSH .underline .line {
        height: 2px;
    }

    .cid-rDK68CcNSH .mbr-title,
    .cid-rDK68CcNSH .underline,
    .cid-rDK68CcNSH .mbr-text,
    .cid-rDK68CcNSH .mbr-section-btn {
        text-align: center !important;
    }
}

.cid-rDK68CcNSH mbr-list LI {
    color: #ffffff;
}

.cid-rDK68CcNSH mbr-list {
    text-align: center;
}

.cid-rDK68CcNSH .mbr-list,
.cid-rDK68CcNSH .social-list mbr-list {
    color: #ffffff;
}

.cid-rDK68CcNSH ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cid-rDK68CcNSH ul li {
    padding: 1rem 0;
}

.cid-rDK68CcNSH ul li:hover {
    color: #fab900;
}

.cid-rDK68CcNSH .socicon {
    color: #fff;
    font-size: 1.5rem;
}

.cid-rDK68CcNSH .mbr-iconfont {
    margin-right: 1em;
    display: inline-block;
    vertical-align: bottom;
}

.cid-rDK9AbNTNC {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #232323;
}

.cid-rDK9AbNTNC .first-column {
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
}

.cid-rDK9AbNTNC .second-column img {
    object-fit: cover;
    object-position: center center;
    width: 10%;
}

.cid-rDK9AbNTNC .mbr-list {
    margin: 0;
}

.cid-rDK9AbNTNC .mbr-list li:not(:last-child) {
    margin-right: 2.5rem;
}

@media (max-width: 991px) {
    .cid-rDK9AbNTNC .first-column {
        -webkit-justify-content: center;
        justify-content: center;
        padding-bottom: 1rem;
    }

    .cid-rDK9AbNTNC .second-column {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .cid-rDK9AbNTNC .mbr-list li:not(:last-child) {
        margin-right: 1rem;
    }
}

.cid-rDKc6u7DGg .dropdown-item:before {
    font-family: MobiriseIcons !important;
    content: '\e966';
    display: inline-block;
    width: 0;
    position: absolute;
    left: 1rem;
    top: 0.5rem;
    margin-right: 0.5rem;
    line-height: 1;
    font-size: inherit;
    vertical-align: middle;
    text-align: center;
    overflow: hidden;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.cid-rDKc6u7DGg .nav-item:focus,
.cid-rDKc6u7DGg .nav-link:focus {
    outline: none;
}

@media (min-width: 992px) {
    .cid-rDKc6u7DGg .dropdown-item:hover:before {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        width: 16px;
    }

    .cid-rDKc6u7DGg .nav-item .nav-link {
        position: relative;
    }

    .cid-rDKc6u7DGg .nav-item .nav-link::before {
        position: absolute;
        content: '';
        width: 0;
        height: 3px;
        bottom: -0.5rem;
        left: 50%;
        background: linear-gradient(90deg, #fab900, #81b628);
        transition: width 200ms linear, left 200ms linear;
    }

    .cid-rDKc6u7DGg .nav-item.open .nav-link::before {
        bottom: .2rem;
        width: 80% !important;
        left: 10% !important;
    }

    .cid-rDKc6u7DGg .nav-item .nav-link:hover::before {
        width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-rDKc6u7DGg .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    padding: 0.235em 2.5385em 0.235em 3.5385em;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.cid-rDKc6u7DGg .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
}

.cid-rDKc6u7DGg .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
}

.cid-rDKc6u7DGg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
    margin-left: -1.8rem;
    padding-right: 1rem;
    font-size: inherit;
}

.cid-rDKc6u7DGg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
    display: inline-block;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.cid-rDKc6u7DGg .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}

.cid-rDKc6u7DGg .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}

.cid-rDKc6u7DGg .navbar {
    min-height: 77px;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    display: -webkit-flex;
    -webkit-align-items: center;
    background: none;
}

.cid-rDKc6u7DGg .navbar .mbr-overlay {
    z-index: -1;
    transition: all .3s;
    background: #efefef;
    background: linear-gradient(#ffffff, #efefef);
}

.cid-rDKc6u7DGg .navbar.opened .mbr-overlay {
    transition: all .3s;
    background: #efefef !important;
    background: linear-gradient(#ffffff, #efefef) !important;
}

.cid-rDKc6u7DGg .navbar .dropdown-item {
    padding: .25rem 1.5rem;
}

.cid-rDKc6u7DGg .navbar .navbar-collapse {
    width: 100%;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    -webkit-justify-content: center;
    justify-content: center;
    z-index: 1;
    padding: .5rem 1rem;
}

@media (max-width: 991px) {
    .cid-rDKc6u7DGg .navbar .navbar-collapse {
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }
}

.cid-rDKc6u7DGg .navbar.collapsed.opened .dropdown-menu {
    top: 0;
}

.cid-rDKc6u7DGg .navbar.collapsed.opened .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.cid-rDKc6u7DGg .navbar.collapsed .navbar-collapse.show,
.cid-rDKc6u7DGg .navbar.collapsed .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.cid-rDKc6u7DGg .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-rDKc6u7DGg .navbar.collapsed .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
}

.cid-rDKc6u7DGg .navbar.collapsed .dropdown-menu {
    background: transparent !important;
}

.cid-rDKc6u7DGg .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-rDKc6u7DGg .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-rDKc6u7DGg .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
}

.cid-rDKc6u7DGg .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-rDKc6u7DGg .navbar.collapsed .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.cid-rDKc6u7DGg .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
}

.cid-rDKc6u7DGg .navbar.collapsed .right-menu,
.cid-rDKc6u7DGg .navbar.collapsed .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
}

@media (max-width: 991px) {
    .cid-rDKc6u7DGg .navbar .navbar-collapse.show,
    .cid-rDKc6u7DGg .navbar .navbar-collapse.collapsing {
        transition: all .3s linear;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .cid-rDKc6u7DGg .navbar .navbar-collapse.show .brand-container,
    .cid-rDKc6u7DGg .navbar .navbar-collapse.collapsing .brand-container {
        -webkit-order: -1;
        order: -1;
    }

    .cid-rDKc6u7DGg .navbar.opened .dropdown-menu {
        top: 0;
    }

    .cid-rDKc6u7DGg .navbar .dropdown-menu {
        background: transparent !important;
    }

    .cid-rDKc6u7DGg .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }

    .cid-rDKc6u7DGg .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }

    .cid-rDKc6u7DGg .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
        margin-left: .25rem;
        border-top: 0.35em solid;
        border-right: 0.35em solid transparent;
        border-left: 0.35em solid transparent;
        border-bottom: 0;
        top: 55%;
    }

    .cid-rDKc6u7DGg .navbar .navbar-logo img {
        height: 3.8rem !important;
    }

    .cid-rDKc6u7DGg .navbar ul.navbar-nav li {
        margin: auto;
    }

    .cid-rDKc6u7DGg .navbar .navbar-buttons {
        margin: 0;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .cid-rDKc6u7DGg .navbar .dropdown-menu .dropdown-item {
        padding: .25rem 1.5rem;
        text-align: center;
    }

    .cid-rDKc6u7DGg .navbar .right-menu,
    .cid-rDKc6u7DGg .navbar .left-menu {
        -webkit-flex-basis: auto;
        flex-basis: auto;
    }
}

.cid-rDKc6u7DGg .navbar.navbar-short {
    min-height: 60px;
}

.cid-rDKc6u7DGg .navbar.navbar-short .mbr-overlay {
    background: #efefef !important;
    background: linear-gradient(#ffffff, #efefef) !important;
}

.cid-rDKc6u7DGg .navbar.navbar-short .navbar-logo img {
    height: 3rem !important;
}

.cid-rDKc6u7DGg .navbar.navbar-short .navbar-brand {
    padding: 0;
}

.cid-rDKc6u7DGg .navbar-brand {
    -webkit-align-items: center;
    align-items: center;
    margin-right: 0;
    padding: 0;
    transition: all .3s;
    word-break: break-word;
    z-index: 1;
}

.cid-rDKc6u7DGg .navbar-brand .navbar-caption {
    line-height: inherit !important;
}

.cid-rDKc6u7DGg .navbar-brand .navbar-logo a {
    outline: none;
}

.cid-rDKc6u7DGg .dropdown-item.active,
.cid-rDKc6u7DGg .dropdown-item:active {
    background-color: transparent;
}

.cid-rDKc6u7DGg .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-rDKc6u7DGg .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

.cid-rDKc6u7DGg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.667em;
}

.cid-rDKc6u7DGg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #efefef;
}

.cid-rDKc6u7DGg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
    left: 100%;
}

.cid-rDKc6u7DGg .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-rDKc6u7DGg ul.navbar-nav {
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .cid-rDKc6u7DGg ul.navbar-nav {
        -webkit-flex-direction: column;
        flex-direction: column;
    }
}

.cid-rDKc6u7DGg .navbar-buttons {
    margin-left: auto;
}

.cid-rDKc6u7DGg button.navbar-toggler {
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all .2s;
    position: relative;
    margin: 1rem;
    -webkit-align-self: center;
    align-self: center;
}

.cid-rDKc6u7DGg button.navbar-toggler .hamburger span {
    position: absolute;
    right: 0;
    width: 30px;
    height: 2px;
    border-right: 5px;
    background-color: #232323;
}

.cid-rDKc6u7DGg button.navbar-toggler .hamburger span:nth-child(1) {
    top: 0;
    transition: all .2s;
}

.cid-rDKc6u7DGg button.navbar-toggler .hamburger span:nth-child(2) {
    top: 8px;
    transition: all .15s;
}

.cid-rDKc6u7DGg button.navbar-toggler .hamburger span:nth-child(3) {
    top: 8px;
    transition: all .15s;
}

.cid-rDKc6u7DGg button.navbar-toggler .hamburger span:nth-child(4) {
    top: 16px;
    transition: all .2s;
}

.cid-rDKc6u7DGg nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.cid-rDKc6u7DGg nav.opened .hamburger span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all .25s;
    width: 20px;
    right: -2px;
}

.cid-rDKc6u7DGg nav.opened .hamburger span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: all .25s;
    width: 20px;
    left: -2px;
}

.cid-rDKc6u7DGg nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.cid-rDKc6u7DGg .navbar-dropdown {
    position: fixed;
}

.cid-rDKc6u7DGg a.nav-link {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.cid-rDKc6u7DGg .mbr-iconfont {
    font-size: 1.5rem;
    padding-right: .5rem;
}

.cid-rDKc6u7DGg .right-menu,
.cid-rDKc6u7DGg .left-menu {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
}

.cid-rDKc6u7DGg .left-menu .navbar-nav {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.cid-rDKc6u7DGg .left-menu .navbar-nav ul {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.cid-rDKc6u7DGg .brand-container {
    padding: 0 2rem;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.cid-rDKc6u7DGg .menu-top {
    text-align: center;
    width: 100%;
    background-color: #fe525b;
    padding: .5rem 0;
}

.cid-rDKc6u7DGg .full-link {
    width: 100%;
    font-size: 0;
    z-index: 2;
}

.cid-rDKc6u7DGg .card-wrapper {
    z-index: 3;
}

.cid-rDKc6u7DGg .popup-btn.card-wrapper {
    z-index: 1 !important;
}

@media (max-width: 991px) {
    .cid-rDKc6u7DGg .navbar-collapse {
        padding-top: 0;
    }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .cid-rDKc6u7DGg .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-rDKc6vyqfT {
    padding-top: 135px;
    padding-bottom: 135px;
    background-image: url("../../../assets/images/346-864x649.jpg");
}

.cid-rDKc6vyqfT .mbr-overlay {
    background: #81b628;
    background: linear-gradient(45deg, #81b628, #000000);
    background: radial-gradient(#81b628, #000000);
}

.cid-rDKc6vyqfT .mbr-section-title {
    margin: 0;
}

.cid-rDKcS9VNRC {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #ffffff;
}

.cid-rDKcS9VNRC .mbr-text,
.cid-rDKcS9VNRC blockquote {
    color: #232323;
}

.cid-rDKfPXj7va {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #ffffff;
}

.cid-rDKfPXj7va .mbr-text,
.cid-rDKfPXj7va blockquote {
    color: #232323;
}

.cid-rDKc6yOE7R {
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: #abce70;
}

.cid-rDKc6yOE7R .img-wrap {
    width: 100% !important;
    height: 100% !important;
}

.cid-rDKc6yOE7R .row-element,
.cid-rDKc6yOE7R .image-element {
    padding: 0;
}

.cid-rDKc6yOE7R .image-element {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}

.cid-rDKc6yOE7R .image-element img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.cid-rDKc6yOE7R .underline {
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.cid-rDKc6yOE7R .underline .line {
    width: 5rem;
    height: 3px;
    background: linear-gradient(90deg, #fab900, #81b628);
    display: inline-block;
}

@media (min-width: 1500px) {
    .cid-rDKc6yOE7R .text-content {
        padding: 5rem;
    }
}

@media (min-width: 768px) and (max-width: 1499px) {
    .cid-rDKc6yOE7R .text-content {
        padding: 3rem;
    }
}

@media (max-width: 767px) {
    .cid-rDKc6yOE7R .text-content {
        padding: 2rem 1rem;
    }

    .cid-rDKc6yOE7R .underline .line {
        height: 2px;
    }

    .cid-rDKc6yOE7R .mbr-title,
    .cid-rDKc6yOE7R .underline,
    .cid-rDKc6yOE7R .mbr-text,
    .cid-rDKc6yOE7R .mbr-section-btn {
        text-align: center !important;
    }
}

.cid-rDKc6yOE7R mbr-list LI {
    color: #ffffff;
}

.cid-rDKc6yOE7R mbr-list {
    text-align: center;
}

.cid-rDKc6yOE7R .mbr-list,
.cid-rDKc6yOE7R .social-list mbr-list {
    color: #ffffff;
}

.cid-rDKc6yOE7R ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cid-rDKc6yOE7R ul li {
    padding: 1rem 0;
}

.cid-rDKc6yOE7R ul li:hover {
    color: #fab900;
}

.cid-rDKc6yOE7R .socicon {
    color: #fff;
    font-size: 1.5rem;
}

.cid-rDKc6yOE7R .mbr-iconfont {
    margin-right: 1em;
    display: inline-block;
    vertical-align: bottom;
}

.cid-rDKc6zXB5i {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #232323;
}

.cid-rDKc6zXB5i .first-column {
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
}

.cid-rDKc6zXB5i .second-column img {
    object-fit: cover;
    object-position: center center;
    width: 10%;
}

.cid-rDKc6zXB5i .mbr-list {
    margin: 0;
}

.cid-rDKc6zXB5i .mbr-list li:not(:last-child) {
    margin-right: 2.5rem;
}

@media (max-width: 991px) {
    .cid-rDKc6zXB5i .first-column {
        -webkit-justify-content: center;
        justify-content: center;
        padding-bottom: 1rem;
    }

    .cid-rDKc6zXB5i .second-column {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .cid-rDKc6zXB5i .mbr-list li:not(:last-child) {
        margin-right: 1rem;
    }
}

.cid-rDKhG50nDm .dropdown-item:before {
    font-family: MobiriseIcons !important;
    content: '\e966';
    display: inline-block;
    width: 0;
    position: absolute;
    left: 1rem;
    top: 0.5rem;
    margin-right: 0.5rem;
    line-height: 1;
    font-size: inherit;
    vertical-align: middle;
    text-align: center;
    overflow: hidden;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.cid-rDKhG50nDm .nav-item:focus,
.cid-rDKhG50nDm .nav-link:focus {
    outline: none;
}

@media (min-width: 992px) {
    .cid-rDKhG50nDm .dropdown-item:hover:before {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        width: 16px;
    }

    .cid-rDKhG50nDm .nav-item .nav-link {
        position: relative;
    }

    .cid-rDKhG50nDm .nav-item .nav-link::before {
        position: absolute;
        content: '';
        width: 0;
        height: 3px;
        bottom: -0.5rem;
        left: 50%;
        background: linear-gradient(90deg, #fab900, #81b628);
        transition: width 200ms linear, left 200ms linear;
    }

    .cid-rDKhG50nDm .nav-item.open .nav-link::before {
        bottom: .2rem;
        width: 80% !important;
        left: 10% !important;
    }

    .cid-rDKhG50nDm .nav-item .nav-link:hover::before {
        width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-rDKhG50nDm .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    padding: 0.235em 2.5385em 0.235em 3.5385em;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.cid-rDKhG50nDm .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
}

.cid-rDKhG50nDm .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
}

.cid-rDKhG50nDm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
    margin-left: -1.8rem;
    padding-right: 1rem;
    font-size: inherit;
}

.cid-rDKhG50nDm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
    display: inline-block;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.cid-rDKhG50nDm .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}

.cid-rDKhG50nDm .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}

.cid-rDKhG50nDm .navbar {
    min-height: 77px;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    display: -webkit-flex;
    -webkit-align-items: center;
    background: none;
}

.cid-rDKhG50nDm .navbar .mbr-overlay {
    z-index: -1;
    transition: all .3s;
    background: #efefef;
    background: linear-gradient(#ffffff, #efefef);
}

.cid-rDKhG50nDm .navbar.opened .mbr-overlay {
    transition: all .3s;
    background: #efefef !important;
    background: linear-gradient(#ffffff, #efefef) !important;
}

.cid-rDKhG50nDm .navbar .dropdown-item {
    padding: .25rem 1.5rem;
}

.cid-rDKhG50nDm .navbar .navbar-collapse {
    width: 100%;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    -webkit-justify-content: center;
    justify-content: center;
    z-index: 1;
    padding: .5rem 1rem;
}

@media (max-width: 991px) {
    .cid-rDKhG50nDm .navbar .navbar-collapse {
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }
}

.cid-rDKhG50nDm .navbar.collapsed.opened .dropdown-menu {
    top: 0;
}

.cid-rDKhG50nDm .navbar.collapsed.opened .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.cid-rDKhG50nDm .navbar.collapsed .navbar-collapse.show,
.cid-rDKhG50nDm .navbar.collapsed .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.cid-rDKhG50nDm .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-rDKhG50nDm .navbar.collapsed .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
}

.cid-rDKhG50nDm .navbar.collapsed .dropdown-menu {
    background: transparent !important;
}

.cid-rDKhG50nDm .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-rDKhG50nDm .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-rDKhG50nDm .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
}

.cid-rDKhG50nDm .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-rDKhG50nDm .navbar.collapsed .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.cid-rDKhG50nDm .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
}

.cid-rDKhG50nDm .navbar.collapsed .right-menu,
.cid-rDKhG50nDm .navbar.collapsed .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
}

@media (max-width: 991px) {
    .cid-rDKhG50nDm .navbar .navbar-collapse.show,
    .cid-rDKhG50nDm .navbar .navbar-collapse.collapsing {
        transition: all .3s linear;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .cid-rDKhG50nDm .navbar .navbar-collapse.show .brand-container,
    .cid-rDKhG50nDm .navbar .navbar-collapse.collapsing .brand-container {
        -webkit-order: -1;
        order: -1;
    }

    .cid-rDKhG50nDm .navbar.opened .dropdown-menu {
        top: 0;
    }

    .cid-rDKhG50nDm .navbar .dropdown-menu {
        background: transparent !important;
    }

    .cid-rDKhG50nDm .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }

    .cid-rDKhG50nDm .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }

    .cid-rDKhG50nDm .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
        margin-left: .25rem;
        border-top: 0.35em solid;
        border-right: 0.35em solid transparent;
        border-left: 0.35em solid transparent;
        border-bottom: 0;
        top: 55%;
    }

    .cid-rDKhG50nDm .navbar .navbar-logo img {
        height: 3.8rem !important;
    }

    .cid-rDKhG50nDm .navbar ul.navbar-nav li {
        margin: auto;
    }

    .cid-rDKhG50nDm .navbar .navbar-buttons {
        margin: 0;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .cid-rDKhG50nDm .navbar .dropdown-menu .dropdown-item {
        padding: .25rem 1.5rem;
        text-align: center;
    }

    .cid-rDKhG50nDm .navbar .right-menu,
    .cid-rDKhG50nDm .navbar .left-menu {
        -webkit-flex-basis: auto;
        flex-basis: auto;
    }
}

.cid-rDKhG50nDm .navbar.navbar-short {
    min-height: 60px;
}

.cid-rDKhG50nDm .navbar.navbar-short .mbr-overlay {
    background: #efefef !important;
    background: linear-gradient(#ffffff, #efefef) !important;
}

.cid-rDKhG50nDm .navbar.navbar-short .navbar-logo img {
    height: 3rem !important;
}

.cid-rDKhG50nDm .navbar.navbar-short .navbar-brand {
    padding: 0;
}

.cid-rDKhG50nDm .navbar-brand {
    -webkit-align-items: center;
    align-items: center;
    margin-right: 0;
    padding: 0;
    transition: all .3s;
    word-break: break-word;
    z-index: 1;
}

.cid-rDKhG50nDm .navbar-brand .navbar-caption {
    line-height: inherit !important;
}

.cid-rDKhG50nDm .navbar-brand .navbar-logo a {
    outline: none;
}

.cid-rDKhG50nDm .dropdown-item.active,
.cid-rDKhG50nDm .dropdown-item:active {
    background-color: transparent;
}

.cid-rDKhG50nDm .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-rDKhG50nDm .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

.cid-rDKhG50nDm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.667em;
}

.cid-rDKhG50nDm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #efefef;
}

.cid-rDKhG50nDm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
    left: 100%;
}

.cid-rDKhG50nDm .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-rDKhG50nDm ul.navbar-nav {
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .cid-rDKhG50nDm ul.navbar-nav {
        -webkit-flex-direction: column;
        flex-direction: column;
    }
}

.cid-rDKhG50nDm .navbar-buttons {
    margin-left: auto;
}

.cid-rDKhG50nDm button.navbar-toggler {
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all .2s;
    position: relative;
    margin: 1rem;
    -webkit-align-self: center;
    align-self: center;
}

.cid-rDKhG50nDm button.navbar-toggler .hamburger span {
    position: absolute;
    right: 0;
    width: 30px;
    height: 2px;
    border-right: 5px;
    background-color: #232323;
}

.cid-rDKhG50nDm button.navbar-toggler .hamburger span:nth-child(1) {
    top: 0;
    transition: all .2s;
}

.cid-rDKhG50nDm button.navbar-toggler .hamburger span:nth-child(2) {
    top: 8px;
    transition: all .15s;
}

.cid-rDKhG50nDm button.navbar-toggler .hamburger span:nth-child(3) {
    top: 8px;
    transition: all .15s;
}

.cid-rDKhG50nDm button.navbar-toggler .hamburger span:nth-child(4) {
    top: 16px;
    transition: all .2s;
}

.cid-rDKhG50nDm nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.cid-rDKhG50nDm nav.opened .hamburger span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all .25s;
    width: 20px;
    right: -2px;
}

.cid-rDKhG50nDm nav.opened .hamburger span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: all .25s;
    width: 20px;
    left: -2px;
}

.cid-rDKhG50nDm nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.cid-rDKhG50nDm .navbar-dropdown {
    position: fixed;
}

.cid-rDKhG50nDm a.nav-link {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.cid-rDKhG50nDm .mbr-iconfont {
    font-size: 1.5rem;
    padding-right: .5rem;
}

.cid-rDKhG50nDm .right-menu,
.cid-rDKhG50nDm .left-menu {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
}

.cid-rDKhG50nDm .left-menu .navbar-nav {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.cid-rDKhG50nDm .left-menu .navbar-nav ul {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.cid-rDKhG50nDm .brand-container {
    padding: 0 2rem;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.cid-rDKhG50nDm .menu-top {
    text-align: center;
    width: 100%;
    background-color: #fe525b;
    padding: .5rem 0;
}

.cid-rDKhG50nDm .full-link {
    width: 100%;
    font-size: 0;
    z-index: 2;
}

.cid-rDKhG50nDm .card-wrapper {
    z-index: 3;
}

.cid-rDKhG50nDm .popup-btn.card-wrapper {
    z-index: 1 !important;
}

@media (max-width: 991px) {
    .cid-rDKhG50nDm .navbar-collapse {
        padding-top: 0;
    }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .cid-rDKhG50nDm .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-rDKhG6t3xV {
    padding-top: 135px;
    padding-bottom: 135px;
    background-image: url("../../../assets/images/346-864x649.jpg");
}

.cid-rDKhG6t3xV .mbr-overlay {
    background: #81b628;
    background: linear-gradient(45deg, #81b628, #000000);
    background: radial-gradient(#81b628, #000000);
}

.cid-rDKhG6t3xV .mbr-section-title {
    margin: 0;
}

.cid-rDKhG7DdsJ {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #ffffff;
}

.cid-rDKhG7DdsJ .mbr-text,
.cid-rDKhG7DdsJ blockquote {
    color: #232323;
}

.cid-rDKhG8mAbS {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #ffffff;
}

.cid-rDKhG8mAbS .mbr-text,
.cid-rDKhG8mAbS blockquote {
    color: #232323;
}

.cid-rDKhG9coKJ {
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: #abce70;
}

.cid-rDKhG9coKJ .img-wrap {
    width: 100% !important;
    height: 100% !important;
}

.cid-rDKhG9coKJ .row-element,
.cid-rDKhG9coKJ .image-element {
    padding: 0;
}

.cid-rDKhG9coKJ .image-element {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}

.cid-rDKhG9coKJ .image-element img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.cid-rDKhG9coKJ .underline {
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.cid-rDKhG9coKJ .underline .line {
    width: 5rem;
    height: 3px;
    background: linear-gradient(90deg, #fab900, #81b628);
    display: inline-block;
}

@media (min-width: 1500px) {
    .cid-rDKhG9coKJ .text-content {
        padding: 5rem;
    }
}

@media (min-width: 768px) and (max-width: 1499px) {
    .cid-rDKhG9coKJ .text-content {
        padding: 3rem;
    }
}

@media (max-width: 767px) {
    .cid-rDKhG9coKJ .text-content {
        padding: 2rem 1rem;
    }

    .cid-rDKhG9coKJ .underline .line {
        height: 2px;
    }

    .cid-rDKhG9coKJ .mbr-title,
    .cid-rDKhG9coKJ .underline,
    .cid-rDKhG9coKJ .mbr-text,
    .cid-rDKhG9coKJ .mbr-section-btn {
        text-align: center !important;
    }
}

.cid-rDKhG9coKJ mbr-list LI {
    color: #ffffff;
}

.cid-rDKhG9coKJ mbr-list {
    text-align: center;
}

.cid-rDKhG9coKJ .mbr-list,
.cid-rDKhG9coKJ .social-list mbr-list {
    color: #ffffff;
}

.cid-rDKhG9coKJ ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cid-rDKhG9coKJ ul li {
    padding: 1rem 0;
}

.cid-rDKhG9coKJ ul li:hover {
    color: #fab900;
}

.cid-rDKhG9coKJ .socicon {
    color: #fff;
    font-size: 1.5rem;
}

.cid-rDKhG9coKJ .mbr-iconfont {
    margin-right: 1em;
    display: inline-block;
    vertical-align: bottom;
}

.cid-rDKhGaoZBa {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #232323;
}

.cid-rDKhGaoZBa .first-column {
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
}

.cid-rDKhGaoZBa .second-column img {
    object-fit: cover;
    object-position: center center;
    width: 10%;
}

.cid-rDKhGaoZBa .mbr-list {
    margin: 0;
}

.cid-rDKhGaoZBa .mbr-list li:not(:last-child) {
    margin-right: 2.5rem;
}

@media (max-width: 991px) {
    .cid-rDKhGaoZBa .first-column {
        -webkit-justify-content: center;
        justify-content: center;
        padding-bottom: 1rem;
    }

    .cid-rDKhGaoZBa .second-column {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .cid-rDKhGaoZBa .mbr-list li:not(:last-child) {
        margin-right: 1rem;
    }
}