/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}
.animated.hinge {
    animation-duration: 2s;
}
@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    to {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}
.bounce {
    animation-name: bounce;
}
@keyframes flash {
    0%,
    50%,
    to {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}
.flash {
    animation-name: flash;
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}
.pulse {
    animation-name: pulse;
}
@keyframes shake {
    0%,
    to {
        transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-10px);
    }
    20%,
    40%,
    60%,
    80% {
        transform: translateX(10px);
    }
}
.shake {
    animation-name: shake;
}
@keyframes swing {
    20% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-10deg);
    }
    60% {
        transform: rotate(5deg);
    }
    80% {
        transform: rotate(-5deg);
    }
    to {
        transform: rotate(0deg);
    }
}
.swing {
    transform-origin: top center;
    animation-name: swing;
}
@keyframes tada {
    0% {
        transform: scale(1);
    }
    10%,
    20% {
        transform: scale(0.9) rotate(-3deg);
    }
    30%,
    50%,
    70%,
    90% {
        transform: scale(1.1) rotate(3deg);
    }
    40%,
    60%,
    80% {
        transform: scale(1.1) rotate(-3deg);
    }
    to {
        transform: scale(1) rotate(0);
    }
}
.tada {
    animation-name: tada;
}
@keyframes wobble {
    0% {
        transform: translateX(0);
    }
    15% {
        transform: translateX(-25%) rotate(-5deg);
    }
    30% {
        transform: translateX(20%) rotate(3deg);
    }
    45% {
        transform: translateX(-15%) rotate(-3deg);
    }
    60% {
        transform: translateX(10%) rotate(2deg);
    }
    75% {
        transform: translateX(-5%) rotate(-1deg);
    }
    to {
        transform: translateX(0);
    }
}
.wobble {
    animation-name: wobble;
}
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    to {
        transform: scale(1);
    }
}
.bounceIn {
    animation-name: bounceIn;
}
@keyframes bounceInDown {
    0% {
        opacity: 0;
        transform: translateY(-2000px);
    }
    60% {
        opacity: 1;
        transform: translateY(30px);
    }
    80% {
        transform: translateY(-10px);
    }
    to {
        transform: translateY(0);
    }
}
.bounceInDown {
    animation-name: bounceInDown;
}
@keyframes bounceInLeft {
    0% {
        opacity: 0;
        transform: translateX(-2000px);
    }
    60% {
        opacity: 1;
        transform: translateX(30px);
    }
    80% {
        transform: translateX(-10px);
    }
    to {
        transform: translateX(0);
    }
}
.bounceInLeft {
    animation-name: bounceInLeft;
}
@keyframes bounceInRight {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }
    60% {
        opacity: 1;
        transform: translateX(-30px);
    }
    80% {
        transform: translateX(10px);
    }
    to {
        transform: translateX(0);
    }
}
.bounceInRight {
    animation-name: bounceInRight;
}
@keyframes bounceInUp {
    0% {
        opacity: 0;
        transform: translateY(2000px);
    }
    60% {
        opacity: 1;
        transform: translateY(-30px);
    }
    80% {
        transform: translateY(10px);
    }
    to {
        transform: translateY(0);
    }
}
.bounceInUp {
    animation-name: bounceInUp;
}
@keyframes bounceOut {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(0.95);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    to {
        opacity: 0;
        transform: scale(0.3);
    }
}
.bounceOut {
    animation-name: bounceOut;
}
@keyframes bounceOutDown {
    0% {
        transform: translateY(0);
    }
    20% {
        opacity: 1;
        transform: translateY(-20px);
    }
    to {
        opacity: 0;
        transform: translateY(2000px);
    }
}
.bounceOutDown {
    animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
    0% {
        transform: translateX(0);
    }
    20% {
        opacity: 1;
        transform: translateX(20px);
    }
    to {
        opacity: 0;
        transform: translateX(-2000px);
    }
}
.bounceOutLeft {
    animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
    0% {
        transform: translateX(0);
    }
    20% {
        opacity: 1;
        transform: translateX(-20px);
    }
    to {
        opacity: 0;
        transform: translateX(2000px);
    }
}
.bounceOutRight {
    animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
    0% {
        transform: translateY(0);
    }
    20% {
        opacity: 1;
        transform: translateY(20px);
    }
    to {
        opacity: 0;
        transform: translateY(-2000px);
    }
}
.bounceOutUp {
    animation-name: bounceOutUp;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.fadeIn {
    animation-name: fadeIn;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fadeInDown {
    animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translateY(-2000px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fadeInDownBig {
    animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.fadeInLeft {
    animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translateX(-2000px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.fadeInLeftBig {
    animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.fadeInRight {
    animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.fadeInRightBig {
    animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fadeInUp {
    animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translateY(2000px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fadeInUpBig {
    animation-name: fadeInUpBig;
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
.fadeOut {
    animation-name: fadeOut;
}
@keyframes fadeOutDown {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}
.fadeOutDown {
    animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(2000px);
    }
}
.fadeOutDownBig {
    animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-20px);
    }
}
.fadeOutLeft {
    animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-2000px);
    }
}
.fadeOutLeftBig {
    animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(20px);
    }
}
.fadeOutRight {
    animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(2000px);
    }
}
.fadeOutRightBig {
    animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}
.fadeOutUp {
    animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-2000px);
    }
}
.fadeOutUpBig {
    animation-name: fadeOutUpBig;
}
@keyframes flip {
    0% {
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        animation-timing-function: ease-out;
    }
    40% {
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        animation-timing-function: ease-out;
    }
    50% {
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        animation-timing-function: ease-in;
    }
    80% {
        transform: perspective(400px) translateZ(0) rotateY(1turn) scale(0.95);
        animation-timing-function: ease-in;
    }
    to {
        transform: perspective(400px) translateZ(0) rotateY(1turn) scale(1);
        animation-timing-function: ease-in;
    }
}
.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    animation-name: flip;
}
@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotateX(-10deg);
    }
    70% {
        transform: perspective(400px) rotateX(10deg);
    }
    to {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}
.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    animation-name: flipInX;
}
@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotateY(-10deg);
    }
    70% {
        transform: perspective(400px) rotateY(10deg);
    }
    to {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}
.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    animation-name: flipInY;
}
@keyframes flipOutX {
    0% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
    to {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}
.flipOutX {
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}
@keyframes flipOutY {
    0% {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
    to {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}
.flipOutY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    animation-name: flipOutY;
}
@keyframes lightSpeedIn {
    0% {
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
    60% {
        transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }
    80% {
        transform: translateX(0) skewX(-15deg);
        opacity: 1;
    }
    to {
        transform: translateX(0) skewX(0deg);
        opacity: 1;
    }
}
.lightSpeedIn {
    animation-name: lightSpeedIn;
    animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
    0% {
        transform: translateX(0) skewX(0deg);
        opacity: 1;
    }
    to {
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}
.lightSpeedOut {
    animation-name: lightSpeedOut;
    animation-timing-function: ease-in;
}
@keyframes rotateIn {
    0% {
        transform-origin: center center;
        transform: rotate(-200deg);
        opacity: 0;
    }
    to {
        transform-origin: center center;
        transform: rotate(0);
        opacity: 1;
    }
}
.rotateIn {
    animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(-90deg);
        opacity: 0;
    }
    to {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1;
    }
}
.rotateInDownLeft {
    animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0;
    }
    to {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1;
    }
}
.rotateInDownRight {
    animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(90deg);
        opacity: 0;
    }
    to {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1;
    }
}
.rotateInUpLeft {
    animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(-90deg);
        opacity: 0;
    }
    to {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1;
    }
}
.rotateInUpRight {
    animation-name: rotateInUpRight;
}
@keyframes rotateOut {
    0% {
        transform-origin: center center;
        transform: rotate(0);
        opacity: 1;
    }
    to {
        transform-origin: center center;
        transform: rotate(200deg);
        opacity: 0;
    }
}
.rotateOut {
    animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1;
    }
    to {
        transform-origin: left bottom;
        transform: rotate(90deg);
        opacity: 0;
    }
}
.rotateOutDownLeft {
    animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1;
    }
    to {
        transform-origin: right bottom;
        transform: rotate(-90deg);
        opacity: 0;
    }
}
.rotateOutDownRight {
    animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1;
    }
    to {
        transform-origin: left bottom;
        transform: rotate(-90deg);
        opacity: 0;
    }
}
.rotateOutUpLeft {
    animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1;
    }
    to {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0;
    }
}
.rotateOutUpRight {
    animation-name: rotateOutUpRight;
}
@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-2000px);
    }
    to {
        transform: translateY(0);
    }
}
.slideInDown {
    animation-name: slideInDown;
}
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-2000px);
    }
    to {
        transform: translateX(0);
    }
}
.slideInLeft {
    animation-name: slideInLeft;
}
@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }
    to {
        transform: translateX(0);
    }
}
.slideInRight {
    animation-name: slideInRight;
}
@keyframes slideOutLeft {
    0% {
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-2000px);
    }
}
.slideOutLeft {
    animation-name: slideOutLeft;
}
@keyframes slideOutRight {
    0% {
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(2000px);
    }
}
.slideOutRight {
    animation-name: slideOutRight;
}
@keyframes slideOutUp {
    0% {
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-2000px);
    }
}
.slideOutUp {
    animation-name: slideOutUp;
}
@keyframes hinge {
    0% {
        transform: rotate(0);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }
    20%,
    60% {
        transform: rotate(80deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }
    40% {
        transform: rotate(60deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }
    80% {
        transform: rotate(60deg) translateY(0);
        opacity: 1;
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }
    to {
        transform: translateY(700px);
        opacity: 0;
    }
}
.hinge {
    animation-name: hinge;
}
@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translateX(-100%) rotate(-120deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}
.rollIn {
    animation-name: rollIn;
}
@keyframes rollOut {
    0% {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
    to {
        opacity: 0;
        transform: translateX(100%) rotate(120deg);
    }
}
.rollOut {
    animation-name: rollOut;
}
@keyframes ripple {
    70% {
        box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
    }
    to {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}
html {
    overflow-y: scroll;
}
body,
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
body {
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
dialog,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
textarea,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    font-family: inherit;
    font-size: 100%;
    font-weight: inherit;
    font-style: inherit;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
ol,
ul {
    list-style: none;
}
blockquote,
q {
    -webkit-hyphens: none;
    hyphens: none;
    quotes: none;
}
figure {
    margin: 0;
}
:focus {
    outline: 0;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
img {
    border: 0;
    -ms-interpolation-mode: bicubic;
    vertical-align: middle;
}
legend {
    white-space: normal;
}
button,
input,
select,
textarea {
    font-size: 100%;
    margin: 0;
    max-width: 100%;
    vertical-align: baseline;
    box-sizing: border-box;
}
button,
input {
    line-height: normal;
}
input,
textarea {
    background-image: -webkit-linear-gradient(
        hsla(0, 0%, 100%, 0),
        hsla(0, 0%, 100%, 0)
    );
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    line-height: 1;
    cursor: pointer;
    -webkit-appearance: button;
    border: none;
}
input[type="checkbox"],
input[type="radio"] {
    padding: 0;
}
input[type="search"] {
    -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}
*,
:after,
:before {
    box-sizing: border-box;
}
body {
    font: 16px/30px Rubik, sans-serif;
    background-color: #fff;
    color: #fff;
}
ol,
ul {
    padding: 0;
}
img {
    max-width: 100%;
    height: auto;
}
b,
strong {
    font-weight: 900;
}
button {
    transition-duration: 0.5s;
    border: none;
}
option,
select {
    font-size: 16px !important;
    font-family: Rubik, sans-serif !important;
    color: var(--primary-color2) !important;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    background-color: var(--primary-color);
    padding: 15px;
    transition: all 0.3s ease-in-out;
}
button.search-submit-form {
    padding: 15px;
    transition: all 0.3s ease-in-out;
}
input[type="color"],
input[type="date"],
input[type="datetime-local"],
input[type="datetime"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
select,
textarea {
    position: relative;
    display: block;
    width: 100%;
    line-height: 24px;
    padding: 8px 15px;
    color: #798883;
    height: 45px;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}
input[type="color"]:focus,
input[type="date"]:focus,
input[type="datetime-local"]:focus,
input[type="datetime"]:focus,
input[type="email"]:focus,
input[type="month"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
input[type="week"]:focus,
textarea:focus {
    box-shadow: none;
    border: 2px solid var(--primary-color);
    font-size: 16px;
    font-family: Rubik, sans-serif;
}
input[type="color"]:hover,
input[type="date"]:hover,
input[type="datetime-local"]:hover,
input[type="datetime"]:hover,
input[type="email"]:hover,
input[type="month"]:hover,
input[type="number"]:hover,
input[type="password"]:hover,
input[type="search"]:hover,
input[type="tel"]:hover,
input[type="text"]:hover,
input[type="time"]:hover,
input[type="url"]:hover,
input[type="week"]:hover,
textarea:hover {
    box-shadow: none;
    border: 2px solid var(--primary-color);
}
input[type="color"],
input[type="date"],
input[type="datetime-local"],
input[type="datetime"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
textarea {
    box-shadow: none;
    border: 2px solid #dbe3df;
}
textarea {
    border: 2px solid #dbe3df;
    width: 100%;
    padding: 10px 15px;
    height: 200;
}
input[type="checkbox"] {
    display: inline;
}
input:-moz-placeholder,
input::-moz-placeholder,
textarea:-moz-placeholder,
textarea::-moz-placeholder {
    color: #798883;
    opacity: 1;
}
input:-ms-input-placeholder {
    font-family: Rubik, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: var(--primary-color2);
    opacity: 1;
    font-family: Rubik, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}
.dropdown-menu,
.navbar .nav > .active > a,
.navbar .nav > .active > a:focus,
.navbar .nav > .active > a:hover,
.uneditable-input,
input[type="color"],
input[type="date"],
input[type="datetime-local"],
input[type="datetime"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="submit"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
textarea {
    -webkit-appearance: none;
    text-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    color: var(--primary-color2);
}
.blog-single .entry p {
    margin-bottom: 40px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Rubik, sans-serif;
    font-weight: 700;
}
.left {
    text-align: left;
}
.center {
    text-align: center;
}
.white {
    color: #ffff !important;
}
.black {
    color: #0000 !important;
}
.text-pri2-color {
    color: var(--primary-color2);
}
.text-pri-color {
    color: var(--primary-color);
}
.f-left {
    float: left;
}
.f-right {
    float: right;
}
.bd-radius-8,
.bd-radius-8-image img {
    border-radius: 8px;
}
.bd-radius-50-image img {
    border-radius: 50%;
}
.mg-left-15 {
    margin-left: 15px;
}
.mg-right-15 {
    margin-right: 15px;
}
.bd-radius-50 {
    border-radius: 50%;
}
.mg-bottom5 {
    margin-bottom: 5px;
}
.mg-bottom-8 {
    margin-bottom: 8px;
}
.mg-bottom-15 {
    margin-bottom: 15px;
}
.mg-bottom-20 {
    margin-bottom: 20px;
}
.mg-bottom-22 {
    margin-bottom: 22px;
}
.mg-bottom-25 {
    margin-bottom: 25px;
}
.mg-bottom30 {
    margin-bottom: 30px;
}
.mg-bottom-35 {
    margin-bottom: 35px;
}
.mg-bottom-40 {
    margin-bottom: 40px;
}
.mg-bottom-43 {
    margin-bottom: 43px;
}
.mg-bottom-45 {
    margin-bottom: 45px;
}
.mg-bottom-50 {
    margin-bottom: 50px;
}
.mg-bottom-60 {
    margin-bottom: 60px;
}
.mg-bottom90 {
    margin-bottom: 90px;
}
.mg-top-5 {
    margin-top: 5px;
}
.mg-top-15 {
    margin-top: 15px;
}
.mg-top-20 {
    margin-top: 20px;
}
.mg-top-25 {
    margin-top: 25px;
}
.mg-top-30 {
    margin-top: 30px;
}
a {
    text-decoration: none;
    color: var(--primary-color2);
    transition: all 0.3s ease-in-out;
}
a:focus,
a:hover {
    outline: 0;
}
.link-style2 a,
a:focus,
a:hover {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.link-style2 a:focus,
.link-style2 a:hover {
    color: var(--primary-color2);
    text-decoration: none;
    outline: 0;
    transition: all 0.3s ease-in-out;
}
.link-style3 a {
    text-decoration: none;
    color: #ffff;
    transition: all 0.3s ease-in-out;
}
.link-style3 a:focus,
.link-style3 a:hover {
    color: var(--primary-color2);
    text-decoration: none;
    outline: 0;
    transition: all 0.3s ease-in-out;
}
.link-style4 a {
    text-decoration: none;
    color: #ffff;
    transition: all 0.3s ease-in-out;
}
.link-style4 a:focus,
.link-style4 a:hover {
    color: var(--primary-color);
    text-decoration: none;
    outline: 0;
    transition: all 0.3s ease-in-out;
}
.link-style5 a {
    text-decoration: none;
    font-weight: 500;
    color: var(--primary-color4);
    transition: all 0.3s ease-in-out;
}
.link-style5 a:focus,
.link-style5 a:hover {
    color: var(--primary-color2);
    text-decoration: none;
    outline: 0;
    transition: all 0.3s ease-in-out;
}
.link-style6 a {
    color: #ffffffb8;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.link-style6 a:hover {
    color: #ffff;
}
.button-style {
    padding: 17px 37px;
}
.button-style,
.button-style-2 {
    font-size: 18px;
    border-radius: 12px;
}
.button-style-2 {
    padding: 13px 36px;
}
.btn-1 {
    font-weight: 500;
    border: 2px solid #707070;
}
.btn-1:hover,
.btn-2 {
    border: 2px solid var(--primary-color);
    background-color: var(--primary-color);
    color: #ffff !important;
}
.btn-2 {
    font-weight: 500;
}
.btn-2:hover {
    background-color: rgba(255, 255, 255, 0);
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
}
:root {
    --primary-color: #348e38 !important;
    --primary-color2: #0f4229 !important;
    --primary-color3: #e8f5e9 !important;
    --primary-color4: #525368 !important;
    --primary-color5: #181818 !important;
}
.btn-home,
.btn2,
.button > .btn {
    font-weight: 500;
    font-size: 18px;
    padding: 16px 36px;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
}
.button > .btn {
    color: var(--primary-color2);
    border: 2px solid #bbd0c2;
}
.btn-home,
.button > .btn:hover {
    color: #ffff;
    border: 2px solid var(--primary-color);
    background-color: var(--primary-color);
}
.button > .btn-home:hover {
    color: var(--primary-color2);
    border: 2px solid var(--primary-color2);
}
.button .btn2 {
    color: #ffff;
    background-color: var(--primary-color);
}
.button .btn2,
.button .btn2:hover {
    border: 2px solid var(--primary-color);
}
.button .btn2:hover {
    color: var(--primary-color);
    background-color: #0f422900;
}
.section-desc,
.section-desc-2,
.section-desc-heading {
    font-family: Rubik, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--primary-color2);
}
.section-subtitle {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 3.8px;
    font-family: Rubik, sans-serif;
    line-height: 20px;
    color: var(--primary-color);
}
.section-title {
    font-family: Jost, sans-serif;
    font-size: 46px;
    font-weight: 500;
    letter-spacing: -1px;
    line-height: 58px;
    color: var(--primary-color5);
}
.section-heading-rubik-size12 {
    font-size: 12px;
    line-height: 30px;
    font-weight: 400;
}
.section-heading-rubik-size14 {
    font-size: 14px;
    line-height: 23px;
    font-weight: 500;
}
.section-heading-rubik-size16 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
}
.section-heading-rubik-size18 {
    font-size: 18px;
    line-height: 34px;
    font-weight: 500;
}
.section-heading-jost-size20,
.section-heading-jost-size22,
.section-heading-jost-size28,
.section-heading-jost-size29,
.section-heading-jost-size34,
.section-heading-jost-size46,
.section-heading-rubik-size20 {
    font-family: Rubik, sans-serif;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
}
.section-heading-jost-size20,
.section-heading-jost-size22,
.section-heading-jost-size28,
.section-heading-jost-size29,
.section-heading-jost-size34,
.section-heading-jost-size46 {
    font-family: Jost, sans-serif;
}
.section-heading-jost-size22 {
    font-size: 22px;
}
.section-heading-jost-size28 {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: -0.6px;
}
.section-heading-jost-size29 {
    font-size: 29px;
    letter-spacing: 0;
    line-height: 48px;
}
.section-heading-jost-size34 {
    font-size: 34px;
}
.section-heading-jost-size46 {
    font-size: 46px;
    letter-spacing: -1px;
}
.section-desc-2 {
    font-weight: 300;
    letter-spacing: 0.3px;
}
.section-desc-heading {
    font-weight: 700;
    line-height: 26px;
}
.fw-300 {
    font-weight: 300;
}
.fw-400 {
    font-weight: 400;
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}
.d-flex {
    display: flex;
}
.read-more {
    font-size: 15px;
    font-weight: 700;
    font-family: Rubik, sans-serif;
    line-height: 66px;
    margin-top: 10px;
}
.read-more:after {
    content: "\f061";
    font-family: FontAwesome;
    margin-left: 3px;
}
.read-more .fas {
    margin-left: 10px;
}
.text-decs {
    font-weight: 400;
}
.heading-16px-rubik,
.text-decs {
    font-family: Rubik, sans-serif;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0;
}
header.fixed-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 1px 1px 5px 0 rgb(0 0 0/20%);
}
.grow-up-hover {
    transition: all 0.3s ease;
}
.grow-up-hover:hover img {
    transform: scale(1.1);
}
.hover-up {
    transition: all 0.3s ease;
}
.hover-up:hover {
    transform: translateY(-7%);
}
.hover-up-style2:hover {
    transform: translateY(-2%);
}
.hover-up-style2 {
    transition: all 0.3s ease-in-out;
}
.over-flow-hidden {
    overflow: hidden;
}
.error {
    margin-top: -10px;
    color: #191919;
}
.ripple,
.ripple:after,
.ripple:before {
    width: 120px;
    height: 120px;
    -ms-box-shadow: 0 0 0 0 rgba(9, 136, 62, 0.411);
    -o-box-shadow: 0 0 0 0 rgba(9, 136, 62, 0.411);
    box-shadow: 0 0 0 0 rgba(9, 136, 62, 0.411);
}
.ripple:before {
    animation-delay: 0.8s;
    content: "";
    position: absolute;
}
.ripple:after {
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}
.ripple,
.ripple:after,
.ripple:before {
    position: absolute;
    top: 46%;
    left: 50%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -ms-border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 3s infinite;
}
.top-header {
    padding: 0 3.2% 0 4%;
    background-color: var(--primary-color);
}
.top-header .top-bar-left {
    display: flex;
    display: -webkit-flex;
    line-height: 50px;
    float: left;
}
.top-header .top-location,
.top-mail {
    font-size: 14px;
    font-weight: 500;
}
.top-bar-left .top-location:before {
    content: "\f041";
    font-family: FontAwesome;
    padding-right: 5px;
}
.top-bar-right {
    line-height: 50px;
}
.top-mail:before {
    content: "\f003";
    font-family: FontAwesome;
    font-size: 18px;
    padding-right: 5px;
}
.top-header .top-bar-right {
    float: right;
    display: flex;
    display: -webkit-flex;
    line-height: 50px;
}
.widgets-nav-social {
    display: flex;
    display: -webkit-flex;
    line-height: 53px;
    padding-left: 16px;
}
.top-header .fa {
    font-size: 15px;
    padding-left: 21px;
}
#header .header-wrap {
    padding: 0 2.4% 0 2.8%;
    height: 101px;
    background-color: var(--primary-color3);
}
#header .inner-header {
    display: flex;
    display: -webkit-flex;
}
#header .logo-header {
    line-height: 100px;
}
#header .site-header-right {
    float: right;
    display: flex;
    display: -webkit-flex;
    line-height: 101px;
}
#header .site-header-right .button {
    margin-top: -2px;
    margin-left: 15px;
}
#header .cart .fa,
.search .fa {
    font-size: 20px;
    padding: 16px;
    color: var(--primary-color) !important;
    border-radius: 65px;
    background-color: #ffff;
}
#header .cart .fa:hover,
.search .fa:hover {
    background-color: var(--primary-color);
    color: #ffff !important;
    transition: all 0.3s ease-in-out;
}
#header .cart {
    padding-left: 26px;
}
#header .input-group {
    display: flex;
    display: -webkit-flex;
}
button.btn.btn-outline-primary {
    z-index: 1;
}
.btn.focus,
.btn:focus,
.btn:hover {
    background-color: var(--primary-color);
    color: var(--primary-color2);
}
#header .header-inner {
    position: relative;
    display: flex;
}
.header-inner .widgets-input .search-field {
    padding: 25px 70px 25px 15px;
}
.header-inner .widgets-input .search-submit {
    padding: 16px 20px;
}
.flat-show-search {
    position: relative;
    float: left;
    z-index: 200;
}
.show-search {
    float: right;
    position: relative;
}
.top-search {
    position: absolute;
    right: 0;
    top: 110%;
    width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
.top-search #searchform-all {
    position: relative;
}
.top-search.show {
    visibility: visible;
    opacity: 1;
    z-index: 1;
    top: 100%;
}
.nav-wrap {
    padding-right: 2%;
    line-height: 100px;
    text-align: center;
}
#mainnav .menu > li,
#mainnav .menu > li > a {
    display: inline-block;
    position: relative;
}
#mainnav .menu > li > a {
    line-height: 100px;
    margin: 0 18px;
    font-weight: 400;
}
#mainnav .menu li a {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color2);
}
#mainnav .menu .current-menu-item > a,
#mainnav .menu .current-menu-item > a:after,
#mainnav .menu > li > a:hover,
#mainnav-mobi .menu .current-item > a,
#mainnav-mobi .menu .current-menu-item > a,
#mainnav > ul > li.menu-item-has-children:hover > a:after {
    color: var(--primary-color);
}
#mainnav .menu > li:last-child a {
    padding-right: 0;
}
#mainnav .menu > li a i.fa {
    padding-left: 6px;
}
#mainnav .menu > li > .sub-menu {
    display: block !important;
    opacity: 0;
    position: absolute;
    width: 250px;
    background-color: #ffff;
    left: 0;
    top: 99%;
    box-shadow: -2px 6px 23px #b4b4b44f;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(15px);
}
#mainnav .menu > li:hover > .sub-menu {
    display: block !important;
    opacity: 1;
    z-index: 100;
    left: 0;
    visibility: visible;
    transform: translateY(0);
}
#mainnav .menu > li > .sub-menu > li > a {
    display: block;
    padding: 0 0 0 15px;
    line-height: 45px;
    color: var(--primary-color2);
    text-align: left;
}
#mainnav .menu > li > .sub-menu > li {
    border-top: 1px solid #e1e1e157;
}
#mainnav .menu > li > .sub-menu > li:first-child {
    border-top: none;
}
#mainnav .current-item a,
#mainnav .menu > li > .sub-menu > li:hover a {
    background-color: var(--primary-color);
    color: #ffff !important;
}
#mainnav > ul > li > a:before {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
#mainnav > ul > li.current-menu-item > a:before,
#mainnav > ul > li > a:hover:before {
    opacity: 1;
    visibility: visible;
    width: 100%;
}
#mainnav > ul > li.menu-item-has-children > a:after {
    content: "\f107";
    font-family: FontAwesome;
    color: var(--primary-color2);
    font-weight: 700;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-feature-settings: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-size: 14px;
    margin-left: 4px;
}
.inner-title {
    position: relative;
    height: 300px;
    background-size: cover;
    background-image: url("../../../_next/static/media/box-flowers-green-garden-background.e6ba06fa.jpg");
    background-repeat: no-repeat;
    background-position: 50%;
}
.inner-title-home {
    height: 755px;
}
.overlay-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--primary-color2);
    opacity: 0.7;
}
.page-title .banner-title {
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    z-index: 50;
    text-align: center;
    position: absolute;
}
.page-title-heading {
    line-height: 68.66px;
    font-family: Jost, sans-serif;
    font-weight: 700;
    font-size: 36.97px;
    color: #ffff;
}
.page-title-content {
    font-size: 18px;
    font-weight: 400;
    line-height: 51.66px;
    color: #ffffffb8;
}
.page-title .blog-link a:hover {
    color: var(--primary-color);
}
.page-title-content-inner:before {
    content: "|";
    padding: 0 5px;
}
.slider-home02 {
    margin-left: 38.8%;
    padding-top: 24.2%;
}
.slider-home02 .button {
    padding-top: 56px;
    padding-left: 3px;
}
.slider-image {
    padding-top: 14.2%;
    margin-left: -25px;
}
.features-home02 {
    background-color: var(--primary-color2);
}
.post-wrap .image-box {
    position: relative;
}
.post-wrap .date-image {
    position: absolute;
    font-family: Rubik, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 23px;
    color: #ffff;
    padding: 9px 26px 9px 22px;
    background-color: var(--primary-color);
    bottom: -1px;
    left: 26px;
}
.content-box {
    border-radius: 5px;
    background-color: #f8f8f8;
    padding: 13px 27px 8px;
}
.content-box .post-content-inner {
    padding-top: 11px;
}
.content-box .post-content-inner ul {
    display: flex;
    display: -webkit-flex;
}
.content-box .post-content-inner .line:after,
.line:before {
    content: "|";
}
.content-box .content-art {
    margin-top: 17px;
}
.post-wrap .text-decs {
    letter-spacing: 0.2px;
    padding-right: 8.9px;
}
.content-box .desc-content-box {
    color: #525368;
    margin-top: 12px;
    padding-right: 3px;
    letter-spacing: 0;
}
article.article-2 {
    padding-top: 39px;
}
article.article-3 {
    padding-top: 63px;
}
article.article-4 {
    padding-top: 57px;
}
.flat-blog-standard {
    margin: 120px 0 163px;
}
.content-blog-detail .text-decs {
    color: var(--primary-color4);
    padding: 10px 3px 0 1px;
    letter-spacing: 0;
}
.content-info {
    font-size: 12px;
    line-height: 53px;
}
.user:before {
    content: "\f2c0";
    font-family: FontAwesome;
}
.content-blog-detail .date:before {
    content: "\f073";
    font-family: FontAwesome;
}
.content-blog-detail .date {
    padding-left: 26px;
}
.content-blog-detail .date:before,
.user:before {
    padding-right: 4px;
}
.content-blog-detail .heading-content-box {
    font-family: Rubik, sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.4px;
    line-height: 42px;
}
.content-blog-detail .content-note-author {
    padding: 8px 38px 6px 46px;
    background-color: var(--primary-color3);
    border-radius: 7px;
    border-left: 8px solid var(--primary-color);
    margin: 30px 0 18px;
}
.content-blog-detail .content-note-author .author {
    font-weight: 700;
    color: var(--primary-color);
    line-height: 52px;
}
.content-blog-detail .image-2 {
    padding-top: 37px;
}
.content-blog-detail .content-2.heading-content-box {
    padding-top: 31px;
    padding-bottom: 2px;
}
.content-blog-detail .nav-access-blog-detail .tick:before {
    color: var(--primary-color);
    padding-right: 17px;
    content: "\f00c";
    font-family: FontAwesome;
}
.content-blog-detail .nav-access-blog-detail li {
    padding-bottom: 7px;
}
.content-blog-detail ul.nav-access-blog-detail {
    padding-left: 3px;
    padding-top: 13px;
}
.content-blog-detail hr {
    margin-top: 39px;
    margin-bottom: 36px;
    border: 0;
    border-top: 2px solid var(--primary-color3);
}
.content-blog-detail .list-related {
    display: flex;
    display: -webkit-flex;
    margin-top: 3px;
}
.content-blog-detail .list-related a {
    margin-right: 3px;
}
.content-blog-detail .bottom-content {
    display: flex;
    display: -webkit-flex;
    position: relative;
}
.content-blog-detail .bottom-content .social-share {
    position: absolute;
    right: 0;
    margin-right: -3px;
}
.content-blog-detail .bottom-content .title {
    color: #222222;
    font-weight: 700;
}
.content-blog-detail .bottom-content .title2 {
    margin-left: 37px;
    color: #222222;
    font-weight: 700;
}
.content-blog-detail .bottom-content .decs {
    color: var(--primary-color4);
    padding-top: 5px;
}
.content-blog-detail .widgets-nav-social {
    line-height: 29px;
}
.content-blog-detail .widgets-nav-social .fa {
    padding-left: 19px;
    color: var(--primary-color);
}
.content-blog-detail .widgets-nav-social .fa:hover {
    color: var(--primary-color4);
}
.content-blog-detail .widgets-title-comment {
    font-size: 37px;
    font-family: Jost, sans-serif;
    letter-spacing: -0.7px;
    line-height: 54px;
    color: var(--primary-color2);
    font-weight: 700;
}
.content-blog-detail .widgets-comment {
    padding-top: 99px;
}
.content-blog-detail .box-1 {
    margin-top: 23px;
    padding: 24px 43px 20px 32px;
    border: 2px solid #e2eeff;
    border-radius: 7px;
}
.content-blog-detail .box-2 {
    margin-left: 72px;
    margin-top: 20px;
    padding: 18px 27px 25px 36px;
    border: 2px solid #e2eeff;
    border-radius: 7px;
}
.content-blog-detail .widgets-comment .image-comment {
    float: left;
}
.content-blog-detail .content-comment {
    padding-left: 121px;
}
.content-blog-detail .widgets-comment .title {
    display: flex;
    display: -webkit-flex;
    position: relative;
}
.content-blog-detail .widgets-comment .heading {
    font-size: 20px;
    font-family: Rubik, sans-serif;
    font-weight: 700;
    color: var(--primary-color2);
}
.content-blog-detail .widgets-comment .date-comments {
    position: absolute;
    right: 0;
    font-size: 16px;
    font-family: Rubik, sans-serif;
    font-weight: 400;
    color: var(--primary-color2);
}
.content-blog-detail .widgets-comment .widgets-title-comment {
    letter-spacing: -0.6px !important;
}
.content-blog-detail .widgets-comment .reply {
    padding-top: 10px;
    font-size: 14px;
    font-family: Rubik, sans-serif;
    font-weight: 700;
    color: var(--primary-color);
}
.content-blog-detail .tf-input {
    padding: 30px 43px 27px 32px;
    border: 2px solid #e2eeff;
    border-radius: 3px;
    float: left;
}
.content-blog-detail .widgets-post-comment {
    margin-top: 84px;
}
.content-blog-detail .widgets-input-box::placeholder {
    font-family: Rubik, sans-serif;
    font-size: 16px;
    font-family: 400;
    line-height: 30px;
}
.content-blog-detail .widgets-input-box {
    padding-top: 32px;
}
.content-blog-detail .input-yourname {
    width: 48%;
    margin-right: 15px;
    padding-left: 22px;
}
.content-blog-detail .input-youremail {
    width: 48%;
    margin-left: 15px;
    padding-left: 24px;
}
.content-blog-detail .input-yourname,
.input-youremail,
.input-yourmessage {
    letter-spacing: 0.9px;
}
.content-blog-detail .input-yourmessage {
    margin: 11px 0 47px;
    height: 170px;
    padding: 18px 0 0 22px;
}
.content-blog-detail .input-message {
    width: 100%;
}
.content-blog-detail .tf-submit-input .tf-button {
    padding: 21px 36px;
    background-color: var(--primary-color);
    font-family: Rubik, sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 12px;
    color: #ffff;
    border-radius: 5px;
}
.content-blog-detail .tf-submit-input .tf-button:hover {
    background-color: var(--primary-color2);
    color: #ffff;
}
.dividers {
    width: 100%;
    overflow: hidden;
}
.wrap-post {
    margin: 0 -15px;
    overflow: hidden;
}
article.post.s1 {
    margin-bottom: 40px;
    position: relative;
    float: left;
    width: 50%;
    padding: 0 15px;
}
article.post .featured-post ul.post-date {
    position: absolute;
    top: 0;
    left: 45px;
    background-color: #2e363a;
    color: #ffffff;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    padding: 2px 10px 7px 12px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease-in-out;
}
article.post .featured-post ul.post-date .day {
    font-size: 30px;
    margin-top: 2px;
    margin-bottom: 2px;
}
article.post .content-post {
    padding: 35px 30px 20px;
    position: relative;
    background-color: #f7f7f7;
}
article.post .content-post:after {
    content: "";
    position: absolute;
    width: 64px;
    height: 5px;
    background-color: #30ab56;
    top: 0;
    left: 30px;
    z-index: 2;
    transition: all 0.3s ease-in-out;
}
article.post:hover .featured-post ul.post-date {
    background-color: #18ba60;
}
article.post .content-post h4 {
    margin-bottom: 18px;
    font-weight: 600;
    font-size: 16px;
}
article.post .content-post .more-link {
    margin-top: 19px;
}
article.post .content-post .more-link a {
    background-color: #2e363a;
    border-radius: 3px;
    font-weight: 600;
    display: inline-block;
    line-height: 40px;
    padding: 0 38px 3px;
    letter-spacing: 0;
    color: #ffffff;
}
article.post .content-post .more-link a:hover {
    background-color: #18ba60;
}
.themesflat-pagination {
    margin: 100px 0;
}
.themesflat-pagination ul {
    margin: 0;
    position: relative;
}
.themesflat-pagination ul li {
    display: inline-block;
    padding: 0;
    margin-right: 12px;
    margin-bottom: 12px;
    background-color: var(--primary-color3);
    border-radius: 10px;
}
.themesflat-pagination ul li .page-numbers {
    display: inline-block;
    font-size: 20px;
    font-family: Rubik, sans-serif;
    color: #0d1f35;
    text-align: center;
    border-radius: 10px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: transparent;
}
.themesflat-pagination ul li .page-numbers span.fa {
    font-size: 20px;
}
.themesflat-pagination ul li .page-numbers.current,
.themesflat-pagination ul li .page-numbers:hover {
    background-color: var(--primary-color);
    color: #fff;
}
.themesflat-pagination .page-prev-next {
    width: 100%;
}
.themesflat-pagination-style2 {
    margin-top: 58px;
}
.themesflat-pagination-style2 .page-prev-next {
    height: 164px;
    width: 100%;
    background-color: var(--primary-color3);
}
.themesflat-pagination-style2 .text-left,
.themesflat-pagination-style2 .text-right {
    position: relative;
    width: 50%;
    display: flex;
    height: 100%;
}
.themesflat-pagination-style2 .text-left {
    float: left;
    padding: 38px 155px 38px 125px;
    background-color: var(--primary-color2);
}
.themesflat-pagination-style2 .text-right {
    float: right;
    padding: 38px 154px 38px 134px;
    background-color: var(--primary-color);
}
.themesflat-pagination-style2 .btn-next:after,
.themesflat-pagination-style2 .btn-prev:before {
    content: "\f104";
    font-family: FontAwesome;
    font-size: 30px;
    padding: 25px 35px;
    border-radius: 8px;
    border: 1px solid #e1e1e185;
}
.themesflat-pagination-style2 .btn-next:after {
    content: "\f105";
}
.themesflat-pagination-style2 .btn-prev {
    position: absolute;
    left: 39px;
    top: 50%;
    transform: translateY(-50%);
}
.themesflat-pagination-style2 .btn-next {
    position: absolute;
    right: 39px;
    top: 50%;
    transform: translateY(-50%);
}
.flat-case-details .paginate-box .content-features {
    margin-left: 29px;
}
.flat-case-details .paginate-box a {
    color: #ffff;
}
.widgets-side-bar-title {
    font-family: Jost, sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 30px;
    color: #191919 !important;
}
.widgets-search .widgets-side-bar-title {
    padding: 5px 0 28px;
}
.widgets-input .search-form {
    position: relative;
}
.widgets-input .search-field {
    border-radius: 0;
    padding: 37px 90px 37px 15px;
}
.widgets-input .search-field::placeholder {
    font-size: 18px;
}
.widgets-input .search-submit {
    position: absolute;
    right: 0;
    top: 0;
    padding: 28px 30px;
}
.widgets-input .search-submit:after {
    content: "\f002";
    font-family: FontAwesome;
    font-size: 22px;
}
.widgets-input .search-submit:hover {
    background-color: var(--primary-color2);
}
.widgets-category .widgets-side-bar-title {
    padding: 46px 0 30px;
}
.widgets-category li {
    border: 1px solid #ccc;
    padding: 9px;
    border-radius: 6px;
    margin-bottom: 16px;
    position: relative;
    transition-duration: 0.5s;
}
.widgets-category li:hover {
    border: 1px solid var(--primary-color);
    transition: 0.5s ease-in-out;
}
.widgets-category a {
    font-family: Rubik, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    padding-left: 12px;
    color: #222222;
}
.widgets-category a:hover {
    color: var(--primary-color);
}
.widgets-category .list-category a:after {
    content: "\f0da";
    position: absolute;
    right: 28px;
    font-family: FontAwesome;
}
.widget.widget_lastest h2 {
    padding: 30px 0 14px 3px;
}
.widget.widget_lastest ul {
    margin: 0;
}
.widget.widget_lastest ul li {
    margin-top: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 14px 15px 9px;
}
.widget.widget_lastest ul li:hover {
    background-color: var(--primary-color3);
    border: 1px solid var(--primary-color);
    transition: 0.5s;
}
.widget.widget_lastest .thumb {
    float: left;
}
.widget.widget_lastest .text {
    overflow: hidden;
    padding-left: 17px;
    padding-right: 15px;
}
.widget.widget_lastest h3 {
    color: #565872 !important;
    font-family: Rubik, sans-serif;
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
    padding-right: 25px;
}
.widget.widget_lastest .post-date {
    font-size: 13px;
    color: var(--primary-color2) !important;
    padding-top: 10px;
}
.widget.widget_lastest img {
    width: 75px;
    height: 70px;
}
#footer .widget.widget_lastest h3 {
    color: #fff;
}
.widget.widget_lastest .title-thumb {
    color: #565872;
}
.widget.widget_lastest .title-thumb:hover {
    color: var(--primary-color2);
}
.widget.widget_lastest .date {
    color: var(--primary-color) !important;
    font-size: 12px;
    font-weight: 400;
}
.widget.widget_lastest .date:hover {
    color: var(--primary-color2) !important;
}
.widget.widget_lastest .date:before {
    content: "\f073";
    font-family: FontAwesome;
    padding-right: 10px;
    font-size: 15px;
}
.widget.widget_lastest_twitter ul {
    margin: 0;
}
.widget.widget_lastest_twitter ul li {
    padding: 2px 0;
    margin-top: 12px;
}
.widget.widget_lastest_twitter .icon-wrap {
    position: relative;
    float: left;
    margin-top: 5px;
    margin-right: 15px;
    transition: all 0.3s ease;
}
.widget.widget_lastest_twitter .icon-wrap.has-width.w30 {
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    text-align: center;
    background-color: #414141;
    color: #fff;
}
.widget.widget_lastest_twitter .text {
    overflow: hidden;
    font-weight: 300;
    color: #666;
}
.widget.widget_lastest_twitter .text a {
    font-weight: 600;
    color: #222;
}
.widget.widget_lastest_twitter .text p {
    margin: 0;
}
.widget.widget_lastest_twitter li:hover .icon-wrap.has-width.w30 {
    background-color: #ffc30c;
}
.widget.widget_lastest_twitter .text a:hover {
    color: #ffc30c;
}
.widgets-contact-info {
    padding-top: 39px;
    height: 490px;
}
.widgets-contact-info .contact-info-box {
    border-radius: 5px;
}
.widgets-contact-info .contact-info-img:hover {
    opacity: 0.9;
}
.widgets-contact-info .contact-info-box {
    background-color: var(--primary-color);
}
.widgets-contact-info .contact-info-content {
    padding: 27px 45px 22px;
}
.widgets-contact-info .heading-16px-rubik {
    color: #ffff;
}
.widgets-contact-info .heading-16px-rubik:first-child {
    padding-top: 3px;
    font-weight: 400;
}
.widgets-contact-info .heading-16px-rubik:last-child {
    font-weight: 700;
    line-height: 12px;
}
.widgets-contact-info .call-us {
    display: flex;
    display: -webkit-flex;
}
.content-our-mail,
.widgets-contact-info .content-call-us {
    padding-left: 14px;
}
.widgets-contact-info .icon-call-us:before {
    content: "\f095";
    font-family: FontAwesome;
    font-size: 26px;
    border: 1px solid #ccc;
    border-radius: 62%;
    padding: 8px 11px;
    line-height: 55px;
    color: #ffff;
}
.widgets-contact-info .our-mail {
    padding-top: 15px;
    display: flex;
    display: -webkit-flex;
}
.widgets-contact-info .icon-our-mail:before {
    content: "\f0e0";
    font-family: FontAwesome;
    font-size: 23px;
    border: 1px solid #ccc;
    border-radius: 62%;
    padding: 10px;
    line-height: 55px;
    color: #ffff;
}
.footer {
    position: relative;
    height: auto;
    background-color: var(--primary-color2);
    background-image: url("../../../_next/static/media/Mask-group-6.09ea74ec.png");
    background-repeat: no-repeat;
    background-size: cover;
}
.footer .top-footer {
    position: absolute;
    right: 0;
    left: 0;
    top: -57px;
    margin-left: 1.4%;
    margin-right: 1.2%;
    display: flex;
    display: -webkit-flex;
}
.footer .top-footer-left {
    width: 25%;
    margin-left: -13px;
}
.footer .top-footer-right {
    width: 75%;
    margin-left: 5px;
}
.footer .logo-footer {
    padding: 31px 42px 31px 46px;
    background-color: var(--primary-color);
    border-radius: 10px;
    margin-left: 3%;
    margin-right: 16px;
}
.footer .footer-contact-info {
    background-color: var(--primary-color3);
    border-radius: 10px;
    height: 122px;
    margin-right: -0.5%;
    margin-left: 10px;
    display: flex;
    display: -webkit-flex;
}
.footer .footer-contact-info .footer-info-item {
    width: 33.33333333%;
}
.footer .footer-contact-info .heading-16px-rubik {
    color: #525368;
}
.email,
.footer .footer-contact-info .location,
.phone-call {
    line-height: 122px;
    display: flex;
    display: -webkit-flex;
}
.footer .footer-contact-info .location {
    padding-left: 6.8%;
    padding-right: 30px;
}
.footer .footer-contact-info .phone-call {
    padding-left: 10.6%;
}
.footer .footer-contact-info .content-phone-call:before,
.footer .footer-contact-info .location:after {
    content: "";
    position: absolute;
    width: 1.8px;
    height: 52px;
    background-color: var(--primary-color);
    opacity: 0.4;
    right: 25.2%;
    border-radius: 20px;
    z-index: 2;
    top: 30%;
}
.footer .footer-contact-info .location:after {
    left: 49.8%;
}
.footer .footer-contact-info .email {
    padding-left: 18%;
}
.footer .content-location {
    padding: 31px 14px 0;
}
.footer .icon-location:before {
    content: "\f041";
    font-size: 26px;
    padding: 6px 8px 8px 16px;
}
.footer .icon-location:before,
.footer .icon-phone-call:before {
    font-family: FontAwesome;
    line-height: 122px;
    color: var(--primary-color);
}
.footer .icon-phone-call:before {
    content: "\f095";
    font-size: 28px;
    padding: 8px 0 8px 23px;
}
.footer .content-phone-call {
    padding-top: 32px;
    padding-left: 17px;
}
.footer .icon-email:before {
    content: "\f0e0";
    font-family: FontAwesome;
    line-height: 122px;
    font-size: 26px;
    padding: 8px 9px 8px 11px;
    color: var(--primary-color);
    margin-left: -6px;
}
.footer .content-email {
    padding-top: 32px;
    padding-left: 6px;
}
.list-footer {
    padding-top: 144px;
    margin-left: -0.7%;
    display: flex;
    display: -webkit-flex;
}
.list-footer .footer-item {
    width: 25%;
}
.list-footer .widgets-about {
    margin-left: 1.7%;
    padding-right: 5%;
}
.list-footer .heading-jost-20px {
    font-size: 20px;
    font-family: Jost, sans-serif;
    color: #ffff;
    font-weight: 600;
    letter-spacing: -0.3px;
}
.list-footer .text-decs {
    padding-top: 42px;
    padding-right: 10px !important;
    color: #ffff;
}
.widgets-about .widgets-nav-social {
    padding-top: 37px;
    padding-left: 0.2%;
}
.widgets-about .widgets-nav-social .fa {
    font-size: 13px;
    padding: 10px 11px;
    color: #a0a2a6;
    border: 1px solid #325d47;
    background-color: #325d47;
    border-radius: 88px;
    display: flex;
    display: -webkit-flex;
    margin-right: 20px;
}
.widgets-about .widgets-nav-social .fa.fa-facebook {
    padding: 10px 13px;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: #fff;
}
.widgets-about .widgets-nav-social .fa:hover {
    color: #ffff;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    transition: 0.5s;
}
.widgets-menu-1 {
    margin-left: 11.1%;
}
.widgets-menu-1 .list-menu-1 {
    padding: 36px 18px 0;
    line-height: 44px;
}
.list-menu-2 li,
.widgets-menu-1 .list-menu-1 {
    list-style: square !important;
    color: #a0a2a6 !important;
    margin-bottom: 12px;
}
.widgets-menu-2 {
    margin-left: -14.7%;
    margin-right: 30%;
}
.widgets-menu-2 > .text-decs {
    font-family: Rubik, sans-serif;
    font-weight: 300;
    font-size: 12px;
    padding-top: 47px;
    padding-left: 22px;
    line-height: 25px;
    letter-spacing: 0;
}
.widgets-menu-2 .heading-menu2 {
    font-family: Rubik, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
}
.list-footer .text-decs {
    padding-right: 20px;
}
.widgets-menu-2 .fa {
    padding-right: 5px;
}
.widgets-menu-2 .list-wrap {
    padding-bottom: 14px;
}
.widgets-menu-2 .entry-date {
    font-size: 12px;
    color: #e1e1e1;
}
.widgets-menu-2 .entry-date:before {
    padding-right: 10px;
    content: "\f073";
    font-size: 12px;
    font-family: FontAwesome;
}
.widgets-subcribes {
    margin-left: -20.7%;
}
.widgets-subcribes .widgets-input-subcribes {
    position: relative;
    width: 98.9%;
    padding-top: 28px;
}
.widgets-subcribes .widgets-text-input {
    color: #ffff;
}
.widgets-subcribes .text-decs {
    padding-right: 5% !important;
}
.widgets-subcribes .widgets-text-input {
    border: 1px solid #ffff;
    padding: 35px 34px 33px 30px;
    border-radius: 65px;
    background-color: var(--primary-color2);
}
.widgets-subcribes .widgets-text-input:hover {
    border: 1px solid var(--primary-color);
}
.widgets-subcribes .widgets-text-input::placeholder {
    color: #ffff;
    font-family: Rubik, sans-serif;
    font-size: 16px;
    font-weight: 300;
}
.widgets-subcribes .widgets-input-subcribes .fa {
    color: #ffff;
    font-size: 20px;
    padding: 20px;
    border-radius: 65px;
    background-color: var(--primary-color);
    position: absolute;
    right: 0;
    margin-right: 5px;
    top: 33px;
    transition-duration: 0.5s;
}
.widgets-subcribes .widgets-input-subcribes .fa:hover {
    background-color: var(--primary-color2);
    transition: 0.5s;
}
.footer-bottom {
    padding-top: 62px;
}
.footer-bottom .copyright {
    border-top: 1px solid rgba(180, 174, 174, 0.212);
}
.footer-bottom .copyright-text {
    margin-top: 40px;
    margin-right: 1.8%;
    text-align: center;
    font-size: 15px;
    font-family: Rubik, sans-serif;
    font-weight: 300;
    line-height: 19px;
    color: #ffff;
    letter-spacing: 0.5px;
    padding-bottom: 3.5%;
}
#mainnav-mobi {
    position: absolute;
    display: block;
    margin: 0 auto;
    width: 100%;
    background-color: var(--primary-color3);
    z-index: 1000;
    left: 0;
    right: 0;
}
#mainnav-mobi ul {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}
#mainnav-mobi ul li {
    margin: 0;
    position: relative;
    text-align: left;
    cursor: pointer;
    border-bottom: 1px solid #0f42291a;
}
#mainnav-mobi ul > li > a {
    text-decoration: none;
    height: 50px;
    line-height: 50px;
    padding: 0 15px;
    color: var(--primary-color2);
    font-weight: 500;
}
#mainnav-mobi ul.sub-menu {
    top: 100%;
    left: 0;
    z-index: 2000;
    position: relative;
}
#mainnav-mobi > ul > li > ul > li > ul > li a {
    padding-left: 45px !important;
}
#mainnav-mobi ul.sub-menu > li > a {
    display: block;
    text-decoration: none;
    padding: 0 30px;
    border-top-color: rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease-out;
}
#mainnav-mobi > ul > li > ul > li:first-child a {
    border-top: none;
}
#mainnav-mobi ul.sub-menu > li > a:hover,
#mainnav-mobi > ul > li > ul > li.active > a {
    color: var(--primary-color);
}
.btn-menu {
    float: right;
    position: relative;
    background: transparent;
    cursor: pointer;
    margin: 38px 0 38px 20px;
    width: 26px;
    height: 25px;
    transition: all 0.238s ease;
}
.btn-menu span,
.btn-menu:after,
.btn-menu:before {
    background-color: #18ba60;
    transition: all 0.238s ease;
}
.btn-menu:after,
.btn-menu:before {
    content: "";
    top: 0;
    transform-origin: 50% 50%;
}
.btn-menu span,
.btn-menu:after,
.btn-menu:before {
    position: absolute;
    height: 2px;
    width: 100%;
    left: 0;
    top: 50%;
}
.btn-menu span {
    overflow: hidden;
    text-indent: 200%;
}
.btn-menu:before {
    transform: translate3d(0, -7px, 0);
}
.btn-menu:after {
    transform: translate3d(0, 7px, 0);
}
.btn-menu.active span {
    opacity: 0;
}
.btn-menu.active:before {
    transform: rotate(45deg);
}
.btn-menu.active:after {
    transform: rotate(-45deg);
}
.btn-submenu {
    position: absolute;
    right: 20px;
    top: 0;
    font: 20px/50px FontAwesome;
    text-align: center;
    cursor: pointer;
    width: 70px;
    height: 44px;
}
.btn-submenu:before {
    content: "\f107";
    color: var(--primary-color5);
}
.btn-submenu.active:before {
    content: "\f106";
}
.btn-menu {
    display: none;
}
.go-top {
    position: fixed !important;
    right: -35px;
    bottom: 15px;
    width: 50px;
    height: 50px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    background-color: var(--primary-color);
    line-height: 40px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
}
.go-top.show {
    right: 15px;
    bottom: 15px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    visibility: visible;
    z-index: 9999;
}
.go-top i {
    font-size: 16px;
    color: #ffff;
    font-weight: 600;
    vertical-align: middle;
}
.go-top:hover {
    background-color: var(--primary-color2);
    border: 3px solid var(--primary-color2);
}
.preloader {
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999;
    transition: all 0.3s ease-in-out;
}
.clear-loading {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -50px auto 0 -50px;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}
.loading-effect-2 {
    width: 100px;
    height: 100px;
}
.loading-effect-2 > span,
.loading-effect-2 > span:after,
.loading-effect-2 > span:before {
    content: "";
    display: block;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.loading-effect-2 > span {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-left-color: transparent;
    animation: effect-2 2s linear infinite;
}
.loading-effect-2 > span:before {
    width: 75%;
    height: 75%;
    border-right-color: transparent;
}
.loading-effect-2 > span:after {
    width: 50%;
    height: 50%;
    border-bottom-color: transparent;
}
@keyframes effect-2 {
    0% {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(1turn);
    }
}
@media (min-width: 1024px) and (max-width: 1366px) {
    .flat-testimonials-post .owl-controls {
        display: none;
    }
    .about-content {
        margin: 0;
    }
    #mainnav .menu li a {
        font-size: 15px;
    }
    .nav-wrap {
        margin-left: -30%;
    }
    #header .site-header-right .button {
        margin-top: -2px;
        margin-left: 10px;
    }
    #header .cart {
        padding-left: 15px;
    }
    .features-home2 {
        left: 0;
        right: 0;
    }
    .flat-features .features-box {
        display: unset;
    }
    .flat-why-choose-us .button-read-more {
        left: unset;
    }
    .flat-news-home2 .news-content-box {
        top: 155px;
    }
    .flat-about .circel-inside {
        right: 220px;
    }
    .flat-about .image-desc {
        text-align: unset;
    }
    .flat-team .icon-top:after {
        top: 4px;
        right: 25px;
    }
    .flat-profolio-home2 .list-box-profolio .image-profolio .active {
        height: 37.4%;
    }
    .flat-profolio-home2 .list-box-profolio:hover .profolio-show {
        height: 70%;
    }
    .flat-profolio-home2 .profolio-info .desc-box {
        max-width: 150px;
        max-height: 34px;
        overflow: hidden;
    }
    .flat-profolio .list-box-profolio {
        width: 50%;
        margin-bottom: 70px;
    }
    .flat-profolio .profolio-info {
        margin-right: 20.1%;
    }
    .flat-testimonials .dividers-testimonials {
        height: 40px;
    }
    .flat-about-2nd .content-right {
        padding: 60px 4.4% 178px 1.3%;
    }
    .flat-contact .contact-address {
        bottom: 20px;
        left: -314px;
    }
    .footer .footer-contact-info .location {
        padding-right: 0;
    }
    .footer .footer-contact-info .phone-call {
        padding-left: 2.6%;
    }
    .footer .footer-contact-info .email {
        padding-left: 5%;
    }
    .footer .logo-footer {
        padding: 33px 25px;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    #header .header-wrap-home1,
    .top-header1 .top-bar-right {
        padding: 0;
        margin-left: 0;
        margin-right: 4%;
    }
    .list-footer.wow.fadeInUp {
        margin-top: 100px;
        display: flex;
        flex-wrap: wrap;
    }
    .flat-profolio-home2 .item-three-column,
    .list-footer .footer-item {
        width: 50%;
    }
    .flat-why-choose-us .WCU-image {
        height: 160px;
    }
    .flat-why-choose-us .button-read-more {
        left: 15%;
        transform: translate(0);
    }
    .flat-about-home2 .about-box-right {
        padding: 50px 25% 0 25px;
    }
    .flat-about-home2 .about-content-left .about-count-year {
        bottom: -65px;
    }
    .flat-about-2nd .content-right {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }
    .flat-profolio-home2 .item-flex-100 {
        display: flex;
        width: 100% !important;
    }
    .item-flex-100 .list-box-profolio:first-child {
        margin-right: 15px;
    }
    .item-flex-100 .list-box-profolio:last-child {
        margin-left: 15px;
    }
    .flat-profolio-home2 .list-box-profolio:hover .profolio-show {
        height: 65%;
    }
    .flat-profolio-home2 .list-box-profolio .image-profolio .active {
        height: 31.4%;
    }
    .flat-profolio-home2 .list-box-profolio .profolio-info .profolio-btn:after {
        margin-left: unset;
        margin-right: 25px;
    }
    .flat-profolio-home2 .desc-box {
        max-height: 30px;
        overflow: hidden;
    }
    .flat-testimonials-home2 .testimonials-author-box {
        margin: 20px 0;
        width: unset;
    }
    .flat-news-home2 .news-content-box {
        padding: 30px 20px 23px 25px;
    }
    .flat-news-home2 .button-news {
        margin-right: unset;
        margin-top: 15%;
    }
    .footer-style-2 .title-section-footer:before {
        top: 40%;
    }
    .flat-team .icon-top:after,
    .flat-team .list-icon-hidden .fa {
        padding: 10px 11px;
        font-size: 10px;
    }
    .widgets-nav-social {
        line-height: unset;
    }
    .footer .logo-footer {
        padding: 38px 18px;
    }
    .footer .content-email {
        max-width: 120px;
        overflow: hidden;
    }
    .footer .footer-contact-info .email {
        padding-left: 4%;
    }
    .footer .footer-contact-info .location {
        padding-left: 6.3%;
        padding-right: 0;
    }
    .footer .footer-contact-info .phone-call {
        padding-left: 0;
    }
    .footer .content-location {
        max-height: 80px;
        overflow: hidden;
    }
    .flat-about-2nd .tag-logo {
        right: 0;
    }
    .flat-about-2nd .content-left {
        margin-right: 0;
    }
    .about-desc {
        width: 30%;
    }
    .flat-about .circel-inside {
        right: 94px;
    }
    #header .site-header-right .button,
    .contact .contact-address {
        display: none;
    }
    #header .header-wrap-home1 .inner-header {
        padding-left: 0;
    }
    #mainnav .menu li a {
        font-size: 15px;
    }
    .footer .footer-contact-info .heading-16px-rubik {
        font-size: 12px;
    }
    .about-inner .about-post {
        margin-top: 4.7%;
        margin-left: 80px;
        margin-right: 80px;
    }
    .about-inner .about-content {
        margin-left: 0;
        margin-top: 11%;
    }
    .team .list-team {
        margin: 71px 23% 0;
    }
    .team .our-profolio {
        margin: 10px 3% 0 2.4%;
    }
    .team .image-profolio {
        margin-bottom: 25px;
    }
    .team .profolio-info {
        margin-left: 15.6px;
        margin-right: 15.6px;
        padding: 30px 20px 30px 30px;
        overflow: hidden;
    }
    .team .image-profolio:hover .profolio-show {
        height: 36%;
    }
    .about-2nd .about-content-left {
        padding-right: 0;
    }
    .about-2nd .content-right {
        padding: 120px 0 203px 7.2%;
    }
    .work-process .section-title {
        padding: 0 20% 0 20.5%;
    }
    .contact {
        padding: 50px 5px 99px 0;
    }
    .contact .contact-left {
        padding-right: 20%;
    }
    .contact .contact-right {
        margin: 50px 0 0;
    }
    .contact .contact-right .form-contact-right {
        padding: 58px 44px 51px;
    }
}
@media only screen and (max-width: 991px) {
    .flat-contact .contact-address,
    .footer-style-2 .list-footer {
        width: 100% !important;
    }
    .about-content,
    .features-home2 .features-home2-box,
    .features-home2 .section-desc,
    .flat-about .button,
    .flat-about-home2 .about-content-left,
    .flat-about-home2 .about-content-right,
    .flat-blog-detail,
    .flat-blog-home01 .blog-item,
    .flat-blog-standard,
    .flat-case-details,
    .flat-case-details .author-note,
    .flat-case-details .author-post,
    .flat-contact .contact-right,
    .flat-contact-page,
    .flat-counter .counter-content-left,
    .flat-counter .counter-content-right,
    .flat-faq,
    .flat-features,
    .flat-news-home2 .flat-news-box,
    .flat-news-home2 .section-title-box,
    .flat-profolio,
    .flat-profolio-home2,
    .flat-service-home2 .service-box,
    .flat-services .our-services-box,
    .flat-shop,
    .flat-shop .shop-item-box,
    .flat-team .list-team,
    .flat-testimonials,
    .flat-testimonials-home2 .testimonials-content-right,
    .flat-why-choose-us .flat-WCU-box,
    .flat-work-process .features-box,
    .footer .footer-contact-info,
    .footer .top-footer-left,
    .footer-style-2 .footer-form-home2,
    .footer-style-2 .list-footer,
    .footer-style-2 .widgets-menu-1 .list-menu-1,
    .inner-features,
    .subcribe-box,
    .subcribe-box .form-subcribe,
    .widgets-menu-1,
    .widgets-menu-2,
    .widgets-subcribes {
        margin: 0;
    }
    #header .header-wrap,
    .flat-about-2nd .content-right,
    .flat-blog-home01,
    .flat-contact,
    .flat-contact .section-title,
    .flat-profolio,
    .flat-services,
    .flat-team,
    .flat-work-process,
    .footer-bottom,
    .list-footer,
    .widgets-nav-social {
        margin: 0;
        padding: 0;
    }
    .top-header {
        padding: 0 20px;
    }
    .features-home2 {
        left: 0;
        right: 0;
    }
    #header .header-wrap {
        padding: 0 5px;
    }
    .flat-profolio-home2 {
        padding: 0 10px;
    }
    .flat-contact .contact-right .form-contact-right,
    .subcribe-box .inner-subcribe-box {
        padding: 30px;
    }
    .subcribe-box .form-subcribe {
        margin-top: 10px;
    }
    .flat-about-home2 .about-content-right,
    .flat-news-home2 .news-content-box,
    .flat-why-choose-us .content-features {
        padding-left: 15px;
        padding-right: 15px;
    }
    .features-box,
    .flat-case-details .author-post,
    .flat-contact .contact-left,
    .flat-services .our-services-box,
    .flat-team .team-box,
    .flat-why-choose-us .WCU-image,
    .flat-work-process .content-features,
    .flat-work-process .features-box,
    .widgets-menu-1,
    .widgets-menu-2,
    .widgets-subcribes {
        margin-bottom: 30px;
    }
    .about-content,
    .flat-about-2nd .content-right,
    .flat-blog-home01,
    .flat-case-details,
    .flat-contact,
    .flat-contact-page,
    .flat-faq,
    .flat-profolio,
    .flat-services,
    .flat-shop,
    .flat-team,
    .flat-testimonials-home2,
    .footer-style-2 .footer-form-home2 {
        padding: 60px 0;
    }
    .flat-blog-detail,
    .flat-blog-standard {
        padding: 60px 0 120px;
    }
    #mainnav,
    .cart,
    .flat-about-home2 .image-about-home2,
    .img-center,
    .search,
    .site-header-right {
        display: none;
    }
    .flat-why-choose-us .features-box,
    .list-footer {
        display: block;
    }
    .flat-about .about-post,
    .flat-case-details .author-post,
    .flat-case-details .post-inner-box,
    .flat-why-choose-us .features-box {
        text-align: center;
    }
    .flat-about-2nd .content-right,
    .flat-about-home2,
    .flat-news-home2,
    .flat-testimonials-home2,
    .flat-why-choose-us,
    .flat-work-process,
    .footer {
        background-image: unset;
    }
    .flat-service-home2 {
        height: unset;
    }
    .flat-contact .contact-address {
        position: unset;
    }
    .flat-shop .tf-shop-item li,
    .item-four-column,
    .widget_lastest,
    .widgets-contact-info {
        width: 50%;
    }
    .flat-shop .tf-shop-item {
        flex-wrap: wrap;
    }
    .widget_lastest {
        float: left;
        padding-right: 10px;
    }
    .widgets-contact-info {
        float: right;
        padding-left: 10px;
    }
    .flat-profolio .image-profolio:hover .profolio-show {
        height: 38%;
    }
    .flat-about-2nd .subcribe-about {
        position: unset;
    }
    .flat-profolio .image-profolio .active {
        height: 38%;
    }
    .flat-profolio-home2 .list-box-profolio .profolio-info .button-next {
        right: 0;
    }
    .flat-profolio .profolio-info .desc-box,
    .flat-profolio-home2 .profolio-info .desc-box {
        max-width: 150px;
        max-height: 34px;
        overflow: hidden;
    }
    .themesflat-pagination-style2 .text-left {
        padding: 38px 17px 38px 125px;
    }
    .themesflat-pagination-style2 .text-right {
        padding: 38px 154px 38px 0;
    }
    .flat-service-details .icon-services {
        padding: 40px;
    }
    .flat-profolio .profolio-info {
        margin-right: 6.1%;
        padding-left: 20px;
        padding-right: 20px;
    }
    .flat-profolio .list-box-profolio {
        width: 100%;
        margin-bottom: 25px;
    }
    .flat-team .image-staff:not(:hover) .list-icon-hidden {
        right: -70%;
        transition: 1s ease;
    }
    .flat-team .icon-top:after {
        top: 5px;
        right: 14px;
    }
    .logo {
        display: inline-block;
    }
    .btn-menu {
        position: absolute;
        display: block;
        right: 15px;
    }
    .nav-wrap {
        position: relative;
    }
    .content-blog-detail .input-yourname,
    .input-youremail {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .themesflat-map {
        height: 300px;
    }
}
@media only screen and (max-width: 767px) {
    #header .header-wrap-home1,
    .about-2nd .section-title,
    .features-home2 .features-home2-box,
    .flat-about-2nd .content-left,
    .flat-news-home2 .button-news,
    .flat-news-home2 .flat-news-box,
    .flat-service-details .services-item-left,
    .flat-service-details .services-item-right,
    .flat-team .list-team,
    .footer-style-2 .footer-form-home2,
    .footer-style-2 .list-contact-footer2,
    .footer-style-2 .widgets-about .widgets-nav-social,
    .footer-style-2 .widgets-menu-1,
    .footer-style-2 .widgets-menu-2,
    .list-footer .widgets-about {
        margin: 0 !important;
    }
    .features-home2 .features-home2-box,
    .flat-work-process .icon-wp-box {
        padding: 20px;
    }
    .features-home2 .features-home2-box,
    .flat-about .about-desc-box,
    .flat-about-2nd .box,
    .flat-news-home2 .button-news,
    .flat-service-details .services-item,
    .flat-work-process .features-box,
    .subcribe-box .btn-subcribe,
    .top-header,
    .top-header .top-bar-right {
        display: block;
    }
    #header .site-header-right .button,
    .flat-case-details .paginate-box .content-features,
    .flat-work-process .icon-box,
    .flat-work-process .icon-box2,
    .flat-work-process .icon-box3,
    .footer .top-footer,
    .img-slide,
    .ripple {
        display: none;
    }
    .features-home2 .features-left,
    .features-home2 .features-right,
    .flat-about .image,
    .flat-about .image-desc,
    .flat-service-details .post-inner-box img,
    .footer-style-2 .list-footer .footer-item,
    .footer-style-2 .widgets-about,
    .image-desc,
    .item-four-column,
    .item-three-column,
    .list-footer .footer-item,
    .subcribe-box .btn-subcribe,
    .top-header .top-bar-right,
    .top-header1 .top-bar-right,
    .widget_lastest,
    .widgets-contact-info {
        width: 100% !important;
    }
    .flat-counter .background-counter {
        height: unset;
    }
    .top-header .top-bar-left {
        display: block !important;
        float: unset;
    }
    #header .header-wrap,
    .footer-bottom,
    .top-bar-right .widgets-nav-social,
    .top-footer-style2 .widgets-nav-social {
        justify-content: center;
    }
    .section-title,
    .title-main {
        font-size: 37px;
    }
    .features-home2 {
        bottom: -211px;
    }
    .top-bar-right,
    .top-header .top-bar-left,
    .top-header .top-bar-right,
    .top-header-inner,
    .widgets-nav-social {
        line-height: unset;
    }
    .top-header,
    .top-header1 {
        padding: 10px 0;
    }
    .flat-counter .content-left-box {
        position: unset;
        width: unset;
    }
    .flat-why-choose-us .flat-WCU-box:first-child,
    .top-header1 {
        margin-bottom: 60px;
    }
    .list-footer,
    .top-footer-style2 {
        margin-top: 60px;
    }
    .footer-style-2 .list-footer,
    .footer-style-2 .list-footer .footer-item,
    .widgets-contact-info {
        margin-top: 30px;
    }
    .image-desc {
        margin: 30px 0;
    }
    #header .header-wrap,
    #header .header-wrap-home1 .inner-header,
    .flat-profolio-home2,
    .flat-services .our-services-box .icon-size,
    .flat-services .our-services-box .icon-size2,
    .flat-services .our-services-box .icon-size3,
    .flat-services .our-services-box .icon-size4,
    .footer-style-2 .list-footer,
    .footer-style-2 .widgets-menu-1 .list-menu-1,
    .list-footer .text-decs,
    .widget_lastest,
    .widgets-contact-info,
    footer .widgets-about .widgets-nav-social {
        padding: 0 !important;
    }
    .flat-about-home2 .content-features,
    .footer-style-2 .list-contact-footer2,
    .footer-style-2 .widgets-about .widgets-nav-social,
    .list-footer .text-decs {
        margin-top: 20px !important;
    }
    .flat-profolio-home2 .list-box-profolio .profolio-info .profolio-btn:after {
        margin-left: 0;
        margin-right: 20px;
    }
    .flat-profolio-home2 .list-box-profolio .image-profolio .active {
        height: 32.4%;
    }
    .flat-profolio-home2 .list-box-profolio:hover .profolio-show {
        height: 62.4%;
    }
    .flat-news-home2 .button-news {
        float: left;
    }
    .flat-profolio-home2 .desc-box {
        max-height: 30px;
        overflow: hidden;
    }
    .flat-about .about-desc-box,
    .flat-testimonials-home2 .testimonials-author-box,
    footer .widgets-about .widgets-nav-social {
        margin: 20px 0;
    }
    .flat-testimonials-home2 .author-carousel {
        bottom: -20px;
        left: 0;
        padding: 0 15px;
    }
    .flat-case-details .author-note,
    .flat-service-details .create-by-author {
        padding: 20px;
    }
    .flat-blog-detail,
    .flat-blog-standard {
        padding-bottom: 60px !important;
    }
    .flat-about .button,
    .flat-about .image-desc,
    .flat-work-process .content-features,
    .flat-work-process .icon-wp-box,
    .subcribe-box .btn-subcribe,
    .top-footer-style2,
    .top-header,
    .top-header1 {
        text-align: center;
    }
    .footer-style-2 .title-section-footer:before,
    .subcribe-box .btn-subcribe {
        position: unset;
    }
    .flat-services .our-services-box {
        display: grid;
        text-align: center !important;
        padding-top: 30px;
        margin: 0 0 30px;
    }
    .flat-services .content-features {
        padding: 24px 20px 12px;
    }
    .flat-contact-page .contact-right .form-contact-right {
        padding: 0 15px;
    }
    .flat-testimonials .list-testimonials {
        margin: 103px 0 120px;
    }
    .subcribe-box {
        height: unset;
        padding-bottom: 37px;
    }
    .flat-team .list-team {
        margin-left: -15px;
        margin-right: -15px;
    }
    .flat-about-2nd .content-left {
        height: 500px;
    }
    .flat-about-2nd .desc-features {
        padding-right: 15px;
    }
    .flat-service-details .post-inner-box,
    .res-btn-slider {
        margin-bottom: 20px;
    }
    .flat-work-process .icon-box2 {
        position: absolute;
        top: 42%;
        right: -44px;
    }
    .flat-work-process .icon-box3 {
        position: absolute;
        top: 43%;
        right: -42px;
    }
    #rev-slider2 .button-box {
        display: unset;
        margin-top: 170px;
    }
    .flat-work-process .content-features {
        padding: 34px 35px 0 15px;
    }
    .flat-contact .info {
        max-height: 59px;
        overflow: hidden;
    }
    .content-blog-detail .box-2,
    .flat-contact .contact-right .input-phone,
    .flat-contact-page .contact-right .input-phone,
    .input-services {
        margin-left: 0;
    }
    .footer-style-2 ul.list-menu-1,
    .list-menu-1,
    .list-menu-2 {
        margin-left: 20px !important;
    }
    .flat-contact .contact-right .input-name,
    .flat-contact-page .contact-right .input-name,
    .flat-shop .tf-shop-item li,
    .input-email,
    .input-phone,
    .input-services {
        width: 100%;
    }
    .flat-contact .contact-right .input-row,
    .flat-contact-page .contact-right .input-row {
        display: unset;
    }
    .flat-contact .contact-right .form-contact-right,
    .flat-contact-page .contact-right .form-contact-right {
        margin-top: 30px;
    }
    .flat-work-process .section-title {
        padding: 0;
    }
    .subcribe-box .form-subcribe {
        margin: 0;
        margin-top: 20px;
    }
    .subcribe-box .inner-subcribe-box {
        padding-top: 40px;
        padding-left: 25px;
    }
    .about-box,
    .flat-about-2nd .content-right .about-box {
        width: 100%;
    }
    .flat-about-2nd .tag-logo {
        right: 0;
    }
    .flat-profolio .list-box-profolio {
        width: 100%;
        margin-left: 0;
        margin-bottom: 25px;
    }
    .flat-team .icon-top:after {
        top: 12px;
        right: 25px;
    }
    .tf-features .desc-features {
        margin-bottom: 20px;
        max-height: 80px;
        overflow: hidden;
    }
    .service-inner .desc-features {
        max-height: 88px;
        overflow: hidden;
    }
    .about-2nd .content-right {
        padding: 98px 0 160px 5%;
    }
    .flat-case-study .list-box-profolio .image-profolio .active,
    .flat-case-study .list-box-profolio .image-profolio:hover .profolio-show {
        height: 40%;
    }
}
@font-face {
    font-family: icomoon;
    src: url("../../../_next/static/media/icomoon.e4a5a5f8.eot");
    src: url("../../../_next/static/media/icomoon.e4a5a5f8.eot#iefix")
            format("embedded-opentype"),
        url("../../../_next/static/media/icomoon.c6701d83.ttf")
            format("truetype"),
        url("../../../_next/static/media/icomoon.16dcdd4e.woff") format("woff"),
        url("../../../_next/static/media/icomoon.8c36c32c.svg#icomoon")
            format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: block;
}
[class*=" icon-"],
[class^="icon-"] {
    font-family: icomoon !important;
    speak: never;
    font-style: normal;
    font-weight: 400;
    font-feature-settings: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.icon-hanging-bot:before {
    content: "\e922";
    color: #348e38;
}
.icon-admin-sys:before {
    content: "\e923";
    color: #348e38;
}
.icon-spray:before {
    content: "\e924";
    color: #348e38;
}
.icon-tele-sale:before {
    content: "\e925";
    color: #348e38;
}
.icon-Group-7526 .path1:before {
    content: "\e911";
    color: rgb(101, 225, 130);
}
.icon-Group-7526 .path2:before {
    content: "\e912";
    margin-left: -1.1474609375em;
    color: rgb(15, 66, 41);
}
.icon-Group-7526 .path3:before {
    content: "\e913";
    margin-left: -1.1474609375em;
    color: rgb(15, 66, 41);
}
.icon-Group-7526 .path4:before {
    content: "\e914";
    margin-left: -1.1474609375em;
    color: rgb(15, 66, 41);
}
.icon-Group-7526 .path5:before {
    content: "\e915";
    margin-left: -1.1474609375em;
    color: rgb(15, 66, 41);
}
.icon-Group-7526 .path6:before {
    content: "\e916";
    margin-left: -1.1474609375em;
    color: rgb(15, 66, 41);
}
.icon-Group-7527 .path1:before {
    content: "\e917";
    color: rgb(101, 225, 130);
}
.icon-Group-7527 .path2:before {
    content: "\e918";
    margin-left: -0.873046875em;
    color: rgb(15, 66, 41);
}
.icon-Group-7527 .path3:before {
    content: "\e919";
    margin-left: -0.873046875em;
    color: rgb(15, 66, 41);
}
.icon-Group-7528 .path1:before {
    content: "\e91a";
    color: rgb(101, 225, 130);
}
.icon-Group-7528 .path2:before {
    content: "\e91b";
    margin-left: -1.02734375em;
    color: rgb(15, 66, 41);
}
.icon-Group-7528 .path3:before {
    content: "\e91c";
    margin-left: -1.02734375em;
    color: rgb(15, 66, 41);
}
.icon-icon-farming-layer .path1:before {
    content: "\e91d";
    color: rgb(101, 225, 130);
}
.icon-icon-farming-layer .path2:before {
    content: "\e91e";
    margin-left: -1.009765625em;
    color: rgb(15, 66, 41);
}
.icon-icon-farming-layer .path3:before {
    content: "\e91f";
    margin-left: -1.009765625em;
    color: rgb(15, 66, 41);
}
.icon-icon-farming-layer .path4:before {
    content: "\e920";
    margin-left: -1.009765625em;
    color: rgb(15, 66, 41);
}
.icon-icon-farming-layer .path5:before {
    content: "\e921";
    margin-left: -1.009765625em;
    color: rgb(15, 66, 41);
}
.icon-greenhouse1:before {
    content: "\e907";
    color: #0f4229;
}
.icon-seeding1:before {
    content: "\e90c";
    color: #0f4229;
}
.icon-watering-can1:before {
    content: "\e90d";
    color: #0f4229;
}
.icon-icon1:before {
    content: "\e90e";
    color: #fff;
}
.icon-icon21:before {
    content: "\e90f";
    color: #fff;
}
.icon-icon31:before {
    content: "\e910";
    color: #fff;
}
.icon-seed:before {
    content: "\e900";
    color: #348e38;
}
.icon-farming:before {
    content: "\e901";
    color: #348e38;
}
.icon-hand-gloves:before {
    content: "\e902";
    color: #348e38;
}
.icon-fruit-box:before {
    content: "\e903";
    color: #348e38;
}
.icon-Group-660:before {
    content: "\e904";
    color: #348e38;
}
.icon-Group-661:before {
    content: "\e905";
    color: #348e38;
}
