/* font */
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
div {
    font-family: 'Lato', sans-serif !important;
}

/* General */
.mt-0 {
    margin-top: 0 !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-25 {
    margin-top: 25px;
}

.mt-50 {
    margin-top: 50px;
}

.mtb-90 {
    margin: 90px auto;
}

.mtb-50 {
    margin: 50px auto;
}

.mtb-40 {
    margin: 40px auto;
}

.mtb-30 {
    margin: 30px auto;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mlr-30 {
    margin-left: 30px;
    margin-right: 30px;
}

.mlr-40 {
    margin-left: 40px;
    margin-right: 40px;
}

.mlr-50 {
    margin-left: 50px;
    margin-right: 50px;
}

p.text-center {
    max-width: 100%;
}

.p-40 {
    padding: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-80 {
    padding-top: 80px;
}

.ptb-5 {
    padding-top: 5px;
    padding-bottom: 5px;
}

.ptb-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.ptb-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

.plr-10 {
    padding-left: 10px;
    padding-right: 10px;
}

.plr-30 {
    padding-left: 30px;
    padding-right: 30px;
}

.plr-50 {
    padding-left: 50px;
    padding-right: 50px;
}

.plr-30per {
    padding-left: 30%;
    padding-right: 30%;
}

.img {
    width: 100%;
}

.fa-li {
    line-height: 22px;
}

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

.contact-form .input-custom,
.contact-form .textarea-custom {
    margin-bottom: 20px;
    border: 1px solid #dbdbdb;
    padding: 10px 15px 10px;
    height: 50px;
    font-size: 14px;
}

/* devices */
.services-nav-pills {
    margin: 50px 0 10px 0;
}

/* Infinite rotation animation in CSS */
/* ENDLESS ROTATE */
.rotate {
    animation: spin 5s infinite linear;
}

/* Logo Css */
.logo #circle {
    transform-origin: center;
    transform-box: fill-box;
    animation: spin 5s infinite linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 479px) {
    header .logo {
        flex: 0 0 300px;
    }
}

@media (max-width: 767px) {
    header .logo {
        flex: 0 0 300px;
    }
}

@media (max-width: 991px) {
    header .logo {
        flex: 0 0 300px;
    }
}

body.home header.page-header.is-sticky,
.page-header.is-sticky {
    top: 0;
}

/* Word Carousal */
.cd-words-wrapper {
    display: inline-block;
    position: relative;
    text-align: left;
}

.cd-words-wrapper b {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
}

.cd-words-wrapper b.is-visible {
    position: relative;
}

.no-js .cd-words-wrapper b {
    opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
    opacity: 1;
}


@-webkit-keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(20%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes slide-in {
    0% {
        opacity: 0;
        -moz-transform: translateY(-100%);
    }

    60% {
        opacity: 1;
        -moz-transform: translateY(20%);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(20%);
        -moz-transform: translateY(20%);
        -ms-transform: translateY(20%);
        -o-transform: translateY(20%);
        transform: translateY(20%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes slide-out {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }

    60% {
        opacity: 0;
        -webkit-transform: translateY(120%);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(100%);
    }
}

@-moz-keyframes slide-out {
    0% {
        opacity: 1;
        -moz-transform: translateY(0);
    }

    60% {
        opacity: 0;
        -moz-transform: translateY(120%);
    }

    100% {
        opacity: 0;
        -moz-transform: translateY(100%);
    }
}

@keyframes slide-out {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    60% {
        opacity: 0;
        -webkit-transform: translateY(120%);
        -moz-transform: translateY(120%);
        -ms-transform: translateY(120%);
        -o-transform: translateY(120%);
        transform: translateY(120%);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -ms-transform: translateY(100%);
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }
}

/* Modal Form Style */
.modal-form-style {
    box-shadow: unset;
}

.modal-form-style .btn {
    margin-top: 10px;
}

/* Css Flip Card */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 150px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-front {
    background-color: rgb(255, 255, 255);
    color: black;
}

.flip-card-back {
    background-color: #c8d94f;
    color: black;
    padding: 20px;
    transform: rotateY(180deg);
}

.flip-card-front .flip-icon {
    padding: 20px;
}

.flip-card-front .flip-icon i {
    display: inline-block;
    width: 51px;
    height: 51px;
    font-size: 26px;
    line-height: 52px;
    background-color: #c8d94f;
    border-radius: 50%;
    color: #fff;
    text-align: center;
}

.flip-card .flip-head {
    font-size: 22px;
    color: #2a2a2a;
    font-weight: 600;
}

/* Header Css */
@media (min-width: 992px) {
    .slidemenu {
        margin-left: auto;
    }
}

.menu-wrap {
    background: #000000;
    background: -moz-linear-gradient(top, #393939 0%, #000000 60%);
    background: -webkit-linear-gradient(top, #393939 0%, #000000 60%);
    background: linear-gradient(to bottom, #242424 0%, #000000 60%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#242424', endColorstr='#000000', GradientType=0);
}

header .phone {
    display: inline-block;
    margin-left: 20px;
}

@media (min-width: 992px) {
    .navbar-nav>li>a {
        color: #ffffff;
    }
}

.logo svg {
    width: 100%;
}

div#slidemenu:after {
    content: '';
    position: absolute;
    top: 45%;
    height: 60px;
    width: 1px;
    transform: translateY(-22px);
    background: #f2f2f2;
}

.navbar-nav {
    margin: 0 20px 0 0;
}

.navbar-nav>li>a {
    text-transform: capitalize !important;
}

.circle-border {
    border: solid 3px #bdbdbd;
    border-radius: 8px;
    min-height: 160px;
    padding: 20px;
}

.circle-border p {
    margin-bottom: 0;
}

.check-box-label {
    display: inline-block;
    font-size: 13px;
    line-height: 18px;
    /* margin: 0px 0px 9px 10px; */
    width: 100%;
    font-weight: normal;
    background: #fff;
    color: #b8b8b8;
    font-style: italic;
}

.check-box-label .form-check-input {
    margin: 0px 5px 0px 0;
}

.input-wrapper .check-box-label label.error {
    margin-top: 0px;
}

.top-nav {
    background-color: #dbdbdb;
}

.top-nav p {
    margin: 0;
    padding: 10px 0;
}

.nav-btn {
    display: inline-block;
    padding: 10px 0 10px !important;
    font-weight: unset;
    vertical-align: middle;
    border-radius: 5px;
    color: #ffffff;
    margin: 10px 0px;
    min-width: 160px;
}

.nav-btn:hover {
    color: #ffffff !important;
}

header .phone .number {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #57bb90;
}

.navbar-nav>li {
    margin: 0 10px;
}

@media (max-width: 1199px) and (min-width: 992px) {
    header .navbar-nav>li {
        margin: 0 3px;
    }
}

.dropdown-menu {
    background-color: #000000;
}

.navbar-nav .dropdown .dropdown-menu li>a {
    color: #ffffff;
}

.navbar-nav .dropdown .dropdown-menu li>a:hover,
.navbar-nav .dropdown .dropdown-menu li>a:focus {
    background-color: #000000;
}

@media (max-width: 991px) {
    #slide-nav #slidemenu .navbar-nav .dropdown-menu li a {
        color: #000000;
    }
}

.services-nav-pills>li:hover>a {
    color: #fff;
    background: -webkit-linear-gradient(-45deg, #f8e844 0%, #c8d94f 100%);
    background: linear-gradient(135deg, #f8e844 0%, #c8d94f 100%);
    border-color: #c8d94f;
}

.counter-btn {
    margin-top: 5em;
}

.page-footer .contact-info .icon {
    font-size: 20px;
}

.page-footer .social-links {
    text-align: left;
    margin-top: 20px;
    margin-bottom: 0;
}

.page-footer .social-links ul li a {
    color: #fff0f0;
    font-size: 25px;
}

/* vertical line */
.corner-border {
    padding: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 330px;
    margin-bottom: 10px;
}

@media (max-width: 786px) {
    .corner-border {
        min-height: 150px;
    }
}

.corner-border::after {
    content: '';
    position: absolute;
    background-color: #c8d94f;
    width: 3px;
    height: 60%;
    top: 0;
    left: 12px;
}

/* horizontal line */
.corner-border::before {
    content: '';
    position: absolute;
    background-color: #c8d94f;
    width: 20%;
    height: 3px;
    top: 0;
    left: 12px;
}

.corner-border h3,
.corner-border p {
    color: #ffffff;
}

.contact-bg .check-box-label {
    color: #000000;
    background-color: transparent;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.float.right {
    right: 20px;
    background-color: #25d366;
}

.float.left {
    left: 20px;
    background-color: #0d51e4;
}

.my-float {
    margin-top: 16px;
}

.back-to-top {
    right: 80px;
}

.back-to-top.visible {
    bottom: 12px;
}

.issues-box {
    display: flex;
    padding: 10px;
}

.issues-box .issue-text {
    flex: 14;
    padding-top: 3px;
}

.issues-box .issue-text .issue-title {
    margin: 0 0 5px;
    font-size: 17px;
    line-height: 17px;
    font-weight: 700;
}

.issues-box .issue-text .issue-para {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 5px;
}

.issues-box .issue-icon {
    flex: 2;
}

.issues-box .issue-icon i {
    font-size: 25px;
    vertical-align: text-top;
}


.timeline {
    display: flex;
    flex-direction: column;
    margin: 20px auto;
    position: relative;
}

.timeline__event {
    margin-bottom: 20px;
    position: relative;
    display: flex;
    margin: 20px 0;
    border-radius: 6px;
    align-self: center;
    width: 50vw;
}

.timeline__event:nth-child(2n+1) {
    flex-direction: row-reverse;
}

.timeline__event:nth-child(2n+1) .timeline__event__icon:before {
    content: "";
    width: 2px;
    height: 100%;
    background: #c8d94f;
    position: absolute;
    top: 0%;
    left: 50%;
    right: auto;
    z-index: -1;
    transform: translateX(-50%);
    -webkit-animation: fillTop 2s forwards 4s ease-in-out;
    animation: fillTop 2s forwards 4s ease-in-out;
}

.timeline__event:nth-child(2n+1) .timeline__event__icon:after {
    content: "";
    width: 100%;
    height: 2px;
    background: #c8d94f;
    position: absolute;
    right: 0;
    z-index: -1;
    top: 50%;
    left: auto;
    transform: translateY(-50%);
    -webkit-animation: fillLeft 2s forwards 4s ease-in-out;
    animation: fillLeft 2s forwards 4s ease-in-out;
}

.timeline__event__title {
    font-size: 1.4rem;
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: 600;
    color: #c8d94f;
    letter-spacing: 1.5px;
}

.timeline__event__content {
    padding: 20px;
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
    background: #fff;
    border-radius: 6px;
    width: 100%;
}

.timeline__event__description p {
    font-size: 14px;
    margin-bottom: 0px;
}

.timeline__event__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 20px;
    align-self: center;
    margin: 0 20px;
    background: #c8d94f;
    border-radius: 100%;
    width: 40px;
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
    padding: 40px;
    height: 40px;
    position: relative;
}

.timeline__event__icon i {
    font-size: 32px;
}

.timeline__event__icon:before {
    content: "";
    width: 2px;
    height: 100%;
    background: #c8d94f;
    position: absolute;
    top: 0%;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    -webkit-animation: fillTop 2s forwards 4s ease-in-out;
    animation: fillTop 2s forwards 4s ease-in-out;
}

.timeline__event__icon:after {
    content: "";
    width: 100%;
    height: 2px;
    background: #c8d94f;
    position: absolute;
    left: 0%;
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
    -webkit-animation: fillLeftOdd 2s forwards 4s ease-in-out;
    animation: fillLeftOdd 2s forwards 4s ease-in-out;
}

.timeline__event__description {
    flex-basis: 60%;
}

.timeline__event:last-child .timeline__event__icon:before {
    content: none;
}

@media (max-width: 786px) {
    .timeline__event {
        flex-direction: column;
        align-self: center;
    }

    .timeline__event__content {
        width: 100%;
    }

    .timeline__event__icon {
        border-radius: 6px 6px 0 0;
        width: 100%;
        margin: 0;
        box-shadow: none;
    }

    .timeline__event__icon:before,
    .timeline__event__icon:after {
        display: none;
    }

    .timeline__event:nth-child(2n+1) {
        flex-direction: column;
        align-self: center;
    }

    .timeline__event:nth-child(2n+1) .timeline__event__icon {
        border-radius: 6px 6px 0 0;
        margin: 0;
    }
}

@-webkit-keyframes fillLeft {
    100% {
        right: 100%;
    }
}

@keyframes fillLeft {
    100% {
        right: 100%;
    }
}

@-webkit-keyframes fillTop {
    100% {
        top: 100%;
    }
}

@keyframes fillTop {
    100% {
        top: 100%;
    }
}

@-webkit-keyframes fillLeftOdd {
    100% {
        left: 100%;
    }
}

@keyframes fillLeftOdd {
    100% {
        left: 100%;
    }
}


/* @media (min-width: 992px) { */
.menu-wrap>.container {
    height: 80px;
}

header .logo {
    flex: 0 0 210px;
}

.page-header .navbar-nav>li>a:not(.btn) {
    margin: -3px 0px;
    line-height: 18px;
}

.page-header.is-sticky .navbar-nav>li>a:not(.btn) {
    margin: 6px 0px;
}

/* } */

.apploid-circle {
    padding: 20px 0 0 !important;
    margin-bottom: 0;
}

.apploid-circle h2.h-lg {
    margin: 0;
}

.apploid-circle h2+p.info {
    margin-top: 0;
}

.apploid-circle p {
    margin-bottom: 0;
}


.label--over {
    font-size: 12px;
    color: #000000;
    font-weight: 600;
    font-style: unset;
}

.check-box-label {
    color: #000000;
}

.fix-box {
    padding: 20px;
    margin-bottom: 25px;
    width: 100%;
    display: inline-block;
    min-height: 270px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.fix-box h4 {
    margin: 10px 0 5px;
    color: #ffffff;
}

.fix-box p {
    margin-bottom: 0;
    color: #ffffff;
}

/* @media (min-width: 992px) {
    .fix-box-parent:not(:last-child):after {
        content: '';
        position: absolute;
        display: block;
        background-color: #c8d94f;
        height: 60%;
        width: 2px;
        border-radius: 50%;
        right: 0;
        top: 45px;
    }
} */

.contact-form .input-custom,
.contact-form .textarea-custom {
    height: 40px;
}

.textarea-custom {
    min-height: 60px;
    max-width: 100%;
    min-width: 100%;
}

.card {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    border-radius: 10px;
}

.card:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.social-links.rounded ul li a {
    width: 60px;
    height: 60px;
    font-size: 20px;
    line-height: 46px;
}

.contact-bg .info {
    margin-bottom: 0;
}

.contact-block .row-lined {
    margin-top: 0;
}

.contact-block .contact-info-text {
    margin-bottom: 2px;
}

.contact-block p.contact-info-text:not(:last-child):after {
    content: '';
    display: block;
    position: relative;
    height: 2px;
    margin: 5px auto;
    width: 50px;
    border-radius: 50%;
    background-color: #c8d94f;
}

.device-issue-block img {
    padding-top: 10%;
}

.radio-label {
    font-size: 13px;
}

.form-radio {
    margin: 0;
}

.service-form {
    padding: unset;
    margin: unset;
}

.service-form::after {
    content: unset;
}

.service-form .form-input,
.service-form .form-control {
    width: 100%;
}

.drop-form .row .form-input {
    width: 100%;
}

.chosen-container-multi .chosen-choices {
    min-height: 38px;
    color: #222222;
    font-size: 15px;
    line-height: 26px;
    padding: 5px 20px;
    border-radius: 0;
    background-color: #fff;
    border: 1px solid #dbdbdb;
    margin-bottom: 0;
    box-shadow: none;
    background-image: unset;
}

.chosen-container-multi .chosen-choices li.search-choice {
    background-image: unset;
    padding: 5px 20px 5px 10px;
    border: 1px solid #d0d0d0;
    border-radius: 1px;
    background-color: #ffffff;
}

.chosen-container .chosen-results li {
    padding: 6px 6px;
}

.chosen-container .chosen-results li.highlighted {
    background-color: #c8d94f;
    background-image: unset;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
    top: 6px;
}

.step-item {
    width: 24%;
    padding: 10px;
}

.step-item-icon {
    width: 100px;
    height: 100px;
}

.step-item-title {
    font-size: 20px;
}

.step-item-text p {
    font-size: 13px;
}


.contact-card {
    padding: 50px 20px;
}

.service-card {
    padding: 5px 20px 15px;
}

.form-box {
    padding: unset;
    box-shadow: unset;
}

.drop-form {
    padding: 0px 10px 0px;
    margin: 0px 0 0px;
}

.drop-form h4 {
    margin: 0 0 10px;
}

.block.lined .container {
    padding-bottom: 50px;
}

.block {
    margin-bottom: 50px;
}

.contact-block h1,
.contact-block p,
.contact-block a {
    color: #ffffff;
}

.service-timeline {
    position: relative;
    padding-left: 4rem;
    margin: 0 0 0 30px;
    color: white;
}

.timeline:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #27293d;
}

.service-timeline .timeline-container {
    position: relative;
    margin-bottom: 2.5rem;
}

.service-timeline .timeline-container .timeline-icon {
    position: absolute;
    top: 29px;
    width: 100px;
    height: 100px;
    border-radius: 5px;
    text-align: center;
    font-size: 2rem;
    background: #4f537b;
    transform: rotate(45deg);
    border: solid 5px black;
}

.service-timeline .timeline-container .timeline-icon i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.service-timeline .timeline-container .timeline-icon img {
    width: 100%;
    height: 100%;
    padding: 15px;
    transform: rotate(-45deg);
}

.service-timeline .timeline-container .timeline-body {
    background: #c8d94f;
    border-radius: 3px;
    padding: 20px 20px 15px;
    box-shadow: 1px 3px 9px rgba(0, 0, 0, 0.1);
    min-height: 145px;
}

.service-timeline .timeline-container:nth-child(even) .timeline-body {
    background: #262626;
}

.service-timeline .timeline-container .timeline-body:before {
    content: "";
    background: inherit;
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    top: 68px;
    left: 5px;
    transform: rotate(45deg);
    border-radius: 0 0 0 2px;
}

.service-timeline .timeline-container .timeline-body .timeline-title {
    margin-bottom: 1.4rem;
    margin-top: 1.4rem;
    color: #000000;
}

.service-timeline .timeline-container:nth-child(even) .timeline-body .timeline-title {
    color: #ffffff;
}

.service-timeline .timeline-container .timeline-body p {
    color: #000000;
}

.service-timeline .timeline-container:nth-child(even) .timeline-body p {
    color: #ffffff;
}

.service-timeline .timeline-container.primary .badge,
.service-timeline .timeline-container.primary .timeline-icon {
    background: #c8d94f !important;
}

.step-item {
    width: 100%;
}

.col-md-3:last-child .step-item .step-item-active img {
    float: right;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.step-item:last-child .step-item-active img {
    float: unset;
    -webkit-transform: unset;
    transform: unset;
}

.block-bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #ffffff;
}

.block-bg h1 {
    color: #ffffff;
}

.icon.icon-facebook {
    color: #3b5998 !important;
}

.icon.icon-twitter {
    color: #55acee !important;
}

.icon.icon-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    /* Also define standard property for compatibility */
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.icon.icon-linkedin {
    color: #0a66c2 !important;
}

.page-footer .social-links ul li {
    margin: unset;
    margin-right: 10px;
}

.timeline::before {
    content: unset;
}

.footer_area ul {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0;
}

.footer_area {
    padding: 60px 0 20px;
    position: relative;
    color: #fff;
    z-index: 100;
    background: rgb(0, 0, 0);
    word-break: break-all;
    word-wrap: break-word;
}

.single_ftr form {
    margin-top: 8px;
}

.single_ftr p {
    margin-bottom: 10px;
}

.sf_title {
    color: #c8d94f;
    text-transform: uppercase;
    font-size: 17px;
    margin-top: 0px;
    margin-bottom: 15px;
}

.ftr_logo {
    float: left;
    padding: 15px 46px 0 0;
}

.ftr_logo a img {
    transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
}

.ftr_logo a:hover img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.3;
}

.single_ftr p {
    display: inline-block;
}

.single_ftr li {
    padding-bottom: 7px;
    color: #fff;
}

.single_ftr a {
    color: #fff;
}

.single_ftr a:hover {
    color: #33d286;
}

.ftr_social_icon li {
    display: inline-block;
    text-align: center;
    padding: 4px;
}


.ftr_social_icon ul li a {
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    font-size: 17px;
    height: 40px;
    line-height: 32px;
    padding: 4px 8px;
    width: 40px;
    transition: .5s;
}

.ftr_social_icon ul li a:hover {
    background: #33d286;
    border-color: #33d286;
    color: #fff;
}

.ftr_btm_area {
    background: transparent;
    padding-top: 20px;
    border-top: 1px solid #6dc240;
    z-index: 100;
    position: relative;
}

.ftr_btm_area.middle-area {
    margin-top: 28px;
}


.copyright_text {
    margin: 6px 0;
    vertical-align: middle;
    line-height: 5.5;
}

.payment_mthd_icon li {
    display: inline-block;
    margin-left: 10px;
    font-size: 30px;
    color: #fff;
}

a.btn {
    color: #000000;
    font-size: 18px;
}

a.btn:hover {
    color: #000000;
}

a.btn [class*='icon'] {
    font-size: 20px;
    padding: 0 !important;
    width: 30px;
}

a.btn [class*='icon']:last-child {
    padding: 0 0 0 0;
}

.footer_area .no-decoration {
    text-decoration: none;
}

.footer_area .social-links {
    padding-top: 34px;
}

.footer_area .social-links ul li {
    margin: 0 15px 0px 0;
}

.footer_area .social-links ul li a {
    font-size: 28px;
}

.footer_area .btn {
    border-radius: 4px;
    padding: 10px 15px;
}

@media (max-width: 991px) {
    header.page-header .navbar-nav .dropdown-menu {
        background-color: #c8d94f;
    }

    header.page-header .navbar-nav>li>a:hover {
        background-color: unset;
    }

    .page-header .navbar-nav>li>a:not(.btn) {
        margin: 0px;
        line-height: 20px;
    }

    .nav-btn {
        display: flow-root;
    }

    .navbar-nav>li {
        margin: 0;
    }

    header.page-header .navbar-nav .dropdown-menu {
        float: none !important;
    }
}

@media (max-width: 768px) {
    .service-timeline {
        padding: 0 15px;
        margin: unset;
    }

    .service-timeline .timeline-container .timeline-icon {
        top: 53px;
        width: 75px;
        height: 75px;
    }

    .service-timeline .timeline-container .timeline-body::before {
        content: none;
    }
}

.steps-wrap {
    justify-content: center;
}

.single_ftr {
    min-height: 200px;
}

@media (max-width: 768px) {
    a.btn {
        font-size: 16px;
    }

    a.btn [class*='icon'] {
        font-size: 18px;
        width: 20px;
    }
}

@media (max-width: 991px) {
    header.page-header .logo {
        padding: 5px;
        width: 20%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    header.page-header .logo {
        width: 30%;
    }
}

@media (max-width: 490px) {
    header.page-header .logo {
        width: 45%;
    }
}

.ftr_app_icon {
    width: 220px;
}

@media (max-width: 768px) {
    .ftr_btm_area.middle-area .col-xs-12 {
        text-align: left;
    }

    .copyright_text {
        line-height: 2.5;
    }

    .footer_area .social-links {
        padding-top: 10px;
    }

    .panel-group {
        margin: 25px 0px 0;
    }
}

.bg-reapir {
    min-height: 640px;
    background-size: 300px;
    background-image: linear-gradient(rgba(255, 255, 255, .8), rgba(255, 255, 255, .5)), var(--background);
    background-position: bottom right;
    background-repeat: no-repeat;
}

@media (max-width: 991px) {
    .bg-reapir {
        min-height: unset;
        background-image: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .7)), var(--background);
        background-size: 143px;
    }
}

@media (max-width: 991px) {
    #slide-nav #slidemenu {
        width: 190px;
    }

    body.color-apploid #slide-nav #slidemenu {
        background: #000000;
    }

    body.color-apploid .slidemenu-close {
        background-color: #000000;
    }

    header.page-header .navbar-nav .dropdown-menu {
        background-color: #454545;
    }

    #slide-nav #slidemenu .navbar-nav .dropdown-menu li a {
        color: #ffffff;
    }

    div#slidemenu:after {
        content: none;
    }

    header.page-header .navbar-nav>li>a.btn,
    header.page-header .navbar-nav>li>a.btn:focus {
        margin-left: 5px;
        margin-right: 5px;
        padding: 10px 10px !important;
    }
}

.services-nav-pills {
    display: block;
}

.services-nav-pills [class*='icon-'] {
    padding-right: 0;
}

.services-nav-pills .fa {
    position: relative;
    z-index: 1;
    font-size: 48px;
}

/* @media (max-width: 767px) {
    .services-nav-pills .fa {
        font-size: 32px;
        padding: 0 0 7px;
    }
}

@media (max-width: 991px) {
    .services-nav-pills .fa {
        padding: 0 0 10px;
    }
}

@media (max-width: 1199px) {
    .services-nav-pills .fa {
        font-size: 38px;
        padding-right: 10px;
    }
} */

.services-nav-pills .pill-box {
    width: 100%;
    height: auto;
    padding: 15px;
    min-height: 128px;
}

@media (max-width: 768px) {
    .services-nav-pills .pill-box {
        min-height: 80px;
    }
}

@media (max-width: 490px) {
    .services-nav-pills .pill-box {
        min-height: 85px;
        padding: 10px;
    }
}

.services-nav-pills>.card:hover {
    background: -webkit-linear-gradient(-45deg, #f8e844 0%, #c8d94f 100%);
    background: linear-gradient(135deg, #f8e844 0%, #c8d94f 100%);
    border-color: #c8d94f;
}

.services-nav-pills>.card:hover * {
    color: #fff;
}

.services-nav-pills a {
    text-decoration: none;
}

@media (max-width: 1199px) {
    .services-nav-pills .fa {
        font-size: 38px;
    }
}

@media (max-width: 991px) {

    .services-nav-pills>.card {
        margin-bottom: 20px;
    }

    header.page-header .navbar-toggle {
        bottom: 17px;
        left: 10px;
        right: unset;
    }

    .services-nav-pills .fa {
        font-size: 32px;
    }
}

@media (max-width: 479px) {
    header.page-header .navbar-toggle {
        bottom: 17px;
    }
}

.nav-phone {
    position: absolute;
    bottom: 17px;
    right: 10px;
    padding: 0 10px;
    margin: 0;
    color: #c8d94f;
}

.nav-phone:hover,
.nav-phone:focus {
    color: #53a037;
}

@media (min-width: 991px) {
    .nav-phone {
        display: none;
    }
}

.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xs-5ths {
    width: 20%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-5ths {
        width: 20%;
        float: left;
    }
}

@media (max-width: 991px) {

    header.page-header .navbar-nav>li>a,
    header.page-header .navbar-nav>li>a:focus {
        font-size: 16px;
    }

    header.page-header .navbar-nav>li>a i {
        padding-right: 5px;
    }

    header.page-header .navbar-nav li:focus-within {
        background: #5fbf47;
    }

    header.page-header.is-sticky .navbar-toggle {
        bottom: 17px;
    }

    header.page-header.is-sticky .nav-phone {
        bottom: 15px;
    }

}

@media (max-width: 479px) {
    header.page-header .navbar-toggle {
        bottom: 18px;
    }
}

.select2-selection.select2-selection--multiple {
    min-height: 38px;
    color: #222222;
    font-size: 15px;
    line-height: 26px;
    padding: 6px 20px;
    border-radius: 0;
    background-color: #fff;
    border: 1px solid #dbdbdb;
    margin-bottom: 0;
    box-shadow: none;
    background-image: unset;
}

.select2-container .select2-search--inline .select2-search__field {
    margin-top: 5px;
    margin-left: 0;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {

    border: 1px solid #dbdbdb;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-image: unset;
    /* padding: 5px 20px 5px 10px; */
    border: 1px solid #d0d0d0;
    border-radius: 1px;
    background-color: #ffffff;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #c8d94f;
    color: white;
}

.menu-wrap>.container {
    position: relative;
}

.testimonials-single-carousel-layout2 .testimonials-single:before {
    width: 48px;
    content: " ";
    background-image: url(../images/google.png);
    position: absolute;
    top: 0;
    left: 0;
    background-size: 100% 100%;
    height: 48px;
    margin: 2px;
    float: left;
}
   
/* .testimonials-row {
    display: flex;
    background-color: unset;
}

.testimonials-row.skew-row-img35 .skew-row-left {
    min-width: 95%;
    flex-basis: 95%;
}

.testimonials-single .inside{
    margin-left: unset;
}

.testimonials-row.skew-row-img35 .text {
    float: left;
    max-width: 80%;
}

.testimonials-row.skew-row-img35 .testimonials-single p {
    margin-left: unset;
}

@media (max-width: 767px) {
    .testimonials-row.skew-row-img35 .text {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .testimonials-row.skew-row-img35 .text {
        max-width: 100%;
    }
} */

.contact-block .successform p{
    color: #5ebf49 !important;
}

.contact-block .errorform p{
    color: #c0392b !important;
}