.btn {
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    padding: 25px 50px;
    font-size: 15px;
    line-height: 1;
    text-transform: uppercase;
    font-family: "Varela Round", Arial, "Helvetica Neue", Helvetica, sans-serif;
    color: #fff;
    position: relative;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    text-align: center;
}

@media (max-width: 768px) {
    .btn {
        padding: 15px 35px;
        font-size: 13px;
    }
}

.btn + .btn {
    margin-left: 30px;
}

.btn img {
    position: absolute;
    left: 10px;
    top: 10px;
}

.btn i {
    margin-left: 10px;
    font-size: 12px;
}

.btn:after {
    display: block;
    width: 100%;
    height: 100%;
}

.btn-small {
    padding: 15px 35px;
    text-transform: none;
    font-size: 16px;
}

@media (max-width: 768px) {
    .btn-small {
        padding: 15px 25px;
        font-size: 13px;
    }
}

.btn-medium {
    padding: 23px 31px;
}

@media (max-width: 768px) {
    .btn-medium {
        padding: 15px 25px;
        font-size: 13px;
    }
}

.btn-large {
    padding: 27px 64px;
    font-size: 18px;
}

@media (max-width: 768px) {
    .btn-large {
        padding: 17px 40px;
        font-size: 13px;
    }
}

.btn-border {
    border: 2px solid;
}

    .btn-border.btn-small {
        padding: 12px 35px;
    }

@media (max-width: 768px) {
    .btn-border.btn-small {
        padding: 15px 25px;
    }
}

.btn-border.btn-medium {
    padding: 21px 34px;
}

@media (max-width: 768px) {
    .btn-border.btn-medium {
        padding: 15px 25px;
    }
}

.btn-border.btn-large {
    padding: 25px 64px;
}

@media (max-width: 768px) {
    .btn-border.btn-large {
        padding: 17px 40px;
    }
}

.c-primary {
    color: #00A0E1;
}

    .c-primary .semicircle:after {
        border-color: #00A0E1;
    }

.semicircle {
    display: block;
    position: absolute;
    top: 12px;
    left: 12px;
    width: 18px;
    height: 18px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .semicircle {
        top: 10px;
        left: 10px;
        width: 12px;
        height: 12px;
    }
}

.semicircle:after {
    content: '';
    display: block;
    position: absolute;
    width: 35px;
    height: 35px;
    border: 2px solid #fff;
    border-radius: 100%;
}

@media (max-width: 768px) {
    .semicircle:after {
        width: 20px;
        height: 20px;
        border: 1px solid #fff;
    }
}

.semicircle--right {
    display: block;
    position: absolute;
    top: 12px;
    right: 12px;
    width: 18px;
    height: 18px;
    overflow: hidden;
}

    .semicircle--right:after {
        content: '';
        display: block;
        position: absolute;
        width: 35px;
        height: 35px;
        border: 2px solid #fff;
        border-radius: 100%;
        right: 0;
    }

/*------------- #Color-scheme for buttons --------------*/
.btn--dark {
    background-color: #005591;
}

    .btn--dark:hover {
        background-color: #004576;
    }

    .btn--dark:active {
        -webkit-box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.5) inset;
        box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.5) inset;
    }

    .btn--dark.btn-hover-shadow:hover {
        background-color: #2f2c2c;
    }

        .btn--dark.btn-hover-shadow:hover:after {
            -webkit-box-shadow: 9px 9px 9px 0 rgba(47, 44, 44, 0.2);
            box-shadow: 9px 9px 9px 0 rgba(47, 44, 44, 0.2);
        }

    .btn--dark.btn-hover-shadow:active {
        -webkit-box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.5) inset;
        box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.5) inset;
    }

.btn--primary {
    background-color: #00A0E1;
}

    .btn--primary.btn-hover-shadow:hover {
        -webkit-box-shadow: 9px 9px 9px 0 rgba(0, 0, 0, 0.2);
        box-shadow: 9px 9px 9px 0 rgba(0, 0, 0, 0.2);
    }

.btn--gray {
    background-color: #ebebeb;
    color: #2f2c2c;
}

    .btn--gray:hover {
        background-color: #f3f3f3;
    }

    .btn--gray:active {
        -webkit-box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
        box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
    }

    .btn--gray.btn-hover-shadow:hover {
        background-color: #ebebeb;
    }

        .btn--gray.btn-hover-shadow:hover:after {
            -webkit-box-shadow: 9px 9px 9px 0 rgba(0, 0, 0, 0.2);
            box-shadow: 9px 9px 9px 0 rgba(0, 0, 0, 0.2);
        }

    .btn--gray.btn-hover-shadow:active {
        -webkit-box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
        box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
    }

.btn-hover-shadow:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    left: 0;
    top: 0;
    position: absolute;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.btn--blue {
    background-color: #00adef;
}

    .btn--blue:hover {
        background-color: #00bff3;
    }

    .btn--blue:active {
        -webkit-box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
        box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
    }

    .btn--blue.btn-hover-shadow:hover {
        background-color: #00adef;
    }

        .btn--blue.btn-hover-shadow:hover:after {
            -webkit-box-shadow: 9px 9px 9px 0 rgba(0, 191, 243, 0.2);
            box-shadow: 9px 9px 9px 0 rgba(0, 191, 243, 0.2);
        }

    .btn--blue.btn-hover-shadow:active {
        -webkit-box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
        box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
    }

.btn--purple {
    background-color: #6739b6;
}

    .btn--purple:hover {
        background-color: #7643cf;
    }

    .btn--purple:active {
        -webkit-box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
        box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
    }

    .btn--purple.btn-hover-shadow:hover {
        background-color: #6739b6;
    }

        .btn--purple.btn-hover-shadow:hover:after {
            -webkit-box-shadow: 9px 9px 9px 0 rgba(118, 67, 207, 0.2);
            box-shadow: 9px 9px 9px 0 rgba(118, 67, 207, 0.2);
        }

    .btn--purple.btn-hover-shadow:active {
        -webkit-box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
        box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
    }

.btn--breez {
    background-color: #0795d1;
}

    .btn--breez:hover {
        background-color: #55d5d3;
    }

    .btn--breez:active {
        -webkit-box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
        box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
    }

    .btn--breez.btn-hover-shadow:hover {
        background-color: #4cc3c1;
    }

        .btn--breez.btn-hover-shadow:hover:after {
            -webkit-box-shadow: 9px 9px 9px 0 rgba(85, 213, 211, 0.2);
            box-shadow: 9px 9px 9px 0 rgba(85, 213, 211, 0.2);
        }

    .btn--breez.btn-hover-shadow:active {
        -webkit-box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
        box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
    }

.btn--secondary {
    background-color: #f15b26;
}

    .btn--secondary:hover {
        background-color: #ff7342;
    }

    .btn--secondary:active {
        -webkit-box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
        box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
    }

    .btn--secondary.btn-hover-shadow:hover {
        background-color: #f15b26;
    }

        .btn--secondary.btn-hover-shadow:hover:after {
            -webkit-box-shadow: 9px 9px 9px 0 rgba(241, 91, 38, 0.2);
            box-shadow: 9px 9px 9px 0 rgba(241, 91, 38, 0.2);
        }

    .btn--secondary.btn-hover-shadow:active {
        -webkit-box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
        box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
    }

.btn--orange {
    background-color: #fcaf3b;
}

    .btn--orange:hover {
        background-color: #ffc265;
    }

    .btn--orange:active {
        -webkit-box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
        box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
    }

    .btn--orange.btn-hover-shadow:hover {
        background-color: #fcaf3b;
    }

        .btn--orange.btn-hover-shadow:hover:after {
            -webkit-box-shadow: 9px 9px 9px 0 rgba(255, 194, 101, 0.2);
            box-shadow: 9px 9px 9px 0 rgba(255, 194, 101, 0.2);
        }

    .btn--orange.btn-hover-shadow:active {
        -webkit-box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
        box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
    }

.btn--yellow {
    background-color: #fecb16;
}

    .btn--yellow:hover {
        background-color: #ffd21f;
    }

    .btn--yellow:active {
        -webkit-box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
        box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
    }

    .btn--yellow.btn-hover-shadow:hover {
        background-color: #FFD21F;
    }

        .btn--yellow.btn-hover-shadow:hover:after {
            -webkit-box-shadow: 9px 9px 9px 0 rgba(255, 210, 31, 0.2);
            box-shadow: 9px 9px 9px 0 rgba(255, 210, 31, 0.2);
        }

    .btn--yellow.btn-hover-shadow:active {
        -webkit-box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
        box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
    }

.btn--green {
    background-color: #3cb879;
}

    .btn--green:hover {
        background-color: #46d68d;
    }

    .btn--green:active {
        -webkit-box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
        box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
    }

    .btn--green.btn-hover-shadow:hover {
        background-color: #3cb879;
    }

        .btn--green.btn-hover-shadow:hover:after {
            -webkit-box-shadow: 9px 9px 9px 0 rgba(70, 214, 141, 0.2);
            box-shadow: 9px 9px 9px 0 rgba(70, 214, 141, 0.2);
        }

    .btn--green.btn-hover-shadow:active {
        -webkit-box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
        box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
    }

.btn--dark-gray {
    background-color: #31364c;
}

    .btn--dark-gray:hover {
        background-color: #4a516e;
    }

    .btn--dark-gray:active {
        -webkit-box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
        box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
    }

    .btn--dark-gray.btn-hover-shadow:hover {
        background-color: #31364c;
    }

        .btn--dark-gray.btn-hover-shadow:hover:after {
            -webkit-box-shadow: 9px 9px 9px 0 rgba(74, 81, 110, 0.2);
            box-shadow: 9px 9px 9px 0 rgba(74, 81, 110, 0.2);
        }

    .btn--dark-gray.btn-hover-shadow:active {
        -webkit-box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
        box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
    }

.btn--brown {
    background-color: #c69c6c;
}

    .btn--brown:hover {
        background-color: #e4b47c;
    }

    .btn--brown:active {
        -webkit-box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
        box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
    }

    .btn--brown.btn-hover-shadow:hover {
        background-color: #c69c6c;
    }

        .btn--brown.btn-hover-shadow:hover:after {
            -webkit-box-shadow: 9px 9px 9px 0 rgba(228, 180, 124, 0.2);
            box-shadow: 9px 9px 9px 0 rgba(228, 180, 124, 0.2);
        }

    .btn--brown.btn-hover-shadow:active {
        -webkit-box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
        box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
    }

.btn--rose {
    background-color: #e91d62;
}

    .btn--rose:hover {
        background-color: #ff528d;
    }

    .btn--rose:active {
        -webkit-box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
        box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
    }

    .btn--rose.btn-hover-shadow:hover {
        background-color: #e91d62;
    }

        .btn--rose.btn-hover-shadow:hover:after {
            -webkit-box-shadow: 9px 9px 9px 0 rgba(255, 82, 141, 0.2);
            box-shadow: 9px 9px 9px 0 rgba(255, 82, 141, 0.2);
        }

    .btn--rose.btn-hover-shadow:active {
        -webkit-box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
        box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
    }

.btn--violet {
    background-color: #605ca9;
}

    .btn--violet:hover {
        background-color: #8a86d5;
    }

    .btn--violet:active {
        -webkit-box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
        box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
    }

    .btn--violet.btn-hover-shadow:hover {
        background-color: #605ca9;
    }

        .btn--violet.btn-hover-shadow:hover:after {
            -webkit-box-shadow: 9px 9px 9px 0 rgba(138, 134, 213, 0.2);
            box-shadow: 9px 9px 9px 0 rgba(138, 134, 213, 0.2);
        }

    .btn--violet.btn-hover-shadow:active {
        -webkit-box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
        box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
    }

.btn--olive {
    background-color: #3e4d50;
}

    .btn--olive:hover {
        background-color: #576b6f;
    }

    .btn--olive:active {
        -webkit-box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
        box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
    }

    .btn--olive.btn-hover-shadow:hover {
        background-color: #3e4d50;
    }

        .btn--olive.btn-hover-shadow:hover:after {
            -webkit-box-shadow: 9px 9px 9px 0 rgba(87, 107, 111, 0.2);
            box-shadow: 9px 9px 9px 0 rgba(87, 107, 111, 0.2);
        }

    .btn--olive.btn-hover-shadow:active {
        -webkit-box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
        box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
    }

.btn--light-green {
    background-color: #80be2d;
}

    .btn--light-green:hover {
        background-color: #8fd532;
    }

    .btn--light-green:active {
        -webkit-box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
        box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
    }

    .btn--light-green.btn-hover-shadow:hover {
        background-color: #80be2d;
    }

        .btn--light-green.btn-hover-shadow:hover:after {
            -webkit-box-shadow: 9px 9px 9px 0 rgba(143, 213, 50, 0.2);
            box-shadow: 9px 9px 9px 0 rgba(143, 213, 50, 0.2);
        }

    .btn--light-green.btn-hover-shadow:active {
        -webkit-box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
        box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
    }

.btn--dark-blue {
    background-color: #2e3192;
}

    .btn--dark-blue:hover {
        background-color: #4448c3;
    }

    .btn--dark-blue:active {
        -webkit-box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
        box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
    }

    .btn--dark-blue.btn-hover-shadow:hover {
        background-color: #2e3192;
    }

        .btn--dark-blue.btn-hover-shadow:hover:after {
            -webkit-box-shadow: 9px 9px 9px 0 rgba(68, 72, 195, 0.2);
            box-shadow: 9px 9px 9px 0 rgba(68, 72, 195, 0.2);
        }

    .btn--dark-blue.btn-hover-shadow:active {
        -webkit-box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
        box-shadow: 0px -4px 7px 0 rgba(0, 0, 0, 0.2) inset;
    }

/*------------- #Button back-to-top --------------*/
.back-to-top {
    position: absolute;
    z-index: 999;
    width: 50px;
    height: 50px;
    display: block;
    fill: #222121;
    stroke: inherit;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    float: right;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

@media (max-width: 980px) {
    .back-to-top {
        bottom: 0;
        top: auto;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.back-to-top.hidden {
    opacity: 0;
}

.back-to-top:hover {
    fill: #239bd6;
}

/*------------- #INFO-BOX --------------*/
.info-boxes .info-box--standard {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .info-boxes .info-box--standard {
        margin-bottom: 30px;
    }
}

.info-box--standard .info-box-image {
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
}

@media (max-width: 360px) {
    .info-box--standard .info-box-image {
        float: none;
    }
}

.info-box--standard .info-box-image.f-none {
    float: none;
}

.info-box--standard .info-box-image img {
    height: 48px;
}

.info-box--standard .info-box-content {
    overflow: hidden;
    padding-top: 10px;
}

    .info-box--standard .info-box-content .info-box-title {
        line-height: 1;
        color: #015690;
        font-size: 20px;
        margin-bottom: 10px;
        text-transform: capitalize;
    }

        .info-box--standard .info-box-content .info-box-title.text-t-none {
            text-transform: none;
        }

    .info-box--standard .info-box-content .text {
        font-size: 16px;
        line-height: 1.5;
    }

        .info-box--standard .info-box-content .text a {
            color: #0795d1
        }
/*------------- #Info-box-standard-centered --------------*/
.info-box--standard-centered {
    text-align: center;
    margin-bottom: 30px;
}

    .info-box--standard-centered .info-box-image {
        margin-bottom: 25px;
    }

        .info-box--standard-centered .info-box-image img {
            border-radius: 100%;
            -webkit-transition: all .3s ease;
            transition: all .3s ease;
        }

    .info-box--standard-centered .info-box-content {
        margin-bottom: 30px;
    }

        .info-box--standard-centered .info-box-content .info-box-title {
            font-size: 24px;
            line-height: 1.1;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .info-box--standard-centered .info-box-content .text {
            font-size: 16px;
            line-height: 1.5;
        }

    .info-box--standard-centered:hover .info-box-image img {
        -webkit-box-shadow: 25px 20px 20px -15px rgba(0, 0, 0, 0.3);
        box-shadow: 25px 20px 20px -15px rgba(0, 0, 0, 0.3);
    }

    .info-box--standard-centered .btn:hover {
        background-color: #0795d1;
    }

/*------------- #Info-box-standard-bg --------------*/
.info-box--standard-bg {
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 1024px) {
    .info-box--standard-bg {
        margin-bottom: 30px;
    }
}

.info-box--standard-bg .info-box-content {
    position: relative;
    background-color: #fff;
    padding: 80px 40px 40px;
}

    .info-box--standard-bg .info-box-content .info-box-image {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }

    .info-box--standard-bg .info-box-content .info-box-title {
        font-size: 24px;
        line-height: 1.1;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .info-box--standard-bg .info-box-content .text {
        font-size: 16px;
        line-height: 1.5;
    }

/*------------- Block with info-box --------------*/
.background-mountains {
    position: relative;
    overflow: hidden;
}

    .background-mountains .heading {
        margin-bottom: 76px;
    }

@media (max-width: 800px) {
    .background-mountains .heading {
        margin-bottom: 35px;
    }
}

.background-mountains .btn-block {
    margin-top: 50px;
}

    .background-mountains .btn-block .btn {
        margin: 0 30px;
    }

@media (max-width: 480px) {
    .background-mountains .btn-block .btn {
        margin: 0 0 30px;
    }
}

.background-mountains .images img {
    position: absolute;
    bottom: -100%;
    left: 0;
    opacity: 0;
    min-width: 100%;
}

/*------------- Info-box-modern --------------*/
.info-box--modern {
    position: relative;
    padding: 40px;
    background-color: #f7f9f9;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

    .info-box--modern:hover {
        background-color: #2f2c2c;
    }

        .info-box--modern:hover .info-box-content .info-box-title {
            color: #fff;
        }

        .info-box--modern:hover .info-box-content .read-more {
            color: #0795d1;
        }

            .info-box--modern:hover .info-box-content .read-more i {
                color: #0795d1;
            }

    .info-box--modern .info-box-image {
        float: left;
        margin-right: 30px;
        margin-bottom: 30px;
    }

@media (max-width: 980px) {
    .info-box--modern .info-box-image {
        float: none;
    }
}

.info-box--modern .info-box-content {
    overflow: hidden;
}

    .info-box--modern .info-box-content .info-box-title {
        font-size: 30px;
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .info-box--modern .info-box-content .text {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .info-box--modern .info-box-content .read-more {
        font-size: 16px;
        color: #ccc;
        padding: 0;
        border-left: none;
        margin: 0;
        float: none;
        display: block;
    }

        .info-box--modern .info-box-content .read-more i {
            margin-left: 10px;
            font-size: 12px;
        }

/*------------- #OFFERS --------------*/
.offers {
    position: relative;
    overflow: hidden;
}

    .offers .heading .heading-text {
        margin-bottom: 31px;
        color: #2f2c2c;
    }

@media (max-width: 1024px) {
    .offers .offers-thumb {
        margin-top: 35px;
    }
}

.offers .list {
    padding-left: 60px;
    margin-bottom: 45px;
}

@media (max-width: 640px) {
    .offers .list {
        padding-left: 0;
    }
}

@media (max-width: 1024px) {
    .offers .btn {
        margin-bottom: 20px;
    }
}

@media (max-width: 360px) {
    .offers .btn {
        margin-left: 0;
    }
}

/*------------- #Our vision --------------*/
.our-vision {
    position: relative;
    overflow: hidden;
    padding: 120px 0 215px;
}

    .our-vision .elements {
        opacity: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }

    .our-vision .eye {
        opacity: 0;
        position: absolute;
        left: 50%;
        bottom: -100%;
        transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
    }

/*------------- #TESTIMONIAL --------------*/
.testimonial-item {
    position: relative;
}

    .testimonial-item .testimonial__thumb {
        background-color: #362f2d;
        border-radius: 0 100px 0 100px;
        padding: 50px 100px;
    }

@media (max-width: 480px) {
    .testimonial-item .testimonial__thumb {
        padding: 70px 50px;
    }
}

@media (max-width: 360px) {
    .testimonial-item .testimonial__thumb {
        padding: 70px 20px;
    }
}

.testimonial-item .testimonial-content .text {
    color: #fff;
    font-size: 24px;
}

@media (max-width: 980px) {
    .testimonial-item .testimonial-content .text {
        font-size: 20px;
    }
}

@media (max-width: 640px) {
    .testimonial-item .testimonial-content .text {
        font-size: 16px;
    }
}

.testimonial-item .testimonial-content .author {
    color: #fcd846;
    font-size: 18px;
    display: block;
}

.testimonial-item .testimonial-content .company {
    font-size: 14px;
    color: #797676;
    display: block;
}

.testimonial-item .testimonial-content .quote {
    position: absolute;
    right: 100px;
    bottom: 20px;
}

@media (max-width: 980px) {
    .testimonial-item .testimonial-content .quote {
        right: 50px;
    }
}

@media (max-width: 360px) {
    .testimonial-item .testimonial-content .quote {
        right: 0;
        bottom: 0;
    }
}

.testimonial-item .testimonial-content .quote i {
    font-size: 140px;
    color: #3b3432;
}

.testimonial-item .avatar {
    position: absolute;
    background-image: url("../img/avatar-bg.png");
    width: 119px;
    height: 112px;
    line-height: 112px;
    text-align: center;
    top: -100px;
    left: -140px;
}

@media (max-width: 640px) {
    .testimonial-item .avatar {
        left: -120px;
    }
}

@media (max-width: 480px) {
    .testimonial-item .avatar {
        left: 80px;
        top: -130px;
    }
}

.testimonial-item.testimonial-arrow {
    padding: 50px 60px;
    background-color: #fff;
    position: relative;
}

@media (max-width: 980px) {
    .testimonial-item.testimonial-arrow {
        padding: 30px;
    }
}

.testimonial-item.testimonial-arrow .testimonial-text {
    font-size: 24px;
    color: #2f2c2c;
    margin-bottom: 25px;
    position: relative;
    z-index: 20;
}

@media (max-width: 980px) {
    .testimonial-item.testimonial-arrow .testimonial-text {
        font-size: 18px;
        line-height: 1.3;
    }
}

.testimonial-item.testimonial-arrow .author-info-wrap .testimonial-img-author {
    float: left;
    margin-right: 30px;
}

    .testimonial-item.testimonial-arrow .author-info-wrap .testimonial-img-author.round {
        border-radius: 100%;
        overflow: hidden;
    }

.testimonial-item.testimonial-arrow .quote {
    position: absolute;
    bottom: 15px;
    right: 60px;
}

    .testimonial-item.testimonial-arrow .quote i {
        font-size: 140px;
        color: #f7f9f9;
    }

.testimonial-item.testimonial-arrow:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    border-width: 40px 40px 0 0;
    border-style: solid;
    border-color: #f0f2f2 #f7f9f9 #f7f9f9 #f0f2f2;
    display: block;
    width: 0;
    /* Rules for Firefox 3.0 and better */
}

.testimonial-item.avatar-top .avatar {
    top: -100%;
    left: 50%;
    transform: translate(-50%, 50%);
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
}

@media (max-width: 800px) {
    .testimonial-item.avatar-top .avatar {
        top: -110px;
        transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
    }
}

@media (max-width: 360px) {
    .testimonial-item.avatar-top .avatar {
        top: -110px;
        transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
    }
}

.testimonial-item.quote-left {
    padding: 15px 15px 15px 100px;
}

    .testimonial-item.quote-left .testimonial-text {
        color: #2f2c2c;
        margin-bottom: 25px;
    }

    .testimonial-item.quote-left .quote {
        position: absolute;
        top: -20px;
        left: 0;
    }

        .testimonial-item.quote-left .quote i {
            font-size: 90px;
            color: #f0f2f2;
        }

.author-info-wrap {
    position: relative;
    z-index: 20;
}

    .author-info-wrap .testimonial-img-author {
        float: left;
        margin-right: 30px;
        margin-bottom: 5px;
    }

        .author-info-wrap .testimonial-img-author.round {
            border-radius: 100%;
            overflow: hidden;
        }

        .author-info-wrap .testimonial-img-author.f-none {
            float: none;
        }

    .author-info-wrap .author-info .author-position {
        font-size: 14px;
    }

@media (max-width: 640px) {
    .author-info-wrap.table {
        margin-bottom: 30px;
    }
}

/*------------- #POST --------------*/
@media (max-width: 360px) {
    .post {
        margin-bottom: 30px;
    }
}

.post .post__date {
    background-color: #f7f9f9;
    display: block;
    float: left;
}

.post .post__content {
    padding-bottom: 30px;
    border-bottom: 1px solid #f7f9f9;
    clear: both;
    margin-bottom: 30px;
}

    .post .post__content .post__title {
        font-size: 24px;
        margin-bottom: 15px;
        line-height: 1.25;
    }

@media (max-width: 800px) {
    .post .post__content .post__title {
        font-size: 20px;
    }
}

.post .post__content .post__title:hover {
    color: #0795d1;
}

.post .post__content .post__text {
    margin-bottom: 0;
}

.post .post__content .post__content-info .post-additional-info .category {
    font-size: 14px;
    color: #ccc;
}

@media (max-width: 360px) {
    .post .post__content .post__content-info .post-additional-info > span {
        display: block;
    }
}

.post .post__content .post__content-info .post-tags {
    padding-top: 30px;
}

.post .post__author {
    display: table;
    font-size: 14px;
    color: #ccc;
}

    .post .post__author .post-avatar {
        float: left;
        display: table-cell;
        vertical-align: middle;
        margin-right: 15px;
    }

    .post .post__author .post__author-name {
        display: table-cell;
        vertical-align: middle;
    }

        .post .post__author .post__author-name a {
            display: block;
            line-height: 1;
            font-size: 14px;
            color: #2f2c2c;
        }

@media (max-width: 480px) {
    .post .post__author .post__author-name a {
        white-space: nowrap;
    }
}

.post .post__author .post__author-name .post__author-link:hover {
    color: #0795d1;
}

.post__date {
    font-size: 14px;
    padding: 15px 25px;
    border-radius: 50px;
    margin-bottom: 20px;
    display: block;
    color: #ccc;
}

.post-standard {
    padding: 60px 30px 30px;
    background-color: #f7f9f9;
    position: relative;
    margin-bottom: 60px;
}

@media (max-width: 480px) {
    .post-standard {
        padding: 50px 15px 15px;
    }
}

@media (max-width: 480px) {
    .post-standard {
        margin-bottom: 30px;
    }
}

.post-standard.has-post-thumbnail {
    padding: 30px;
}

@media (max-width: 480px) {
    .post-standard.has-post-thumbnail {
        padding: 50px 15px 15px;
    }
}

.post-standard:hover .overlay {
    opacity: 1;
}

.post-standard:hover .post-thumb .link-image {
    opacity: 1;
    left: 50%;
}

.post-standard:hover .post-thumb .link-post {
    opacity: 1;
    right: 50%;
}

.post-standard .post-thumb {
    position: relative;
    margin-bottom: 60px;
    -webkit-box-shadow: 24px 50px 60px rgba(0, 0, 0, 0.3);
    box-shadow: 24px 50px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

@media (max-width: 480px) {
    .post-standard .post-thumb {
        margin-bottom: 40px;
    }
}

.post-standard .post-thumb .link-image {
    color: #fff;
    font-size: 36px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(75%, -50%);
    -webkit-transform: translate(75%, -50%);
    -ms-transform: translate(75%, -50%);
    opacity: 0;
    z-index: 50;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}

    .post-standard .post-thumb .link-image:hover {
        color: #0795d1;
    }

.post-standard .post-thumb .link-post {
    color: #fff;
    font-size: 36px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-75%, -50%);
    -webkit-transform: translate(-75%, -50%);
    -ms-transform: translate(-75%, -50%);
    opacity: 0;
    z-index: 50;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}

    .post-standard .post-thumb .link-post:hover {
        color: #0795d1;
    }

.post-standard .post-thumb.custom-bg {
    background-size: cover;
    background-position: center;
}

.post-standard .post-thumb iframe {
    display: block;
    max-width: 100%;
}

.post-standard .post__content {
    padding-left: 15px;
    padding-bottom: 0;
    margin-bottom: 0;
}

    .post-standard .post__content .post__author {
        margin-right: 40px;
        float: left;
        text-align: center;
    }

@media (max-width: 480px) {
    .post-standard .post__content .post__author {
        float: none;
        margin-bottom: 20px;
        text-align: left;
    }
}

.post-standard .post__content .post__author img {
    margin: 0 auto;
    display: block;
    margin-bottom: 10px;
}

@media (max-width: 480px) {
    .post-standard .post__content .post__author img {
        float: left;
        margin-right: 20px;
    }
}

.post-standard .post__content .post__author .post__author-name {
    display: block;
}

.post-standard .post__content .post__content-info {
    overflow: hidden;
}

    .post-standard .post__content .post__content-info .post__title {
        text-transform: uppercase;
    }

    .post-standard .post__content .post__content-info .post-additional-info {
        margin-bottom: 25px;
    }

@media (max-width: 480px) {
    .post-standard .post__content .post__content-info .post-additional-info {
        margin-bottom: 15px;
    }
}

.post-standard .post__content .post__content-info .post-additional-info i {
    font-size: 20px;
    margin-right: 10px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.post-standard .post__content .post__content-info .post-additional-info .post__date {
    padding: 0;
    float: none;
    margin-right: 30px;
    display: inline-block;
    margin-bottom: 0;
}

.post-standard .post__content .post__content-info .post-additional-info .category {
    margin-right: 30px;
}

    .post-standard .post__content .post__content-info .post-additional-info .category a {
        color: #ccc;
        display: inline-block;
    }

        .post-standard .post__content .post__content-info .post-additional-info .category a:hover {
            color: #0795d1;
        }

.post-standard .post__content .post__content-info .post-additional-info .post__comments {
    color: #ccc;
    font-size: 14px;
}

    .post-standard .post__content .post__content-info .post-additional-info .post__comments a {
        color: #ccc;
    }

        .post-standard .post__content .post__content-info .post-additional-info .post__comments a:hover {
            color: #0795d1;
        }

.post-standard .post__content .post__content-info .post__text {
    font-size: 16px;
    margin-bottom: 30px;
}

@media (max-width: 480px) {
    .post-standard .post__content .post__content-info .post__text {
        margin-bottom: 20px;
    }
}

.post-standard .post__content .post__content-info .btn {
    margin-bottom: 30px;
}

    .post-standard .post__content .post__content-info .btn:hover {
        background-color: #0795d1;
    }

.post-standard .post__content .post__content-info .post-tags {
    padding-top: 30px;
}

.post-standard .overlay {
    opacity: 0;
}

.post-standard.sticky:before {
    content: '\e952';
    font-family: "seosight";
    display: block;
    width: 50px;
    height: 50px;
    background-color: #f04e4e;
    line-height: 50px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: -20px;
    left: 60px;
    z-index: 5;
}

.post-standard.video .overlay {
    opacity: 1;
}

.post-standard.video .play-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 10;
}

.post-standard.slider:hover .post-thumb .overlay {
    opacity: 0;
}

.post-standard.slider .post-thumb {
    margin-bottom: 0;
}

.post-standard.slider .post-standard-thumb-slider {
    margin-bottom: 60px;
}

.post-standard.slider .pagination, .post-standard.slider .swiper-pagination {
    bottom: 40px;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
}

.post-standard.quote .post-thumb {
    padding: 100px 120px;
    text-align: left;
}

@media (max-width: 1024px) {
    .post-standard.quote .post-thumb {
        padding: 30px;
    }
}

.post-standard.quote .post-thumb .testimonial-content {
    position: relative;
}

    .post-standard.quote .post-thumb .testimonial-content .text {
        font-size: 24px;
        color: #fff;
        line-height: 1.4;
    }

@media (max-width: 570px) {
    .post-standard.quote .post-thumb .testimonial-content .text {
        font-size: 18px;
    }
}

.post-standard.quote .post-thumb .testimonial-content .author-info-wrap .author-info .author-name {
    color: #0795d1;
}

.post-standard.quote .post-thumb .testimonial-content .quote {
    position: absolute;
    right: 0;
    bottom: -30px;
}

@media (max-width: 360px) {
    .post-standard.quote .post-thumb .testimonial-content .quote {
        display: none;
    }
}

.post-standard.quote .post-thumb .testimonial-content .quote i {
    font-size: 140px;
    color: #fcd846;
}

.post-standard.audio .post-thumb {
    height: auto;
    overflow: hidden;
}

@media (max-width: 360px) {
    .post-standard.audio .post-thumb {
        height: auto;
    }
}

.post-standard.audio .post-thumb .author-photo {
    position: relative;
    float: left;
    z-index: 5;
}

@media (max-width: 360px) {
    .post-standard.audio .post-thumb .author-photo {
        float: none;
    }
}

.post-standard.audio .post-thumb .author-photo .overlay-audio {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(43, 48, 68, 0.8);
}

.post-standard.audio .post-thumb .author-photo .play-audio {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

    .post-standard.audio .post-thumb .author-photo .play-audio i {
        font-size: 46px;
        color: #fff;
    }

.post-standard.audio .post-thumb .audio-player {
    position: relative;
    padding: 40px;
    background-color: #31364c;
    margin-left: 165px;
    height: 100%;
}

@media (max-width: 360px) {
    .post-standard.audio .post-thumb .audio-player {
        margin-left: 0;
    }
}

.post-standard.audio .post-thumb .audio-player .composition-time {
    text-align: right;
    font-size: 12px;
    margin-bottom: 4px;
}

@media (max-width: 980px) {
    .post-standard.audio .post-thumb .audio-player .composition-time {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .post-standard.audio .post-thumb .audio-player .composition-time {
        text-align: right;
    }
}

.post-standard.audio .post-thumb .audio-player .composition-time .time-over {
    color: #0795d1;
    margin-right: 20px;
}

.post-standard.audio .post-thumb .audio-player .composition-time .time-total {
    color: #6b7186;
}

.post-standard.audio .post-thumb .audio-player .play-meter {
    width: 100%;
    border-radius: 10px;
    background-color: #3d4359;
    position: relative;
    height: 8px;
}

    .post-standard.audio .post-thumb .audio-player .play-meter .play-meter-active {
        position: relative;
        height: 8px;
        display: inline-block;
        border-radius: 5px;
        bottom: 9px;
    }

        .post-standard.audio .post-thumb .audio-player .play-meter .play-meter-active:after {
            content: '';
            display: block;
            width: 20px;
            height: 20px;
            border: 5px solid;
            border-color: inherit;
            border-radius: 100%;
            position: absolute;
            right: -17px;
            top: 50%;
            transform: translate(0, -50%);
            -webkit-transform: translate(0, -50%);
            -ms-transform: translate(0, -50%);
        }

.post-standard.audio .post-thumb .audio-player .composition {
    display: inline-block;
}

    .post-standard.audio .post-thumb .audio-player .composition .composition-title {
        color: #fff;
        line-height: 1;
    }

    .post-standard.audio .post-thumb .audio-player .composition .composition-subtitle {
        color: #6b7186;
        margin-bottom: 0;
    }

.post-standard.audio .post-thumb .audio-player .like-share {
    float: right;
}

@media (max-width: 480px) {
    .post-standard.audio .post-thumb .audio-player .like-share {
        float: none;
    }
}

.post-standard.audio .post-thumb .audio-player .like-share a {
    margin-right: 20px;
}

    .post-standard.audio .post-thumb .audio-player .like-share a:last-child {
        margin-right: 0;
    }

    .post-standard.audio .post-thumb .audio-player .like-share a i {
        font-size: 18px;
        color: #6b7186;
    }

        .post-standard.audio .post-thumb .audio-player .like-share a i.red {
            color: #f04e4e;
        }

.post-standard.link .post-thumb {
    padding: 120px 100px;
    text-align: left;
}

@media (max-width: 1024px) {
    .post-standard.link .post-thumb {
        padding: 80px;
    }
}

@media (max-width: 570px) {
    .post-standard.link .post-thumb {
        padding: 30px;
    }
}

.post-standard.link .post-thumb .thumb-content {
    position: relative;
    z-index: 50;
}

    .post-standard.link .post-thumb .thumb-content .thumb-content-title {
        color: #fff;
        margin-bottom: 30px;
        display: block;
    }

    .post-standard.link .post-thumb .thumb-content .site-link {
        color: #11847f;
        display: block;
    }

    .post-standard.link .post-thumb .thumb-content .post-link {
        display: block;
        position: absolute;
        right: 0;
        bottom: 0;
    }

        .post-standard.link .post-thumb .thumb-content .post-link i {
            font-size: 75px;
            color: #fff568;
        }

/*------------- #Post-standard-details --------------*/
.post-standard-details {
    margin-bottom: 80px;
}

    .post-standard-details .post-thumb {
        -webkit-box-shadow: 24px 50px 60px rgba(0, 0, 0, 0.3);
        box-shadow: 24px 50px 60px rgba(0, 0, 0, 0.3);
        margin-bottom: 60px;
        float: left;
    }

    .post-standard-details .post__content {
        margin-bottom: 30px;
    }

        .post-standard-details .post__content .post__text {
            margin-bottom: 30px;
        }

        .post-standard-details .post__content .post__title {
            text-transform: uppercase;
            margin-bottom: 30px;
        }

        .post-standard-details .post__content .post-additional-info {
            margin-bottom: 30px;
        }

@media (max-width: 768px) {
    .post-standard-details .post__content .post-additional-info > span {
        display: block;
        margin-bottom: 10px;
    }
}

.post-standard-details .post__content .post-additional-info i {
    font-size: 20px;
    margin-right: 10px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    color: #ccc;
}

.post-standard-details .post__content .post-additional-info .post__author {
    display: inline-block;
    margin-right: 30px;
}

@media (max-width: 768px) {
    .post-standard-details .post__content .post-additional-info .post__author {
        display: block;
        margin-bottom: 10px;
    }
}

.post-standard-details .post__content .post-additional-info .post__author img {
    margin-right: 10px;
}

.post-standard-details .post__content .post-additional-info .post__author .post__author-name {
    display: inline-block;
}

.post-standard-details .post__content .post-additional-info .post__date {
    padding: 0;
    float: none;
    margin-right: 30px;
    display: inline-block;
    margin-bottom: 0;
    background-color: transparent;
}

@media (max-width: 768px) {
    .post-standard-details .post__content .post-additional-info .post__date {
        margin-bottom: 10px;
    }
}

.post-standard-details .post__content .post-additional-info .category {
    margin-right: 30px;
}

    .post-standard-details .post__content .post-additional-info .category a {
        color: #ccc;
        display: inline-block;
        font-size: 14px;
    }

        .post-standard-details .post__content .post-additional-info .category a:hover {
            color: #0795d1;
        }

.post-standard-details .post__content .post-additional-info .post__comments {
    color: #ccc;
    font-size: 14px;
}

    .post-standard-details .post__content .post-additional-info .post__comments a {
        color: #ccc;
        font-size: 14px;
    }

    .post-standard-details .post__content .post-additional-info .post__comments:hover {
        color: #0795d1;
    }

.post-standard-details .post__content .post__subtitle {
    color: #2f2c2c;
    margin-bottom: 30px;
}

.post-standard-details .post__content .testimonial-item.quote-left {
    margin: 60px 0;
}

@media (max-width: 768px) {
    .post-standard-details .post__content .testimonial-item.quote-left {
        margin: 30px 0;
    }
}

.post-standard-details .post__content .list {
    margin-bottom: 30px;
}

.post-standard-details .post__content .w-tags {
    margin-bottom: 10px;
}

.post-standard-details .socials .social__item i {
    font-size: 20px;
    color: #d7d7d7;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.post-standard-details .socials .social__item:hover i {
    color: #08acee;
}

.post-standard-details .socials .social__item:first-child {
    margin-left: 15px;
}

.post-standard-details .socials button {
    background: none;
    cursor: pointer;
    margin-left: 0;
}

.post-standard-details .socials .label {
    position: relative;
    top: -10px;
}

.blog-details-author {
    padding: 60px;
    background-color: #f7f9f9;
    margin-bottom: 60px;
}

    .blog-details-author .blog-details-author-thumb {
        float: left;
        margin-right: 30px;
    }

@media (max-width: 480px) {
    .blog-details-author .blog-details-author-thumb {
        float: none;
        margin-bottom: 30px;
    }
}

.blog-details-author .blog-details-author-content {
    overflow: hidden;
}

    .blog-details-author .blog-details-author-content .author-info {
        margin-bottom: 0;
    }

        .blog-details-author .blog-details-author-content .author-info .author-name {
            display: inline-block;
            margin-right: 30px;
        }

        .blog-details-author .blog-details-author-content .author-info .author-info {
            display: inline-block;
            font-size: 14px;
        }

    .blog-details-author .blog-details-author-content .text {
        margin-bottom: 20px;
    }

.blog-details-author .socials .social__item img {
    width: 20px;
    height: auto;
}

body.author .blog-details-author {
    margin-bottom: 30px;
}

.author .avatar {
    border-radius: 100%;
}

/*------------- #STUNNING-HEADER --------------*/
.stunning-header {
    /*padding: 125px 0;*/
    background-image: url(../assets/stunning.jpg);
    padding: 45px 0 30px 0;
    background-color: #015690;
    background-position: center center;
}

@media (max-width: 768px) {
    .stunning-header {
        padding: 60px 0;
    }
}

.stunning-header .stunning-header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 5;
    padding: 0 15px;
}

.stunning-header.left .stunning-header-content {
    max-width: 1170px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 5;
    padding: 0 15px;
}

.stunning-header.tiny {
    padding: 5px 0 5px 0;
}

    .stunning-header.tiny .stunning-header-content .breadcrumbs {
        margin-top: 10px;
        margin-bottom: 10px;
        padding: 0;
    }

.stunning-header .stunning-header-content .stunning-header-title, .stunning-header .stunning-header-content p {
    color: #fff;
}

.stunning-header .stunning-header-content p {
    opacity: .75;
}

@media (max-width: 800px) {
    .stunning-header .stunning-header-content .stunning-header-title {
        font-size: 40px;
    }
}

@media (max-width: 640px) {
    .stunning-header .stunning-header-content .stunning-header-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .stunning-header .stunning-header-content .stunning-header-title {
        font-size: 30px;
    }
}

@media (max-width: 360px) {
    .stunning-header .stunning-header-content .stunning-header-title {
        font-size: 24px;
    }
}

.stunning-header .stunning-header-content .breadcrumbs {
    margin-top: 40px;
    padding: 0;
}

@media (max-width: 570px) {
    .stunning-header .stunning-header-content .breadcrumbs {
        font-size: 12px;
    }
}

.stunning-header .stunning-header-content .breadcrumbs .breadcrumbs-item {
    display: inline-block;
}

    .stunning-header .stunning-header-content .breadcrumbs .breadcrumbs-item a {
        text-transform: uppercase;
        color: white;
        opacity: .5;
        margin-right: 20px;
    }

        .stunning-header .stunning-header-content .breadcrumbs .breadcrumbs-item a:hover {
            opacity: 1;
        }

        .stunning-header .stunning-header-content .breadcrumbs .breadcrumbs-item a.c-gray + i {
            color: #acacac;
        }

    .stunning-header .stunning-header-content .breadcrumbs .breadcrumbs-item.active span {
        color: white;
        opacity: 1;
        text-decoration: underline;
    }

        .stunning-header .stunning-header-content .breadcrumbs .breadcrumbs-item.active span.c-primary {
            color: #0795d1;
        }

    .stunning-header .stunning-header-content .breadcrumbs .breadcrumbs-item i {
        margin-right: 20px;
        color: rgba(255, 255, 255, 0.5);
        font-size: 14px;
    }

    .stunning-header .stunning-header-content .breadcrumbs .breadcrumbs-item:last-child i {
        display: none;
    }

.stunning-header.with-photo {
    position: relative;
    padding: 280px 0 120px;
    background-size: cover;
}

.stunning-header-custom {
    color: #fff;
}

    .stunning-header-custom .stunning-header-title,
    .stunning-header-custom span,
    .stunning-header-custom i,
    .stunning-header-custom a {
        color: inherit !important;
    }

/*------------- #Any colors background --------------*/
.stunning-header-bg-blue {
    background-image: url("../img/pattern-bg-blue.jpg");
}

.stunning-header-bg-gray {
    background-image: url("../img/pattern-bg-gray.jpg");
}

.stunning-header-bg-lightblue {
    background-image: url("../img/pattern-bg-lightblue.jpg");
}

.stunning-header-bg-violet {
    background-image: url("../img/pattern-bg-violet.jpg");
}

.stunning-header-bg-lightgray {
    background-image: url("../img/pattern-bg-lightgray.jpg");
}

.stunning-header-bg-breez {
    background-image: url("../img/pattern-bg-breez.jpg");
}

.stunning-header-bg-red {
    background-image: url("../img/pattern-bg-red.jpg");
}

.stunning-header-bg-orange {
    background-image: url("../img/pattern-bg-orange.jpg");
}

.stunning-header-bg-green {
    background-image: url("../img/pattern-bg-green.jpg");
}

.stunning-header-bg-olive {
    background-image: url("../img/pattern-bg-olive.jpg");
}

.stunning-header-bg-brown {
    background-image: url("../img/pattern-bg-brown.jpg");
}

.stunning-header-bg-rose {
    background-image: url("../img/pattern-bg-rose.jpg");
}

.stunning-header-bg-lightviolet {
    background-image: url("../img/pattern-bg-lightviolet.jpg");
}

.stunning-header-bg-lime {
    background-image: url("../img/pattern-bg-lime.jpg");
}

/*------------- #Any photos background --------------*/
.stunning-header-bg-photo1 {
    background: url("../img/stunning-header-photo1.jpg") no-repeat;
}

.stunning-header-bg-photo2 {
    background: url("../img/stunning-header-photo2.jpg") no-repeat;
}

.stunning-header-bg-photo3 {
    background: url("../img/stunning-header-photo3.jpg") no-repeat;
}

.stunning-header-bg-photo4 {
    background: url("../img/stunning-header-photo4.jpg") no-repeat;
}

.stunning-header-bg-photo5 {
    background: url("../img/stunning-header-photo5.jpg") no-repeat;
}

.stunning-header-bg-photo6 {
    background: url("../img/stunning-header-photo6.jpg") no-repeat;
}

/*------------- #Any overlays background --------------*/
.overlay-dark {
    background: rgba(47, 44, 44, 0.8);
}

.overlay-primary {
    background: rgba(51, 204, 204, 0.2);
}

.overlay-red {
    background: rgba(241, 91, 38, 0.3);
}

.overlay-orange {
    background: rgba(252, 176, 59, 0.3);
}

.overlay-green {
    background: rgba(60, 184, 120, 0.3);
}

.overlay-olive {
    background: rgba(37, 39, 49, 0.8);
}

/*------------- #SERVICES --------------*/
.services-main {
    padding: 60px 40px 60px 0;
}

    .services-main .heading .heading-text {
        font-size: 18px;
        line-height: 1.4;
    }

    .services-main .heading .heading-line {
        margin-bottom: 30px;
    }

.servises-item {
    padding: 60px 45px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    box-shadow: 0 0 10px #eee;
}

@media (max-width: 980px) {
    .servises-item {
        margin-bottom: 30px;
    }
}

.servises-item:hover {
    background-color: #fff;
}

    .servises-item:hover .servises-item__content .servises-text {
        color: #acacac;
    }

    .servises-item:hover .read-more i {
        color: #2f2c2c;
    }

.servises-item .servises-item__thumb {
    margin-bottom: 50px;
    background-color: #fff;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.servises-item .servises-item__content .servises-title {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1;
}

@media (max-width: 480px) {
    .servises-item .servises-item__content .servises-title {
        font-size: 24px;
    }
}

.servises-item .servises-item__content .servises-text {
    margin-bottom: 30px;
    color: #acacac;
    line-height: 20px;
    font-size: 14px;
    font-size: 16px;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
}

.servises-item .servises-item__content {
    height: 169px;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
}

    .servises-item .servises-item__content .servises-text:after {
        content: "...";
    }

.servises-item .read-more {
    position: relative;
    border: none;
    margin: 0;
    padding: 0;
    color: #00A0E1;
    padding-right: 15px;
}

    .servises-item .read-more:after {
        border-top: 1px solid #00A0E1;
        border-right: 1px solid #00A0E1;
        content: '';
        display: block;
        height: 10px;
        margin-top: -5px;
        pointer-events: none;
        position: absolute;
        right: 0;
        top: 50%;
        -webkit-transform-origin: 50% 50%;
        -ms-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
        width: 10px;
    }

    .servises-item .read-more i {
        color: #fff;
        font-size: 26px;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
    }

#map_right_listing {
    height: 100%;
    width: 100%;
    min-height: 335px;
}

.map-view {
    padding: 20px 25px;
    background-color: #fff;
    transition: all .3s ease;
}

@media (max-width: 980px) {
    .map-view {
        margin-bottom: 30px;
    }
}

.map-view:hover {
    background-color: #f7f9f9;
}

    .map-view:hover .map-view__content .servises-text {
        color: #acacac;
    }

    .map-view:hover .read-more i {
        color: #2f2c2c;
    }

.map-view .map-view__thumb {
    margin-bottom: 50px;
}

.map-view .map-view__content .servises-title {
    margin-bottom: 10px;
    line-height: 1;
    font-weight: 500;
    font-size: 20px;
}

@media (max-width: 480px) {
    .map-view .map-view__content .servises-title {
        font-size: 24px;
    }
}

.map-view .map-view__content .servises-text {
    margin-bottom: 30px;
    color: #fff;
}

.map-view .read-more {
    border: none;
    color: #0695d1;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    margin: 0;
    padding: 0;
}

    .map-view .read-more i {
        color: #fff;
        font-size: 26px;
        transition: all .3s ease;
    }

.cluster img {
    display: none !important;
}

.cluster-visible {
    text-align: center;
    font-size: 15px !important;
    color: #fff !important;
    font-weight: 500;
    border-radius: 50%;
    width: 36px !important;
    height: 36px !important;
    line-height: 36px !important;
    background-color: #0695d1 !important;
    background-image: none !important;
}

    .cluster-visible:before {
        border: 7px solid #0695d1;
        opacity: 0.2;
        box-shadow: inset 0 0 0 4px #0695d1;
        content: '';
        position: absolute;
        border-radius: 50%;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        animation: cluster-animation 2.5s infinite;
    }

@keyframes cluster-animation {
    0%,100% {
        transform: scale(1.3) rotate(0deg);
    }

    50% {
        transform: scale(1.5) rotate(90deg);
    }
}

.map {
    width: 100%;
    height: 500px;
}

    .map.map_single {
        height: 400px;
    }

.infoBox {
    -webkit-animation: fadeIn 0.9s;
    animation: fadeIn 0.9s;
    padding-right: 50px;
}

    .infoBox > img {
        position: absolute !important;
        right: 60px !important;
        top: 10px !important;
        z-index: 9999;
        width: 20px;
        height: 20px;
        display: block;
        cursor: pointer;
    }

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.marker_info {
    width: 240px;
    min-height: 110px;
    border-radius: 5px;
    text-align: left;
    background: #000;
    background: white;
    position: relative;
    z-index: 999;
    font-family: "Poppins", Helvetica, sans-serif;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
}

    .marker_info img {
        display: block;
        -webkit-border-radius: 5px 5px 0 0;
        -moz-border-radius: 5px 5px 0 0;
        -ms-border-radius: 5px 5px 0 0;
        border-radius: 5px 5px 0 0;
    }

    .marker_info h3 {
        font-family: LindeDaxOffice,Helvetica,sans-serif;
        font-size: 18px;
        line-height: 1.1;
        font-weight: 500;
        margin-top: 3px;
        padding-right: 20px;
        padding-bottom: 10px;
        color: #444;
    }

    .marker_info em {
        display: inline-block;
        font-size: 12px;
        line-height: 16px;
        color: #999;
        font-style: normal;
    }

    .marker_info span {
        display: block;
        padding: 15px 20px 0 20px;
        font-size: 13px;
        font-size: 0.8125rem;
        line-height: 1.2;
        color: #fff;
        position: relative;
    }

        .marker_info span strong {
            display: block;
            font-weight: 500;
        }

    .marker_info:after {
        right: 100%;
        top: 0;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: transparent;
        border-right-color: white;
        border-width: 6px;
        margin-top: 11px;
    }

a.btn_infobox_detail {
    position: absolute;
    top: 20px;
    right: 15px;
    width: 20px;
    height: 20px;
}

    a.btn_infobox_detail:before, .btn_infobox_get_directions:before, a.btn_infobox_phone:before {
        font-style: normal;
        font-weight: normal;
        font-family: "ElegantIcons";
        font-size: 20px;
        font-size: 1.25rem;
        cursor: pointer;
    }

    a.btn_infobox_detail:before {
        content: "\70";
        color: #ccc;
    }

        a.btn_infobox_detail:before:hover {
            color: #0695d1;
        }

.btn_infobox_get_directions, a.btn_infobox_phone {
    border: none;
    display: inline-block;
    font-weight: 500;
    color: #0695d1;
    background: none;
    cursor: pointer;
    font-size: 13px;
    font-size: 0.8125rem;
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    outline: none;
}

    .btn_infobox_get_directions:focus, a.btn_infobox_phone:focus {
        outline: none;
    }

    .btn_infobox_get_directions:hover, a.btn_infobox_phone:hover {
        color: #333;
    }

    .btn_infobox_get_directions:before {
        font-size: 14px;
        font-size: 0.875rem;
        content: "\e080";
        position: absolute;
        left: 0;
        top: 0;
    }

    a.btn_infobox_phone:before {
        font-size: 14px;
        content: "\e090";
        position: absolute;
        left: 0;
        top: -2px;
    }

span.infobox_rate {
    display: inline-block;
    margin: -44px 0 0 -20px;
    float: left;
    background-color: #0054a6;
    padding: 5px 8px;
    font-weight: 500;
    text-align: left;
    font-size: 12px;
    font-size: 0.75rem;
}

/*------------- #POPUP-SEARCH --------------*/
.popup-search {
    width: auto;
    min-width: 430px;
    padding: 40px 30px 10px 30px;
    border-radius: 5px;
    position: absolute;
    top: 38px;
    right: -20px;
    left: auto;
    background-color: #fff;
    z-index: 1;
    -webkit-box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.16);
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.16);
    display: none;
}

@media (max-width: 360px) {
    .popup-search {
        min-width: 320px;
    }
}

.popup-search .search {
    background-color: #f7f9f9;
    padding: 17px 40px;
    font-size: 16px;
    color: #797676;
    border-color: transparent;
    border-radius: 50px 0 0 50px;
    float: left;
    width: 85%;
}

.popup-search .search-btn {
    display: inline-block;
    background-color: #2f2c2c;
    padding: 20px 5px;
    border-radius: 0 50px 50px 0;
    font-size: 15px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    color: #fff;
    width: 60px;
    height: 64px;
}

.popup-search .search-inline {
    position: relative;
}

    .popup-search .search-inline input {
        margin-bottom: 30px;
    }

    .popup-search .search-inline .search-btn {
        position: absolute;
        right: 0;
        top: 0;
    }

        .popup-search .search-inline .search-btn i {
            margin-left: 0;
        }

/*------------- #POPUP-CART --------------*/
.cart-popup-wrap {
    position: absolute;
    top: 39px;
    right: -50px;
    z-index: 1;
    width: 400px;
    border-radius: 5px;
    -webkit-box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.16);
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    display: none;
    z-index: 10;
}

@media (max-width: 980px) {
    .cart-popup-wrap {
        right: auto;
        left: 0;
    }
}

@media (max-width: 800px) {
    .cart-popup-wrap {
        right: 0;
        left: auto;
    }
}

@media (max-width: 570px) {
    .cart-popup-wrap {
        right: 0;
    }
}

@media (max-width: 320px) {
    .cart-popup-wrap {
        right: -60px;
    }
}

.cart-popup-wrap .popup-cart {
    padding: 20px;
    background-color: #fff;
    background-color: rgba(0, 48, 92, 0.74);
}

    .cart-popup-wrap .popup-cart ul {
        padding: 0;
        text-align: center;
    }

        .cart-popup-wrap .popup-cart ul li {
            margin: 0;
            padding: 0 15px;
        }

    .cart-popup-wrap .popup-cart .title-cart {
        font-size: 22px;
    }

    .cart-popup-wrap .popup-cart .subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .cart-popup-wrap .popup-cart .btn {
        text-transform: capitalize;
        width: 100%;
        text-align: center;
    }

    .cart-popup-wrap .popup-cart .cart-product .cart-product__item {
        display: table;
        padding: 20px 0;
        border-bottom: 2px solid #f7f9f9;
    }

        .cart-popup-wrap .popup-cart .cart-product .cart-product__item .product-del {
            width: 25px;
            height: 25px;
            position: relative;
            font-size: 25px;
            color: #f15b26;
            z-index: 2;
            font-weight: 100;
            cursor: pointer;
            display: table-cell;
            vertical-align: middle;
        }

        .cart-popup-wrap .popup-cart .cart-product .cart-product__item img {
            float: left;
            margin-right: 20px;
            display: table-cell;
            vertical-align: middle;
        }

        .cart-popup-wrap .popup-cart .cart-product .cart-product__item .cart-product-content {
            display: table-cell;
            vertical-align: middle;
        }

            .cart-popup-wrap .popup-cart .cart-product .cart-product__item .cart-product-content .cart-product-title {
                font-size: 16px;
                line-height: 1;
            }

            .cart-popup-wrap .popup-cart .cart-product .cart-product__item .cart-product-content .price {
                font-size: 14px;
            }

.cart-popup-wrap .cart-total {
    padding: 30px 40px 40px;
    background-color: #f7f9f9;
    overflow: hidden;
    width: 100%;
}

    .cart-popup-wrap .cart-total .cart-total-text {
        margin-bottom: 30px;
        overflow: hidden;
    }

        .cart-popup-wrap .cart-total .cart-total-text .title {
            text-transform: uppercase;
            font-size: 16px;
            float: left;
        }

        .cart-popup-wrap .cart-total .cart-total-text .total-price {
            color: #0795d1;
            font-size: 18px;
            float: right;
        }

    .cart-popup-wrap .cart-total .btn {
        width: 50%;
        border-radius: 50px 0 0 50px;
        float: left;
    }

        .cart-popup-wrap .cart-total .btn:last-child {
            border-radius: 0 50px 50px 0;
        }

        .cart-popup-wrap .cart-total .btn + .btn {
            margin-left: 0;
        }

.cart-popup-wrap.cart-with-product {
    width: 370px;
}

@media (max-width: 360px) {
    .cart-popup-wrap.cart-with-product {
        width: 330px;
    }
}

.cart-popup-wrap.cart-with-product .popup-cart {
    padding: 40px 40px 0 40px;
}

/*------------- #PAGINATION --------------*/
.pagination, .swiper-pagination {
    position: absolute;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

    .pagination .pagination-item, .pagination .swiper-pagination-bullet, .swiper-pagination .pagination-item, .swiper-pagination .swiper-pagination-bullet {
        display: inline-block;
        width: 15px;
        height: 15px;
        background-color: #f0f2f2;
        margin: auto 5px;
        border-radius: 50%;
        cursor: pointer;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
    }

@media (max-width: 640px) {
    .pagination .pagination-item, .pagination .swiper-pagination-bullet, .swiper-pagination .pagination-item, .swiper-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
}

.pagination .pagination-item.active, .pagination .pagination-item.swiper-pagination-bullet-active, .pagination .swiper-pagination-bullet.active, .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active, .swiper-pagination .pagination-item.active, .swiper-pagination .pagination-item.swiper-pagination-bullet-active, .swiper-pagination .swiper-pagination-bullet.active, .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 15px;
    height: 15px;
    background-color: transparent;
    border: 2px solid #0795d1;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

@media (max-width: 640px) {
    .pagination .pagination-item.active, .pagination .pagination-item.swiper-pagination-bullet-active, .pagination .swiper-pagination-bullet.active, .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active, .swiper-pagination .pagination-item.active, .swiper-pagination .pagination-item.swiper-pagination-bullet-active, .swiper-pagination .swiper-pagination-bullet.active, .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        width: 10px;
        height: 10px;
        border-width: 1px;
    }
}

.pagination.light .pagination-item, .pagination.light .swiper-pagination-bullet, .swiper-pagination.light .pagination-item, .swiper-pagination.light .swiper-pagination-bullet {
    background-color: #f0f2f2;
}

    .pagination.light .pagination-item.active, .pagination.light .swiper-pagination-bullet.active, .swiper-pagination.light .pagination-item.active, .swiper-pagination.light .swiper-pagination-bullet.active {
        background-color: transparent;
        border: 2px solid #0795d1;
    }

.pagination.dark .pagination-item, .pagination.dark .swiper-pagination-bullet, .swiper-pagination.dark .pagination-item, .swiper-pagination.dark .swiper-pagination-bullet {
    background-color: #2f2c2c;
}

    .pagination.dark .pagination-item.active, .pagination.dark .swiper-pagination-bullet.active, .swiper-pagination.dark .pagination-item.active, .swiper-pagination.dark .swiper-pagination-bullet.active {
        background-color: transparent;
        border: 2px solid #fff;
    }

.pagination.grey .pagination-item, .pagination.grey .owl-dot, .swiper-pagination.grey .pagination-item, .swiper-pagination.grey .owl-dot {
    background-color: #d7d7d7;
}

    .pagination.grey .pagination-item.active, .pagination.grey .owl-dot.active, .swiper-pagination.grey .pagination-item.active, .swiper-pagination.grey .owl-dot.active {
        background-color: transparent;
        border: 2px solid #0795d1;
    }

.pagination.pagination-vertical .pagination-item, .pagination.pagination-vertical .owl-dot, .swiper-pagination.pagination-vertical .pagination-item, .swiper-pagination.pagination-vertical .owl-dot {
    display: block;
    margin: 9px auto;
    background-color: #acd373;
}

    .pagination.pagination-vertical .pagination-item.active, .pagination.pagination-vertical .owl-dot.active, .swiper-pagination.pagination-vertical .pagination-item.active, .swiper-pagination.pagination-vertical .owl-dot.active {
        border-color: #fff;
        background-color: transparent;
    }

/*------------- #NAVIGATION --------------*/
.navigation {
    margin: 20px auto;
    width: 100%;
    position: relative;
    max-width: 770px;
    text-align: center;
}

    .navigation a {
        position: relative;
        background: #fff;
        display: inline-block;
        margin: 0 12px 0 0;
        width: 60px;
        height: 60px;
        line-height: 60px;
        text-align: center;
        border: 2px solid transparent;
        text-transform: uppercase;
        color: #acacac;
        font-size: 20px;
        border-radius: 100%;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
    }

@media (max-width: 640px) {
    .navigation a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
        margin: 0 8px 0 0;
    }
}

@media (max-width: 460px) {
    .navigation a {
        width: 25px;
        height: 25px;
        line-height: 22px;
        font-size: 12px;
        margin: 0 8px 0 0;
    }
}

.navigation a:hover {
    color: #0795d1;
}

.navigation a.current {
    border-color: #0795d1;
    background-color: transparent;
    color: #0795d1;
}

.navigation a span {
    position: relative;
}

.navigation a.bg-border-color {
    background-color: #f7f9f9;
}

    .navigation a.bg-border-color.current {
        background-color: transparent;
    }

.navigation .next, .navigation .btn-next {
    position: relative;
    float: right;
}

.navigation .prev, .navigation .btn-prev {
    position: relative;
    float: left;
}

.download {
    background-color: #f7f9f9;
    display: block;
    margin: 10px 0;
    padding: 10px;
    font-weight: 500;
    height: 100%;
    margin-left: -20px;
}

    .download span {
        font-size: 13px;
        font-weight: 400;
    }

    .download:hover {
        background-color: #e5edef;
    }

/*------------- #SOCIALS --------------*/
.socials .social__item {
    margin-left: 15px;
}

    .socials .social__item i {
        font-size: 22px;
    }

    .socials .social__item:hover i {
        color: #00305c;
    }

@media (max-width: 320px) {
    .socials .social__item {
        margin-left: 5px;
    }
}

.socials .social__item:first-child {
    margin-left: 0;
}

.socials .social__item svg {
    width: 36px;
    height: 36px;
}

.socials .social__item img {
    height: 24px;
}

/*------------- #LOCAL-SEO --------------*/
.local-seo img {
    position: relative;
}

@media (max-width: 1024px) {
    .local-seo img {
        width: 70%;
    }
}

.local-seo img:last-child {
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
}

@media (max-width: 768px) {
    .local-seo img:last-child {
        bottom: -55px;
    }
}

@media (max-width: 320px) {
    .local-seo img:last-child {
        bottom: -25px;
    }
}

.local-seo img:nth-child(2) {
    position: absolute;
    right: 0;
    bottom: 0;
}

/*------------- #ACCORDIONS --------------*/
.accordion {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .accordion .accordion-panel {
        position: relative;
        background: #fff;
        border-radius: 4px;
    }

        .accordion .accordion-panel:after {
            content: '';
            display: block;
            width: 1px;
            height: 35px;
            position: absolute;
            left: 70px;
            top: 50%;
            background-color: #cccccc;
            transform: translate(0, -50%);
            -webkit-transform: translate(0, -50%);
            -ms-transform: translate(0, -50%);
            -webkit-transition: all .3s ease;
            transition: all .3s ease;
        }

        .accordion .accordion-panel.active:after {
            opacity: 0;
            height: 80%;
        }

        .accordion .accordion-panel .accordion-heading {
            display: table;
            padding: 25px 30px;
            font-size: 18px;
            -webkit-transition: all .3s ease;
            transition: all .3s ease;
        }

        .accordion .accordion-panel .cart-total {
            padding-bottom: 20px;
        }

@media (max-width: 570px) {
    .accordion .accordion-panel .accordion-heading {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .accordion .accordion-panel .accordion-heading {
        padding: 15px;
    }
}

.accordion .accordion-panel .accordion-heading span {
    display: table-cell;
    vertical-align: middle;
}

    .accordion .accordion-panel .accordion-heading span + span {
        padding-left: 30px;
        width: 100%;
        line-height: 20px;
        padding-bottom: 0;
    }

    .accordion .accordion-panel .accordion-heading span.status {
        padding: 19px;
        border: 1px solid #ededed;
        color: #009edf;
        font-size: 14pt;
    }

.accordion .panel-heading.active .accordion-heading span.status {
    padding: 19px;
    border: 1px solid #00639d;
    color: #fff;
    font-size: 14pt;
}

    .accordion .panel-heading.active .accordion-heading span.status i {
        opacity: 1;
        color: #0795d1;
    }

.accordion .accordion-panel .accordion-heading .icon {
    font-size: 20px;
    color: #cccccc;
    padding-right: 30px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 1;
}

    .accordion .accordion-panel .accordion-heading .icon .active {
        opacity: 0;
        position: absolute;
        left: 30px;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
    }

.accordion .panel-info {
    font-size: 15px;
    line-height: 1.3;
    padding: 10px 20px 30px 97px;
    border-radius: 0 0 50px 50px;
    margin-bottom: 5px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

@media (max-width: 480px) {
    .accordion .panel-info {
        padding-left: 83px;
    }
}

.accordion .panel-heading {
    margin-bottom: 5px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

    .accordion .panel-heading.active {
        border-radius: 50px 50px 0 0;
        margin-bottom: 0;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
    }

        .accordion .panel-heading.active .accordion-heading {
            -webkit-transition: all .3s ease;
            transition: all .3s ease;
        }

            .accordion .panel-heading.active .accordion-heading i {
                opacity: 0;
                color: #0795d1;
            }

                .accordion .panel-heading.active .accordion-heading i.active {
                    opacity: 1;
                    top: 26px;
                }

        .accordion .panel-heading.active a {
            color: #ffffff;
            padding-bottom: 10px;
            background-color: #00538f;
        }

.accordion__title {
    font-size: 19px;
    font-weight: 300;
}

.accordion__content__a {
    display: inline-block !important;
    color: #2dafd6 !important;
    font-size: 15px;
    text-decoration: underline;
}

.accordion .panel-heading:hover .accordion-heading {
    color: #0795d1;
}

    .accordion .panel-heading:hover .accordion-heading i {
        color: #0795d1;
    }

.accordion__module .after::after {
    right: 72%;
    top: 36%;
    width: 2%;
}

@media(max-width: 768px) {
    .accordion .panel-heading.active .accordion-heading i.active {
        opacity: 1;
        top: 20px;
    }

    .accordion .accordion-panel .accordion-heading span + span {
        padding-left: 10px;
        width: 100%;
    }

    .accordion .accordion-panel:after {
        left: 40px;
    }

    .cart-main .cart-product-wrap-title-main tr > th {
        padding: 10px 0;
    }
}
/*=====================================================
                Transition
=======================================================*/
.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    transition: opacity .15s linear;
}

    .fade.in {
        opacity: 1;
    }

.collapse {
    display: none;
}

    .collapse.in {
        display: block;
    }

tr.collapse.in {
    display: table-row;
}

tbody.collapse.in {
    display: table-row-group;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-duration: .35s;
    transition-duration: .35s;
    -webkit-transition-property: height, visibility;
    transition-property: height, visibility;
}

/*------------- #PAGINATION-ARROW --------------*/
.pagination-arrow {
    padding: 100px 0 110px;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .pagination-arrow {
        padding: 40px 0 50px;
    }
}

.pagination-arrow .btn-prev-wrap {
    left: 5px;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
}

    .pagination-arrow .btn-prev-wrap .btn-prev {
        position: relative;
        margin-right: 35px;
    }

        .pagination-arrow .btn-prev-wrap .btn-prev:hover {
            margin-left: 0;
        }

    .pagination-arrow .btn-prev-wrap .btn-content {
        position: relative;
    }

@media (max-width: 800px) {
    .pagination-arrow .btn-prev-wrap .btn-content {
        display: none;
    }
}

.pagination-arrow .btn-prev-wrap .btn-content .btn-content-title {
    text-transform: uppercase;
    font-size: 18px;
    color: #2f2c2c;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.pagination-arrow .btn-prev-wrap .btn-content .btn-content-subtitle {
    font-size: 14px;
    margin-bottom: 0;
    color: #acacac;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.pagination-arrow .btn-prev-wrap:hover {
    margin-left: -2px;
}

    .pagination-arrow .btn-prev-wrap:hover .btn-content .btn-content-title {
        color: #0795d1;
    }

    .pagination-arrow .btn-prev-wrap:hover .btn-content .btn-content-subtitle {
        color: #2f2c2c;
    }

    .pagination-arrow .btn-prev-wrap:hover .btn-prev {
        fill: #0795d1;
    }

.pagination-arrow .all-project {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

    .pagination-arrow .all-project i {
        font-size: 50px;
        color: #d7d7d7;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
    }

    .pagination-arrow .all-project:hover i {
        color: #0795d1;
    }

.pagination-arrow .btn-next-wrap {
    right: 5px;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
}

    .pagination-arrow .btn-next-wrap .btn-next {
        position: relative;
    }

        .pagination-arrow .btn-next-wrap .btn-next:hover {
            margin-right: 0;
        }

    .pagination-arrow .btn-next-wrap .btn-content {
        position: relative;
        text-align: right;
        margin-right: 35px;
    }

@media (max-width: 800px) {
    .pagination-arrow .btn-next-wrap .btn-content {
        display: none;
    }
}

.pagination-arrow .btn-next-wrap .btn-content .btn-content-title {
    text-transform: uppercase;
    font-size: 18px;
    color: #2f2c2c;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.pagination-arrow .btn-next-wrap .btn-content .btn-content-subtitle {
    font-size: 14px;
    margin-bottom: 0;
    color: #acacac;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.pagination-arrow .btn-next-wrap:hover {
    margin-right: -2px;
}

    .pagination-arrow .btn-next-wrap:hover .btn-content .btn-content-title {
        color: #0795d1;
    }

    .pagination-arrow .btn-next-wrap:hover .btn-content .btn-content-subtitle {
        color: #2f2c2c;
    }

    .pagination-arrow .btn-next-wrap:hover .btn-next {
        fill: #0795d1;
    }

.pagination-arrow span {
    display: block;
}

/*------------- #ANIMATION-ICON --------------*/
.js-animate-icon svg {
    opacity: 0;
    -webkit-transition: opacity 200ms linear;
    transition: opacity 200ms linear;
}

.js-animate-icon .drawsvg-initialized {
    opacity: 1;
}

.animate-3d-holder {
    position: relative;
    cursor: pointer;
}

/*------------- #INPUT --------------*/
input {
    padding: 20px 40px;
    border-color: transparent;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    font-size: 16px;
    color: #acacac;
    color: #87959c;
    font-weight: 500;
    margin-bottom: 30px;
}

    input.input-standard-grey {
        background-color: #f7f9f9;
    }

        input.input-standard-grey:focus {
            background-color: #fff;
            color: #0795d1;
            -webkit-box-shadow: 17px 0 60px #d3dcdc;
            box-shadow: 17px 0 60px #d3dcdc;
        }

        input.input-standard-grey.focus-white:focus {
            background-color: #fff;
            -webkit-box-shadow: 25px 20px 20px -15px rgba(0, 0, 0, 0.3);
            box-shadow: 25px 20px 20px -15px rgba(0, 0, 0, 0.3);
        }

    input.input-dark {
        background-color: #373434;
        color: #797676;
    }

    input.input-white {
        background-color: #fff;
    }

textarea {
    padding: 20px 40px;
    border-color: transparent;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    font-size: 16px;
    color: #acacac;
    height: 100%;
    margin-bottom: 30px;
}

    textarea.input-standard-grey {
        background-color: #f7f9f9;
    }

        textarea.input-standard-grey:focus {
            background-color: #fff;
            color: #0795d1;
            -webkit-box-shadow: 17px 0 60px #d3dcdc;
            box-shadow: 17px 0 60px #d3dcdc;
        }

        textarea.input-standard-grey.focus-white:focus {
            background-color: #fff;
            -webkit-box-shadow: 25px 20px 20px -15px rgba(0, 0, 0, 0.3);
            box-shadow: 25px 20px 20px -15px rgba(0, 0, 0, 0.3);
        }

    textarea.input-dark {
        background-color: #373434;
        color: #797676;
    }

    textarea.input-white {
        background-color: #fff;
    }

/*------------- #styled_selects --------------*/
.nice-select {
    -webkit-tap-highlight-color: transparent;
    padding: 20px 40px 20px 20px;
    border-color: transparent;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    font-size: 16px;
    margin-bottom: 30px;
    border-radius: 0;
    position: relative;
    background-color: #f7f9f9;
    color: #ccc;
    color: #87959c;
}

    .nice-select.white {
        background-color: white;
        color: #2f2c2c;
    }

    .nice-select:focus {
        background-color: #fff;
        -webkit-box-shadow: 17px 0 60px #d3dcdc;
        box-shadow: 17px 0 60px #d3dcdc;
    }

    .nice-select.focus-white:focus {
        background-color: #fff;
        -webkit-box-shadow: 25px 20px 20px -15px rgba(0, 0, 0, 0.3);
        box-shadow: 25px 20px 20px -15px rgba(0, 0, 0, 0.3);
    }

    .nice-select:after {
        border-bottom: 2px solid #ccc;
        border-right: 2px solid #ccc;
        content: '';
        display: block;
        height: 10px;
        margin-top: -8px;
        pointer-events: none;
        position: absolute;
        right: 20px;
        top: 50%;
        -webkit-transform-origin: 66% 66%;
        -ms-transform-origin: 66% 66%;
        transform-origin: 66% 66%;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
        width: 10px;
    }

    .nice-select.open:after {
        -webkit-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }

    .nice-select.open .list {
        opacity: 1;
        pointer-events: auto;
        -webkit-transform: scale(1) translateY(0);
        -ms-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
    }

    .nice-select .list {
        background-color: #fff;
        border-radius: 0;
        border: 1px solid #f7f9f9;
        -webkit-box-shadow: 25px 20px 20px -15px rgba(0, 0, 0, 0.3);
        box-shadow: 25px 20px 20px -15px rgba(0, 0, 0, 0.3);
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin-top: 4px;
        opacity: 0;
        overflow: hidden;
        padding: 0;
        pointer-events: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
        transform-origin: 50% 0;
        -webkit-transform: scale(0.75) translateY(-40px/2);
        -ms-transform: scale(0.75) translateY(-40px/2);
        transform: scale(0.75) translateY(-40px/2);
        -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
        transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
        z-index: 9;
    }

.login .nice-select .list {
    border-radius: 0;
    height: 193px;
    overflow-y: scroll;
}

.nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important;
}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 38px;
    list-style: none;
    min-height: 38px;
    outline: none;
    padding-left: 40px;
    padding-right: 60px;
    text-align: center;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    margin: 0;
    font-size: 16px;
}

    .nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
        background-color: #f7f9f9;
    }

    .nice-select .option:hover {
        color: #0795d1;
    }

    .nice-select .option.selected {
        font-weight: bold;
    }

    .nice-select .option.disabled {
        background-color: transparent;
        cursor: default;
        color: #acacac;
    }

        .nice-select .option.disabled:hover {
            color: #acacac;
        }

input.nice-select {
    padding: 14px 40px 14px 20px;
}

.nice-select-wrap:after {
    border-bottom: 2px solid #ccc;
    border-right: 2px solid #ccc;
    content: '';
    display: block;
    height: 10px;
    margin-top: -8px;
    pointer-events: none;
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate( 45deg );
    -ms-transform: rotate(45deg);
    transform: rotate( 45deg );
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 10px;
}

.no-csspointerevents .nice-select .list {
    display: none;
}

.no-csspointerevents .nice-select.open .list {
    display: block;
}

.checkbox {
    position: relative;
}

    .checkbox input[type=checkbox] {
        display: none;
    }

    .checkbox label {
        display: inline-block;
        padding-left: 30px;
        color: #2f2c2c;
    }

        .checkbox label:before {
            content: "";
            display: inline-block;
            width: 14px;
            height: 14px;
            position: absolute;
            left: 0;
            top: 5px;
            border-radius: 3px;
            background-color: #0795d1;
            border: none;
        }

    .checkbox input[type=checkbox]:checked + label:before {
        content: "\2714";
        font-size: 14px;
        color: #fff;
        text-align: center;
        line-height: 14px;
    }

    .checkbox.checkbox-with-background {
        border-radius: 50px;
        background-color: #f7f9f9;
        padding: 15px 25px;
        display: inline-block;
    }

        .checkbox.checkbox-with-background label:before {
            left: 30px;
            bottom: 20px;
        }

.alert {
    border-radius: 30px;
    -webkit-box-shadow: 9px 9px 9px 0 rgba(47, 44, 44, 0.2);
    box-shadow: 9px 9px 9px 0 rgba(47, 44, 44, 0.2);
    border: none;
    margin: 15px 0;
    font-size: 16px;
    padding: 20px;
}

.alert-heading {
    color: inherit;
}

.alert-link {
    font-weight: bold;
}

.alert-dismissible .close {
    position: relative;
    top: -0.75rem;
    right: -1.25rem;
    padding: 0.75rem 1.25rem;
    color: inherit;
}

.alert-success {
    background-color: #3cb878;
    color: rgba(255, 255, 255, 0.7);
}

    .alert-success hr {
        border-top-color: #b3f3b4;
    }

    .alert-success .alert-link {
        color: #b3f3b4;
    }

.alert-info {
    background-color: #0795d1;
    color: rgba(255, 255, 255, 0.7);
}

    .alert-info hr {
        border-top-color: #b7fff2;
    }

    .alert-info .alert-link {
        color: #b7fff2;
    }

.alert-warning {
    background-color: #fcb03b;
    color: rgba(255, 255, 255, 0.7);
}

    .alert-warning hr {
        border-top-color: #ffe4b4;
    }

    .alert-warning .alert-link {
        color: #ffe4b4;
    }

.alert-danger {
    background-color: #f15b26;
    color: rgba(255, 255, 255, 0.7);
}

    .alert-danger hr {
        border-top-color: #ffbcba;
    }

    .alert-danger .alert-link {
        color: #ffbcba;
    }

/*------------- #TOP-BAR --------------*/
.top-bar {
    background-color: #fff;
    padding: 11px 0;
    font-size: 14px;
    color: #2f2c2c;
    -webkit-box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.3);
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 30;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

@media (max-width: 1024px) {
    .top-bar {
        width: 320px;
        -webkit-transform: translate(-50%, -100%);
        -ms-transform: translate(-50%, -100%);
        transform: translate(-50%, -100%);
        position: absolute;
        left: 50%;
        border-radius: 0 0 10px 10px;
    }
}

@media (max-width: 1024px) {
    .top-bar > .container {
        width: 100%;
    }
}

.top-bar.open {
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: 999;
}

.top-bar .flags {
    width: 16px;
    height: 16px;
    border-radius: 100%;
    overflow: hidden;
    float: left;
    margin-right: 10px;
    margin-top: 6px;
}

.top-bar .top-bar-contact {
    float: right;
    margin-left: 25px;
}

@media (max-width: 1024px) {
    .top-bar .top-bar-contact {
        float: none;
        padding-right: 30px;
    }
}

.top-bar .nice-select {
    float: left;
    padding: 0 40px 0 0;
    background-color: transparent;
    font-size: 14px;
    margin-bottom: 0;
    color: #0795d1;
}

@media (max-width: 1024px) {
    .top-bar .nice-select {
        float: none;
    }
}

.top-bar .nice-select span {
    color: #fff;
}

.top-bar .nice-select .option {
    color: #fff;
    padding-left: 0;
    padding-right: 0;
    font-size: 12px;
}

.top-bar .nice-select:after {
    height: 6px;
    width: 6px;
    margin-top: -4px;
}

.top-bar .nice-select:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
}

.top-bar .contact-item {
    float: left;
    padding: 0 20px;
    line-height: 28px;
    font-size: .85rem;
    position: relative;
}

@media (max-width: 1024px) {
    .top-bar .contact-item {
        padding: 0;
        margin-bottom: 15px;
        float: none;
    }
}

.top-bar .contact-item:first-child {
    padding-left: 0;
    padding-right: 20px;
}

@media (max-width: 1024px) {
    .top-bar .contact-item:first-child {
        padding: 0;
    }
}

.top-bar .contact-item:last-child {
    padding-right: 0;
}

    .top-bar .contact-item:last-child:after {
        display: none;
    }

.top-bar .contact-item:after {
    content: '|';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    color: #acacac;
}

@media (max-width: 1024px) {
    .top-bar .contact-item:after {
        display: none;
    }
}

.top-bar .nav-add {
    height: 28px;
    padding: 0;
}

    .top-bar .nav-add .js-cart-animate {
        line-height: 28px;
    }

.top-bar a {
    color: #504c4c;
}

    .top-bar a:hover {
        color: #00A0E1;
        border-color: #00A0E1;
    }

.top-bar span {
    color: #acacac;
}

.top-bar .follow_us {
    float: right;
}

@media (max-width: 1024px) {
    .top-bar .follow_us {
        float: none;
    }
}

.top-bar .login-block {
    float: right;
    margin-left: 30px;
}

.top-bar .pay-block {
    position: relative;
    float: right;
    padding-left: 25px;
    padding-right: 30px;
    margin-left: 2px;
}

    .top-bar .pay-block a {
        font-weight: 300;
    }

    .top-bar .pay-block > * {
        position: relative;
        z-index: 2
    }

    .top-bar .pay-block:hover > * {
        color: #fff;
    }

    .top-bar .pay-block:before {
        content: "";
        transform: skewX(-35deg);
        -ms-transform: skewX(-35deg);
        background: #00a0e1;
        background: -webkit-gradient(linear,left top,right top,from(#00a0e1),to(#006c96));
        background: -webkit-linear-gradient(top,#00a0e1,#006c96);
        background: -moz-linear-gradient(left,#00a0e1,#006c96);
        background: -ms-linear-gradient(left,#00a0e1,#006c96);
        background: -o-linear-gradient(left,#00a0e1,#006c96);
        position: absolute;
        top: -10px;
        left: 0;
        bottom: -10px;
        right: 0;
    }

@media( max-width: 768px) {
    .top-bar .pay-block:before {
        content: "";
        transform: skewX(0deg);
        -ms-transform: skewX(0deg);
        background: #00a0e1;
        background: -webkit-gradient(linear,left top,right top,from(#00a0e1),to(#006c96));
        background: -webkit-linear-gradient(top,#00a0e1,#006c96);
        background: -moz-linear-gradient(left,#00a0e1,#006c96);
        background: -ms-linear-gradient(left,#00a0e1,#006c96);
        background: -o-linear-gradient(left,#00a0e1,#006c96);
        position: absolute;
        top: -5px;
        left: 0;
        bottom: -5px;
        right: 0;
    }
}

@media (max-width: 1024px) {
    .top-bar .login-block {
        float: none;
        margin-left: 0;
        margin-bottom: 15px;
        padding-left: 20px;
        padding-right: 30px;
    }

    .top-bar .pay-block {
        float: none;
        margin-left: 0;
        margin-bottom: 15px;
        padding-left: 20px;
        padding-right: 30px;
    }
}

.top-bar .login-block img {
    width: 28px;
    height: 28px;
    margin-right: 10px;
}

.top-bar .pay-block img {
    width: 28px;
    height: 28px;
    margin-right: 10px;
}

.top-bar .socials {
    display: inline-block;
    margin-left: 10px;
}

    .top-bar .socials img {
        width: 16px;
        height: auto;
    }

    .top-bar .socials a {
        border: none;
    }

    .top-bar .socials .social__item {
        margin-left: 10px;
    }

.top-bar + .header {
    top: 50px;
}

@media (max-width: 1024px) {
    .top-bar + .header {
        top: 0;
    }
}

.top-bar + .header.headroom--not-top {
    top: 0;
}

.top-bar .top-bar-close {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 10px;
    top: 10px;
    display: none;
    border: none;
}

@media (max-width: 1024px) {
    .top-bar .top-bar-close {
        display: block;
    }
}

.top-bar .top-bar-close span {
    display: block;
    height: 2px;
    background: #707070;
    border-radius: 10px;
    margin: auto;
    width: 100%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    top: 50%;
    position: absolute;
}

    .top-bar .top-bar-close span:first-of-type {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
    }

    .top-bar .top-bar-close span:last-of-type {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
    }

.top-bar-dark {
    background-color: #00305c;
    color: #fff;
}

    .top-bar-dark a {
        color: #ffffff;
    }

    .top-bar-dark span {
        color: #fff;
    }

    .top-bar-dark .nice-select .list {
        width: 100px;
        background-color: #00305c;
        border: none;
        -webkit-box-shadow: 0 5px 40px rgba(255, 255, 255, 0.3);
        box-shadow: 0 5px 40px rgba(255, 255, 255, 0.3);
    }

    .top-bar-dark .nice-select .option.selected.focus {
        background-color: transparent;
    }

        .top-bar-dark .nice-select .option.selected.focus:hover {
            background-color: #286094;
        }

    .top-bar-dark .nice-select .option:hover {
        background-color: #286094;
    }


/* Popup */
#sign-in-dialog,
#layoutModalMain,
#small-dialog-1,
#small-dialog-2,
#small-dialog-3,
#small-dialog-4,
#small-dialog {
    background: #fff;
    padding: 40px;
    padding-top: 0;
    text-align: left;
    max-width: 610px;
    margin: 40px auto;
    position: relative;
    box-sizing: border-box;
    border-radius: 4px;
    max-width: 550px;
}


    #sign-in-dialog-1 span.line,
    #sign-in-dialog-2 span.line,
    #sign-in-dialog-3 span.line,
    #sign-in-dialog-4 span.line,
    #sign-in-dialog span.line,
    #layoutModalMain span.line,
    #small-dialog span.line {
        padding-top: 0;
    }

.my-mfp-zoom-in .zoom-anim-dialog {
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
    opacity: 0.001; /* Chrome opacity transition bug */
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}
/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.85;
}
/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}

.dupa {
    display: block;
    height: 30px;
}


/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 40px auto;
    border-radius: 4px;
}

/* The shadow behind the image */
.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 18px rgba(11,11,11, 0.6);
}

.mfp-figure {
    line-height: 0;
}

.mfp-bottom-bar {
    margin-top: -30px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #f3f3f3;
    word-break: break-word;
    padding-right: 36px;
}

.mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}


/* Media Queries for Magnific Popup */
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {

    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0
    }

    /* The shadow behind the image */
    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

        .mfp-img-mobile .mfp-bottom-bar:empty {
            padding: 0;
        }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }
}


.mfp-ie7 .mfp-img {
    padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
    width: 600px;
    left: 50%;
    margin-left: -300px;
    margin-top: 5px;
    padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
    padding: 0;
}

.mfp-ie7 .mfp-content {
    padding-top: 44px;
}

.mfp-ie7 .mfp-close {
    top: 0;
    right: 0;
    padding-top: 0;
}

.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

    .mfp-fade.mfp-bg.mfp-ready {
        opacity: 0.92;
        background-color: #111;
    }

    .mfp-fade.mfp-bg.mfp-removing {
        opacity: 0;
    }

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

/* Popup tabs
------------------------------------- */
.popup-tabs-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: block;
    height: 62px;
    background: #f8f8f8;
    border-radius: 4px 4px 0 0;
    background-color: #00A0E1;
    color: #fff;
}

    .popup-tabs-nav li {
        float: left;
        line-height: 62px;
        height: 62px;
        padding: 0;
        margin-right: 0;
        position: relative;
    }

        .popup-tabs-nav li:first-child a {
            border-radius: 4px 0 0 0;
        }

        .popup-tabs-nav li a,
        .popup-tab-reviews {
            -webkit-transition: all 0.25s ease-in-out;
            transition: all 0.25s ease-in-out;
        }

        .popup-tabs-nav li a {
            border: none;
            color: #fff;
            display: inline-block;
            outline: none;
            padding: 0;
            text-decoration: none;
            font-size: 16px;
            z-index: 10;
            position: relative;
            height: 100%;
            padding: 0 30px;
            border-right: 1px solid transparent;
            border-left: 1px solid transparent;
            transition: all 0.3s, font-weight 0s;
        }

        .popup-tabs-nav li.active {
            background-color: #fff;
            position: relative;
        }

            /*
.popup-tabs-nav li a:hover {
  background-color: #f3f3f3;
  height: calc(100% - 1px);
  color: #333;
}


.popup-tabs-nav li:last-child a:hover {
  border-right: 1px solid #e0e0e0;
}
*/

            .popup-tabs-nav li.active a:hover,
            .popup-tabs-nav li.active {
                background-color: #fff;
            }

                .popup-tabs-nav li.active a {
                    color: #66676b;
                    font-weight: 600;
                }

                .popup-tabs-nav li.active:after {
                    content: "";
                    position: absolute;
                    display: block;
                    bottom: 0;
                    left: 0;
                    width: 100%;
                    height: 1px;
                    background-color: #fff;
                    z-index: 111;
                }

        .popup-tabs-nav li:first-child.active {
            border-left: none;
            border-radius: 4px 0 0 0;
        }

.popup-tab-content {
    padding: 50px 35px;
    position: relative;
    z-index: 10;
    display: inline-block;
    width: 100%;
}

    .popup-tab-content .switch-field label {
        line-height: 30px;
    }

    .popup-tab-content .switch-field input:checked + label {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        color: rgba(255, 255, 255, 0.9);
        background-color: #085187;
    }

    .popup-tab-content textarea {
        width: 100%;
        min-height: 140px;
        border: 1px solid #d4d4d4;
        padding: 20px 20px;
    }

.popup-tabs-container {
    width: 100%;
}

    .popup-tabs-container .total {
        color: #00A0E1;
        font-size: 20px;
        font-weight: 600;
        padding: 10px 0;
    }

    .popup-tabs-container .nice-select {
        border-radius: 3px;
        background-color: #f7f9f9;
        border: 1px solid #d4d4d4;
        color: #2f2c2c;
        padding: 10px 15px;
    }

        .popup-tabs-container .nice-select .list {
            background-color: #fff;
            border-radius: 4px;
            border: 1px solid #d4d4d4;
        }

    .popup-tabs-container .cart-main .cart_item td {
        padding: 0 10px 0 0;
    }

    .popup-tabs-container .quantity {
        overflow: hidden;
    }

        .popup-tabs-container .quantity .quantity-minus {
            display: block;
            float: left;
            padding: 0 10px;
            background-color: #f1f3f3;
            border-radius: 3px 0 0 3px;
            font-size: 32px;
            font-weight: 500;
            border-right: 2px solid #e3e9e9;
            color: #cfcfcf;
            -webkit-transition: all .3s ease;
            transition: all .3s ease;
        }

        .popup-tabs-container .quantity input {
            max-width: 40px;
            float: left;
            background-color: #f7f9f9;
            padding: 12px 10px;
            font-size: 16px;
            text-align: center;
            border-radius: 0;
            margin-bottom: 0;
        }

        .popup-tabs-container .quantity .quantity-plus {
            display: block;
            float: left;
            padding: 0 10px;
            background-color: #f1f3f3;
            border-radius: 0 3px 3px 0;
            font-size: 32px;
            font-weight: 500;
            border-left: 2px solid #e3e9e9;
            color: #cfcfcf;
            -webkit-transition: all .3s ease;
            transition: all .3s ease;
        }

    .popup-tabs-container .container_check {
        display: block;
        position: relative;
        font-size: 14px;
        font-size: 0.875rem;
        padding-left: 10px;
        line-height: 1.4;
        margin-bottom: 10px;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .popup-tabs-container hr {
        opacity: .3;
    }

.popup-tab-content p:last-child {
    margin-bottom: 0;
}

.dialog-with-tabs#sign-in-dialog,
.dialog-with-tabs#small-dialog-1,
.dialog-with-tabs#small-dialog-2,
.dialog-with-tabs#small-dialog-3,
.dialog-with-tabs#small-dialog-4,
.dialog-with-tabs#small-dialog {
    padding: 0;
    color: #666;
    max-width: 540px;
    box-shadow: 0 0 25px rgba(0,0,0,0.25);
}

.dialog-with-tabs#layoutModalMain {
    padding: 0;
    color: #666;
    max-width: 800px;
    box-shadow: 0 0 25px rgba(0,0,0,0.25);
}

.dialog-with-tabs#small-dialog-4 {
    max-width: 940px;
}

/* Close Button Adjustments*/
#sign-in-dialog.dialog-with-tabs .mfp-close,
#small-dialog.dialog-with-tabs .mfp-close,
#layoutModalMain.dialog-with-tabs .mfp-close,
#small-dialog-1.dialog-with-tabs .mfp-close,
#small-dialog-2.dialog-with-tabs .mfp-close,
#small-dialog-3.dialog-with-tabs .mfp-close,
#small-dialog-4.dialog-with-tabs .mfp-close {
    color: #fff;
    background-color: rgba(248, 248, 248, 0.28);
    border-radius: 0 4px 0 0;
    top: 0;
    right: 0;
    width: 62px;
    height: 61px;
}

.dialog-with-tabs .mfp-close:before,
.dialog-with-tabs .mfp-close:before {
    font-size: 24px;
}


/* Chrome autocomplete highlight reset */
.dialog-with-tabs input:-webkit-autofill,
.dialog-with-tabs input:focus:-webkit-autofill {
    border: 1px solid #e0e0e0;
    -webkit-box-shadow: inset 0 0 0px 9999px white, 0 1px 4px rgba(0,0,0,0.07);
}

.dialog-with-tabs input {
    margin-bottom: 22px;
    padding: 10px 15px;
    border: 1px solid #d4d4d4;
}

/* Forgot Password Link */
.dialog-with-tabs .forgot-password {
    font-size: 14px;
    color: #888;
    margin-top: -12px;
    display: block;
}

    .dialog-with-tabs .forgot-password:hover {
        color: #66676b;
    }


/* Submit Button Adjustments */
.dialog-with-tabs .button {
    height: 48px;
    width: 100% !important;
    margin-top: 25px;
    box-shadow: 0 4px 12px rgba(102,103,107,0.15);
}

/* Welcome Text */
.welcome-text {
    display: block;
    text-align: center;
    color: #808080;
    margin-bottom: 33px;
}

    .welcome-text h3 {
        display: block;
        font-weight: 700;
        color: #333;
        font-size: 24px;
    }

    .welcome-text span a {
        font-weight: 500;
    }

    .welcome-text span {
        display: block;
        margin-top: 4px;
    }

/* Notification Boxes
------------------------------------- */
#result .success,
.notification {
    line-height: 24px;
    margin-bottom: 15px;
    position: relative;
    padding: 20px 26px;
    padding-right: 50px;
    border-radius: 3px;
}

    .notification p {
        margin: 0;
        font-size: 15px;
    }

    #result .success,
    .notification.success {
        background-color: #EBF6E0;
    }

        #result .success,
        .notification.success,
        .notification.success a,
        .notification.success strong {
            color: #5f9025;
        }

    .notification.error {
        background-color: #ffe9e9;
    }

        .notification.error,
        .notification.error a,
        .notification.error strong {
            color: #de5959;
        }

    .notification.warning {
        background-color: #FBFADD;
    }

        .notification.warning,
        .notification.warning a,
        .notification.warning strong {
            color: #8f872e;
        }

    .notification.notice h4 {
        font-size: 19px;
        margin: 3px 0 15px 0;
    }

    .notification.notice h4,
    .notification.notice,
    .notification.notice a,
    .notification.notice strong {
        color: #3184ae
    }

    .notification.notice {
        background-color: #E9F7FE;
    }

        .notification.notice.large {
            padding: 32px 36px;
        }

    .notification strong {
        font-weight: 700;
    }

    .notification a {
        text-decoration: underline;
    }


body .notification strong {
    border: none;
}

.notification.success .close,
.notification.error .close,
.notification.warning .close,
.notification.notice .close {
    padding: 0px 9px;
    position: absolute;
    right: 0;
    top: 22px;
    display: block;
    height: 8px;
    width: 8px;
    cursor: pointer;
}

.notification.notice p span i {
    font-weight: 500;
}

.notification a.button {
    float: right;
    color: #fff;
    margin-top: 3px;
}

.notification.notice a.button {
    background-color: #388fc5;
}

.notification.warning a.button {
    background-color: #dfbe51;
}

.notification.error a.button {
    background-color: #d34c4c;
}

.notification.success a.button {
    background-color: #79ba38;
}

.notification.closeable a.close:before {
    content: "\f00d";
    font: normal normal normal 14px/1 FontAwesome;
    position: absolute;
    right: 25px;
    top: 0;
    cursor: pointer;
    font-weight: 600;
}

.paymentMethod {
    padding: 24px 35px;
    box-shadow: none;
    position: relative;
}

.method {
    position: absolute;
    right: 3px;
    top: 3px;
    bottom: 3px;
    left: 3px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid transparent;
    transition: all 0.5s;
}

    .method.visa {
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAARwAAACxCAMAAAAh3/JWAAAAulBMVEX///8AYbL9uCcAXrFfjMRBe739tyH9vkH9wlQAUqwAVa4cabZciMLw9PkAWa8AX7EAWK+Xstba4/D9tAD/8dwzc7oAT6uOq9N2msufttn4+/2nvdxulMjo7vbU3+7/uxy2yOLH1ejD0ueCo89PgsAASqoucLixxOClvNzh6fPssTtKf7//vg59n81wl8mKiIOok3RwfpHKolp7goznrkJjeZeulm5Qc52ChYefkHkAQqf9yGmZjX32tS+aTgvuAAAKNElEQVR4nO2daXvaOBCAxYqkawOyYTfmvmmAprBts0f3+v9/ax2IQRrNDDbqNnmezPshX3y/1jEjyUQ1dU1ASRoql5NowecoJ7kREJKDnGigBJ/4KKf10vfxKhE5DCKHQeQwiBwGkcMgchhEDgOQs6+/eVZbSs69eel85sXJOpScu+SlE+EXJxY5NCKHQeQwiBwGkcMgchhEDoPIYRA5DCKHQeQwiBwGkcMgchhEDoPIYRA5DCKHQeQwiBwGkcMgchhEDoPIYRA5DCKHQeQwiBwGkcMgchhEDoPIYWDk6OStE5FyZNkbs+xNsBE5DCKHQeQwiBwGkcMgchhEDsOrl9OaLNabzWa96Hz/L5gryunURyfA1yZD4pBxE+xYbJg8NG0e5t6hk/YqjeI4fSKOs1p9uPX2+T+pKGf+VxbFaIqRjohDmqkbna+LDTt3w3tQMlpdHRltJ8KJTqNGd3zhFjddjOXhCYdL6hWiVK1Wrc6ifZMZP5nVD/gB88jd7e60xXnwmm6619lnBhshSEz2sOBucPveYLyfKDWodwbjOncw4Ko2p7XMvBvPz4PScPc8p3UT11o6s4/aRIj/QmPcmMGrnKnjv1oS55W2q5qz/aBb/jmvbJDHDe8eInTHTezsZM6Vb+k+fmbXqgf3KO9FxHcd/1IHOhl+yJP7paqvu/nf0lzbWw1qsOygv4cxiJ3dEmsn92i9Oh/UatDFptg96+H39UD83E26yRs5tVssvocctYWvKMJ6kr37mGn/tKXj1ipzaqdz72V+z8foCXI9UFet3fPa1GmvVbtbocO7Ps7ZgdcbIzcLCrndLnVBrTrfwV253zpKb5CbuqGONbt862S33GFKKa6XswUvyW1R0eeMrFDGbaitvm6ZlnJjMDdzquDUNBVpcAREyKAfMn1vj5nbrtrtCqhV6Sn+oFpU+LB33tVy7sn5AfvapQmQA7ob47d0GnTjVvzWpmoVUjESbQw4lb7H7mhGd3IJesAFAuQM3fLvF9wuYw/UqlMd8SuGiXSzt+zd20GhbqCJVoOeWEr0FU8YIGcBKg0MkcegNTbWNtBgmU2xAf7yXJItn7uXcTct3oauoW7WXHSUXfGEAXIm4F5giLxynzNeW9v6oFYVFW4AWpwktaO9dnQ4pdb47bITktf8LFmAnDGoASBEppMqBVvOc4MwA11V5Kbqg3qU5EUQv9sh281FlxJWhAA5AyjHPQmZVCmvxpl2sWHklja/T5prExOPCRJVUI5iKuFgCBnsSt3ruyFy332PxmmuN4Y4EoYHbeXRJJ6yDfqHG/dUsT9cdJEQOffM5ZmkSsH+2gqcQZNjKgy/gAtq0CRiMerlU14vB/QszuXppCqnRdWqFqip1CARQhdecAzkVBrmOhIipwfiGEsAk1Qpr+k81yoopxaXfSTQACYpPBdWQy8RIocJ8pikSjG1CvbkeTu+VqVY+iUVyNlVf8AQOXSIzCRVyq9V1ticPzQaEQM3LuCUecHJH426u9KEyIEh8jlPNnRSlbMGfZXV/SCDnKZRohPGmji3M78m8wyRA0PkWrEB1jcwbAtC55q1aY0EcnkGcelOYKbyVHBA1b4m8wyRQ4XIXFKlvIbFzeZjLAcwCTvh4BW4Y9/odqZJUv0Bg2Y8iRAZJlUz9yiQIkTO2FwbzwGiOpcabbGCo/agU6j+fEFyQNPy3HiwSZXy3igYSyCGHTRUbLPCCg7swK7IPIPk3KEhMpdUKS8igWNk3sB9ITEip+MmaMGB42lXZJ5BcmCIfIhJYFK1BweBWuWNyy+ocVKTEBMHN2jBgZHGFZlnkBwsRB5Ebo4Tw9LsNp6wtc5ZU3aSbIbdxdwLjo+ASOOKzDNIThsJkUdcUvXE5cB14U82P5Nt/L1hNH664jw48wySA6I5Xb+UVKly77OjqeknxM6CKDiqE5x5BslBQmQ+qVJwOCuJ0RMPyMnyzIt4QPt/LqrhmWeQHPBu8jhrzSZVT4B+HjbXBZsMLzwJvFWQxp0LDh9sliJIjh8iMzNVR2CtIkPf8R1eeKDvGlVwvkHmGbYmEPQres8nVcoLW/FadaSPFx63pg7JgvMNMs8wOaCggOUR2ESamzvxb7N1gxUe9yE1XXBAjJqgE8gsYXL4b9eQiH9etlYd2WCdurUgA0acTsG5kKeUIEwO+5+xsLl+sG7lYjK4RdYx2c5TpuDAeZ7qmWeYHLhGx33DSLzupqq6xOrFB+8SVksGBo5AuB2ceYbJaTNyvKRKecNjpYJWbyHbufsHqcpTKDM4E555hslZ03L8pErxiyRJvFb/1Iov4eVNZAOXnlXOPMPkzOl1DTGWBrFLjynA9GjNFEPurXLrnE53VDnzDJPTIeWgy5Lh0mN32sVfGXZkCy5yanN6XIvnUz3zDJPjTcKd8JMqdaFWLd7X8MWMUE7RW42rFZwrMs/Ar2ao+8NrDNjHieYGaZJke6wRgktLijhnxMURCNUzz0A5CREFZtgJ6aXH6nkc2MT+A7TASHURPlHjqbScyplnoBxi3S+SVClu6fEpR0rStOveywR2VkXtqPyvWatnnoFy8M8wiEidWiSp7PYjMdlqXUQkrdkDbNWKEaCSS3LtC1bOPAPl4CEyPo2ypZYe59zbkrWJ9Gq/269qUerJL1oOGBtq5DsioLVy5hkoBw2R8QXU9NLjvMLBqbxEa6NhhTpseJ48hh856FXPY3fvHlp5zjNQDja3XcvwKRR3IZhtcFK+imTP3T0YjnXT8YJR+cEjlEA5WIhs8EUjcOmxFfNRfZ5P/NzSw7XcKdpNh2aegXKQEBlNqhS99NibzWEwRfgEliPiBSc48wyUg4TIaFKlvHG584qQ+V+l3RRLBOFHDnjBCZ7zDP2u3GstqG89yaXHeeKg0W9dPeJT2N0oVXC8meeqmWeoHK+5QJMqxSw9fqIdpxf1WGuY4EcORMEJnvMMlQNDZHIYglwkeaSvYz7iNeZsHX48QhSc4DnPUDn1GHy/TZxp7H7uHfnvelHPUiyyOarJrDn1fmYunazsRXlC5Sz6LjNiv0m3bYP+rsBgNjJR6rc/Oo169v5tQJfqogfuRdsX5jo8XtsPfWyHvfsoitP8RR9+xMGkcbYafv/f+Djw2uQcGM9n/W5vVG82R8thlc95vzGvUs5rQeQwiBwGkcMgchhEDoPIYRA5DEDO3z++ed79TMl5d/vm+YmR88NbR+QwiBwGkcMgchhEDoPIYRA5DCKHQeQwiBwGkcMgchhEDoPIYRA5DCKHQeQwiBwGkcMgchhEDoPIYRA5DCKHQeRg3E5zRA7K7a+Pvzx+mYocjA+fv3z69c8vMleOMP1l+jj94+PjVOT4TL9+/Pz508evIgdh+ueHx+lnKTk4099+//jljw/S5qBMP339599btrd6w+Rhzi23suvHd2+eH0g5go3IYRA5DCKHQeQwiBwGkcMgchie5bzQt8mvnKMc3awLPvogp6YFhNpRjoCSNP4DOMmKSOf115wAAAAASUVORK5CYII=);
    }

    .method.master-card {
        background-image: url(data:image/png;base64,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);
    }
