@font-face {
    font-family: 'Galano Grotesque';
    src: url("../fonts/GalanoGrotesque-Regular.woff2") format("woff2"), url("../fonts/GalanoGrotesque-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal
}

@font-face {
    font-family: 'Galano Grotesque';
    src: url("../fonts/GalanoGrotesque-SemiBold.woff2") format("woff2"), url("../fonts/GalanoGrotesque-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

[data-darkbox-group],
[data-darkbox] {
    cursor: pointer
}

#darkbox {
    color: #fff;
    font: 14px/1.4 sans-serif;
    position: fixed;
    z-index: 999999;
    top: 24px;
    left: 24px;
    bottom: 24px;
    right: 24px;
    background: rgba(0, 0, 0, 0.8) none no-repeat 50% 50%/contain;
    -webkit-box-shadow: 0 0 0 24px rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 0 24px rgba(0, 0, 0, 0.8);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden
}

#darkbox.show {
    opacity: 1;
    visibility: visible
}

#darkbox a:hover {
    color: #067d4f;
    border-color: #067d4f
}

#darkbox_next,
#darkbox_prev {
    cursor: pointer;
    position: absolute;
    height: 30px;
    width: 30px;
    top: 50%;
    margin-top: -15px;
    border: 0px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: 0.3s;
    transition: 0.3s
}

#darkbox_prev {
    left: -6px;
    border-width: 0 0 3px 3px
}

#darkbox_next {
    right: -6px;
    border-width: 3px 3px 0 0
}

#darkbox_description {
    position: absolute;
    bottom: 24px;
    right: 24px;
    text-align: right;
    text-shadow: 0 1px 1px #000
}

#darkbox_stats {
    position: absolute;
    left: 0;
    top: 0
}

#darkbox_close {
    position: absolute;
    top: 0;
    right: 0px;
    color: white;
    width: 50px;
    height: 50px;
    z-index: 99;
    background-color: #000
}

#darkbox_close:after {
    position: absolute;
    right: 15px;
    top: 0;
    font-size: 2.2em;
    content: "\2A2F";
    cursor: pointer
}

#darkbox:before {
    content: "";
    position: absolute;
    visibility: hidden;
    opacity: 0;
    left: 50%;
    top: 50%;
    margin: -25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -webkit-box-shadow: inset -2px 0 0 2px #fff;
    box-shadow: inset -2px 0 0 2px #fff;
    -webkit-animation: darkboxRotate 1.5s linear infinite;
    animation: darkboxRotate 1.5s linear infinite
}

#darkbox.spinner:before {
    visibility: visible;
    opacity: 1
}

@-webkit-keyframes darkboxRotate {
    to {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes darkboxRotate {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

body {
    font-family: 'Galano Grotesque';
    color: black;
    font-size: 16px;
    line-height: normal;
    font-weight: normal;
    background-color: white
}

.over-flow-hidden {
    overflow: hidden
}

::selection {
    background-color: transparent;
    color: #3fdb83
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600
}

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

a,
a>*,
button,
button>* {
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out
}

button {
    border: none
}

.btn.focus,
button:focus {
    outline: 0;
    -webkit-box-shadow: none !important;
    box-shadow: none !important
}

a:focus,
a:hover,
a>:focus,
a>:hover,
button:focus {
    outline: 0;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in
}

.bg-powder-blue {
    background-color: RGB(247, 247, 238);
}

img {
    -webkit-transition: all 0.5s;
    transition: all 0.5s
}

img:hover {
    -webkit-transition: all 0.5s;
    transition: all 0.5s
}

.section {
    padding: 60px 0
}

.link {
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    overflow: hidden
}

.link:hover {
    position: relative;
    color: #fff;
    background-color: #d7a136
}

.link:hover:after {
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-animation: ripple .5s ease-out;
    animation: ripple .5s ease-out
}

.readmore:focus:not(:active):after {
    -webkit-animation: ripple 1s ease-out;
    animation: ripple 1s ease-out
}

@-webkit-keyframes ripple {
    0% {
        -webkit-transform: scale(0, 0);
        transform: scale(0, 0);
        opacity: 1
    }

    20% {
        -webkit-transform: scale(2, 2);
        transform: scale(2, 2);
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: scale(10, 10);
        transform: scale(10, 10)
    }
}

@keyframes ripple {
    0% {
        -webkit-transform: scale(0, 0);
        transform: scale(0, 0);
        opacity: 1
    }

    20% {
        -webkit-transform: scale(2, 2);
        transform: scale(2, 2);
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: scale(10, 10);
        transform: scale(10, 10)
    }
}

.page-header {
    width: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 98;
    -webkit-box-shadow: rgba(30, 50, 50, 0.25) 0 0.05em 0.5em;
    box-shadow: rgba(30, 50, 50, 0.25) 0 0.05em 0.5em
}

@media screen and (max-width:992px) {
    .page-header {
        -webkit-box-shadow: none;
        box-shadow: none
    }
}

.top-bar {
    background-color: #66aa1a;
    padding: 15px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out
}

@media screen and (max-width:992px) {
    .top-bar {
        background-color: #66aa1a
    }

    .page-header.scrolled .top-bar {
        background-color: #66aa1a;
    }
}

.top-bar .logo-holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%
}

.top-bar .logo-holder img {
    max-height: 60px;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out
}

@media screen and (max-width:768px) {
    .top-bar {
        padding: 10px 0 15px;
    }

    .top-bar .t-center {
        text-align: center;
    }

    .top-bar {
        text-align: center;
    }

    .top-bar .logo-holder {
        display: inline-block;

    }

    .top-bar .logo-holder img {
        width: auto;
        max-height: 50px;
    }

}

.info-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: unset;
}

.info-container ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 30px
}

.info-container .mega-menu {
    position: absolute;
    top: 90%;
    background: #509111;
    padding: 30px 20px;
    max-width: 100%;
    left: 0%;
    transform: translateY(10px);
    width: 100%;
    max-height: 75vh;
    overflow-y: auto;
    display: none;
 
    visibility: hidden;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
     
}
/* .info-container ul li.has-submenu:hover .mega-menu{
    display: block !important;
    opacity: 1;
    visibility:visible;
    transform: translateY(0px);

    
} */
.info-container .mega-menu.menu-opened{
    top: 100%;
    display: block ;
    pointer-events: auto;
    transform: translateY(0);
 
    visibility: visible;
}
.info-container .mega-menu .sub-menu {
    flex-wrap: wrap;
}

.info-container .mega-menu .sub-menu li {
    padding: 0 4px;
    min-width: 160px;
    margin-bottom: 5px;
    display: inline-block;
    word-break: inherit;
    max-width: 160px;
}

.info-container .mega-menu .sub-menu li a {
    padding: 0;
    margin: 0;
    font-weight: 400;
    word-break: break-all;
    color: rgb(255, 255, 255);
    font-size: 15px;
}
.info-container .mega-menu .sub-menu li a:hover {
	color: rgb(120, 192, 37);
}
@media screen and (max-width:1200px) {
    .info-container ul{
        margin-right: 0;  
    }
    .info-container .mega-menu {
        position: static;
        opacity:1;
        visibility: visible;
        padding: 10px;
    }
    .info-container .mega-menu.menu-opened{
        display: block !important;

    }
    .info-container ul  li.has-submenu {
        position: relative;
    }
    .info-container ul  li.has-submenu .sub-toggle {
        display: inline-block;
        position: absolute;
        right: 0px;
        top: 0;
        color: rgb(255, 255, 255);
        width: 25px;
        height: 25px;
        text-align: center;
        z-index: 99;
        cursor: pointer;
        background-image: url(../images/down-arrow.png);
        background-position: center;
        background-repeat: no-repeat;
    }
}

@media screen and (max-width:768px) {
    .info-container ul {
        margin-right: 20px
    }
}

.info-container ul li {
    padding: 18px 10px;
}

.info-container ul li a {
    color: white;
    font-size: 16px;
    font-weight: 600
}

.info-container ul li a:hover {
    color: #d1d1d1
}

.login {
    background-color: #fff;
    font-size: 18px;
    color: black;
    font-weight: 600;
    border-radius: 7px;
    padding: 10px 30px
}

@media screen and (max-width:768px) {
    .login {
        padding: 5px 10px;
        font-size: 15px
    }
}

@media screen and (max-width:768px) {
    .login span {}
}

.login:hover {
    color: #fff;
    background-color: #417530;
}

.scrolled {
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out
}

.scrolled .top-bar {
    padding: 5px 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out
}

.scrolled .top-bar .logo-holder img {
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    width: 98px
}

.hamburger {
    display: none;
}

@media (max-width: 1200px) {

    .top-bar .logo-holder {
        float: left;
    }

    .page-header .top-bar ul li {
        display: inline-block;
        margin-bottom: 8px;
        width: 100%
    }

    .page-header .info-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 250px;
        padding: 20px;
        z-index: 99999;
        height: 100%;
        overflow: auto;
        background-color: rgb(102, 170, 26);
        display: block;
        text-align: left;
        -webkit-transform: translateX(-250px);
        transform: translateX(-250px);
        -webkit-transition: -webkit-transform 0.3s ease-in;
        transition: -webkit-transform 0.3s ease-in;
        transition: transform 0.3s ease-in;
        transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in
    }

    .page-header .info-container.slidenav {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    .page-header .info-container>ul {
        float: none;
        display: inline-block;
        width: 100%;
        text-align: left;
    }

    .page-header .info-container>ul>li {
        display: block;
        padding: 0 !important;
        margin-left: 0
    }

    .page-header .info-container>ul>li>a {
        font-size: 14px;
        color: #fff;
        line-height: 35px
    }

    .page-header .info-container .fl {
        display: block;
        line-height: 35px
    }

    .page-header .submenu {
        position: static;
        min-width: 200px;
        background: transparent;
        border: none;
        padding: 5px 15px 5px 25px;
        opacity: 1;
        visibility: visible;
        -webkit-box-shadow: none;
        box-shadow: none;
        -webkit-transform: none;
        transform: none;
        -webkit-transition: none;
        transition: none;
        display: none
    }

    .page-header .submenu>li a {
        display: block;
        padding: 10px 0;
        color: #666;
        line-height: 0.8;
        font-size: 14px;
        color: #ccc;
        text-decoration: none;
        -webkit-transition: all 0.3s;
        transition: all 0.3s
    }

    .page-header .submenu>li a:hover {
        background: transparent;
        color: #08509e
    }

    .page-header .slideInUp {
        visibility: visible;
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-transition: none;
        transition: none
    }

    /* ------ Humburger style ============ */
    .hamburger {
        display: block;
        position: relative;
        width: 40px;
        height: 30px;
        cursor: pointer;
        border: 5px solid transparent;
        float: right;
        margin-top: 10px;

    }

    .hamburger span {
        width: 100%;
        height: 2px;
        background-color: #fff;
        display: block;
        position: absolute;
        right: 0;
        -webkit-transition: all 0.3s;
        transition: all 0.3s
    }

    .hamburger span.h-top {
        top: 0
    }

    .hamburger span.h-bottom {
        bottom: 0;
        width: 27px
    }

    .hamburger span.h-middle {
        top: 50%;
        margin-top: -1px;
        width: 25px
    }

    .hamburger.h-active span {
        width: 100%
    }

    .hamburger.h-active span.h-top {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 50%;
        margin-top: -1px
    }

    .hamburger.h-active span.h-middle {
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
        opacity: 0
    }

    .hamburger.h-active span.h-bottom {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        bottom: 50%;
        margin-bottom: -1px
    }
}

@media screen and (max-width:768px) {

    .scrolled .top-bar .logo-holder img {
        width: auto;
    }
}

@media screen and (max-width:1200px) {
    .logo-xs-full {

        flex: 0 0 100%;
        max-width: 100%;
    }
}

.hero-section {
    min-height: 720px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 1
}

@media screen and (max-width:992px) {
    .hero-section .hero-content {
        padding: 15px 0 30px
    }
}

@media screen and (max-width:992px) {
    .hero-section .hero-content h1 {
        text-align: center;
        font-size: 32px;
        margin: 20px 0
    }
}

.hero-section .banner-responsive {
    display: none
}

@media screen and (max-width:992px) {
    .hero-section .banner-responsive {
        display: block;
        width: 100%;
        background: #15a194;
        background: -webkit-gradient(linear, left top, left bottom, from(#15a194), to(#2eab67));
        background: linear-gradient(to bottom, #15a194 0%, #2eab67 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#15a194', endColorstr='#2eab67', GradientType=0);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 0;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

@media screen and (max-width:992px) {
    .hero-section .banner-responsive {
        padding: 20px 0 0;
    }

}

.hero-content h1 {
    font-size: 32px;
}

.hero-section p {
    font-size: 18px;
    margin: 10px 0
}

@media screen and (max-width:992px) {
    .hero-section p {
        text-align: center;
        font-size: 16px
    }
}

.hero-section .hero-btn {
    display: inline-block;
    margin: 20px 0
}

@media screen and (max-width:992px) {
    .hero-section .hero-btn {
        text-align: center;
        width: 100%
    }
}

.hero-section .hero-btn img {
    max-width: 100%;
    margin-right: 20px;
    margin-bottom: 0;
    max-width: 190px;
}

.hero-section .hero-btn img:hover {
    opacity: 0.7
}

.hero-section .hero-inner {
    position: relative
}

.hero-section .hero-moc {
    position: relative
}

@media screen and (max-width:992px) {
    /*     .hero-section .hero-moc {
        display: none
    } */
}

.hero-section .hero-moc img {
    position: absolute;
    max-width: 100%;
    -webkit-animation-name: mock-animation;
    animation-name: mock-animation;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
}

.hero-section .scan {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (max-width:992px) {
    .hero-section .scan {
        display: none
    }
}

@media screen and (max-width:767px) {
    .container-mob {
        max-width: 100%;

    }
}

@media screen and (max-width:767px) {
    .hero-inner .order-md-1 {
        order: 2
    }
}

.hero-section .scan p {
    font-size: 18px;
    margin-left: 15px;
    line-height: 26px
}

.hero-section .scan p span {
    font-weight: 600;
    color: #2fad66;
    display: inline-block;
    width: 100%
}

.console-container {
    position: relative;
    margin-top: 25px;
    display: inline-block;
    width: 100%;
    min-height: 50px;
}

.console-underscore {
    display: inline-block;
    position: relative;
    top: -0.14em;
    left: 10px;
    font-size: 18px;
}

#text {
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
}

@-webkit-keyframes mock-animation {
    0% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    to {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }
}

@keyframes mock-animation {
    0% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    to {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }
}

.fade-in {
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate(0, -150%);
        transform: translate(0, -150%)
    }

    to {
        opacity: 1;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%)
    }
}

.working {
    background-color: #f2f2f2;
    padding: 13% 0 0;
    text-align: center
}

.working h2 {
    font-size: 40px;
    margin-bottom: 70px
}

.working .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    position: relative
}

@media screen and (min-width:992px) {

    /*     .working .list:after {
        position: absolute;
        content: "";
        font-size: 30px;
        color: #959090;
        letter-spacing: 10px;
        top: 50%;
        background-image: url(../images/dash.png);
        width: 76%;
        background-repeat: repeat;
        height: 3px;
        -webkit-transform: translateY(-75px);
        transform: translateY(-75px)
    } */
    .working .list:after {
        position: absolute;
        content: "";
        font-size: 30px;
        color: #959090;
        letter-spacing: 10px;
        top: 50%;
        background-image: url(../images/dash.png);

        background-repeat: repeat;
        height: 3px;
        transform: translate(-50%, -75px);
        left: 50%;
        right: auto;
        width: 70%;
    }
}

.working .list li {
    width: 25%;
    text-align: center;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 135px;
    min-height: 160px
}

.working .list li a {
    text-align: center
}

.working .list li a span {
    text-align: center;
    color: #000;
    display: inline-block;
    width: 100%;
}

.working .list li:after {
    position: absolute;
    content: "--------";
    font-size: 26px;
    color: rgb(181, 181, 181);
    letter-spacing: 8px;
    top: 25px;
    right: -90px;
    font-weight: 600;
}

.working .list li:nth-child(4):before {
    content: " ";
    position: absolute;
    bottom: -65px;
    height: 60px;
    background-image: url(../images/dash-vertical.png);
    background-repeat: repeat;
    width: 3px
}

.working .list li:nth-child(5):before {
    content: " ";
    position: absolute;
    top: -65px;
    height: 60px;
    background-image: url(../images/dash-vertical.png);
    background-repeat: repeat;
    width: 3px
}

.working .list li:nth-child(8):after {
    content: none
}

@media screen and (min-width:992px) {
    .working .list li:nth-child(4)::after {
        content: none;
    }
}

@media screen and (max-width:992px) {
    .working .list li {
        width: 49%;
        padding-bottom: 55px;
        min-height: 106px;
        margin-bottom: 50px;
        margin-top: 10px;
    }

    /* .working .list li:after {
        content: "------";
        right: -60px;
        font-size: 22px;
        top: 7px;
		font-weight: normal;
    } */
    .working .list li:nth-child(1):after,
    .working .list li:nth-child(3):after,
    .working .list li:nth-child(5):after,
    .working .list li:nth-child(7):after {
        content: "";
        left: 50%;
        font-size: 22px;
        background-image: url(../images/dash.png);
        background-repeat: repeat;
        top: 23px;
        font-weight: normal;
        color: rgb(170, 170, 170);
        letter-spacing: 12px;
        position: absolute;
        width: 60%;
        height: 2px;
        margin-left: 20%;
        right: auto;
    }

    .working .list li:nth-child(2):before {
        content: " ";
        position: absolute;
        height: 60px;
        background-image: url(../images/dash-vertical.png);
        background-repeat: repeat;
        width: 2px;
        left: 50%;
        margin-left: 1px;
        bottom: 20px;
        top: auto;
    }

    .working .list li:nth-child(3):before {
        content: " ";
        position: absolute;
        height: 60px;
        background-image: url(../images/dash-vertical.png);
        background-repeat: repeat;
        width: 2px;
        left: 50%;
        margin-left: 1px;
        top: -65px;
    }

    .working .list li:nth-child(4)::before {
        content: " ";
        position: absolute;
        height: 60px;
        background-image: url(../images/dash-vertical.png);
        background-repeat: repeat;
        width: 2px;
        left: 50%;
        margin-left: 1px;
        bottom: 20px;
        top: auto;
    }

    .working .list li:nth-child(5):before {
        content: " ";
        position: absolute;
        height: 60px;
        background-image: url(../images/dash-vertical.png);
        background-repeat: repeat;
        width: 2px;
        left: 50%;
        margin-left: 1px;
        top: -65px
    }

    .working .list li:nth-child(6):before {
        content: " ";
        position: absolute;
        height: 60px;
        background-image: url(../images/dash-vertical.png);
        background-repeat: repeat;
        width: 2px;
        left: 50%;
        margin-left: 1px;
        bottom: 0;
        top: auto;
    }

    .working .list li:nth-child(6)::after,
    .working .list li:nth-child(4)::after,
    .working .list li:nth-child(2)::after {
        content: "";
        right: 50%;
        font-size: 22px;
        background-image: url(../images/dash.png);
        background-repeat: repeat;
        bottom: 0px;
        font-weight: normal;
        color: rgb(170, 170, 170);
        letter-spacing: 12px;
        position: absolute;
        top: auto;
        width: 85%;
        height: 2px;
        margin-right: 5%;
    }

    .working .list li:nth-child(7)::before {
        content: " ";
        position: absolute;
        height: 60px;
        background-image: url(../images/dash-vertical.png);
        background-repeat: repeat;
        width: 2px;
        left: 50%;
        margin-left: 1px;
        top: -65px;
    }
}

@media screen and (max-width:568px) {
    .working .list li {
        padding-bottom: 75px;
    }
}

.working .list li:nth-last-child(1):after {
    content: none;
}

/* @media screen and (max-width:768px) {
    .working .list li:nth-child(2)::before,.working .list li:nth-child(4)::after  {
        content: "----------";
 
    
    } 
    .working .list li:nth-child(6)::after  {
        content: "----------";
    }
}
@media screen and (max-width:568px) {
    .working .list li {
        padding-bottom: 70px;
    }
}
@media screen and (max-width:468px) {
    .working .list li:nth-child(2)::before,.working .list li:nth-child(4)::after  {
        content: "--------";
 
    } 
    .working .list li:nth-child(6)::after {
        content: "--------";
    
    }
}
@media screen and (max-width:368px) {
} */
.working .list li img {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    max-height: 50px;
    height: 45px;
    width: auto !important;
}

@media screen and (max-width:992px) {
    .working .list li img {
        width: 50px
    }
}

.working .list li span {
    width: 60%;
    display: block;
    font-weight: 600;
    font-size: 20px;
    margin: 20px 0 0;
    min-height: 50px;
}

@media screen and (max-width:992px) {
    .working .list li span {
        font-size: 15px
    }
}

.showcase {
    padding: 85px 0
}

.showcase h2 {
    margin-bottom: 60px;
    font-size: 40px
}

.showcase .swiper-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.showcase .swiper-container img {
    -webkit-box-shadow: 2px 1px 15px #a4a4a4;
    box-shadow: 2px 1px 15px #a4a4a4
}

.showcase .swiper-container .swiper-slide {
    -webkit-transform: scale(0.65);
    transform: scale(0.65);
    opacity: 1;
    -webkit-transition: all .5s ease;
    transition: all .5s ease
}

.showcase .swiper-container .swiper-slide-next,
.showcase .swiper-container .swiper-slide-prev {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
    opacity: .7;
    position: relative;
    -webkit-transition: all .5s ease-in;
    transition: all .5s ease-in
}

.showcase .swiper-container .swiper-slide-next:after,
.showcase .swiper-container .swiper-slide-prev:after {
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%
}

.showcase .swiper-container {
    padding: 20px 0;

}

.showcase .swiper-container .swiper-slide-active {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    z-index: 100
}

@media screen and (max-width:7682px) {
    .showcase .swiper-container .swiper-slide-active {

        -webkit-transform: scale(0.8);
        transform: scale(0.8);

    }
}

.showcase .swiper-container .swiper-slide-prev img {
    -webkit-box-shadow: 13px 3px 16px #e0e0e0;
    box-shadow: 13px 3px 16px #e0e0e0
}

.showcase .swiper-container .swiper-slide-prev:after {
    background: -webkit-gradient(linear, left top, right top, from(white), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#00ffffff', GradientType=1)
}

.showcase .swiper-container .swiper-slide-next img {
    -webkit-box-shadow: -13px 3px 16px #e0e0e0;
    box-shadow: -13px 3px 16px #e0e0e0
}

.showcase .swiper-container .swiper-slide-next:after {
    background: -webkit-gradient(linear, left top, right top, color-stop(19%, rgba(255, 255, 255, 0)), to(white));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 19%, white 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1)
}

.showcase .swiper-container .swiper-next,
.showcase .swiper-container .swiper-prev {
    width: 45px;
    height: 45px;
    font-size: 30px;
    opacity: 1;
    display: block;
    text-align: center;
    position: absolute;
    left: 0;
    top: 50%;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 99;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 2px solid #66aa1a;
    color: #66aa1a;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.showcase .swiper-container .swiper-next {
    left: auto;
    right: 0
}

@media screen and (max-width:568px) {

    .showcase .swiper-container .swiper-next,
    .showcase .swiper-container .swiper-prev {
        width: 25px;
        height: 25px;
        font-size: 18px;
    }

}

.showcase .swiper-container .swiper-next:hover,
.showcase .swiper-container .swiper-prev:hover {
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out
}

.col-center {
    margin: 0 auto;
    float: none !important
}

.carousel {
    margin: 50px auto;
    padding: 0 70px
}

@media screen and (max-width:992px) {
    .carousel {
        padding: 0 15px;
        margin: 0
    }

    .showcase .slider-desc {
        width: 100% !important;
    }
}








.review-wrap {
    background-color: #f2f2f2;
    margin-bottom: 45px;
    padding: 45px 0
}

.review-wrap h2 {
    font-size: 40px
}

.review-wrap .carousel {
    margin: 25px 0;
    padding: 0;
    width: 100%
}

.review-wrap .review-list {
    display: inline-block;
    margin-top: 45px;

}

.review-list li {
    display: none;
    border-bottom: 1px solid #c8c8c8;
    margin-bottom: 35px;
    width: 100%;

}

.review-wrap .review-list li .item {
    color: black;
    font-size: 14px;
    text-align: center;
    overflow: hidden;
    min-height: auto;
    background: transparent;
    margin-bottom: 35px;
}

.review-wrap .more,
.review-wrap .less {
    background-color: #66aa1a;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    border-radius: 7px;
    padding: 10px 30px;
    width: 180px;
    text-align: center;
    cursor: pointer;
    margin-bottom: 10px;
}

@media screen and (min-width:992px) {

    .review-wrap .review-list li .stars {
        margin: 0;
        position: absolute;
        right: 0;
        top: 0;
    }

    .review-list li .review-title h6 {
        max-width: 60%;
        text-align: left;
    }
}

/* .review-wrap  .item {
    color: black;
    font-size: 14px;
    text-align: center;
    overflow: hidden;
    min-height: 250px;
    background: transparent;
    padding: 30px
} */

/* .review-wrap .stars {
    margin: 0 50px
}
 */
.review-wrap .stars i {
    color: #fccf68;
    font-size: 21px
}

.review-wrap .review-title {
    position: relative;
    margin-bottom: 10px !important;
    padding-bottom: 15px
}

.review-wrap .review-title:after {
    position: absolute;
    width: 100%;
    /*     content: ""; */
    height: 1px;
    background-color: #ddd;
    bottom: 0;
    left: 0
}

.review-wrap .review-info {
    padding: 5px 0
}

.review-wrap .review-info .author {
    margin-right: 20px
}

.review-wrap .review-info .author span {
    font-weight: 300;
    font-style: italic;
    color: #959595
}

.review-wrap .review p {
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.8;
}

.review-swiper .review {
    min-height: 160px;
}

.review-wrap .carousel .carousel-control {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    top: 50%;
    background: none
}

.review-wrap .carousel .carousel-indicators li,
.review-wrap .carousel .carousel-indicators li.active {
    width: 15px;
    height: 15px;
    margin: 1px 3px;
    border-radius: 50%
}

.review-wrap .carousel .carousel-indicators li {
    background: #fff;
    border-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #000
}

.review-wrap .carousel .carousel-indicators li.active {
    background: #66aa1a
}









.testimonial-wrap {
    background-color: #f6f6f6
}

.testimonial-wrap .carousel .item {
    color: #000000;
    font-size: 14px;
    text-align: center;
    overflow: hidden;
    min-height: 300px
}

.testimonial-wrap .carousel .testimonial {
    padding: 30px 0 10px;
    font-size: 22px;
    line-height: 1.8
}

@media screen and (max-width:992px) {
    .testimonial-wrap .carousel .testimonial {
        font-size: 18px
    }
}

.testimonial-wrap .carousel .carousel-control {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    top: 50%;
    background: none
}

.testimonial-wrap .carousel .carousel-indicators li,
.testimonial-wrap .carousel .carousel-indicators li.active {
    width: 15px;
    height: 15px;
    margin: 1px 3px;
    border-radius: 50%
}

.testimonial-wrap .carousel .carousel-indicators li {
    background: #fff;
    border-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #000
}

.testimonial-wrap .carousel .carousel-indicators li.active {
    background: #2fad66
}

.page-footer {
    margin-bottom: 0
}

.page-footer .footer-bottom {
    background-color: #66aa1a;
    padding: 25px 0
}

.page-footer .footer-bottom .quick-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.social-media li a {
    color: #fff;
    margin: 0 10px
}

.social-media li a img {
    max-height: 22px;
    margin-bottom: 25px
}

.social-media li:hover a img {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-transition: all ease-in-out 0.6s;
    -o-transition: all ease-in-out 0.6s;
    transition: all ease-in-out 0.6s
}

@media screen and (max-width:992px) {
    .page-footer .footer-bottom .quick-links {
        margin: 10px 0
    }
}

.page-footer .footer-bottom .quick-links li a {
    color: #000;
    margin: 0 15px;
    font-size: 18px
}

.page-footer .footer-bottom .quick-links li a:hover {
    color: white
}

.page-footer .footer-bottom .hero-btn img {
    max-width: 141px
}

.page-footer .footer-bottom .hero-btn img:hover {
    -webkit-transform: scale(0.95);
    transform: scale(0.95)
}

@media screen and (max-width:992px) {
    .page-footer .footer-bottom .hero-btn {
        margin: 20px 0;
        width: 100%;
        text-align: center
    }
}

.content-wrapper {
    padding: 40px 0 0;
    min-height: 77vh;
}

@media screen and (max-width:992px) {
    .content-wrapper .section {
        padding: 0 15px
    }
}

.content-wrapper h2 {
    font-size: 40px;
    margin: 20px 0 50px
}

@media screen and (max-width:992px) {
    .content-wrapper h2 {
        font-size: 32px;
        margin: 20px 0
    }
}

.content-wrapper h3 {
    font-size: 30px;
    margin: 20px 0 50px
}

@media screen and (max-width:992px) {
    .content-wrapper h3 {
        font-size: 20px;
        margin: 20px 0;
        padding: 15px
    }
}

@media screen and (max-width:568px) {
    .xs-p-15 {
        padding: 0 15px;
    }
}

.faq-block {
    cursor: pointer;
    background-color: #f2f2f2;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
    padding: 15px 30px
}

.accordion-content {
    display: none;
}

@media screen and (max-width:992px) {
    .faq-block {
        padding: 15px 20px
    }
}

.faq-block .text {
    font-size: 18px;
    display: none;
    opacity: 0;
    padding-right: 45px;
    -webkit-transition: opacity .7s;
    transition: opacity .7s;
    padding-top: 15px
}

.faq-block p {
    font-size: 18px;
    margin: 15px 0;
}

.faq-block .text.open img {
    max-width: 300px;
    margin-right: 10px;
}

@media screen and (max-width:992px) {
    .faq-block .text {
        font-size: 16px;
        padding-right: 0;
    }

    .faq-block .text.open img {
        max-width: 100%;
        margin-bottom: 15px;
        margin-right: 0;
    }
}

.bg-powder-blue .faq-block {
    background-color: white
}

.label-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative
}

.icon-box {
    position: absolute;
    right: 0;
    -webkit-transition: all .6s ease-out;
    transition: all .6s ease-out
}

.icon-box img {
    width: 22px
}

.title,
.title h6 {
    position: relative
}

.active-tab .icon-box,
.icon-box.closed {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .6s ease-out;
    transition: all .6s ease-out
}

.menu-submenu.accordion-content {
    padding: 25px 0;
}

.accordion-content .step {
    padding: 20px 0;
}

.accordion-content .step h4 {
    font-size: 20px;
}

.accordion-content .step img {
    width: 360px;
    max-width: 100%;
    margin: 25px 0;
}

.title h6 {
    font-size: 20px;
    margin: 0
}

@media screen and (max-width:992px) {
    .title h6 {
        font-size: 17px;
        padding-right: 35px
    }
}

.faq-block .text.open {
    display: block;
    opacity: 1
}

@media screen and (max-width:992px) {
    .signup-wrap {
        padding-bottom: 35px !important
    }
}

.signup-wrap h2 {
    margin-bottom: 15px
}

.signup-wrap p {
    font-size: 20px;
    color: #59595b
}

.signup-wrap p a {
    color: rgb(47, 173, 102);
}

@media screen and (max-width:992px) {
    .signup-wrap p {
        font-size: 16px
    }
}

.form-group {
    position: relative;
    text-align: right
}

.form-group .form-label {
    position: absolute;
    left: 10px;
    top: 12px;
    display: block;
    margin: 0;
    font-weight: 300;
    z-index: 1;
    color: #bbbaba;
    font-size: 14px
}

.form-group .form-control {
    text-align: center;
    height: 50px;
    border-radius: 0;
    color: #080909;
    border: 1px solid #080909
}

.form-group select.form-control {
    height: 50px !important;
    color: rgb(108, 117, 125);
    text-align-last: center;
}

.form-group textarea.wpcf7-form-control {
    width: 100%;
    padding: 15px;
    height: 125px;
    color: rgb(108, 117, 125);
    text-align: left;
}

.form-group.input-active .form-label {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0
}

.form-control:focus {
    box-shadow: none;
    border-color: rgb(18, 162, 153) !important;
}

.form-control-feedback {
    font-size: 11px
}

.submit-btn {
    background-color: #66aa1a;

    color: black;
    border: none;
    border: 1px solid #66aa1a;
    display: inline-block;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    height: 40px;
    width: 170px;
    line-height: 38px;
    cursor: pointer;
    color: #fff;
}

.submit-btn:hover {
    opacity: 0.8;
}

.check-holder {
    padding: 5px 0;
    float: left;
    width: 100%;
    position: relative
}

.check-holder p {
    margin-left: 0px;
    line-height: normal;
    display: inline-block;
    font-size: 14px
}

.check-holder p a {
    color: rgb(47, 173, 102);
}

.check-holder span.wpcf7-list-item {
    margin-left: 0px;
}

.check-holder label {
    line-height: 15px;
    margin-bottom: 10px;
    display: block;
    cursor: pointer;
    font-weight: 300;
    font-size: 14px;
    color: #8b8b8b
}

.check-holder label span {
    width: 15px;
    height: 15px;
    float: left;
    margin-right: 0px;
    border: 1px solid #ef843c;
    left: 0
}

.check-holder label:hover span {
    border-color: #8941a6
}

.check-holder label input {
    width: 13px;
    height: 13px;
    padding: 0;
    border: 0;
    margin: 0px;
    float: left;
    visibility: hidden
}

.check-holder label span.active_sort {
    background-image: url(../images/tick.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 9px
}

.check-holder label a {
    color: #757575;
    text-decoration: underline
}

.check-holder label a:hover {
    color: #f68933
}

.has-success .input-group-addon {
    color: #5cb85c;
    border-color: #5cb85c;
    background-color: #eaf6ea
}

.has-success .form-control-success {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%235cb85c' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E")
}

.has-warning .col-form-label,
.has-warning .custom-control,
.has-warning .form-check-label,
.has-warning .form-control-feedback,
.has-warning .form-control-label {
    color: #ef5350;
    text-align: right
}

.has-warning .form-control {
    border-color: #f0ad4e
}

.has-warning .input-group-addon {
    color: #f0ad4e;
    border-color: #f0ad4e;
    background-color: #fff
}

.has-warning .form-control-warning {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23f0ad4e' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E")
}

.has-danger .col-form-label,
.has-danger .custom-control,
.has-danger .form-check-label,
.has-danger .form-control-feedback,
.has-danger .form-control-label {
    color: #d9534f
}

.has-danger .form-control {
    border-color: #ef5350
}

.has-danger .input-group-addon {
    color: #d9534f;
    border-color: #d9534f;
    background-color: #fdf7f7
}

.has-danger .form-control-danger {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23d9534f' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E")
}

.form-control-danger,
.form-control-success,
.form-control-warning {
    padding-right: 2.25rem;
    background-repeat: no-repeat;
    background-position: center right .5625rem;
    background-size: 1.125rem 1.125rem
}

.tick-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px
}

.tick-list li:after {
    content: "";
    margin-right: 15px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    line-height: 20px;
    text-align: center;
    background: #74a614;
    color: white
}

.policy h4 {
    margin-bottom: 20px
}

.policy ul li a {
    color: rgb(102, 170, 26);
}

.policy p a {
    color: rgb(102, 170, 26);
}

.anim1 {
    animation: box-anim1 1.2s ease-out;
    -moz-animation: box-anim1 1.2s ease-out;
    -webkit-animation: box-anim1 1.2s ease-out
}

@-webkit-keyframes box-anim1 {
    0% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        opacity: 0;
        visibility: hidden
    }

    to {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
        visibility: visible
    }
}

@keyframes box-anim1 {
    0% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        opacity: 0;
        visibility: hidden
    }

    to {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
        visibility: visible
    }
}

.gallery {
    margin: 40px 0 80px
}

.gallery h2 {
    margin-bottom: 60px !important;
    margin-top: 45px !important;
    font-size: 40px;
}

.gallery.sections .image-block {
    min-height: 270px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat
}

.gallery-caption {
    margin: 17px 0 0;
    text-align: center;
    font-size: 24px
}

.gallery-description {
    text-align: center;
    color: #737373
}

.content-posts h2,
.content-posts h3,
.content-posts h4,
.content-posts h5,
.content-posts h6 {
    margin-bottom: 20px;
}

.content-posts p,
.content-posts {
    line-height: 1.7;
}

.post-grid {
    margin-bottom: 30px;
}

.post-category h4 {
    margin-bottom: 10px;
}

/* recent jobs */
.recent-jobs {
    background-color: rgb(242, 242, 242);
    padding: 45px 0;
}

.recent-jobs h2 {
    margin-top: 1.5rem !important;
    margin-bottom: 50px;
    font-size: 40px;
}

.timeline {
    width: 100%;
}

.timeline .swiper-container {
    width: 100%;
    position: relative;
}

.timeline .swiper-wrapper {
    /* transition: 2s cubic-bezier(0.68, -0.4, 0.27, 1.34) 0.2s; */
}

.timeline .swiper-slide {
    position: relative;
    color: #000;
    overflow: hidden;
}

.timeline .swiper-slide-content {
    text-align: center;
    width: 100%;
    font-size: 12px;
    z-index: 2;
}

.timeline .swiper-slide .slider-thumb {
    display: block;
    margin-bottom: 50px;
    color: #d4a024;
    opacity: 0;
    transition: .2s ease .4s;
}

.timeline .swiper-slide .slider-thumb img {
    max-width: 170px;
}

.timeline .swiper-slide .timeline-title {
    font-weight: 400;
    font-size: 34px;
    margin: 0 0 30px;
    opacity: 0;
    transition: .2s ease .5s;
}

.timeline .swiper-slide .timeline-text {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0;
    transition: .2s ease .6s;
}

.timeline .swiper-slide-active .slider-thumb {
    opacity: 1;

    transition: .4s ease .4s;
}

.timeline .swiper-slide-active .timeline-title {
    opacity: 1;

    transition: .4s ease 0.5s;
}

.timeline .swiper-slide-active .timeline-text {
    opacity: 1;

    transition: .4s ease 0.6s;
}

.slider-thumb img {
    margin-bottom: 15px;
}

.timeline .swiper-pagination {
    right: 0 !important;
    left: auto;
    height: 100%;
    display: none;
    flex-direction: column;
    justify-content: center;
    font-style: italic;
    font-weight: 300;
    font-size: 18px;
    z-index: 1;
    top: 0;
    text-align: left;
}

.timeline .swiper-pagination-bullet {
    width: 165px;
    height: auto;
    opacity: 1;
    background: transparent;
    color: rgb(11, 11, 10);
    margin: 5px 0 !important;
    position: relative;
    text-align: left;
    font-size: 15px;
}

.timeline .swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    top: 8px;
    left: -19px;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: rgb(47, 173, 102);
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: .2s;
}

.timeline .swiper-pagination-bullet-active {
    color: rgb(47, 173, 102);
}

.timeline .swiper-pagination-bullet-active::before {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.timeline .swiper-button-next,
.timeline .swiper-button-prev {
    background-size: 20px 20px;

    top: auto;

    width: 45px;

    height: 45px;

    z-index: 2;

    transition: .2s;

    border-radius: 50%;

    border: 2px solid rgb(47, 173, 102);

    bottom: 0;

    margin: 0;
}

.timeline .swiper-button-prev {
    left: 50%;

    right: auto;

    margin-left: -55px;
}

.timeline .swiper-button-next {
    right: 50%;

    left: auto;

    margin-right: -55px;
}

.timeline .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%232fad66'%2F%3E%3C%2Fsvg%3E");
}

.timeline .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%232fad66'%2F%3E%3C%2Fsvg%3E");
}

@media screen and (min-width: 768px) {
    .timeline .swiper-container {
        min-height: 500px;
    }

    .timeline .swiper-slide-content {
        text-align: center;
        font-size: 12px;
        z-index: 2;
    }

    .timeline .swiper-slide-content {
        width: 100%;
        max-width: 100%;
        font-size: 11px;
        text-align: center;
        padding-left: 0;
    }

    .timeline .swiper-slide .timeline-year {
        margin-bottom: 0;
        font-size: 32px;
    }

    .timeline .swiper-slide .timeline-title {
        font-size: 28px;
        margin: 0;
    }

    .timeline .swiper-pagination {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-end;
    }
}

@media screen and (min-width: 1024px) {
    .timeline .swiper-slide::after {
        right: -20%;
        bottom: -12%;
        width: 240px;
        height: 50%;
        box-shadow: -230px 0 150px 39vw rgba(0, 0, 0, 0.7);
    }

    .timeline .swiper-slide-content {
        left: 0;
    }
}

.swiper-nav-holder {
    position: relative;
    bottom: 0;
    text-align: center;
    width: 100%;
    display: inline-block;
    min-height: 60px;
    margin-top: 25px;
}

/* .review-swiper .swiper-nav-holder .swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: auto;
    z-index: 10;
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
    width: 45px;
    height: 45px;
    background-size: 13px;
    border: 2px solid rgb(59, 177, 111);
    border-radius: 50%;
    bottom: 0;
}
.review-swiper  .swiper-nav-holder .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%232fad66'%2F%3E%3C%2Fsvg%3E");
    right: 50%;
    left: auto;
    margin-right: -50px;
}
.review-swiper  .swiper-nav-holder .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%232fad66'%2F%3E%3C%2Fsvg%3E");
    left: 50%;
    right: auto;
    margin-left: -50px;
} */

.review-swiper .swiper-button-next,
.review-swiper .swiper-button-prev {
    background-size: 20px 20px;

    top: auto;

    width: 45px;

    height: 45px;

    z-index: 2;

    transition: .2s;

    border-radius: 50%;

    border: 2px solid rgb(47, 173, 102);

    bottom: 0;

    margin: 0;
}

.review-swiper .swiper-button-prev {
    left: 50%;

    right: auto;

    margin-left: -55px;
}

.review-swiper .swiper-button-next {
    right: 50%;

    left: auto;

    margin-right: -55px;
}

.review-swiper .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%232fad66'%2F%3E%3C%2Fsvg%3E");
}

.review-swiper .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%232fad66'%2F%3E%3C%2Fsvg%3E");
}



.location-banner {
    min-height: 350px;
    background-position: center center;
    background: rgb(47, 173, 102);
    position: relative;
}

.location-banner:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background: rgb(255, 255, 255);
    background: linear-gradient(to bottom, rgba(36, 35, 35, 0.58) 0, rgba(0, 0, 0, 0.57) 68%, rgba(255, 255, 255, 0) 100%);
}

.location-info {
    padding: 55px 0;
    background-color: rgb(102, 170, 26);
    background-position: center center;
    position: relative;
}

.location-info::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;

    background: -moz-linear-gradient(left, rgba(102, 170, 26, 1) 0%, rgba(102, 170, 26, 0.78) 57%, rgba(229, 229, 229, 0.61) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(102, 170, 26, 1) 0%, rgba(102, 170, 26, 0.78) 57%, rgba(229, 229, 229, 0.61) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(102, 170, 26, 1) 0%, rgba(102, 170, 26, 0.78) 57%, rgba(229, 229, 229, 0.61) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#66aa1a', endColorstr='#9ce5e5e5', GradientType=1);
    /* IE6-9 */

}

.location-info p {
    color: rgb(255, 255, 255);
}

.location-info span {
    font-size: 26px;
    color: rgb(252, 207, 104);
    font-weight: 700;
}

.location-title {
    font-size: 32px;
    padding: 45px 0 10px;
    color: rgb(255, 255, 255);
}

.location-icon {
    border: 6px solid rgb(255, 255, 255);
    border-radius: 2px;
}

.location-icon img {
    border-radius: 3px;
}

@media screen and (max-width: 768px) {
    .location-info::before {
        background: #66aa1a;
    }

    .review-wrap .carousel .stars {
        margin: 5px 0 !important;
        width: 100%;
        display: inline-block;
    }
}

/* blog sidebar */
.sidebar {
   padding: 30px 0 0 30px;
    background-color: transparent;
/*     border: 1px solid #ddd; */
}
@media screen and (max-width: 768px) {
	.sidebar {
		padding-left:0;
	}
}
.popular-blog-posts li {
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.sidebar .widget.refine.widget_text h2 {
    font-size: 25px;
    margin-bottom: 20px;
    margin-top: 0;
}

.sidebar .textwidget .popular-blog-posts li h3 {
    margin-bottom: 25px;
    line-height: 23px;
}
@media screen and (max-width: 768px) {
.sidebar .textwidget .popular-blog-posts li h3 {
		padding: 0;
	}
}
.sidebar .textwidget .popular-blog-posts li a {
    font-weight: normal;
    font-size: 17px;
}

.sidebar .textwidget .popular-blog-posts li a {
    color: rgb(115, 115, 115);


}
.sidebar.blog-listing-sidebar {
	border: 0;
	padding: 30px 0 0 20px;
}
@media screen and (max-width: 991px) {
.sidebar.blog-listing-sidebar {
	padding: 30px 0 0  0px;
}	
}
 .popular-blog-posts li h3 a {
    color: rgb(115, 115, 115);
    font-size: 22px
}
.sidebar.blog-listing-sidebar .popular-blog-posts li {
	display: flex;
	flex-wrap: wrap;
}
.sidebar.blog-listing-sidebar .popular-blog-posts li .featured-thumb {
	width: 85px;
	padding-right: 15px;
}
.sidebar.blog-listing-sidebar .popular-blog-posts li .featured-thumb img {
	max-width: 100%;
	height: auto;
	border-radius: 5px;
}
.sidebar.blog-listing-sidebar .details {
	max-width: calc(100% - 85px);
}
.sidebar.blog-listing-sidebar .popular-blog-posts .details h3 {
	margin-top: 0;
	font-size: 15px;
	margin-bottom: 5px;
}
.sidebar .textwidget li a.read-more {
    font-size: 15px;
    color: #2fad66;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block
}

.sidebar .textwidget .popular-blog-posts li .read-mor,
.sidebar .textwidget .popular-blog-posts li h3 a:hover {
    color: rgb(102, 170, 26);
}

.content-posts {
    position: relative
}

.content-posts p a {
    color: rgb(102, 170, 26);
}

#load-more-posts-events {
    position: absolute;
    bottom: -50px;
    display: inline-block;
    z-index: 90;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

#loadMore:hover {
    background: #fccf68
}

#loadMore {
    bottom: 0;
    color: #121211;
    font-size: 15px;
    border: 1px solid #fccf68;
    padding: 5px 20px;
    border-radius: 4px;
    cursor: pointer;
    z-index: 9
}

/* .post-grid {
    -webkit-box-shadow: 0px 3px 11px #e3e3e3;
    box-shadow: 0px 3px 11px #e3e3e3
} */

/* .featured-image {
    padding: 20px;
    background: #fefefe
}
 */

.featured-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
	border-radius: 10px;
}
.post-grid .img-wrapper {
	margin-bottom:25px;
}
.event-details {
    background: white;
    
}

.event-details h3 {
    margin: 0 !important
	
}

.event-details h3 a {
    color: black;
     /*text-transform: uppercase;*/
    font-size: 22px;
    font-weight: 600
}
.post-grid  .post-info .post-date {
	font-weight: 600;
	color: rgb(113, 113, 113);
}
.post-grid .event-details .post-info .readmore {
	color: rgb(102, 170, 26);
	font-weight: 600;
	padding: 0 15px;
	position: relative;
	margin-left: 10px;
}
.post-grid .event-details .post-info .readmore::before {
	content: "";
	position: absolute;
	left: 0;
	width: 5px;
	height: 5px;
	display: inline-block;
	background: rgb(102, 170, 26);
	top: 50%;
	transform: translateY(-50%);
	border-radius: 10px;
}
@media screen and (max-width: 992px) {
	.posts-content .event-details h3{
		padding:0
	}
	.event-details h3 a {
		    font-size: 18px;
	}
	.sidebar.blog-listing-sidebar .popular-blog-posts li .details h3{
		padding-left:0;
		padding-top:0;
		padding-bottom: 0;
	}
}
.event-details h4 a {
    font-size: 16px;
    color: #b9b9b9;
    font-weight: 300
}

.post-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
/*     -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; */
    padding: 5px 0px;
    margin-bottom: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
/*     background: #efefef */
}

.post-date p {
    margin: 0;
    color: black
}
.post-info .post-category a {
	   color: black;
	padding-left:10px;
}
.event-details h4 a {
    font-size: 16px;
    color: black;
	
    font-weight: 300
}

.event-footer .button-outline {
    background: rgb(102, 170, 26);
    padding: 4px 15px;
    border-radius: 4px;
    color: #fff;
    margin-bottom: 13px;
    display: inline-block
}

.featured-image-big {
    text-align: center;
    padding-top: 20px !important;
    padding-bottom: 20px !important
}

.post-title .title {
    margin-bottom: 15px
}
.single .posts-content .post-date p {
	margin-bottom: 25px;
	font-weight: 600;
	color: rgb(158, 158, 158);
}
.share-section h4 {
    font-size: 15px;
    color: black;
    background: white;
    padding: 5px 0;
    text-transform: uppercase;
    font-weight: 600;
    margin: 25px 0 15px
}

.share-section a {
    position: relative;
    margin-right: 15px;
    padding-right: 15px;
    color: #2fad66
}

.share-section a:after {
    content: "";
    right: 0;
    height: 100%;
    width: 1px;
    background: #c6c6c6;
    position: absolute;
    top: 0
}

.form-submit #submit {
    background-color: rgb(102, 170, 26);
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-weight: 600;
    border-radius: 7px;
    padding: 10px 30px;
    width: 14em;
    line-height: normal;
    height: 48px !important;
    border: 0
}

.comment-form-comment label {
    width: 100%;
    font-size: 18px !important;
    font-weight: 600
}

.logged-in-as a {
    color: rgb(102, 170, 26);
}

.logged-in-as a:first-child {
    color: rgb(102, 170, 26);
}

.comment-form-comment textarea {
    width: 100%;
    max-width: 100%
}

.arrow.left {
    border: solid #fccf68;
    border-width: 0px 2px 2px 0;
    display: inline-block;
    padding: 6px
}

.comment-form p input {
    height: 40px !important;
    width: 100%
}

.comment-form p {
    width: 100%
}

.left {
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg)
}

.back-all-blogs.arrow_box {
	color: rgb(0, 0, 0);
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 600;
	margin-top: 30px;
	display: block;
}


.video-container {
    width: 100%;
    height: 0;
    position: relative;
    padding-top: 56.25%
}

.video-container>iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 0
}



.page-footer .country-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row wrap;
    margin-bottom: 30px;
}

.page-footer .country-links li {
    position: relative;
    padding: 0 30px;
}

.page-footer .country-links li:after {
    content: "";
    position: absolute;
    right: 0;
    width: 2px;
    height: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(255, 255, 255);
}

.page-footer .country-links li a {
    color: rgb(255, 255, 255);
}

.page-footer .country-links li i img {
    height: 20px;
    margin-right: 3px;
}

.page-footer .country-links li:nth-last-child(1):after {
    content: none
}

@media screen and (max-width: 768px) {
    .page-footer .country-links li {

        padding: 0 10px;
        width: auto;
        margin-bottom: 15px;
    }

}

div.wpcf7-response-output {
    border: 0px solid #fff !important
}


/* added on june 16 2021*/


.square {

    position: absolute;
    left: -15px;
    top: -15px;
    width: 90%;
    height: 90%;
    background: rgb(252, 207, 104);

}

.square.square-right {

    left: auto;
    right: -15px;
    top: auto;
    bottom: -15px;
    background: rgb(47, 173, 102);

}

@media (max-width:992px) {


    .video-guide {
        margin-top: 35px;
    }

    .square {
        left: -10px;
        top: -10px;
    }

    .square.square-right {
        bottom: -10px;
        right: -10px;
    }

    .promo-vid {
        padding-bottom: 45px;
    }

    .promo-vid h3 {
        font-size: 21px;
    }

    .video-container {
        width: 100%;
        padding: 0
    }

}




.youtube-player img:hover {
    -webkit-filter: brightness(75%)
}

.youtube-player .play {
    height: 72px;
    width: 72px;
    left: 50%;
    top: 50%;
    margin-left: -36px;
    margin-top: -36px;
    position: absolute;
    background: url("https://www.maid.co.uk/wp-content/uploads/2019/07/youtube-play.png") no-repeat;
    cursor: pointer
}

@media (max-width:468px) {
    .youtube-player {
        min-height: 170px;
        border: 7px solid #fff
    }
}

.d-inline-block {
    display: inline-block
}


.app-btn-holder {
    display: none
}

@media screen and (max-width:767px) {
    .appstore {
        display: none
    }

    .appstore.active {
        display: block
    }

    .playstore {
        display: none
    }

    .playstore.active {
        display: block
    }

    .page-footer .download-btn {
        display: none
    }

    .app-btn-holder {
        display: block !important;
        background-color: white;
        padding: 30px 20px;
        display: inline-block;
        text-align: center;
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 99;
        opacity: 0;
        -webkit-transition: all ease-in-out 0.4s;
        -o-transition: all ease-in-out 0.4s;
        transition: all ease-in-out 0.4s
    }

    .app-btn-holder.visible {
        opacity: 1 !important
    }

    .app-btn-holder:before {
        position: absolute;
        top: -15px;
        left: 0;
        height: 15px;
        width: 100%;
        content: "";
        background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
        background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(white));
        background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
        pointer-events: none
    }

    .get-app-btn {
        background-color: #417530;
        font-size: 18px;
        color: #fff !important;
        font-weight: 600;
        border-radius: 7px;
        padding: 8px 30px;
        width: 85%;
        display: inline-block
    }

    .page-footer .footer-bottom {
        padding: 25px 0 95px
    }

    .info-container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .info-container ul {
        margin-right: 0;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .login {
        padding: 5px 10px;
        width: auto;
        text-align: center;
        font-size: 11px;
        opacity: 1;
        color: #fff;
        margin: 0;
        margin-left: 0px;

        background-color: #417530;
    }

    .info-container ul li {
        padding: 0 5px
    }

    .swiper-wrapper-outer {
        width: 100% !important
    }
}



.showcase .swiper-container .swiper-slide-next:after,
.showcase .swiper-container .swiper-slide-prev:after {
    top: 0
}

.showcase .swiper-slide,
.showcase .swiper-wrapper {
    height: auto !important
}

.signup-banner {
    background-image: url(https://www.maid.co.uk/wp-content/uploads/2019/06/becomeadriver-banner-1.png);
    background-size: cover;
    min-height: 350px
}

.video-container {
    width: 100%;
    height: 0;
    position: relative;
    padding-top: 56.25%;
    -webkit-box-shadow: 0 0 17px rgba(0, 0, 0, 0.43);
    box-shadow: 0 0 17px rgba(0, 0, 0, 0.43);
    border: 9px solid #fff
}

.signup-left-col {
     
    padding: 5px;
    padding-bottom: 0;
    align-self: flex-start;
    margin-top: 35px;
}

.signup-wrap p {
    font-size: 17px;
    color: #59595b
}

.gallery.sections .image-block {
    margin-bottom: 30px;
    min-height: 180px;
}

.app-intro {
    margin: 25px 0;
}

.app-intro li {
    font-size: 18px;
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative
}

.app-intro li::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    background: #66aa1a;
    left: 0;
    top: 8px;
    border-radius: 50%;
}

.hero-content h3 {
    color: #66aa1a;
}

.city-links li {
    margin: 5px;
}

.city-links li a {
    color: #fff;
    padding: 2px;
    display: inline-block;
}

.fullsize-video-bg video {
    display: block;
    width: 100% !important;
    object-fit: cover;
    height: auto !important;
}

.fullsize-video-bg {
    height: 100%;
    overflow: hidden;
    width: 100%;


}

@media screen and (max-width:768px) {
    .hero-section .banner-responsive {
        padding: 50px 0 0;
    }

}

/* #video-viewport {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        right: 0;
        bottom: 0;
    } */
.maidapp-link {
    display: none;
}

.home.page-template .maidapp-link {
    display: block;
}

a.maidapp-link-holder {
    position: relative;
    display: inline-block;
    margin-bottom: -6px;
}

a.maidapp-link-holder:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.78);
    z-index: 5;
    opacity: 0.1;
    transition: all ease-in-out 0.3s;

}

a.maidapp-link-holder:hover:after {
    opacity: 0;
    z-index: -1;
}

@media screen and (max-width:568px) {

    body .hero-section .hero-content h1 {
        padding-top: 0 !important;
        margin-top: 0 !important
    }

    .hero-section .hero-moc .smartphone {

        max-width: 270px !important;


    }
}

@media screen and (max-width:420px) {
    body .hero-section .hero-content h1 {

        font-size: 24px;
    }

    body .hero-section .hero-moc {
        margin-bottom: 18px !important;
        margin-top: 63px !important;
    }

    .hero-section .hero-moc .smartphone {
        padding: 15px !important;
        max-width: 190px !important;


    }

    .hero-section .hero-moc .smartphone video {
        border-radius: 13px !important;
    }
}

@media screen and (min-width:768px) {
    .hero-section {
        padding-top: 90px;
    }


}

.check-holder p a {

    margin-left: 5px;
}

.result-panel .result-listing-empty.listing-empty {
    background: RGB(255, 255, 255);
    box-shadow: 0px 2px 16px rgba(20, 38, 2, 0.08);
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 32px;
    display: inline-block;
    width: 100%;
}

.result-panel .result-listing-empty.listing-empty h4 {
    font-size: 20px;
}

.result-panel .result-header .filters ul.filter-list li a.clear-btn {
    border-color: rgb(102, 170, 26);
    color: rgb(255, 255, 255);
    background: rgb(102, 170, 26);
    display: none;
}

.slick-slide,
.slick-slide:focus {
    outline: none
}
.city-list-section{
	display: inline-block;
width: 100%;
}
.city-lists ul{
	margin-left:-15px;
	margin-right:-15px;
}
.city-lists ul li {
	display: inline-block;
	padding: 0 10px;
	width: 50%;
	float: left;
	margin-bottom: 22px;
	font-weight: 600;
}
@media screen and (min-width:460px) {
	.city-lists ul li {
		width: 33.333%;
	}	
}
@media screen and (min-width:1200px) {
	.city-lists ul li {
		width: 25%;
	}	
}

 
.city-lists ul li a{
	color:#142602;
	font-size:16px;
}
.city-lists ul li a:hover{
	color:#66aa1a;
}