﻿

/*!/*!
 * Bootstrap Grid v4.3.1 (Optimized)
 * Licensed under MIT
 */

/* Base Setup */
:root {
    --grid-gutter-width: 30px;
    --grid-gutter-x: 15px;
}

html {
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

/* Container */

.container {
    width: 100%;
    padding-right: var(--grid-gutter-x);
    padding-left: var(--grid-gutter-x);
    margin-right: auto;
    margin-left: auto;
}


.container-fluid {
    width: 100%;
    padding-right: var(--grid-gutter-x);
    padding-left: var(--grid-gutter-x);
    margin-right: auto;
    margin-left: auto;
}

/* Container Breakpoints */
@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1200px;
    }
}

@media (min-width: 1366px) {
    .container {
        max-width: 1356px;
    }
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(-1 * var(--grid-gutter-x));
    margin-left: calc(-1 * var(--grid-gutter-x));
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

[class*="col-"] {
    position: relative;
    width: 100%;
    padding-right: var(--grid-gutter-x);
    padding-left: var(--grid-gutter-x);
    backface-visibility: hidden;
    transform: translateZ(0);
}

@media screen and (min-width: 768px) and (max-resolution: 150dpi) {
    .container {
        transform: none !important;
    }
}

/* Base Columns */
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
.col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col, .col-auto,
[class*="col-sm-"], [class*="col-md-"],
[class*="col-lg-"], [class*="col-xl-"] {
    position: relative;
    width: 100%;
    padding-right: var(--grid-gutter-x);
    padding-left: var(--grid-gutter-x);
}

/* Flex Columns */
@media screen and (min-resolution: 1dppx) {
    .container {
        transform: none !important;
        backface-visibility: hidden;
    }
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.col-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}


/* Order Classes */
.order-first {
    order: -1;
}

.order-last {
    order: 13;
}

@for $i from 0 through 12 {
    .order-# {
        $i
    }

{
    order: $i;
}

}

/* Offset Classes */
@for $i from 1 through 11 {
    .offset-# {
        $i
    }

{
    margin-left: percentage($i / 12);
}

}

/* Small Breakpoint */
@media (min-width: 576px) {
    .col-sm {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }
    
    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    @for $i from 1 through 12 {
        .col-sm-# {
            $i
        }
    }
}
  

{
    flex: 0 0 percentage($i / 12);
    max-width: percentage($i / 12);
}

}
}

.col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.col-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}



.order-first {
    -ms-flex-order: -1;
    order: -1;
}

.order-last {
    -ms-flex-order: 13;
    order: 13;
}

.order-0 {
    -ms-flex-order: 0;
    order: 0;
}

.order-1 {
    -ms-flex-order: 1;
    order: 1;
}

.order-2 {
    -ms-flex-order: 2;
    order: 2;
}

.order-3 {
    -ms-flex-order: 3;
    order: 3;
}

.order-4 {
    -ms-flex-order: 4;
    order: 4;
}

.order-5 {
    -ms-flex-order: 5;
    order: 5;
}

.order-6 {
    -ms-flex-order: 6;
    order: 6;
}

.order-7 {
    -ms-flex-order: 7;
    order: 7;
}

.order-8 {
    -ms-flex-order: 8;
    order: 8;
}

.order-9 {
    -ms-flex-order: 9;
    order: 9;
}

.order-10 {
    -ms-flex-order: 10;
    order: 10;
}

.order-11 {
    -ms-flex-order: 11;
    order: 11;
}

.order-12 {
    -ms-flex-order: 12;
    order: 12;
}

.offset-1 {
    margin-left: 8.333333%;
}

.offset-2 {
    margin-left: 16.666667%;
}

.offset-3 {
    margin-left: 25%;
}

.offset-4 {
    margin-left: 33.333333%;
}

.offset-5 {
    margin-left: 41.666667%;
}

.offset-6 {
    margin-left: 50%;
}

.offset-7 {
    margin-left: 58.333333%;
}

.offset-8 {
    margin-left: 66.666667%;
}

.offset-9 {
    margin-left: 75%;
}

.offset-10 {
    margin-left: 83.333333%;
}

.offset-11 {
    margin-left: 91.666667%;
}

@media (min-width: 576px) {
    .col-sm {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-sm-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-sm-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-sm-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-sm-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-sm-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-sm-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-sm-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-sm-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-sm-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-sm-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .order-sm-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .order-sm-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .order-sm-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .order-sm-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .order-sm-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .order-sm-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .order-sm-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .order-sm-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .order-sm-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .order-sm-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .order-sm-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .order-sm-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .order-sm-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .order-sm-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-sm-0 {
        margin-left: 0;
    }

    .offset-sm-1 {
        margin-left: 8.333333%;
    }

    .offset-sm-2 {
        margin-left: 16.666667%;
    }

    .offset-sm-3 {
        margin-left: 25%;
    }

    .offset-sm-4 {
        margin-left: 33.333333%;
    }

    .offset-sm-5 {
        margin-left: 41.666667%;
    }

    .offset-sm-6 {
        margin-left: 50%;
    }

    .offset-sm-7 {
        margin-left: 58.333333%;
    }

    .offset-sm-8 {
        margin-left: 66.666667%;
    }

    .offset-sm-9 {
        margin-left: 75%;
    }

    .offset-sm-10 {
        margin-left: 83.333333%;
    }

    .offset-sm-11 {
        margin-left: 91.666667%;
    }
}

@media (min-width: 768px) {
    .col-md {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-md-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-md-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-md-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-md-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-md-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-md-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-md-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-md-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-md-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .order-md-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .order-md-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .order-md-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .order-md-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .order-md-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .order-md-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .order-md-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .order-md-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .order-md-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .order-md-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .order-md-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .order-md-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .order-md-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .order-md-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-md-0 {
        margin-left: 0;
    }

    .offset-md-1 {
        margin-left: 8.333333%;
    }

    .offset-md-2 {
        margin-left: 16.666667%;
    }

    .offset-md-3 {
        margin-left: 25%;
    }

    .offset-md-4 {
        margin-left: 33.333333%;
    }

    .offset-md-5 {
        margin-left: 41.666667%;
    }

    .offset-md-6 {
        margin-left: 50%;
    }

    .offset-md-7 {
        margin-left: 58.333333%;
    }

    .offset-md-8 {
        margin-left: 66.666667%;
    }

    .offset-md-9 {
        margin-left: 75%;
    }

    .offset-md-10 {
        margin-left: 83.333333%;
    }

    .offset-md-11 {
        margin-left: 91.666667%;
    }
}

@media (min-width: 992px) {
    .col-lg {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-lg-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-lg-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-lg-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-lg-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-lg-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-lg-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-lg-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-lg-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-lg-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-lg-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-lg-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-lg-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .order-lg-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .order-lg-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .order-lg-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .order-lg-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .order-lg-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .order-lg-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .order-lg-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .order-lg-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .order-lg-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .order-lg-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .order-lg-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .order-lg-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .order-lg-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .order-lg-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-lg-0 {
        margin-left: 0;
    }

    .offset-lg-1 {
        margin-left: 8.333333%;
    }

    .offset-lg-2 {
        margin-left: 16.666667%;
    }

    .offset-lg-3 {
        margin-left: 25%;
    }

    .offset-lg-4 {
        margin-left: 33.333333%;
    }

    .offset-lg-5 {
        margin-left: 41.666667%;
    }

    .offset-lg-6 {
        margin-left: 50%;
    }

    .offset-lg-7 {
        margin-left: 58.333333%;
    }

    .offset-lg-8 {
        margin-left: 66.666667%;
    }

    .offset-lg-9 {
        margin-left: 75%;
    }

    .offset-lg-10 {
        margin-left: 83.333333%;
    }

    .offset-lg-11 {
        margin-left: 91.666667%;
    }
}

@media (min-width: 1200px) {
    .col-xl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-xl-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-xl-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-xl-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-xl-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xl-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-xl-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-xl-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xl-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-xl-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-xl-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xl-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-xl-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-xl-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-xl-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .order-xl-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .order-xl-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .order-xl-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .order-xl-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .order-xl-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .order-xl-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .order-xl-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .order-xl-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .order-xl-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .order-xl-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .order-xl-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .order-xl-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .order-xl-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .order-xl-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-xl-0 {
        margin-left: 0;
    }

    .offset-xl-1 {
        margin-left: 8.333333%;
    }

    .offset-xl-2 {
        margin-left: 16.666667%;
    }

    .offset-xl-3 {
        margin-left: 25%;
    }

    .offset-xl-4 {
        margin-left: 33.333333%;
    }

    .offset-xl-5 {
        margin-left: 41.666667%;
    }

    .offset-xl-6 {
        margin-left: 50%;
    }

    .offset-xl-7 {
        margin-left: 58.333333%;
    }

    .offset-xl-8 {
        margin-left: 66.666667%;
    }

    .offset-xl-9 {
        margin-left: 75%;
    }

    .offset-xl-10 {
        margin-left: 83.333333%;
    }

    .offset-xl-11 {
        margin-left: 91.666667%;
    }
}

.d-none {
    display: none !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-table {
    display: table !important;
}

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}

.d-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}

@media (min-width: 576px) {
    .d-sm-none {
        display: none !important;
    }

    .d-sm-inline {
        display: inline !important;
    }

    .d-sm-inline-block {
        display: inline-block !important;
    }

    .d-sm-block {
        display: block !important;
    }

    .d-sm-table {
        display: table !important;
    }

    .d-sm-table-row {
        display: table-row !important;
    }

    .d-sm-table-cell {
        display: table-cell !important;
    }

    .d-sm-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-sm-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }

    .d-md-inline {
        display: inline !important;
    }

    .d-md-inline-block {
        display: inline-block !important;
    }

    .d-md-block {
        display: block !important;
    }

    .d-md-table {
        display: table !important;
    }

    .d-md-table-row {
        display: table-row !important;
    }

    .d-md-table-cell {
        display: table-cell !important;
    }

    .d-md-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-md-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }

    .d-lg-inline {
        display: inline !important;
    }

    .d-lg-inline-block {
        display: inline-block !important;
    }

    .d-lg-block {
        display: block !important;
    }

    .d-lg-table {
        display: table !important;
    }

    .d-lg-table-row {
        display: table-row !important;
    }

    .d-lg-table-cell {
        display: table-cell !important;
    }

    .d-lg-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-lg-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 1200px) {
    .d-xl-none {
        display: none !important;
    }

    .d-xl-inline {
        display: inline !important;
    }

    .d-xl-inline-block {
        display: inline-block !important;
    }

    .d-xl-block {
        display: block !important;
    }

    .d-xl-table {
        display: table !important;
    }

    .d-xl-table-row {
        display: table-row !important;
    }

    .d-xl-table-cell {
        display: table-cell !important;
    }

    .d-xl-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-xl-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media print {
    .d-print-none {
        display: none !important;
    }

    .d-print-inline {
        display: inline !important;
    }

    .d-print-inline-block {
        display: inline-block !important;
    }

    .d-print-block {
        display: block !important;
    }

    .d-print-table {
        display: table !important;
    }

    .d-print-table-row {
        display: table-row !important;
    }

    .d-print-table-cell {
        display: table-cell !important;
    }

    .d-print-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-print-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

.flex-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

.flex-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}

.flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

.flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
}

.flex-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
}

.flex-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
}

.flex-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
}

.flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
}

.flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
}

.justify-content-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}

.justify-content-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
}

.align-items-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

.align-items-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

.align-items-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
}

.align-items-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
}

.align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
}

.align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
}

.align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
}

.align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
}

.align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
}

.align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
}

.align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
}

.align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
}

.align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
}

.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
}

.align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
}

.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
}

@media (min-width: 576px) {
    .flex-sm-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-sm-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-sm-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-sm-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-sm-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-sm-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-sm-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .flex-sm-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-sm-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-sm-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-sm-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-sm-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .justify-content-sm-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-sm-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-sm-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-sm-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-sm-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-sm-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-sm-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-sm-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-sm-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-sm-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-sm-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-sm-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-sm-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-sm-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-sm-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-sm-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-sm-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-sm-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-sm-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-sm-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-sm-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-sm-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 768px) {
    .flex-md-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-md-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-md-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-md-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-md-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-md-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-md-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .flex-md-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-md-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-md-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-md-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-md-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .justify-content-md-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-md-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-md-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-md-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-md-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-md-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-md-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-md-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-md-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-md-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-md-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-md-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-md-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-md-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-md-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-md-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-md-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-md-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-md-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-md-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-md-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-md-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 992px) {
    .flex-lg-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-lg-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-lg-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-lg-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-lg-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-lg-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-lg-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .flex-lg-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-lg-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-lg-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-lg-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-lg-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .justify-content-lg-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-lg-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-lg-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-lg-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-lg-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-lg-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-lg-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-lg-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-lg-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-lg-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-lg-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-lg-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-lg-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-lg-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-lg-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-lg-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-lg-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-lg-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-lg-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-lg-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-lg-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-lg-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 1200px) {
    .flex-xl-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-xl-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-xl-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-xl-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-xl-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-xl-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-xl-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .flex-xl-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-xl-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-xl-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-xl-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-xl-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .justify-content-xl-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-xl-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-xl-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-xl-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-xl-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-xl-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-xl-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-xl-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-xl-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-xl-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-xl-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-xl-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-xl-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-xl-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-xl-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-xl-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-xl-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-xl-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-xl-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-xl-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-xl-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-xl-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

.m-0 {
    margin: 0 !important;
}

.mt-0,
.my-0 {
    margin-top: 0 !important;
}

.mr-0,
.mx-0 {
    margin-right: 0 !important;
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
    margin-left: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.mt-1,
.my-1 {
    margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
    margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
    margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
    margin-left: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.mt-2,
.my-2 {
    margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
    margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
    margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
    margin-left: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.mt-3,
.my-3 {
    margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
    margin-right: 1rem !important;
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
    margin-left: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.mt-4,
.my-4 {
    margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
    margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
    margin-left: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
    .pb-lg-4, .py-lg-4

{
    padding-bottom: 1.5rem !important;
}

.pl-lg-4,
.px-lg-4 {
    padding-left: 1.5rem !important;
}

.p-lg-5 {
    padding: 3rem !important;
}

.pt-lg-5,
.py-lg-5 {
    padding-top: 3rem !important;
}

.pr-lg-5,
.px-lg-5 {
    padding-right: 3rem !important;
}

.pb-lg-5,
.py-lg-5 {
    padding-bottom: 3rem !important;
}

.pl-lg-5,
.px-lg-5 {
    padding-left: 3rem !important;
}

.m-lg-n1 {
    margin: -0.25rem !important;
}

.mt-lg-n1,
.my-lg-n1 {
    margin-top: -0.25rem !important;
}

.mr-lg-n1,
.mx-lg-n1 {
    margin-right: -0.25rem !important;
}

.mb-lg-n1,
.my-lg-n1 {
    margin-bottom: -0.25rem !important;
}

.ml-lg-n1,
.mx-lg-n1 {
    margin-left: -0.25rem !important;
}

.m-lg-n2 {
    margin: -0.5rem !important;
}

.mt-lg-n2,
.my-lg-n2 {
    margin-top: -0.5rem !important;
}

.mr-lg-n2,
.mx-lg-n2 {
    margin-right: -0.5rem !important;
}

.mb-lg-n2,
.my-lg-n2 {
    margin-bottom: -0.5rem !important;
}

.ml-lg-n2,
.mx-lg-n2 {
    margin-left: -0.5rem !important;
}

.m-lg-n3 {
    margin: -1rem !important;
}

.mt-lg-n3,
.my-lg-n3 {
    margin-top: -1rem !important;
}

.mr-lg-n3,
.mx-lg-n3 {
    margin-right: -1rem !important;
}

.mb-lg-n3,
.my-lg-n3 {
    margin-bottom: -1rem !important;
}

.ml-lg-n3,
.mx-lg-n3 {
    margin-left: -1rem !important;
}

.m-lg-n4 {
    margin: -1.5rem !important;
}

.mt-lg-n4,
.my-lg-n4 {
    margin-top: -1.5rem !important;
}

.mr-lg-n4,
.mx-lg-n4 {
    margin-right: -1.5rem !important;
}

.mb-lg-n4,
.my-lg-n4 {
    margin-bottom: -1.5rem !important;
}

.ml-lg-n4,
.mx-lg-n4 {
    margin-left: -1.5rem !important;
}

.m-lg-n5 {
    margin: -3rem !important;
}

.mt-lg-n5,
.my-lg-n5 {
    margin-top: -3rem !important;
}

.mr-lg-n5,
.mx-lg-n5 {
    margin-right: -3rem !important;
}

.mb-lg-n5,
.my-lg-n5 {
    margin-bottom: -3rem !important;
}

.ml-lg-n5,
.mx-lg-n5 {
    margin-left: -3rem !important;
}

.m-lg-auto {
    margin: auto !important;
}

.mt-lg-auto,
.my-lg-auto {
    margin-top: auto !important;
}

.mr-lg-auto,
.mx-lg-auto {
    margin-right: auto !important;
}

.mb-lg-auto,
.my-lg-auto {
    margin-bottom: auto !important;
}

.ml-lg-auto,
.mx-lg-auto {
    margin-left: auto !important;
}

}

@media (min-width: 1200px) {
    .m-xl-0 {
        margin: 0 !important;
    }

    .mt-xl-0,
    .my-xl-0 {
        margin-top: 0 !important;
    }

    .mr-xl-0,
    .mx-xl-0 {
        margin-right: 0 !important;
    }

    .mb-xl-0,
    .my-xl-0 {
        margin-bottom: 0 !important;
    }

    .ml-xl-0,
    .mx-xl-0 {
        margin-left: 0 !important;
    }

    .m-xl-1 {
        margin: 0.25rem !important;
    }

    .mt-xl-1,
    .my-xl-1 {
        margin-top: 0.25rem !important;
    }

    .mr-xl-1,
    .mx-xl-1 {
        margin-right: 0.25rem !important;
    }

    .mb-xl-1,
    .my-xl-1 {
        margin-bottom: 0.25rem !important;
    }

    .ml-xl-1,
    .mx-xl-1 {
        margin-left: 0.25rem !important;
    }

    .m-xl-2 {
        margin: 0.5rem !important;
    }

    .mt-xl-2,
    .my-xl-2 {
        margin-top: 0.5rem !important;
    }

    .mr-xl-2,
    .mx-xl-2 {
        margin-right: 0.5rem !important;
    }

    .mb-xl-2,
    .my-xl-2 {
        margin-bottom: 0.5rem !important;
    }

    .ml-xl-2,
    .mx-xl-2 {
        margin-left: 0.5rem !important;
    }

    .m-xl-3 {
        margin: 1rem !important;
    }

    .mt-xl-3,
    .my-xl-3 {
        margin-top: 1rem !important;
    }

    .mr-xl-3,
    .mx-xl-3 {
        margin-right: 1rem !important;
    }

    .mb-xl-3,
    .my-xl-3 {
        margin-bottom: 1rem !important;
    }

    .ml-xl-3,
    .mx-xl-3 {
        margin-left: 1rem !important;
    }

    .m-xl-4 {
        margin: 1.5rem !important;
    }

    .mt-xl-4,
    .my-xl-4 {
        margin-top: 1.5rem !important;
    }

    .mr-xl-4,
    .mx-xl-4 {
        margin-right: 1.5rem !important;
    }

    .mb-xl-4,
    .my-xl-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-xl-4,
    .mx-xl-4 {
        margin-left: 1.5rem !important;
    }

    .m-xl-5 {
        margin: 3rem !important;
    }

    .mt-xl-5,
    .my-xl-5 {
        margin-top: 3rem !important;
    }

    .mr-xl-5,
    .mx-xl-5 {
        margin-right: 3rem !important;
    }

    .mb-xl-5,
    .my-xl-5 {
        margin-bottom: 3rem !important;
    }

    .ml-xl-5,
    .mx-xl-5 {
        margin-left: 3rem !important;
    }

    .p-xl-0 {
        padding: 0 !important;
    }

    .pt-xl-0,
    .py-xl-0 {
        padding-top: 0 !important;
    }

    .pr-xl-0,
    .px-xl-0 {
        padding-right: 0 !important;
    }

    .pb-xl-0,
    .py-xl-0 {
        padding-bottom: 0 !important;
    }

    .pl-xl-0,
    .px-xl-0 {
        padding-left: 0 !important;
    }

    .p-xl-1 {
        padding: 0.25rem !important;
    }

    .pt-xl-1,
    .py-xl-1 {
        padding-top: 0.25rem !important;
    }

    .pr-xl-1,
    .px-xl-1 {
        padding-right: 0.25rem !important;
    }

    .pb-xl-1,
    .py-xl-1 {
        padding-bottom: 0.25rem !important;
    }

    .pl-xl-1,
    .px-xl-1 {
        padding-left: 0.25rem !important;
    }

    .p-xl-2 {
        padding: 0.5rem !important;
    }

    .pt-xl-2,
    .py-xl-2 {
        padding-top: 0.5rem !important;
    }

    .pr-xl-2,
    .px-xl-2 {
        padding-right: 0.5rem !important;
    }

    .pb-xl-2,
    .py-xl-2 {
        padding-bottom: 0.5rem !important;
    }

    .pl-xl-2,
    .px-xl-2 {
        padding-left: 0.5rem !important;
    }

    .p-xl-3 {
        padding: 1rem !important;
    }

    .pt-xl-3,
    .py-xl-3 {
        padding-top: 1rem !important;
    }

    .pr-xl-3,
    .px-xl-3 {
        padding-right: 1rem !important;
    }

    .pb-xl-3,
    .py-xl-3 {
        padding-bottom: 1rem !important;
    }

    .pl-xl-3,
    .px-xl-3 {
        padding-left: 1rem !important;
    }

    .p-xl-4 {
        padding: 1.5rem !important;
    }

    .pt-xl-4,
    .py-xl-4 {
        padding-top: 1.5rem !important;
    }

    .pr-xl-4,
    .px-xl-4 {
        padding-right: 1.5rem !important;
    }

    .pb-xl-4,
    .py-xl-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-xl-4,
    .px-xl-4 {
        padding-left: 1.5rem !important;
    }

    .p-xl-5 {
        padding: 3rem !important;
    }

    .pt-xl-5,
    .py-xl-5 {
        padding-top: 3rem !important;
    }

    .pr-xl-5,
    .px-xl-5 {
        padding-right: 3rem !important;
    }

    .pb-xl-5,
    .py-xl-5 {
        padding-bottom: 3rem !important;
    }

    .pl-xl-5,
    .px-xl-5 {
        padding-left: 3rem !important;
    }

    .m-xl-n1 {
        margin: -0.25rem !important;
    }

    .mt-xl-n1,
    .my-xl-n1 {
        margin-top: -0.25rem !important;
    }

    .mr-xl-n1,
    .mx-xl-n1 {
        margin-right: -0.25rem !important;
    }

    .mb-xl-n1,
    .my-xl-n1 {
        margin-bottom: -0.25rem !important;
    }

    .ml-xl-n1,
    .mx-xl-n1 {
        margin-left: -0.25rem !important;
    }

    .m-xl-n2 {
        margin: -0.5rem !important;
    }

    .mt-xl-n2,
    .my-xl-n2 {
        margin-top: -0.5rem !important;
    }

    .mr-xl-n2,
    .mx-xl-n2 {
        margin-right: -0.5rem !important;
    }

    .mb-xl-n2,
    .my-xl-n2 {
        margin-bottom: -0.5rem !important;
    }

    .ml-xl-n2,
    .mx-xl-n2 {
        margin-left: -0.5rem !important;
    }

    .m-xl-n3 {
        margin: -1rem !important;
    }

    .mt-xl-n3,
    .my-xl-n3 {
        margin-top: -1rem !important;
    }

    .mr-xl-n3,
    .mx-xl-n3 {
        margin-right: -1rem !important;
    }

    .mb-xl-n3,
    .my-xl-n3 {
        margin-bottom: -1rem !important;
    }

    .ml-xl-n3,
    .mx-xl-n3 {
        margin-left: -1rem !important;
    }

    .m-xl-n4 {
        margin: -1.5rem !important;
    }

    .mt-xl-n4,
    .my-xl-n4 {
        margin-top: -1.5rem !important;
    }

    .mr-xl-n4,
    .mx-xl-n4 {
        margin-right: -1.5rem !important;
    }

    .mb-xl-n4,
    .my-xl-n4 {
        margin-bottom: -1.5rem !important;
    }

    .ml-xl-n4,
    .mx-xl-n4 {
        margin-left: -1.5rem !important;
    }

    .m-xl-n5 {
        margin: -3rem !important;
    }

    .mt-xl-n5,
    .my-xl-n5 {
        margin-top: -3rem !important;
    }

    .mr-xl-n5,
    .mx-xl-n5 {
        margin-right: -3rem !important;
    }

    .mb-xl-n5,
    .my-xl-n5 {
        margin-bottom: -3rem !important;
    }

    .ml-xl-n5,
    .mx-xl-n5 {
        margin-left: -3rem !important;
    }

    .m-xl-auto {
        margin: auto !important;
    }

    .mt-xl-auto,
    .my-xl-auto {
        margin-top: auto !important;
    }

    .mr-xl-auto,
    .mx-xl-auto {
        margin-right: auto !important;
    }

    .mb-xl-auto,
    .my-xl-auto {
        margin-bottom: auto !important;
    }

    .ml-xl-auto,
    .mx-xl-auto {
        margin-left: auto !important;
    }
}

/*-------------------- FONTS --------------------*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,700');

/*-------------------- RESETE STYLES --------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
}

html {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

th, td {
    text-align: left;
    font-weight: normal;
    vertical-align: middle;
}

a img {
    border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
}

strong, b {
    font-weight: 700;
}

/*-------------------- CUSTOM CURSOR --------------------*/
.cursor-primary {
    position: fixed;
    width: 10px;
    height: 10px;
    border: 1px solid #000;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: all 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    background-color: #fff;
    z-index: 99999999;
}

    .cursor-primary span {
        background: url(../img/cancel.svg);
        background-size: contain;
        height: 14px;
        width: 14px;
        display: block;
        transform: scale(0.5) translate( -7px, -7px ) rotateZ(0deg);
        transition: all 0.5s ease;
        opacity: 0;
        -webkit-filter: drop-shadow(0px 0px 3px #000000);
        filter: drop-shadow(0px 0px 3px #000000);
    }

.cursor-secondary {
    width: 35px;
    height: 35px;
    border: 2px solid #45a7ef;
    position: fixed;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    box-shadow: inset 0 0 2px 0px rgba(19,18,19,0.4);
    z-index: 99999999;
    will-change: top, left;
}

    .cursor-secondary.animateCursor {
        width: 25px;
        height: 25px;
        opacity: 0;
        border-color: #fff;
        box-shadow: inset 0 0 2px 0px rgba(19,18,19,0.4);
        will-change: border-radius, transform, opacity;
    }

.cursor-primary.animateCursor {
    background-color: transparent;
    border: 2px solid transparent;
}

    .cursor-primary.animateCursor span {
        transform: scale(1) translate( -5px, -5px ) rotateZ(45deg);
        opacity: 1;
    }




@-moz-keyframes ajaxLoaderSpin {
    0% {
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(270deg);
        transform: rotate(270deg);
    }
}

@-webkit-keyframes ajaxLoaderSpin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }
}

@keyframes ajaxLoaderSpin {
    0% {
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }
}

@-moz-keyframes ajaxLoaderColors {
    0% {
        stroke: #35ad0e;
    }

    25% {
        stroke: #d8ad44;
    }

    50% {
        stroke: #d00324;
    }

    75% {
        stroke: #dc00b8;
    }

    100% {
        stroke: #017efc;
    }
}

@-webkit-keyframes ajaxLoaderColors {
    0% {
        stroke: #35ad0e;
    }

    25% {
        stroke: #d8ad44;
    }

    50% {
        stroke: #d00324;
    }

    75% {
        stroke: #dc00b8;
    }

    100% {
        stroke: #017efc;
    }
}

@keyframes ajaxLoaderColors {
    0% {
        stroke: #35ad0e;
    }

    25% {
        stroke: #d8ad44;
    }

    50% {
        stroke: #d00324;
    }

    75% {
        stroke: #dc00b8;
    }

    100% {
        stroke: #017efc;
    }
}

@-moz-keyframes ajaxLoaderDash {
    0% {
        stroke-dashoffset: 1413;
    }

    50% {
        stroke-dashoffset: 392.5;
    }

    100% {
        stroke-dashoffset: 1413;
    }
}

@-webkit-keyframes ajaxLoaderDash {
    0% {
        stroke-dashoffset: 1413;
    }

    50% {
        stroke-dashoffset: 392.5;
    }

    100% {
        stroke-dashoffset: 1413;
    }
}

@keyframes ajaxLoaderDash {
    0% {
        stroke-dashoffset: 1413;
    }

    50% {
        stroke-dashoffset: 392.5;
    }

    100% {
        stroke-dashoffset: 1413;
    }
}

@-moz-keyframes ajaxLoaderDashSpin {
    50% {
        -moz-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    100% {
        -moz-transform: rotate(450deg);
        transform: rotate(450deg);
    }
}

@-webkit-keyframes ajaxLoaderDashSpin {
    50% {
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    100% {
        -webkit-transform: rotate(450deg);
        transform: rotate(450deg);
    }
}

@keyframes ajaxLoaderDashSpin {
    50% {
        -moz-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    100% {
        -moz-transform: rotate(450deg);
        -ms-transform: rotate(450deg);
        -webkit-transform: rotate(450deg);
        transform: rotate(450deg);
    }
}

.ajax-loader, .ajax-loader .ajax-loader-circle, .ajax-loader .ajax-loader-circle .ajax-loader-circle-spinner, .ajax-loader .ajax-loader-circle circle, .ajax-loader .ajax-loader-letters {
    content: '';
    position: relative;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}





.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-fw {
    width: 1.28571429em;
    text-align: center
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none
}

    .fa-ul > li {
        position: relative
    }

.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: .14285714em;
    text-align: center
}

    .fa-li.fa-lg {
        left: -1.85714286em
    }

.fa-border {
    padding: .2em .25em .15em;
    border: solid .08em #eee;
    border-radius: .1em
}

.fa-pull-left {
    float: left
}

.fa-pull-right {
    float: right
}

.fa.fa-pull-left {
    margin-right: .3em
}

.fa.fa-pull-right {
    margin-left: .3em
}

.pull-right {
    float: right
}

.pull-left {
    float: left
}

.fa.pull-left {
    margin-right: .3em
}

.fa.pull-right {
    margin-left: .3em
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8)
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1)
}

.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1)
}

:root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical {
    filter: none
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle
}

.fa-stack-1x, .fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center
}

.fa-stack-1x {
    line-height: inherit
}

.fa-stack-2x {
    font-size: 2em
}

.fa-inverse {
    color: #fff
}

.fa-glass:before {
    content: "\f000"
}

.fa-music:before {
    content: "\f001"
}

.fa-search:before {
    content: "\f002"
}

.fa-envelope-o:before {
    content: "\f003"
}

.fa-heart:before {
    content: "\f004"
}

.fa-star:before {
    content: "\f005"
}

.fa-star-o:before {
    content: "\f006"
}

.fa-user:before {
    content: "\f007"
}

.fa-film:before {
    content: "\f008"
}

.fa-th-large:before {
    content: "\f009"
}

.fa-th:before {
    content: "\f00a"
}

.fa-th-list:before {
    content: "\f00b"
}

.fa-check:before {
    content: "\f00c"
}

.fa-remove:before, .fa-close:before, .fa-times:before {
    content: "\f00d"
}

.fa-search-plus:before {
    content: "\f00e"
}

.fa-search-minus:before {
    content: "\f010"
}

.fa-power-off:before {
    content: "\f011"
}

.fa-signal:before {
    content: "\f012"
}

.fa-gear:before, .fa-cog:before {
    content: "\f013"
}

.fa-trash-o:before {
    content: "\f014"
}

.fa-home:before {
    content: "\f015"
}

.fa-file-o:before {
    content: "\f016"
}

.fa-clock-o:before {
    content: "\f017"
}

.fa-road:before {
    content: "\f018"
}

.fa-download:before {
    content: "\f019"
}

.fa-arrow-circle-o-down:before {
    content: "\f01a"
}

.fa-arrow-circle-o-up:before {
    content: "\f01b"
}

.fa-inbox:before {
    content: "\f01c"
}

.fa-play-circle-o:before {
    content: "\f01d"
}

.fa-rotate-right:before, .fa-repeat:before {
    content: "\f01e"
}

.fa-refresh:before {
    content: "\f021"
}

.fa-list-alt:before {
    content: "\f022"
}

.fa-lock:before {
    content: "\f023"
}

.fa-flag:before {
    content: "\f024"
}

.fa-headphones:before {
    content: "\f025"
}

.fa-volume-off:before {
    content: "\f026"
}

.fa-volume-down:before {
    content: "\f027"
}

.fa-volume-up:before {
    content: "\f028"
}

.fa-qrcode:before {
    content: "\f029"
}

.fa-barcode:before {
    content: "\f02a"
}

.fa-tag:before {
    content: "\f02b"
}

.fa-tags:before {
    content: "\f02c"
}

.fa-book:before {
    content: "\f02d"
}

.fa-bookmark:before {
    content: "\f02e"
}

.fa-print:before {
    content: "\f02f"
}

.fa-camera:before {
    content: "\f030"
}

.fa-font:before {
    content: "\f031"
}

.fa-bold:before {
    content: "\f032"
}

.fa-italic:before {
    content: "\f033"
}

.fa-text-height:before {
    content: "\f034"
}

.fa-text-width:before {
    content: "\f035"
}

.fa-align-left:before {
    content: "\f036"
}

.fa-align-center:before {
    content: "\f037"
}

.fa-align-right:before {
    content: "\f038"
}

.fa-align-justify:before {
    content: "\f039"
}

.fa-list:before {
    content: "\f03a"
}

.fa-dedent:before, .fa-outdent:before {
    content: "\f03b"
}

.fa-indent:before {
    content: "\f03c"
}

.fa-video-camera:before {
    content: "\f03d"
}

.fa-photo:before, .fa-image:before, .fa-picture-o:before {
    content: "\f03e"
}

.fa-pencil:before {
    content: "\f040"
}

.fa-map-marker:before {
    content: "\f041"
}

.fa-adjust:before {
    content: "\f042"
}

.fa-tint:before {
    content: "\f043"
}

.fa-edit:before, .fa-pencil-square-o:before {
    content: "\f044"
}

.fa-share-square-o:before {
    content: "\f045"
}

.fa-check-square-o:before {
    content: "\f046"
}

.fa-arrows:before {
    content: "\f047"
}

.fa-step-backward:before {
    content: "\f048"
}

.fa-fast-backward:before {
    content: "\f049"
}

.fa-backward:before {
    content: "\f04a"
}

.fa-play:before {
    content: "\f04b"
}

.fa-pause:before {
    content: "\f04c"
}

.fa-stop:before {
    content: "\f04d"
}

.fa-forward:before {
    content: "\f04e"
}

.fa-fast-forward:before {
    content: "\f050"
}

.fa-step-forward:before {
    content: "\f051"
}

.fa-eject:before {
    content: "\f052"
}

.fa-chevron-left:before {
    content: "\f053"
}

.fa-chevron-right:before {
    content: "\f054"
}

.fa-plus-circle:before {
    content: "\f055"
}

.fa-minus-circle:before {
    content: "\f056"
}

.fa-times-circle:before {
    content: "\f057"
}

.fa-check-circle:before {
    content: "\f058"
}

.fa-question-circle:before {
    content: "\f059"
}

.fa-info-circle:before {
    content: "\f05a"
}

.fa-crosshairs:before {
    content: "\f05b"
}

.fa-times-circle-o:before {
    content: "\f05c"
}

.fa-check-circle-o:before {
    content: "\f05d"
}

.fa-ban:before {
    content: "\f05e"
}

.fa-arrow-left:before {
    content: "\f060"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-arrow-up:before {
    content: "\f062"
}

.fa-arrow-down:before {
    content: "\f063"
}

.fa-mail-forward:before, .fa-share:before {
    content: "\f064"
}

.fa-expand:before {
    content: "\f065"
}

.fa-compress:before {
    content: "\f066"
}

.fa-plus:before {
    content: "\f067"
}

.fa-minus:before {
    content: "\f068"
}

.fa-asterisk:before {
    content: "\f069"
}

.fa-exclamation-circle:before {
    content: "\f06a"
}

.fa-gift:before {
    content: "\f06b"
}

.fa-leaf:before {
    content: "\f06c"
}

.fa-fire:before {
    content: "\f06d"
}

.fa-eye:before {
    content: "\f06e"
}

.fa-eye-slash:before {
    content: "\f070"
}

.fa-warning:before, .fa-exclamation-triangle:before {
    content: "\f071"
}

.fa-plane:before {
    content: "\f072"
}

.fa-calendar:before {
    content: "\f073"
}

.fa-random:before {
    content: "\f074"
}

.fa-comment:before {
    content: "\f075"
}

.fa-magnet:before {
    content: "\f076"
}

.fa-chevron-up:before {
    content: "\f077"
}

.fa-chevron-down:before {
    content: "\f078"
}

.fa-retweet:before {
    content: "\f079"
}

.fa-shopping-cart:before {
    content: "\f07a"
}

.fa-folder:before {
    content: "\f07b"
}

.fa-folder-open:before {
    content: "\f07c"
}

.fa-arrows-v:before {
    content: "\f07d"
}

.fa-arrows-h:before {
    content: "\f07e"
}

.fa-bar-chart-o:before, .fa-bar-chart:before {
    content: "\f080"
}

.fa-twitter-square:before {
    content: "\f081"
}

.fa-facebook-square:before {
    content: "\f082"
}

.fa-camera-retro:before {
    content: "\f083"
}

.fa-key:before {
    content: "\f084"
}

.fa-gears:before, .fa-cogs:before {
    content: "\f085"
}

.fa-comments:before {
    content: "\f086"
}

.fa-thumbs-o-up:before {
    content: "\f087"
}

.fa-thumbs-o-down:before {
    content: "\f088"
}

.fa-star-half:before {
    content: "\f089"
}

.fa-heart-o:before {
    content: "\f08a"
}

.fa-sign-out:before {
    content: "\f08b"
}

.fa-linkedin-square:before {
    content: "\f08c"
}

.fa-thumb-tack:before {
    content: "\f08d"
}

.fa-external-link:before {
    content: "\f08e"
}

.fa-sign-in:before {
    content: "\f090"
}

.fa-trophy:before {
    content: "\f091"
}

.fa-github-square:before {
    content: "\f092"
}

.fa-upload:before {
    content: "\f093"
}

.fa-lemon-o:before {
    content: "\f094"
}

.fa-phone:before {
    content: "\f095"
}

.fa-square-o:before {
    content: "\f096"
}

.fa-bookmark-o:before {
    content: "\f097"
}

.fa-phone-square:before {
    content: "\f098"
}

.fa-twitter:before {
    content: "\f099"
}

.fa-facebook-f:before, .fa-facebook:before {
    content: "\f09a"
}

.fa-github:before {
    content: "\f09b"
}

.fa-unlock:before {
    content: "\f09c"
}

.fa-credit-card:before {
    content: "\f09d"
}

.fa-feed:before, .fa-rss:before {
    content: "\f09e"
}

.fa-hdd-o:before {
    content: "\f0a0"
}

.fa-bullhorn:before {
    content: "\f0a1"
}

.fa-bell:before {
    content: "\f0f3"
}

.fa-certificate:before {
    content: "\f0a3"
}

.fa-hand-o-right:before {
    content: "\f0a4"
}

.fa-hand-o-left:before {
    content: "\f0a5"
}

.fa-hand-o-up:before {
    content: "\f0a6"
}

.fa-hand-o-down:before {
    content: "\f0a7"
}

.fa-arrow-circle-left:before {
    content: "\f0a8"
}

.fa-arrow-circle-right:before {
    content: "\f0a9"
}

.fa-arrow-circle-up:before {
    content: "\f0aa"
}

.fa-arrow-circle-down:before {
    content: "\f0ab"
}

.fa-globe:before {
    content: "\f0ac"
}

.fa-wrench:before {
    content: "\f0ad"
}

.fa-tasks:before {
    content: "\f0ae"
}

.fa-filter:before {
    content: "\f0b0"
}

.fa-briefcase:before {
    content: "\f0b1"
}

.fa-arrows-alt:before {
    content: "\f0b2"
}

.fa-group:before, .fa-users:before {
    content: "\f0c0"
}

.fa-chain:before, .fa-link:before {
    content: "\f0c1"
}

.fa-cloud:before {
    content: "\f0c2"
}

.fa-flask:before {
    content: "\f0c3"
}

.fa-cut:before, .fa-scissors:before {
    content: "\f0c4"
}

.fa-copy:before, .fa-files-o:before {
    content: "\f0c5"
}

.fa-paperclip:before {
    content: "\f0c6"
}

.fa-save:before, .fa-floppy-o:before {
    content: "\f0c7"
}

.fa-square:before {
    content: "\f0c8"
}

.fa-navicon:before, .fa-reorder:before, .fa-bars:before {
    content: "\f0c9"
}

.fa-list-ul:before {
    content: "\f0ca"
}

.fa-list-ol:before {
    content: "\f0cb"
}

.fa-strikethrough:before {
    content: "\f0cc"
}

.fa-underline:before {
    content: "\f0cd"
}

.fa-table:before {
    content: "\f0ce"
}

.fa-magic:before {
    content: "\f0d0"
}

.fa-truck:before {
    content: "\f0d1"
}

.fa-pinterest:before {
    content: "\f0d2"
}

.fa-pinterest-square:before {
    content: "\f0d3"
}

.fa-google-plus-square:before {
    content: "\f0d4"
}

.fa-google-plus:before {
    content: "\f0d5"
}

.fa-money:before {
    content: "\f0d6"
}

.fa-caret-down:before {
    content: "\f0d7"
}

.fa-caret-up:before {
    content: "\f0d8"
}

.fa-caret-left:before {
    content: "\f0d9"
}

.fa-caret-right:before {
    content: "\f0da"
}

.fa-columns:before {
    content: "\f0db"
}

.fa-unsorted:before, .fa-sort:before {
    content: "\f0dc"
}

.fa-sort-down:before, .fa-sort-desc:before {
    content: "\f0dd"
}

.fa-sort-up:before, .fa-sort-asc:before {
    content: "\f0de"
}

.fa-envelope:before {
    content: "\f0e0"
}

.fa-linkedin:before {
    content: "\f0e1"
}

.fa-rotate-left:before, .fa-undo:before {
    content: "\f0e2"
}

.fa-legal:before, .fa-gavel:before {
    content: "\f0e3"
}

.fa-dashboard:before, .fa-tachometer:before {
    content: "\f0e4"
}

.fa-comment-o:before {
    content: "\f0e5"
}

.fa-comments-o:before {
    content: "\f0e6"
}

.fa-flash:before, .fa-bolt:before {
    content: "\f0e7"
}

.fa-sitemap:before {
    content: "\f0e8"
}

.fa-umbrella:before {
    content: "\f0e9"
}

.fa-paste:before, .fa-clipboard:before {
    content: "\f0ea"
}

.fa-lightbulb-o:before {
    content: "\f0eb"
}

.fa-exchange:before {
    content: "\f0ec"
}

.fa-cloud-download:before {
    content: "\f0ed"
}

.fa-cloud-upload:before {
    content: "\f0ee"
}

.fa-user-md:before {
    content: "\f0f0"
}

.fa-stethoscope:before {
    content: "\f0f1"
}

.fa-suitcase:before {
    content: "\f0f2"
}

.fa-bell-o:before {
    content: "\f0a2"
}

.fa-coffee:before {
    content: "\f0f4"
}

.fa-cutlery:before {
    content: "\f0f5"
}

.fa-file-text-o:before {
    content: "\f0f6"
}

.fa-building-o:before {
    content: "\f0f7"
}

.fa-hospital-o:before {
    content: "\f0f8"
}

.fa-ambulance:before {
    content: "\f0f9"
}

.fa-medkit:before {
    content: "\f0fa"
}

.fa-fighter-jet:before {
    content: "\f0fb"
}

.fa-beer:before {
    content: "\f0fc"
}

.fa-h-square:before {
    content: "\f0fd"
}

.fa-plus-square:before {
    content: "\f0fe"
}

.fa-angle-double-left:before {
    content: "\f100"
}

.fa-angle-double-right:before {
    content: "\f101"
}

.fa-angle-double-up:before {
    content: "\f102"
}

.fa-angle-double-down:before {
    content: "\f103"
}

.fa-angle-left:before {
    content: "\f104"
}

.fa-angle-right:before {
    content: "\f105"
}

.fa-angle-up:before {
    content: "\f106"
}

.fa-angle-down:before {
    content: "\f107"
}

.fa-desktop:before {
    content: "\f108"
}

.fa-laptop:before {
    content: "\f109"
}

.fa-tablet:before {
    content: "\f10a"
}

.fa-mobile-phone:before, .fa-mobile:before {
    content: "\f10b"
}

.fa-circle-o:before {
    content: "\f10c"
}

.fa-quote-left:before {
    content: "\f10d"
}

.fa-quote-right:before {
    content: "\f10e"
}

.fa-spinner:before {
    content: "\f110"
}

.fa-circle:before {
    content: "\f111"
}

.fa-mail-reply:before, .fa-reply:before {
    content: "\f112"
}

.fa-github-alt:before {
    content: "\f113"
}

.fa-folder-o:before {
    content: "\f114"
}

.fa-folder-open-o:before {
    content: "\f115"
}

.fa-smile-o:before {
    content: "\f118"
}

.fa-frown-o:before {
    content: "\f119"
}

.fa-meh-o:before {
    content: "\f11a"
}

.fa-gamepad:before {
    content: "\f11b"
}

.fa-keyboard-o:before {
    content: "\f11c"
}

.fa-flag-o:before {
    content: "\f11d"
}

.fa-flag-checkered:before {
    content: "\f11e"
}

.fa-terminal:before {
    content: "\f120"
}

.fa-code:before {
    content: "\f121"
}

.fa-mail-reply-all:before, .fa-reply-all:before {
    content: "\f122"
}

.fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
    content: "\f123"
}

.fa-location-arrow:before {
    content: "\f124"
}

.fa-crop:before {
    content: "\f125"
}

.fa-code-fork:before {
    content: "\f126"
}

.fa-unlink:before, .fa-chain-broken:before {
    content: "\f127"
}

.fa-question:before {
    content: "\f128"
}

.fa-info:before {
    content: "\f129"
}

.fa-exclamation:before {
    content: "\f12a"
}

.fa-superscript:before {
    content: "\f12b"
}

.fa-subscript:before {
    content: "\f12c"
}

.fa-eraser:before {
    content: "\f12d"
}

.fa-puzzle-piece:before {
    content: "\f12e"
}

.fa-microphone:before {
    content: "\f130"
}

.fa-microphone-slash:before {
    content: "\f131"
}

.fa-shield:before {
    content: "\f132"
}

.fa-calendar-o:before {
    content: "\f133"
}

.fa-fire-extinguisher:before {
    content: "\f134"
}

.fa-rocket:before {
    content: "\f135"
}

.fa-maxcdn:before {
    content: "\f136"
}

.fa-chevron-circle-left:before {
    content: "\f137"
}

.fa-chevron-circle-right:before {
    content: "\f138"
}

.fa-chevron-circle-up:before {
    content: "\f139"
}

.fa-chevron-circle-down:before {
    content: "\f13a"
}

.fa-html5:before {
    content: "\f13b"
}

.fa-css3:before {
    content: "\f13c"
}

.fa-anchor:before {
    content: "\f13d"
}

.fa-unlock-alt:before {
    content: "\f13e"
}

.fa-bullseye:before {
    content: "\f140"
}

.fa-ellipsis-h:before {
    content: "\f141"
}

.fa-ellipsis-v:before {
    content: "\f142"
}

.fa-rss-square:before {
    content: "\f143"
}

.fa-play-circle:before {
    content: "\f144"
}

.fa-ticket:before {
    content: "\f145"
}

.fa-minus-square:before {
    content: "\f146"
}

.fa-minus-square-o:before {
    content: "\f147"
}

.fa-level-up:before {
    content: "\f148"
}

.fa-level-down:before {
    content: "\f149"
}

.fa-check-square:before {
    content: "\f14a"
}

.fa-pencil-square:before {
    content: "\f14b"
}

.fa-external-link-square:before {
    content: "\f14c"
}

.fa-share-square:before {
    content: "\f14d"
}

.fa-compass:before {
    content: "\f14e"
}

.fa-toggle-down:before, .fa-caret-square-o-down:before {
    content: "\f150"
}

.fa-toggle-up:before, .fa-caret-square-o-up:before {
    content: "\f151"
}

.fa-toggle-right:before, .fa-caret-square-o-right:before {
    content: "\f152"
}

.fa-euro:before, .fa-eur:before {
    content: "\f153"
}

.fa-gbp:before {
    content: "\f154"
}

.fa-dollar:before, .fa-usd:before {
    content: "\f155"
}

.fa-rupee:before, .fa-inr:before {
    content: "\f156"
}

.fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before {
    content: "\f157"
}

.fa-ruble:before, .fa-rouble:before, .fa-rub:before {
    content: "\f158"
}

.fa-won:before, .fa-krw:before {
    content: "\f159"
}

.fa-bitcoin:before, .fa-btc:before {
    content: "\f15a"
}

.fa-file:before {
    content: "\f15b"
}

.fa-file-text:before {
    content: "\f15c"
}

.fa-sort-alpha-asc:before {
    content: "\f15d"
}

.fa-sort-alpha-desc:before {
    content: "\f15e"
}

.fa-sort-amount-asc:before {
    content: "\f160"
}

.fa-sort-amount-desc:before {
    content: "\f161"
}

.fa-sort-numeric-asc:before {
    content: "\f162"
}

.fa-sort-numeric-desc:before {
    content: "\f163"
}

.fa-thumbs-up:before {
    content: "\f164"
}

.fa-thumbs-down:before {
    content: "\f165"
}

.fa-youtube-square:before {
    content: "\f166"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-xing:before {
    content: "\f168"
}

.fa-xing-square:before {
    content: "\f169"
}

.fa-youtube-play:before {
    content: "\f16a"
}

.fa-dropbox:before {
    content: "\f16b"
}

.fa-stack-overflow:before {
    content: "\f16c"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-flickr:before {
    content: "\f16e"
}

.fa-adn:before {
    content: "\f170"
}

.fa-bitbucket:before {
    content: "\f171"
}

.fa-bitbucket-square:before {
    content: "\f172"
}

.fa-tumblr:before {
    content: "\f173"
}

.fa-tumblr-square:before {
    content: "\f174"
}

.fa-long-arrow-down:before {
    content: "\f175"
}

.fa-long-arrow-up:before {
    content: "\f176"
}

.fa-long-arrow-left:before {
    content: "\f177"
}

.fa-long-arrow-right:before {
    content: "\f178"
}

.fa-apple:before {
    content: "\f179"
}

.fa-windows:before {
    content: "\f17a"
}

.fa-android:before {
    content: "\f17b"
}

.fa-linux:before {
    content: "\f17c"
}

.fa-dribbble:before {
    content: "\f17d"
}

.fa-skype:before {
    content: "\f17e"
}

.fa-foursquare:before {
    content: "\f180"
}

.fa-trello:before {
    content: "\f181"
}

.fa-female:before {
    content: "\f182"
}

.fa-male:before {
    content: "\f183"
}

.fa-gittip:before, .fa-gratipay:before {
    content: "\f184"
}

.fa-sun-o:before {
    content: "\f185"
}

.fa-moon-o:before {
    content: "\f186"
}

.fa-archive:before {
    content: "\f187"
}

.fa-bug:before {
    content: "\f188"
}

.fa-vk:before {
    content: "\f189"
}

.fa-weibo:before {
    content: "\f18a"
}

.fa-renren:before {
    content: "\f18b"
}

.fa-pagelines:before {
    content: "\f18c"
}

.fa-stack-exchange:before {
    content: "\f18d"
}

.fa-arrow-circle-o-right:before {
    content: "\f18e"
}

.fa-arrow-circle-o-left:before {
    content: "\f190"
}

.fa-toggle-left:before, .fa-caret-square-o-left:before {
    content: "\f191"
}

.fa-dot-circle-o:before {
    content: "\f192"
}

.fa-wheelchair:before {
    content: "\f193"
}

.fa-vimeo-square:before {
    content: "\f194"
}

.fa-turkish-lira:before, .fa-try:before {
    content: "\f195"
}

.fa-plus-square-o:before {
    content: "\f196"
}

.fa-space-shuttle:before {
    content: "\f197"
}

.fa-slack:before {
    content: "\f198"
}

.fa-envelope-square:before {
    content: "\f199"
}

.fa-wordpress:before {
    content: "\f19a"
}

.fa-openid:before {
    content: "\f19b"
}

.fa-institution:before, .fa-bank:before, .fa-university:before {
    content: "\f19c"
}

.fa-mortar-board:before, .fa-graduation-cap:before {
    content: "\f19d"
}

.fa-yahoo:before {
    content: "\f19e"
}

.fa-google:before {
    content: "\f1a0"
}

.fa-reddit:before {
    content: "\f1a1"
}

.fa-reddit-square:before {
    content: "\f1a2"
}

.fa-stumbleupon-circle:before {
    content: "\f1a3"
}

.fa-stumbleupon:before {
    content: "\f1a4"
}

.fa-delicious:before {
    content: "\f1a5"
}

.fa-digg:before {
    content: "\f1a6"
}

.fa-pied-piper-pp:before {
    content: "\f1a7"
}

.fa-pied-piper-alt:before {
    content: "\f1a8"
}

.fa-drupal:before {
    content: "\f1a9"
}

.fa-joomla:before {
    content: "\f1aa"
}

.fa-language:before {
    content: "\f1ab"
}

.fa-fax:before {
    content: "\f1ac"
}

.fa-building:before {
    content: "\f1ad"
}

.fa-child:before {
    content: "\f1ae"
}

.fa-paw:before {
    content: "\f1b0"
}

.fa-spoon:before {
    content: "\f1b1"
}

.fa-cube:before {
    content: "\f1b2"
}

.fa-cubes:before {
    content: "\f1b3"
}

.fa-behance:before {
    content: "\f1b4"
}

.fa-behance-square:before {
    content: "\f1b5"
}

.fa-steam:before {
    content: "\f1b6"
}

.fa-steam-square:before {
    content: "\f1b7"
}

.fa-recycle:before {
    content: "\f1b8"
}

.fa-automobile:before, .fa-car:before {
    content: "\f1b9"
}

.fa-cab:before, .fa-taxi:before {
    content: "\f1ba"
}

.fa-tree:before {
    content: "\f1bb"
}

.fa-spotify:before {
    content: "\f1bc"
}

.fa-deviantart:before {
    content: "\f1bd"
}

.fa-soundcloud:before {
    content: "\f1be"
}

.fa-database:before {
    content: "\f1c0"
}

.fa-file-pdf-o:before {
    content: "\f1c1"
}

.fa-file-word-o:before {
    content: "\f1c2"
}

.fa-file-excel-o:before {
    content: "\f1c3"
}

.fa-file-powerpoint-o:before {
    content: "\f1c4"
}

.fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before {
    content: "\f1c5"
}

.fa-file-zip-o:before, .fa-file-archive-o:before {
    content: "\f1c6"
}

.fa-file-sound-o:before, .fa-file-audio-o:before {
    content: "\f1c7"
}

.fa-file-movie-o:before, .fa-file-video-o:before {
    content: "\f1c8"
}

.fa-file-code-o:before {
    content: "\f1c9"
}

.fa-vine:before {
    content: "\f1ca"
}

.fa-codepen:before {
    content: "\f1cb"
}

.fa-jsfiddle:before {
    content: "\f1cc"
}

.fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, .fa-support:before, .fa-life-ring:before {
    content: "\f1cd"
}

.fa-circle-o-notch:before {
    content: "\f1ce"
}

.fa-ra:before, .fa-resistance:before, .fa-rebel:before {
    content: "\f1d0"
}

.fa-ge:before, .fa-empire:before {
    content: "\f1d1"
}

.fa-git-square:before {
    content: "\f1d2"
}

.fa-git:before {
    content: "\f1d3"
}

.fa-y-combinator-square:before, .fa-yc-square:before, .fa-hacker-news:before {
    content: "\f1d4"
}

.fa-tencent-weibo:before {
    content: "\f1d5"
}

.fa-qq:before {
    content: "\f1d6"
}

.fa-wechat:before, .fa-weixin:before {
    content: "\f1d7"
}

.fa-send:before, .fa-paper-plane:before {
    content: "\f1d8"
}

.fa-send-o:before, .fa-paper-plane-o:before {
    content: "\f1d9"
}

.fa-history:before {
    content: "\f1da"
}

.fa-circle-thin:before {
    content: "\f1db"
}


.fa-paragraph:before {
    content: "\f1dd"
}

.fa-sliders:before {
    content: "\f1de"
}

.fa-share-alt:before {
    content: "\f1e0"
}

.fa-share-alt-square:before {
    content: "\f1e1"
}

.fa-bomb:before {
    content: "\f1e2"
}

.fa-soccer-ball-o:before, .fa-futbol-o:before {
    content: "\f1e3"
}

.fa-tty:before {
    content: "\f1e4"
}

.fa-binoculars:before {
    content: "\f1e5"
}

.fa-plug:before {
    content: "\f1e6"
}

.fa-slideshare:before {
    content: "\f1e7"
}

.fa-twitch:before {
    content: "\f1e8"
}

.fa-yelp:before {
    content: "\f1e9"
}

.fa-newspaper-o:before {
    content: "\f1ea"
}

.fa-wifi:before {
    content: "\f1eb"
}

.fa-calculator:before {
    content: "\f1ec"
}

.fa-paypal:before {
    content: "\f1ed"
}

.fa-google-wallet:before {
    content: "\f1ee"
}

.fa-cc-visa:before {
    content: "\f1f0"
}

.fa-cc-mastercard:before {
    content: "\f1f1"
}

.fa-cc-discover:before {
    content: "\f1f2"
}

.fa-cc-amex:before {
    content: "\f1f3"
}

.fa-cc-paypal:before {
    content: "\f1f4"
}

.fa-cc-stripe:before {
    content: "\f1f5"
}

.fa-bell-slash:before {
    content: "\f1f6"
}

.fa-bell-slash-o:before {
    content: "\f1f7"
}

.fa-trash:before {
    content: "\f1f8"
}

.fa-copyright:before {
    content: "\f1f9"
}

.fa-at:before {
    content: "\f1fa"
}

.fa-eyedropper:before {
    content: "\f1fb"
}

.fa-paint-brush:before {
    content: "\f1fc"
}

.fa-birthday-cake:before {
    content: "\f1fd"
}

.fa-area-chart:before {
    content: "\f1fe"
}

.fa-pie-chart:before {
    content: "\f200"
}

.fa-line-chart:before {
    content: "\f201"
}

.fa-lastfm:before {
    content: "\f202"
}

.fa-lastfm-square:before {
    content: "\f203"
}

.fa-toggle-off:before {
    content: "\f204"
}

.fa-toggle-on:before {
    content: "\f205"
}

.fa-bicycle:before {
    content: "\f206"
}

.fa-bus:before {
    content: "\f207"
}

.fa-ioxhost:before {
    content: "\f208"
}

.fa-angellist:before {
    content: "\f209"
}

.fa-cc:before {
    content: "\f20a"
}

.fa-shekel:before, .fa-sheqel:before, .fa-ils:before {
    content: "\f20b"
}

.fa-meanpath:before {
    content: "\f20c"
}

.fa-buysellads:before {
    content: "\f20d"
}

.fa-connectdevelop:before {
    content: "\f20e"
}

.fa-dashcube:before {
    content: "\f210"
}

.fa-forumbee:before {
    content: "\f211"
}

.fa-leanpub:before {
    content: "\f212"
}

.fa-sellsy:before {
    content: "\f213"
}

.fa-shirtsinbulk:before {
    content: "\f214"
}

.fa-simplybuilt:before {
    content: "\f215"
}

.fa-skyatlas:before {
    content: "\f216"
}

.fa-cart-plus:before {
    content: "\f217"
}

.fa-cart-arrow-down:before {
    content: "\f218"
}

.fa-diamond:before {
    content: "\f219"
}

.fa-ship:before {
    content: "\f21a"
}

.fa-user-secret:before {
    content: "\f21b"
}

.fa-motorcycle:before {
    content: "\f21c"
}

.fa-street-view:before {
    content: "\f21d"
}

.fa-heartbeat:before {
    content: "\f21e"
}

.fa-venus:before {
    content: "\f221"
}

.fa-mars:before {
    content: "\f222"
}

.fa-mercury:before {
    content: "\f223"
}

.fa-intersex:before, .fa-transgender:before {
    content: "\f224"
}

.fa-transgender-alt:before {
    content: "\f225"
}

.fa-venus-double:before {
    content: "\f226"
}

.fa-mars-double:before {
    content: "\f227"
}

.fa-venus-mars:before {
    content: "\f228"
}

.fa-mars-stroke:before {
    content: "\f229"
}

.fa-mars-stroke-v:before {
    content: "\f22a"
}

.fa-mars-stroke-h:before {
    content: "\f22b"
}

.fa-neuter:before {
    content: "\f22c"
}

.fa-genderless:before {
    content: "\f22d"
}

.fa-facebook-official:before {
    content: "\f230"
}

.fa-pinterest-p:before {
    content: "\f231"
}

.fa-whatsapp:before {
    content: "\f232"
}

.fa-server:before {
    content: "\f233"
}

.fa-user-plus:before {
    content: "\f234"
}

.fa-user-times:before {
    content: "\f235"
}

.fa-hotel:before, .fa-bed:before {
    content: "\f236"
}

.fa-viacoin:before {
    content: "\f237"
}

.fa-train:before {
    content: "\f238"
}

.fa-subway:before {
    content: "\f239"
}

.fa-medium:before {
    content: "\f23a"
}

.fa-yc:before, .fa-y-combinator:before {
    content: "\f23b"
}

.fa-optin-monster:before {
    content: "\f23c"
}

.fa-opencart:before {
    content: "\f23d"
}

.fa-expeditedssl:before {
    content: "\f23e"
}

.fa-battery-4:before, .fa-battery:before, .fa-battery-full:before {
    content: "\f240"
}

.fa-battery-3:before, .fa-battery-three-quarters:before {
    content: "\f241"
}

.fa-battery-2:before, .fa-battery-half:before {
    content: "\f242"
}

.fa-battery-1:before, .fa-battery-quarter:before {
    content: "\f243"
}

.fa-battery-0:before, .fa-battery-empty:before {
    content: "\f244"
}

.fa-mouse-pointer:before {
    content: "\f245"
}

.fa-i-cursor:before {
    content: "\f246"
}

.fa-object-group:before {
    content: "\f247"
}

.fa-object-ungroup:before {
    content: "\f248"
}

.fa-sticky-note:before {
    content: "\f249"
}

.fa-sticky-note-o:before {
    content: "\f24a"
}

.fa-cc-jcb:before {
    content: "\f24b"
}

.fa-cc-diners-club:before {
    content: "\f24c"
}

.fa-clone:before {
    content: "\f24d"
}

.fa-balance-scale:before {
    content: "\f24e"
}

.fa-hourglass-o:before {
    content: "\f250"
}

.fa-hourglass-1:before, .fa-hourglass-start:before {
    content: "\f251"
}

.fa-hourglass-2:before, .fa-hourglass-half:before {
    content: "\f252"
}

.fa-hourglass-3:before, .fa-hourglass-end:before {
    content: "\f253"
}

.fa-hourglass:before {
    content: "\f254"
}

.fa-hand-grab-o:before, .fa-hand-rock-o:before {
    content: "\f255"
}

.fa-hand-stop-o:before, .fa-hand-paper-o:before {
    content: "\f256"
}

.fa-hand-scissors-o:before {
    content: "\f257"
}

.fa-hand-lizard-o:before {
    content: "\f258"
}

.fa-hand-spock-o:before {
    content: "\f259"
}

.fa-hand-pointer-o:before {
    content: "\f25a"
}

.fa-hand-peace-o:before {
    content: "\f25b"
}

.fa-trademark:before {
    content: "\f25c"
}

.fa-registered:before {
    content: "\f25d"
}

.fa-creative-commons:before {
    content: "\f25e"
}

.fa-gg:before {
    content: "\f260"
}

.fa-gg-circle:before {
    content: "\f261"
}

.fa-tripadvisor:before {
    content: "\f262"
}

.fa-odnoklassniki:before {
    content: "\f263"
}

.fa-odnoklassniki-square:before {
    content: "\f264"
}

.fa-get-pocket:before {
    content: "\f265"
}

.fa-wikipedia-w:before {
    content: "\f266"
}

.fa-safari:before {
    content: "\f267"
}

.fa-chrome:before {
    content: "\f268"
}

.fa-firefox:before {
    content: "\f269"
}

.fa-opera:before {
    content: "\f26a"
}

.fa-internet-explorer:before {
    content: "\f26b"
}

.fa-tv:before, .fa-television:before {
    content: "\f26c"
}

.fa-contao:before {
    content: "\f26d"
}

.fa-500px:before {
    content: "\f26e"
}

.fa-amazon:before {
    content: "\f270"
}

.fa-calendar-plus-o:before {
    content: "\f271"
}

.fa-calendar-minus-o:before {
    content: "\f272"
}

.fa-calendar-times-o:before {
    content: "\f273"
}

.fa-calendar-check-o:before {
    content: "\f274"
}

.fa-industry:before {
    content: "\f275"
}

.fa-map-pin:before {
    content: "\f276"
}

.fa-map-signs:before {
    content: "\f277"
}

.fa-map-o:before {
    content: "\f278"
}

.fa-map:before {
    content: "\f279"
}

.fa-commenting:before {
    content: "\f27a"
}

.fa-commenting-o:before {
    content: "\f27b"
}

.fa-houzz:before {
    content: "\f27c"
}

.fa-vimeo:before {
    content: "\f27d"
}

.fa-black-tie:before {
    content: "\f27e"
}

.fa-fonticons:before {
    content: "\f280"
}

.fa-reddit-alien:before {
    content: "\f281"
}

.fa-edge:before {
    content: "\f282"
}

.fa-credit-card-alt:before {
    content: "\f283"
}

.fa-codiepie:before {
    content: "\f284"
}

.fa-modx:before {
    content: "\f285"
}

.fa-fort-awesome:before {
    content: "\f286"
}

.fa-usb:before {
    content: "\f287"
}

.fa-product-hunt:before {
    content: "\f288"
}

.fa-mixcloud:before {
    content: "\f289"
}

.fa-scribd:before {
    content: "\f28a"
}

.fa-pause-circle:before {
    content: "\f28b"
}

.fa-pause-circle-o:before {
    content: "\f28c"
}

.fa-stop-circle:before {
    content: "\f28d"
}

.fa-stop-circle-o:before {
    content: "\f28e"
}

.fa-shopping-bag:before {
    content: "\f290"
}

.fa-shopping-basket:before {
    content: "\f291"
}

.fa-hashtag:before {
    content: "\f292"
}

.fa-bluetooth:before {
    content: "\f293"
}

.fa-bluetooth-b:before {
    content: "\f294"
}

.fa-percent:before {
    content: "\f295"
}

.fa-gitlab:before {
    content: "\f296"
}

.fa-wpbeginner:before {
    content: "\f297"
}

.fa-wpforms:before {
    content: "\f298"
}

.fa-envira:before {
    content: "\f299"
}

.fa-universal-access:before {
    content: "\f29a"
}

.fa-wheelchair-alt:before {
    content: "\f29b"
}

.fa-question-circle-o:before {
    content: "\f29c"
}

.fa-blind:before {
    content: "\f29d"
}

.fa-audio-description:before {
    content: "\f29e"
}

.fa-volume-control-phone:before {
    content: "\f2a0"
}

.fa-braille:before {
    content: "\f2a1"
}

.fa-assistive-listening-systems:before {
    content: "\f2a2"
}

.fa-asl-interpreting:before, .fa-american-sign-language-interpreting:before {
    content: "\f2a3"
}

.fa-deafness:before, .fa-hard-of-hearing:before, .fa-deaf:before {
    content: "\f2a4"
}

.fa-glide:before {
    content: "\f2a5"
}

.fa-glide-g:before {
    content: "\f2a6"
}

.fa-signing:before, .fa-sign-language:before {
    content: "\f2a7"
}

.fa-low-vision:before {
    content: "\f2a8"
}

.fa-viadeo:before {
    content: "\f2a9"
}

.fa-viadeo-square:before {
    content: "\f2aa"
}

.fa-snapchat:before {
    content: "\f2ab"
}

.fa-snapchat-ghost:before {
    content: "\f2ac"
}

.fa-snapchat-square:before {
    content: "\f2ad"
}

.fa-pied-piper:before {
    content: "\f2ae"
}

.fa-first-order:before {
    content: "\f2b0"
}

.fa-yoast:before {
    content: "\f2b1"
}

.fa-themeisle:before {
    content: "\f2b2"
}

.fa-google-plus-circle:before, .fa-google-plus-official:before {
    content: "\f2b3"
}

.fa-fa:before, .fa-font-awesome:before {
    content: "\f2b4"
}

.fa-handshake-o:before {
    content: "\f2b5"
}

.fa-envelope-open:before {
    content: "\f2b6"
}

.fa-envelope-open-o:before {
    content: "\f2b7"
}

.fa-linode:before {
    content: "\f2b8"
}

.fa-address-book:before {
    content: "\f2b9"
}

.fa-address-book-o:before {
    content: "\f2ba"
}

.fa-vcard:before, .fa-address-card:before {
    content: "\f2bb"
}

.fa-vcard-o:before, .fa-address-card-o:before {
    content: "\f2bc"
}

.fa-user-circle:before {
    content: "\f2bd"
}

.fa-user-circle-o:before {
    content: "\f2be"
}

.fa-user-o:before {
    content: "\f2c0"
}

.fa-id-badge:before {
    content: "\f2c1"
}

.fa-drivers-license:before, .fa-id-card:before {
    content: "\f2c2"
}

.fa-drivers-license-o:before, .fa-id-card-o:before {
    content: "\f2c3"
}

.fa-quora:before {
    content: "\f2c4"
}

.fa-free-code-camp:before {
    content: "\f2c5"
}

.fa-telegram:before {
    content: "\f2c6"
}

.fa-thermometer-4:before, .fa-thermometer:before, .fa-thermometer-full:before {
    content: "\f2c7"
}

.fa-thermometer-3:before, .fa-thermometer-three-quarters:before {
    content: "\f2c8"
}

.fa-thermometer-2:before, .fa-thermometer-half:before {
    content: "\f2c9"
}

.fa-thermometer-1:before, .fa-thermometer-quarter:before {
    content: "\f2ca"
}

.fa-thermometer-0:before, .fa-thermometer-empty:before {
    content: "\f2cb"
}

.fa-shower:before {
    content: "\f2cc"
}

.fa-bathtub:before, .fa-s15:before, .fa-bath:before {
    content: "\f2cd"
}

.fa-podcast:before {
    content: "\f2ce"
}

.fa-window-maximize:before {
    content: "\f2d0"
}

.fa-window-minimize:before {
    content: "\f2d1"
}

.fa-window-restore:before {
    content: "\f2d2"
}

.fa-times-rectangle:before, .fa-window-close:before {
    content: "\f2d3"
}

.fa-times-rectangle-o:before, .fa-window-close-o:before {
    content: "\f2d4"
}

.fa-bandcamp:before {
    content: "\f2d5"
}

.fa-grav:before {
    content: "\f2d6"
}

.fa-etsy:before {
    content: "\f2d7"
}

.fa-imdb:before {
    content: "\f2d8"
}

.fa-ravelry:before {
    content: "\f2d9"
}

.fa-eercast:before {
    content: "\f2da"
}

.fa-microchip:before {
    content: "\f2db"
}

.fa-snowflake-o:before {
    content: "\f2dc"
}

.fa-superpowers:before {
    content: "\f2dd"
}

.fa-wpexplorer:before {
    content: "\f2de"
}

.fa-meetup:before {
    content: "\f2e0"
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto
}

.slick-list, .slick-slider, .slick-track {
    position: relative;
    display: block
}

.slick-loading .slick-slide, .slick-loading .slick-track {
    visibility: hidden
}

.slick-slider {
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    overflow: hidden;
    margin: 0;
    padding: 0
}

    .slick-list:focus {
        outline: 0
    }

    .slick-list.dragging {
        cursor: pointer;
    }

.slick-slider .slick-list, .slick-slider .slick-track {
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0)
}

.slick-track {
    top: 0;
    left: 0
}

    .slick-track:after, .slick-track:before {
        display: table;
        content: ''
    }

    .slick-track:after {
        clear: both
    }

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}

/*-------------------- DEFAULT STYLES --------------------*/
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    color: #a4a4a4;
    font-size: 17px;
    line-height: 1.47em;
    font-family: 'Open Sans', serif;
    min-width: 320px;
    background: #131213;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
}

* {
    box-sizing: border-box;
    outline: none !important;
}

    *:before, *:after {
        box-sizing: border-box;
    }

.hide {
    display: none;
}

b, strong {
    font-weight: bold;
}

button, input[type="button"], input[type="submit"] {
    transition: .3s ease;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
}

    button[disabled], html input[disabled] {
        cursor: default;
    }

    button::-moz-focus-inner, input::-moz-focus-inner {
        padding: 0;
        border: 0;
    }

input[type="text"], input[type="tel"], input[type="email"], input[type="search"], textarea {
    display: block;
    width: 100%;
    height: 46px;
    padding: 8px 10px 10px 42px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    color: #fff;
    background-color: transparent;
    font-weight: 500;
    transition: .3s ease;
}

input[type="search"],
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="search"],
textarea {
    border: 1px solid #5f5f5f;
}

textarea {
    resize: none;
    height: 184px;
    padding-top: 16px;
}

    input[type="search"]:focus,
    input[type="text"]:focus,
    input[type="tel"]:focus,
    input[type="email"]:focus,
    input[type="search"]:focus,
    textarea:focus {
        border-color: #45a7ef;
    }

input::-moz-placeholder {
    color: #5a595a;
    font-weight: 700;
}

input::-webkit-input-placeholder {
    color: #5a595a;
    font-weight: 700;
}

input:-ms-input-placeholder {
    color: #5a595a;
    font-weight: 700;
}

input::-ms-input-placeholder {
    color: #5a595a;
    font-weight: 700;
}

input::placeholder {
    color: #5a595a;
    font-weight: 700;
}

textarea::-moz-placeholder {
    color: #5a595a;
    font-weight: 700;
}

textarea::-webkit-input-placeholder {
    color: #5a595a;
    font-weight: 700;
}

textarea:-ms-input-placeholder {
    color: #5a595a;
    font-weight: 700;
}

textarea::-ms-input-placeholder {
    color: #5a595a;
    font-weight: 700;
}

textarea::placeholder {
    color: #5a595a;
    font-weight: 700;
}

a {
    transition: .3s ease;
    text-decoration: none;
    color: #45a7ef;
}

.page-title .title,
h1, h2, h3, h4, h5, h6 {
    color: #fff;
    font-weight: 700;
    line-height: 1.5em;
    text-transform: uppercase;
}

.page-title .title,
h1 {
    font-size: 42px;
}

h2 {
    font-size: 35px;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    text-align: center;
}

    h2::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 140px;
        height: 2px;
        background-color: #45a7ef;
        transform: translate(-50%,0);
    }

h3 {
    font-size: 29px;
}

h4 {
    font-size: 24px;
    letter-spacing: 0.1em;
}

h5 {
    font-size: 20px;
    letter-spacing: 0.07em;
}

h6 {
    font-size: 17px;
    letter-spacing: 0.05em;
}

.slogan {
    max-width: 710px;
    margin: 0 auto 55px;
    text-align: center;
}

.s-bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.title a {
    color: #fff;
}

    .title a:hover {
        color: #45a7ef;
    }

.title-line-left {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

    .title-line-left:before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background-color: #45a7ef;
    }

/*-------------------- S-ANIMATE --------------------*/
.s-anim {
    transition: 1s ease;
    transform: translateY(60px);
    opacity: 0;
}

.s-anim-active {
    transform: translateY(0);
    opacity: 1;
}




@media (min-width:992px) {
    .nav-menu {
        margin-top: 0;
        display: block !important;
        width: auto !important;
        position: static;
        left: auto;
        top: auto;
        background-color: transparent;
        z-index: 0;
        padding-right: 28px;
        height: auto;
        opacity: 1;
    }


        .nav-list > li {
            display: inline-block;
            text-align: left;
            margin-right: 40px;
        }

            .nav-list > li:last-child {
                margin-right: 0;
            }
}

.nav-list li.dropdown ul {
    min-width: 100%;
    background: #292929;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    display: none;
    padding: 5px 0 !important;
}

    .nav-list li.dropdown ul li {
        text-align: left;
        margin-bottom: 10px;
    }

        .nav-list li.dropdown ul li:last-child {
            margin-bottom: 0;
        }

        .nav-list li.dropdown ul li a {
            text-transform: uppercase;
            text-decoration: none;
            font-size: 15px;
        }

        .nav-list li.dropdown ul li.active a {
            color: #45a7ef;
        }

@media (min-width:992px) {
    .nav-list li.dropdown ul {
        padding: 20px !important;
        display: block !important;
        left: 0;
        position: absolute;
        top: 100%;
        margin-top: 17px;
        min-width: 200px;
        transition: all 0.3s ease-in;
        opacity: 0;
        pointer-events: none;
        transform: translateY( 30px );
    }

    .nav-list li.active ul {
        pointer-events: auto;
        transition-timing-function: ease-out;
        opacity: 1;
        transform: translateY( 0px );
    }

    .nav-list li.dropdown ul li {
        display: block;
    }

    .nav-list li.dropdown2 ul {
        left: 100%;
        top: 0;
    }

    .nav-list li.dropdown ul li a {
        font-size: 12px;
    }
}

.nav-list > li > a {
    font-size: 14px;
    text-decoration: none;
    padding: 0;
    display: block;
}

.nav-list li a {
    font-weight: 700;
    letter-spacing: 0.05em;
    position: relative;
    text-transform: uppercase;
    line-height: 19px;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    transition: all 0.3s ease;
}

    .nav-list li a i {
        margin-left: 5px;
        font-size: 14px;
        line-height: 19px;
        font-weight: 700;
}


            .header-icon li.search form button:hover {
                background-color: transparent;
                color: #45a7ef;
            }

        .header-icon li.favorites a span {
            width: 16px;
            line-height: 16px;
            border-radius: 50%;
            color: #fff;
            background-color: #01de9c;
            text-align: center;
            font-size: 11px;
            font-weight: 700;
            position: absolute;
            top: -3px;
            right: 3px;
        }

body.no-scroll {
    overflow: hidden;
}



/*-------------------- HOME 1 MAIN --------------------*/
.main-slider-cover {
    position: relative;
    width: 100%;
    margin-top: 60px;
    overflow: hidden;
}

.main-slider {
    position: relative;
    width: 100%;
}

.main-slider-for .slider-track {
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
}

.main-slide-for {
    height: 600px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

    .main-slide-for img,
    .main-slide-for video {
        display: block;
        position: absolute;
        min-height: 100%;
        min-width: 100%;
        top: 0;
        left: 0;
        pointer-events: none;
    }

    .main-slide-for img {
        object-fit: cover;
        height: 100%;
        max-width: 100%;
        width: 100%;
        transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
        transform: scale(1.2) rotate(5deg);
    }

    .main-slide-for.slick-active img {
        transform: scale(1) rotate(0);
    }

.main-slider-nav {
    max-width: 754px;
    position: absolute;
    bottom: 55px;
    right: 0;
    z-index: 1;
    margin-right: -10px;
    padding-bottom: 53px;
}

.main-slide-nav {
    padding: 0 10px;
    transition: .3s ease;
    position: relative;
}

    .main-slide-nav .img-cover {
        position: relative;
        border-bottom: 5px solid #000;
        transition: .3s ease;
    }

        .main-slide-nav .img-cover:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #000;
            opacity: .5;
            z-index: 1;
            transition: .3s ease;
        }

    .main-slide-nav img {
        height: 152px;
        object-fit: cover;
        width: 100%;
        display: block;
        transition: .3s ease;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    }

    .main-slide-nav.slick-current .img-cover:before,
    .main-slide-nav:hover .img-cover:before {
        opacity: 0;
    }

    .main-slide-nav:hover .img-cover {
        border-color: #45a7ef;
    }

    .main-slide-nav.slick-current,
    .main-slide-nav:hover img {
        box-shadow: none;
    }

    .main-slide-nav span {
        position: absolute;
        font-size: 36px;
        font-weight: 700;
        bottom: 20px;
        left: 0;
        opacity: .3;
        z-index: 2;
        transition: .3s ease;
        color: #fff;
    }

    .main-slide-nav.slick-current span,
    .main-slide-nav:hover span {
        opacity: 1;
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    }

.main-slider-nav .slick-arrow {
    position: absolute;
    width: 115px;
    height: 38px;
    bottom: 0;
    left: 10px;
    background-color: #131213;
    display: block;
    text-align: center;
    transition: .3s ease;
}

    .main-slider-nav .slick-arrow:hover {
        background-color: #45a7ef;
    }

.main-slider-nav .slick-arrow-next.slick-arrow {
    left: 130px;
}

.main-slider-nav .slick-arrow i {
    color: #fff;
    margin: auto;
    line-height: 38px;
}

.main-slide-for .container {
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    padding-bottom: 55px;
    z-index: 1;
}

.slide-info {
    position: relative;
    max-width: 57.5%;
    width: 100%;
    color: #fff;
    z-index: 2;
    padding: 19px 30px 28px 0;
    min-height: 211px;
}

    .slide-info:before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 2000px;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: -1;
    }

    .slide-info h3 {
        font-size: 42px;
        max-width: 660px;
        transform: translateX(-500px);
        opacity: 0;
        transition: all .3s cubic-bezier(0.55, 0.06, 0.68, 0.19);
        margin-bottom: 10px;
    }

.main-slide-for.slick-current .slide-info h3 {
    transition: .6s cubic-bezier(0.22, 0.61, 0.36, 1) .3s;
    transform: translateX(0);
    opacity: 1;
}

.slide-info p {
    color: #c9c9c9;
    max-width: 644px;
    transform: translateX(-500px);
    opacity: 0;
    transition: all .3s cubic-bezier(0.55, 0.06, 0.68, 0.19);
}

.main-slide-for.slick-current .slide-info p {
    transition: .6s cubic-bezier(0.22, 0.61, 0.36, 1) .4s;
    transform: translateX(0);
    opacity: 1;
}

.slide-info a {
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.03em;
    display: inline-block;
    margin-top: 20px;
    transform: translateX(-500px);
    opacity: 0;
    transition: all .3s cubic-bezier(0.55, 0.06, 0.68, 0.19);
}

.main-slide-for.slick-current .slide-info a {
    transition: .6s cubic-bezier(0.22, 0.61, 0.36, 1) .5s;
    transform: translateX(0);
    opacity: 1;
}

.main-slide-for.slick-current .slide-info:hover a {
    transition: .6s ease;
}

.main-slide-for.slick-current .slide-info a:hover {
    transition-delay: 0s;
    color: #45a7ef;
}
/*-------------------- HOME 1 BEST PRICES --------------------*/
.best-prices {
    padding: 180px 0;
    overflow: visible; /* Cambiado de hidden a visible */
    position: relative;
    min-height: 100vh; /* Añadido */
    display: flex; /* Añadido */
    align-items: center; /* Añadido */
}

.title-left {
    text-align: left;
    margin-bottom: 20px;
    position: relative; /* Añadido */
}

    .title-left:before {
        left: 0;
        transform: none;
    }

.price-img-cover {
    padding: 0 60px;
    position: relative;
    width: 100%; /* Añadido */
    max-width: 100%; /* Añadido */
}

    .price-img-cover img {
        max-width: 100%;
        display: block;
        height: auto; /* Añadido */
    }

    .price-img-cover .price-drone {
        position: absolute;
        width: auto;
        z-index: 1;
        top: -30px;
        right: -143px;
        max-width: none;
        animation: levitation 20s linear 0s infinite normal;
    }

@keyframes levitation {
    from {
        transform: rotate(0deg) translateX(50px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(50px) rotate(-360deg);
    }
}

.price-info {
    padding: 0 0 50px 92px;
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
    transform: scale(1); /* Añadido para forzar escala 1:1 */
    visibility: visible; /* Añadido */
    display: block; /* Añadido */
}


    .price-info ul {
        display: flex;
        flex-wrap: wrap;
        margin: 25px 0 10px;
        padding: 0; /* Añadido */
        list-style: none; /* Añadido */
    }

/* Añadir media query específico para zoom */
@media screen and (min-width: 768px) {
    .price-info {
        transform-origin: left top; /* Añadido */
        min-height: 300px; /* Añadido */
    }
}

.price-info ul li {
    border: 2px solid #5f5f5f;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    line-height: 26px;
    text-align: center;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #fff;
    padding: 0 14px;
    margin: 0 20px 10px 0;
    transition: .3s ease;
    cursor: default;
}

.about-info .title-left,
.price-info .title-left {
    margin-bottom: 52px;
}

.price-info ul li:hover {
    border-color: #45a7ef;
}

.price-info .price {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5em;
    color: #45a7ef;
    margin-bottom: 52px;
}

/* Media Queries añadidos para mejor responsividad */
@media (max-width: 1200px) {
    .price-img-cover .price-drone {
        right: -70px;
        max-width: 80%;
    }
}

@media (max-width: 992px) {
    .best-prices {
        padding: 100px 0;
    }

    .price-info {
        padding: 0 20px 50px;
    }

    .price-img-cover {
        padding: 0 30px;
    }

        .price-img-cover .price-drone {
            position: relative;
            right: auto;
            top: auto;
            margin: 0 auto;
            display: block;
        }
}

@media (max-width: 768px) {
    .prod-content p {
        padding-left: 0;
        padding-top: 35px;
    }

    .price-info ul li {
        margin: 0 10px 10px 0;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .price-info {
        padding: 0 15px 30px;
    }

        .price-info ul {
            justify-content: center;
        }

    .title-left {
        text-align: center;
    }

        .title-left:before {
            left: 50%;
            transform: translateX(-50%);
        }
}

/*------------------ SERV-BLOCK ------------------*/
.serv-block {
    display: flex;
    justify-content: space-between;
}

.serv-block-item {
    height: 717px;
    width: 25%;
    position: static;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.border-item {
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border: 2px solid #45a7ef;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-30%);
    z-index: 3;
    opacity: 0;
    transition: .3s ease;
}

.serv-block-item:hover .border-item {
    opacity: 1;
    transform: translate(-50%,-50%);
}

.serv-block-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #000;
    opacity: .2;
    transition: .4s ease;
}

.serv-block-item:hover:before {
    opacity: 0;
}

.serv-block-item:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: .4s ease;
    background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
}

.serv-block-item:hover:after {
    opacity: 1;
}

.serv-block-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 2.5s ease-out;
}

.serv-block-item:hover img {
    transition: 5s ease-in-out;
    transform: scale(1.2);
}

.serv-block-info {
    z-index: 3;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 50%;
    transform: translate(0,50%);
    transition: .4s ease-in-out;
    padding: 55px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.serv-block-item:hover .serv-block-info {
    bottom: 0;
    transform: translate(0,0);
}

.serv-block-info h4 {
    width: 100%;
    position: relative;
    transition: .5s ease;
}

.serv-block-info p {
    transform: translateY(80px);
    transition: .3s ease;
    opacity: 0;
    width: 100%;
    height: 0;
    margin-top: 20px;
}

.serv-block-item:hover .serv-block-info p {
    opacity: 1;
    transform: translateY(0px);
    transition: .4s ease .2s;
    height: 96px;
    overflow: hidden;
}

.serv-block-info span {
    width: 100%;
    opacity: 0;
    margin-top: 30px;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #45a7ef;
    display: inline-block;
    transform: translateY(80px);
    transition: .3s ease;
}

.serv-block-item:hover .serv-block-info span {
    opacity: 1;
    transform: translateY(0px);
    transition: .4s ease .3s;
}

/*------------------------- S-BLOG -------------------------*/
.s-blog {
    padding: 166px 0 180px;
}

.post-item .prod-thumbnail {
    margin-bottom: 23px;
}

    .post-item .prod-thumbnail a {
        display: block;
    }

    .post-item .prod-thumbnail img {
        width: 100%;
        display: block;
        object-fit: cover;
        height: 370px;
        transition: .3s ease;
    }

        .post-item .prod-thumbnail img:hover {
            opacity: .7;
        }

.meta.top {
    color: #c7c7c7;
    margin-bottom: 35px;
}

.meta {
    font-weight: 500;
    font-size: 14px;
}

    .meta.bottom {
        margin-top: 12px;
    }

.post-item .post-comments {
    margin-right: 19px;
}

.post-item .btn {
    margin-top: 43px;
}

/*--------------------- S-INFO-BG ---------------------*/
.s-info-bg {
    padding: 166px 0 180px;
    min-height: 776px;
    background-image: url(../img/bg-2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
}

.mask {
    position: relative;
}

    .mask .container {
        position: relative;
        z-index: 1;
    }

    .mask:before,
    .s-info-bg:before {
        content: '';
        pointer-events: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,.4);
    }

.s-info-bg .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.s-info-bg .slogan {
    color: #fff;
}

.s-info-cover {
    max-width: 876px;
    margin: 0 auto;
}

.s-info-bg .btn {
    margin-top: 60px;
}

.opportunitie-item,
.block-icon {
    background: #292929;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    min-height: 206px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    transition: .3s ease;
}

    .opportunitie-item:hover,
    .item.active .block-icon,
    .block-icon:hover {
        background-color: #45a7ef;
    }

    .support:before,
    .opportunitie-item:before,
    .block-icon:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: calc(100% - 20px);
        height: calc(100% - 20px);
        border: 2px solid #45a7ef;
        transition: .4s ease;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
        pointer-events: none;
    }

    .opportunitie-item:hover:before,
    .item.active .block-icon:before,
    .block-icon:hover:before {
        border-color: #fff;
    }

    .block-icon img {
        margin-bottom: 21px;
        transition: .3s ease;
        max-height: 59px;
        max-width: 100%;
    }

    .item.active .block-icon img,
    .block-icon:hover img {
        margin-bottom: 16px;
    }

    .block-icon h6 {
        position: relative;
        letter-spacing: 0.1em;
        padding-top: 18px;
        transition: .3s ease;
        text-align: center;
    }

    .item.active .block-icon h6,
    .block-icon:hover h6 {
        padding-top: 13px;
    }

    .block-icon h6:before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%,0);
        width: 50px;
        height: 2px;
        background-color: #45a7ef;
        transition: .3s ease;
    }

    .item.active .block-icon h6:before,
    .block-icon:hover h6:before {
        background-color: #292929;
    }

/*------------------------ S-SHOP ------------------------*/
.s-related-products {
    padding: 166px 0 100px;
}

.s-shop {
    padding: 166px 0 100px;
}

    .we-offer-bottom .block-icon,
    .s-shop .block-icon {
        min-height: 168px;
    }

        .we-offer-bottom .block-icon h6,
        .s-shop .block-icon h6 {
            font-size: 14px;
        }

.prod-item {
    margin-bottom: 80px;
}

    .prod-item .prod-thumbnail {
        margin-bottom: 20px;
    }

        .prod-item .prod-thumbnail .prod-img {
            display: block;
            position: relative;
            height: 350px;
        }

    .prod-item .prod-thumbnail {
        /* Mantén este bloque vacío si no necesitas personalización específica */
    }

        .prod-item .prod-thumbnail img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: .3s ease;
            box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.1);
        }

.s-shop .prod-item .prod-thumbnail .prod-img {
    height: 440px;
}

.prod-content .title {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 41px;
}

    .prod-content .title:before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 53px;
        height: 2px;
        background-color: #45a7ef;
    }

.prod-content p {
    font-size: 18px; /* Tamaño más pequeño para contraste */
    color: #ffffff; /* Blanco puro */
    line-height: 1.8; /* Mayor espaciado entre líneas */
    margin-bottom: 10px;
    text-align: justify; /* Alineado justificado */
}

.prod-item .price {
    font-weight: 900; /* Negrita para resaltar */
    font-size: 40px; /* Tamaño grande para llamar la atención */
    color: #ffd700; /* Amarillo dorado brillante */
    text-align: left; /* Alinea a la izquierda */
    margin-top: 15px; /* Espaciado superior */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Sombra para mayor contraste */
    border-left: 4px solid #ffd700; /* Línea decorativa a la izquierda */
    padding-left: 10px; /* Espaciado después de la línea */
}

    .prod-item .price .old-price {
        color: #aaa; /* Color tenue para el precio anterior */
        text-decoration: line-through;
        margin-right: 8px;
        font-size: 18px; /* Tamaño más pequeño que el precio actual */
    }

.price-highlight {
    font-size: 18px;
    font-weight: bold;
    color: #00ccff; /* Azul claro para el precio */
    text-shadow: 0 0 10px #00ccff, 0 0 20px #00ccff; /* Efecto de neón azul claro */
    letter-spacing: 2px;
    margin: 0;
}

.price-container {
    display: flex; /* Habilita flexbox */
    justify-content: space-between; /* Distribuye elementos horizontalmente */
    align-items: center; /* Alinea verticalmente */
    gap: 20px; /* Espacio entre el precio y el botón */
}

.download-btn {
    background-color: #00ccff; /* Azul claro de fondo antes de pasar el mouse */
    border: 2px solid #00ffcc; /* Borde azul claro */
    color: #000; /* Color de texto oscuro para un buen contraste */
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    margin-left: -10px; /* Mueve el botón hacia la izquierda */
}

 

    .download-btn:hover {
        color: #fff; /* Texto blanco al pasar el mouse */
        background-color: #000; /* Fondo oscuro al pasar el mouse */
        box-shadow: 0 0 10px #00ccff, 0 0 20px #00ccff, 0 0 30px #00ccff;
    }

    .download-btn:focus {
        outline: none;
    }



@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0 0;
    }
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0 0;
    }
}

.prod-item .btn {
    margin-top: 41px;
}

.tabs-content {
    position: relative;
}

.tab {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    transform: translateY(50px);
    width: 100%;
}

    .tab.visible-content {
        pointer-events: auto;
        z-index: 15;
        transition-timing-function: ease-in-out;
        transition-delay: 0.3s;
        opacity: 1;
        transform: translateY(0px);
    }

.prod-tabs {
    display: flex;
    max-width: 1260px;
    margin: 0 auto 40px;
}

    .prod-tabs .item {
        width: 16.66%;
        margin-right: 20px;
    }

        .prod-tabs .item:last-child {
            margin-right: 0;
        }

.prod-item:hover .prod-link-cover {
    opacity: 1;
}

.prod-link-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: rgba(41, 41, 41, 0.7);
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: .3s ease-in-out;
}

    .prod-link-cover li:not(:last-child) {
        margin-right: 10px;
    }

    .prod-link-cover li a {
        display: block;
        width: 40px;
        background: #45a7ef;
        border: 2px solid #45a7ef;
        box-sizing: border-box;
        box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.1);
        line-height: 36px;
        text-align: center;
        font-size: 18px;
        color: #fff;
    }

        .prod-link-cover li a:hover {
            background-color: #333;
            border-color: #fff;
        }

.simple-price {
    color: #fff;
    text-align: left;
    margin: 15px 0;
    font-size: 16px;
}

/*------------------- NEW-PRODUCT -------------------*/
.s-product {
    padding-bottom: 180px;
}

.new-product {
    padding: 166px 0 0;
}

.slider-new-product {
    margin-left: -15px;
    margin-right: -15px;
}

.slide-new-product {
    padding: 0 15px;
}

.prod-item .lable {
    position: absolute;
    min-width: 60px;
    line-height: 24px;
    text-align: center;
    padding: 0 5px;
    top: 20px;
    left: 20px;
    z-index: 2;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    display: none;
}

.lable-new {
    background-color: #45a7ef;
}

.lable-sale {
    background-color: #de0136;
}

.prod-item.new .lable-new {
    display: block;
}

.prod-item.sale .lable-sale {
    display: block;
}

.slider-new-product .slick-arrow {
    position: absolute;
    top: 144px;
    z-index: 2;
    color: #fff;
    font-size: 40px;
    transition: .3s ease;
    padding: 10px;
}

    .slider-new-product .slick-arrow.slick-arrow-next {
        right: -30px;
    }

    .slider-new-product .slick-arrow.slick-arrow-prev {
        left: -30px;
    }

    .slider-new-product .slick-arrow:hover {
        color: #45a7ef;
    }

/*----------------------- S-BANNERS -----------------------*/
.s-banners {
    padding: 100px 0 166px;
}

.baner-item {
    padding: 30px 40px;
    height: 473px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
}

    .baner-item:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(0,0,0,.4);
        z-index: 1;
    }

    .baner-item img {
        width: 100%;
        height: 100%;
        display: block;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        object-fit: cover;
        position: absolute;
        transition: 3s ease-in-out;
    }

    .baner-item:hover img {
        transform: translate(-50%,-50%) scale(1.2);
        transition: 5s ease-in-out;
    }

.baner-item-content {
    width: 100%;
    position: relative;
    z-index: 2;
    color: #fff;
}

    .baner-item-content .btn {
        margin: 54px 0 23px;
    }

.banner-sale {
    font-style: italic;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5em;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
/*-------------------- S-OPPORTUNITIES --------------------*/
.s-opportunities {
    min-height: 902px;
 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    position: relative;
    text-align: center;
    padding: 166px 0 180px;
}

    .s-opportunities .container {
        z-index: 2;
        position: relative;
    }

    .s-opportunities:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,.4);
        pointer-events: none;
    }

    .s-opportunities .slogan {
        color: #fff;
        margin-bottom: 58px;
    }

    .s-opportunities .btn {
        margin-top: 60px;
    }

.slider-opportunities {
    max-width: 1196px;
    margin: 0 auto;
}

    .slider-opportunities .title {
        font-size: 96px;
        line-height: 1em;
        margin-bottom: 69px;
        color: #45a7ef;
    }

.opportunities-cover {
    max-width: 904px;
    margin: 0 auto;
    position: relative;
}

.opportunitie-item .item-wrap {
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

    .opportunitie-item .item-wrap .numb {
        font-size: 48px;
        letter-spacing: 0.05em;
        line-height: 1em;
    }

    .opportunitie-item .item-wrap .item-value {
        font-size: 12px;
        line-height: 18px;
        letter-spacing: 0.1em;
        display: block;
    }

.opportunitie-item h6 {
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #45a7ef;
    max-width: 126px;
    margin: 18px auto 0;
    transition: .3s ease;
}

.opportunitie-item:hover h6 {
    color: #fff;
}

.slider-opportunities .slick-arrow {
    position: absolute;
    top: 12px;
    z-index: 2;
    color: #fff;
    font-size: 60px;
    transition: .3s ease;
    padding: 10px;
}

    .slider-opportunities .slick-arrow:hover {
        color: #45a7ef;
    }

    .slider-opportunities .slick-arrow.slick-arrow-prev {
        left: -13px;
    }

    .slider-opportunities .slick-arrow.slick-arrow-next {
        right: -13px;
    }

/*------------------- S-TESTIMONIALS -------------------*/
.s-testimonials.bg-testimonials {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 830px;
    padding: 166px 0 180px;
    display: flex;
    -ms-align-items: center;
    align-items: center;
}

    .s-testimonials.bg-testimonials .slogan {
        color: #fff;
    }

    .s-testimonials.bg-testimonials.mask:before {
        background-color: rgba(0, 0, 0, 0.6);
    }

.s-testimonials {
    padding: 166px 0;
}

.slider-testimonials {
    margin-left: -15px;
    margin-right: -15px;
}

.slide-testimonial {
    padding: 75px 15px 0;
    text-align: center;
}

.testimonial-item {
    background: #272727;
    padding: 44px;
    position: relative;
}

    .testimonial-item:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: calc(100% - 40px);
        height: calc(100% - 40px);
        border: 2px solid #45a7ef;
        transition: .4s ease;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
        pointer-events: none;
    }

    .testimonial-item img {
        position: relative;
        z-index: 1;
        margin: -116px auto 11px;
        width: 130px;
        height: 130px;
        object-fit: cover;
        border-radius: 50%;
    }

    .testimonial-item .name {
        letter-spacing: 2px;
    }

    .testimonial-item .prof {
        font-weight: 700;
        font-size: 13px;
        line-height: 8px;
        text-align: center;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #aaa;
        margin: 5px 0 8px;
    }

    .testimonial-item .testimon-content {
        font-style: italic;
        letter-spacing: 0.05em;
        color: #fff;
        position: relative;
        padding: 32px 35px;
    }

        .testimonial-item .testimon-content:before {
            content: '\f10d';
            font-family: FontAwesome;
            font-style: normal;
            left: 6px;
            top: -2px;
        }

        .testimonial-item .testimon-content:after {
            content: '\f10e';
            font-family: FontAwesome;
            font-style: normal;
            right: 6px;
            bottom: -2px;
        }

        .testimonial-item .testimon-content:after,
        .testimonial-item .testimon-content:before {
            position: absolute;
            font-size: 24px;
            line-height: 32px;
            color: rgba(255, 255, 255, 0.1);
        }

.slider-testimonials .slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

    .slider-testimonials .slick-dots li {
        border: 2px solid #fff;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        margin-right: 16px;
        position: relative;
        transition: .3s ease;
    }

        .slider-testimonials .slick-dots li:last-child {
            margin-right: 0;
        }

        .slider-testimonials .slick-dots li button {
            position: absolute;
            font-size: 0;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 0;
            border: none;
            background-color: transparent;
            transition: .3s ease;
            border-radius: 50%;
        }

        .slider-testimonials .slick-dots li:hover,
        .slider-testimonials .slick-dots li.slick-active {
            border-color: transparent;
        }

            .slider-testimonials .slick-dots li:hover button,
            .slider-testimonials .slick-dots li.slick-active button {
                background: #45a7ef;
            }

/*-------------------- S-CONTACTS --------------------*/
.s-main-contacts.s-contacts {
    padding-top: 0;
}

.s-contacts {
    padding: 180px 0;
}

    .s-contacts .container {
        position: relative;
    }

    .s-contacts .form-cover {
        max-width: 1170px;
        margin: 0 auto;
    }

.form-cover {
    display: flex;
    ;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .form-cover li {
        margin-bottom: 20px;
        position: relative;
    }

.inp-name,
.inp-phone,
.inp-email {
    width: calc(33.33% - 20px);
}

    

    .inp-name:before {
        content: '\f007';
    }

    .inp-phone:before {
        content: '\f095';
    }

    .inp-email:before {
        content: '\f1fa';
    }

.inp-text:before {
    content: '\f27b';
    top: 16px;
}

.inp-text {
    width: 100%;
}

.checkbox-wrap {
    text-align: center;
    margin-bottom: 33px;
}

.checkbox-cover {
    position: relative;
    display: inline-block;
}

    .checkbox-cover p {
        position: relative;
        padding-left: 38px;
        font-size: 14px;
        font-weight: 600;
    }

    .checkbox-cover input {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        opacity: 0;
        margin: 0;
    }

        .checkbox-cover input:checked + p:before {
            content: '\f00c';
        }

.btn-form-cover {
    text-align: center;
}

    .btn-form-cover span {
        display: inline-block;
        position: relative;
    }

#success_page {
    color: #fff;
}

    #success_page h3 {
        color: #45a7ef;
    }

#message {
    position: absolute;
    left: 0;
    width: 100%;
    top: 100%;
    text-align: center;
    color: #fff;
    margin: 30px 0;
}

    #message .error_message {
        color: #f23849;
    }

/*------------------------ S-MAP ------------------------*/
.cont-map {
    height: 415px;
}

/*------------------- PAGE-TITLE -------------------*/
.page-title {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 250px;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    padding-top: 86px;
}

    .page-title .title {
        text-align: center;
    }

.breadcrumbs ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.breadcrumbs li a,
.breadcrumbs li {
    position: relative;
    letter-spacing: 0.01em;
    color: #fff;
}

    .breadcrumbs li:not(:last-child):after {
        content: '/';
        display: inline-block;
        padding: 0 5px;
    }

    .breadcrumbs li a:hover {
        color: #45a7ef;
    }

/*--------------------- ABOUT-TOP ---------------------*/
.about-top {
    padding: 180px 0;
}

.contacts-top.about-top {
    padding: 180px 0 166px;
}

.about-top-cover {
    align-items: center;
}

.about-img img {
    max-width: 100%;
    display: block;
}

.about-info p {
    margin-bottom: 16px;
}

    .about-info p a:hover {
        color: #fff;
    }

.about-cont {
    display: flex;
    flex-wrap: wrap;
    padding-top: 32px;
    margin-bottom: 22px;
}

    .about-cont li:not(:last-child) {
        margin-right: 21px;
    }

    .about-cont li a {
        display: flex;
        align-items: center;
    }

        .about-cont li a i {
            color: #fff;
            font-size: 18px;
            margin-right: 11px;
            transition: .3s ease;
        }

        .about-cont li a:hover,
        .about-cont li a:hover i {
            color: #fff;
        }

.about-top-block {
    margin-top: 80px;
}

.about-block {
    display: flex;
    align-items: center;
    background: #292929;
    min-height: 150px;
    padding: 20px;
    position: relative;
    color: #fff;
    transition: .3s ease;
}

    .about-block:hover {
        background-color: #45a7ef;
    }

    .about-block:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: calc(100% - 20px);
        height: calc(100% - 20px);
        border: 2px solid #45a7ef;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
        pointer-events: none;
        transition: .3s ease;
    }

    .about-block:hover:before {
        border-color: #fff;
    }

.about-block-icon {
    min-width: 100px;
    text-align: center;
    padding-right: 10px;
}

    .about-block-icon img,
    .about-block-icon svg {
        max-width: 100%;
        max-height: 100%;
    }

    .about-block-icon svg {
        fill: #45a7ef;
        transition: .3s ease;
    }

.about-block:hover .about-block-icon svg {
    fill: #fff;
}

.about-block-info .title {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 20px;
}

    .about-block-info .title:before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background-color: #45a7ef;
        transition: .3s ease;
    }

.about-block:hover .about-block-info .title:before {
    background-color: #292929;
}

.about-info-text {
    letter-spacing: 0.07em;
    text-transform: capitalize;
}

/*---------------------- S-INFOGRAPHICS ----------------------*/
.s-info-bg.s-infographics {
    min-height: 678px;
}

.s-infographics .number {
    font-weight: 700;
    font-size: 48px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    line-height: normal;
    padding-bottom: 6px;
}

.s-infographics .block-icon h6 {
    padding-top: 25px;
    min-height: 68px;
    font-weight: 600;
}

.s-infographics h2 {
    margin-bottom: 30px;
}

/*-------------------------- S-TEAM --------------------------*/
.s-team {
    padding: 166px 0 180px;
}

.team-img {
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
}

    .team-img:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: calc(100% - 40px);
        height: calc(100% - 40px);
        border: 2px solid #45a7ef;
        transition: .3s ease;
        z-index: 1;
        pointer-events: none;
    }

    .team-img img {
        display: block;
        width: 100%;
        height: 100%;
        height: 319px;
        object-fit: cover;
    }

.team-info {
    text-align: center;
    color: #fff;
}

    .team-info .soc-link {
        justify-content: center;
    }

        .team-info .soc-link li:not(:last-child) {
            margin-right: 15px;
        }

    .team-info .prof {
        letter-spacing: 0.07em;
        text-transform: capitalize;
        margin-bottom: 22px;
        color: #aaa;
    }

/*-------------------- S-CLIENTS --------------------*/
.s-clients {
    padding: 180px 0;
    text-align: center;
}

    .s-clients img {
        max-width: 100%;
    }

    .s-clients.s-clients-home {
        padding-top: 0;
    }

/*-------------------- S-WE-OFFER --------------------*/
.s-we-offer {
    padding: 166px 0 180px;
}

.offer-item-img {
    margin-bottom: 20px;
}

    .offer-item-img img {
        width: 100%;
        max-height: 440px;
        object-fit: cover;
        display: block;
        box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.1);
    }

.offer-item-content h4 {
    letter-spacing: 0.07em;
    margin-bottom: 21px;
}

.we-offer-bottom {
    margin-top: 75px;
}

/*---------------- S-DISCOUNT-PROGRAM ----------------*/
.s-discount-program {
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 166px 0 174px;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    min-height: 590px;
    color: #fff;
    text-align: center;
}

    .s-discount-program.mask:before {
        background-color: rgba(0,0,0,.7);
    }

    .baner-item-content h2,
    .s-discount-program h2 {
        margin-bottom: 51px;
    }

.sale-cover {
    margin-top: 23px;
}

    .sale-cover .sale {
        font-style: italic;
        font-weight: bold;
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

/*-------------------- S-VIDEO --------------------*/
.s-video {
    padding: 166px 0;
}

.slide-video {
    height: 640px;
    width: 100%;
    position: relative;
}

    .slide-video video {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        min-width: 100%;
        min-height: 100%;
        position: relative;
    }

.slider-video .slick-dots {
    display: flex;
    justify-content: center;
    position: absolute;
    z-index: 2;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translate(-50%,0);
    transition: .4s ease-in-out;
    opacity: 0;
}

    .slider-video .slick-dots li {
        border: 2px solid #fff;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        margin-right: 16px;
        position: relative;
        transition: .3s ease;
    }

        .slider-video .slick-dots li:last-child {
            margin-right: 0;
        }

        .slider-video .slick-dots li.slick-active {
            border-color: #45a7ef;
            pointer-events: none;
        }

        .slider-video .slick-dots li:hover {
            background-color: #45a7ef;
            border-color: #45a7ef;
        }

        .slider-video .slick-dots li button {
            position: absolute;
            font-size: 0;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 0;
            border: none;
            background-color: transparent;
            transition: .3s ease;
            border-radius: 50%;
        }

.slider-video .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translate(0,-50%);
    z-index: 2;
    color: #fff;
    font-size: 46px;
    font-weight: 400;
    transition: .3s ease;
    padding: 10px;
    opacity: 0;
    transition: .4s ease-in-out;
}

.slider-video:hover .slick-arrow,
.slider-video:hover .slick-dots {
    opacity: 1;
}

.slider-video .slick-arrow:hover {
    color: #45a7ef;
}

.slider-video .slick-arrow.slick-arrow-prev {
    left: 15%;
}

.slider-video .slick-arrow.slick-arrow-next {
    right: 15%;
}

/*----------------------- S-GALLERY -----------------------*/
.s-gallery {
    padding-bottom: 166px;
}

.gallery-cover {
    margin-left: -15px;
    margin-right: -15px;
}

.gallery-item {
    width: 33.33%;
    padding: 15px;
    transition: .3s ease;
}

    .gallery-item a {
        display: block;
        overflow: hidden;
        position: relative;
    }

     

        .gallery-item a:hover:before {
            transform: translate(-50%,-50%);
            opacity: 1;
        }

        .gallery-item a:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            opacity: 0;
            background: linear-gradient(145deg, rgba(69,167,239,.8) 0%,rgba(41,41,41,0) 95%);
            transition: .3s ease-in-out;
        }

        .gallery-item a:hover:after {
            opacity: 1;
        }

        .gallery-item a:hover img {
            opacity: .6;
        }

    .gallery-item img {
        width: 100%;
        display: block;
        transition: .3s ease-in-out;
    }

.gal-item {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 150px;
    background: rgba(41, 41, 41, 0.7);
    color: #fff;
    text-align: center;
    padding: 20px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    z-index: 1;
    transition: .5s ease-in-out;
}

.gallery-item a:hover .gal-item {
    bottom: -100%;
}

.gal-item:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 2px solid #45a7ef;
    pointer-events: none;
    transition: .3s ease;
}

.gal-item .title {
    padding-bottom: 14px;
    margin-bottom: 21px;
    position: relative;
}

    .gal-item .title:before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%,0);
        width: 50px;
        height: 2px;
        background-color: #45a7ef;
        transition: .3s ease;
    }

.gallery-tabs {
    display: flex;
    justify-content: center;
    max-width: 790px;
    padding-bottom: 10px;
    margin: 0 auto 15px;
}

    .gallery-tabs .item {
        text-transform: uppercase;
        color: #fff;
        font-weight: 700;
        font-size: 20px;
        line-height: 30px;
        text-align: center;
        letter-spacing: 1.4px;
        text-transform: uppercase;
        padding: 0 14px;
        transition: .3s ease;
        position: relative;
        border-bottom: 2px solid #534e5f;
    }

        .gallery-tabs .item:before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            width: 0%;
            height: 2px;
            z-index: 1;
            background-color: #45a7ef;
            transition: .4s ease;
            transform: translate(-50%,0);
        }

        .gallery-tabs .item.active:before,
        .gallery-tabs .item:hover:before {
            width: 100%;
        }

        .gallery-tabs .item:hover {
            color: #45a7ef;
        }

        .gallery-tabs .item.active {
            color: #45a7ef;
            pointer-events: none;
        }

        .gallery-tabs .item:last-child {
            margin-right: 0;
        }

/*----------------------- TO-TOP -----------------------*/
.to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    opacity: 0;
    pointer-events: none;
    z-index: 22;
    transition: .3s ease-in-out;
}

    .to-top.active {
        opacity: 1;
        pointer-events: auto;
    }

    .to-top span {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 2px solid #fff;
        border-right: none;
        border-top: none;
        display: block;
        position: relative;
        animation: rotate-to-top 20s linear 0s infinite normal;
        transition: .3s ease;
    }

    .to-top:hover span {
        border-color: #45a7ef;
    }

@keyframes rotate-to-top {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.to-top img {
    width: 20px;
    position: absolute;
    top: 0;
    right: 0;
    animation: to-top-drone 5s linear 0s infinite normal;
}

@keyframes to-top-drone {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.to-top i {
    z-index: 1;
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    font-size: 20px;
    transition: .3s ease;
}

.to-top:hover i {
    color: #45a7ef;
}

/*-------------------- PAGINATION --------------------*/
.s-product .pagination-cover {
    margin-top: 20px;
}

.pagination {
    display: flex;
    justify-content: center;
}

.pagination-item:not(:last-child) {
    margin-right: 8px;
}

.pagination-item a {
    font-weight: 600;
    font-size: 18px;
    line-height: 32px;
    width: 38px;
    text-align: center;
    border: 1px solid #2b2b2b;
    color: #fff;
    display: block;
}

    .pagination-item a i {
        vertical-align: 1px;
    }

.pagination-item.active a {
    border-color: #45a7ef;
    background-color: #45a7ef;
    pointer-events: none;
}

.pagination-item:hover a {
    border-color: #45a7ef;
}

/*----------------- S-SINGLE-PRODUCT -----------------*/
.s-single-product {
    padding: 180px 0 160px;
}

.slider-single-for {
    margin-bottom: 20px;
}

.single-for-img {
    display: block;
    position: relative;
}

  

    .single-for-img:hover:before {
        transform: translate(-50%,-50%);
        opacity: 1;
    }

    .single-for-img:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        opacity: 0;
        background: linear-gradient(145deg, rgba(69,167,239,.8) 0%,rgba(41,41,41,0) 95%);
        transition: .3s ease-in-out;
    }

    .single-for-img:hover:after {
        opacity: 1;
    }

    .single-for-img img {
        width: 100%;
        height: 500px;
        object-fit: cover;
    }

.slider-single-nav {
    margin-left: -10px;
    margin-right: -10px;
}

.slide-single-nav {
    padding: 0 10px;
}

.single-nav-img {
    position: relative;
}

    .single-nav-img:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background-color: #45a7ef;
        opacity: 0;
        transition: .3s ease-in-out;
    }

    .single-nav-img:hover:before,
    .slide-single-nav.slick-current .single-nav-img:before {
        opacity: .5;
    }

    .single-nav-img img {
        width: 100%;
        height: 100px;
        object-fit: cover;
    }

.single-price {
    font-size: 35px;
    font-weight: 700;
    color: #45a7ef;
    margin-bottom: 52px;
}

.single-text {
    margin-bottom: 40px;
}

.single-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 42px;
}

    .single-info li {
        display: flex;
        align-items: center;
        width: calc(50% - 10px);
        padding: 15px 0;
        color: #fff;
    }

        .single-info li .single-img {
            width: 80px;
            height: 60px;
            text-align: center;
            margin-right: 10px;
        }

            .single-info li .single-img img {
                max-width: 100%;
                max-height: 100%;
            }

.single-tab {
    padding-top: 150px;
}

    .single-tab p {
        margin-bottom: 16px;
    }

    .single-tab .tab-nav {
        margin-bottom: 40px;
    }

.reviews-list .review-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.reviews-list .item {
}

.reviews-list ul {
    padding-left: 100px;
}

.review-avatar {
    margin-right: 20px;
}

    .review-avatar img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
    }

.review-content .name {
    font-size: 16px;
    font-weight: 600;
    color: #45a7ef;
    text-transform: capitalize;
    letter-spacing: 0.07em;
}

.review-content .date {
    font-size: 14px;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.4);
}

.faq-cover li:not(:last-child) {
    padding-bottom: 38px;
    border-bottom: 1px solid #534e5f;
    margin-bottom: 53px;
}

.review-btn {
    margin-top: 16px;
    font-weight: 600;
    display: inline-block;
}

/*----------------------- S-NEWS -----------------------*/
.s-news {
    padding: 180px 0;
}

.post-item-cover {
    margin-top: 100px;
}

    .post-item-cover:first-child {
        margin-top: 0;
    }



.post-thumbnail img {
    max-width: 100%;
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    display: block;
    transition: .3s ease;
}

    .post-thumbnail img:hover {
        opacity: .7;
    }
    .post-thumbnail ~ .post-header-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    min-height: 150px;
    background: rgba(41, 41, 41, 0.8);
    padding: 25px 70px;
    flex-direction: column;
}

.post-header-info {
    position: relative;
}

.post-thumbnail ~ .post-header-info:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 2px solid #45a7ef;
    transition: .4s ease;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.post-header .post-thumbnail ~ .post-header-info .meta {
    text-align: center;
    margin: 0 auto;
}

.post-item-cover .post-header .meta {
    margin-bottom: 0;
}

.post-item-cover .meta {
    margin-left: -15px;
    margin-right: -15px;
    width: 100%;
}

    .post-item-cover .meta span {
        padding: 10px 15px;
        text-transform: capitalize;
    }

.post-header .post-thumbnail ~ .post-header-info .title {
    margin-bottom: 10px;
    text-align: center;
}





.post-item-cover .title {
    width: 100%;
    margin-bottom: 18px;
}

    .post-item-cover .title a {
        color: #fff;
    }

        .post-item-cover .title a:hover {
            color: #45a7ef;
        }

.post-content .text {
    padding-bottom: 11px;
}

    .post-content .text p {
        margin-bottom: 25px;
    }

.post-item-cover .btn {
    margin-top: 44px;
}

blockquote {
    margin: 15px 0;
    background: #45a7ef;
    padding: 38px 38px 38px 176px;
    color: #fff;
    position: relative;
}

    blockquote p {
        font-style: italic;
        font-weight: 500;
        font-size: 22px;
        line-height: 1.6em;
    }

    blockquote cite {
        font-weight: 600;
        font-size: 24px;
        line-height: 1.5em;
        margin-top: 24px;
        display: block;
    }

        blockquote cite:before {
            content: '—';
            display: inline-block;
            margin-right: 10px;
        }

    blockquote a {
        color: #fff;
    }

        blockquote a:hover {
            opacity: .7;
        }



.blog-cover .pagination-cover {
    margin-top: 100px;
}

.blog-cover .pagination {
    justify-content: flex-start;
}

/*-------------------- WIDGET --------------------*/
.widget {
    margin-top: 80px;
}

    .widget:first-child {
        margin-top: 0;
    }

    .widget .title {
        text-transform: capitalize;
        padding-bottom: 10px;
        margin-bottom: 20px;
        border-bottom: 1px solid #2a2b2b;
        letter-spacing: 0;
    }

/*widget-support*/
.support {
    background: #292929;
    padding: 50px 40px;
    position: relative;
    text-align: center;
}

    .support img {
        width: 96px;
        height: 96px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 15px;
    }

    .support .name {
        font-weight: 600;
        font-size: 15px;
        line-height: 1.5em;
        text-transform: capitalize;
        color: #fff;
    }

        .support .name span {
            color: #45a7ef;
        }

    .support .title {
        font-weight: 600;
        font-size: 18px;
        text-transform: capitalize;
        color: #fff;
        margin-bottom: 23px;
    }

    .support .btn {
        margin-top: 30px;
    }

/*widget-tags*/
.widget-tags ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -10px;
}

.widget-tags li {
    margin-right: 20px;
    margin-bottom: 10px;
}

    .widget-tags li a {
        padding: 0 15px;
        display: block;
        line-height: 38px;
        color: #fff;
        background: #333;
        text-align: center;
        font-size: 14px;
    }

        .widget-tags li a:hover {
            background-color: #45a7ef;
        }

/*widget-categories*/
.widget-archive li:not(:last-child),
.widget-categories li:not(:last-child) {
    margin-bottom: 10px;
}

.widget-archive li a,
.widget-categories li a {
    position: relative;
    font-weight: 700;
    font-size: 17px;
    text-transform: capitalize;
    color: #45a7ef;
}

  

/*widget-recent-posts*/
.widget-recent-posts li:not(:last-child) {
    margin-bottom: 20px;
}

.widget-recent-posts li a {
    font-weight: 700;
}

.widget-recent-posts li .date {
    display: block;
    margin-top: 4px;
}

/*widget-instagram*/
.widget-instagram ul {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.widget-instagram li {
    width: 33.33%;
    padding: 10px;
}

    .widget-instagram li a {
        display: block;
    }

    .widget-instagram li img {
        width: 100%;
        display: block;
        height: 112px;
        object-fit: cover;
        transition: .3s ease;
    }

    .widget-instagram li a:hover img {
        opacity: .7;
    }

/*-------------------- SINGLE BLOG --------------------*/
/*.autor-cover*/
.autor-cover {
    margin: 53px 0 37px;
    border-top: 1px solid #2a2b2b;
    border-bottom: 1px solid #2a2b2b;
    padding: 40px 0;
    display: flex;
    align-items: center;
}

    .autor-cover img {
        width: 124px;
        height: 124px;
        object-fit: cover;
        border-radius: 50%;
        margin-right: 30px;
    }

    .autor-cover .name {
        font-weight: 700;
        font-size: 20px;
        color: #45a7ef;
        margin-bottom: 6px;
    }

    .autor-cover p {
        max-width: 370px;
    }

/*navigation*/
.navigation {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid #2a2b2b;
}

.navigation-item {
    width: calc(50% - 15px);
}

.navigation-right {
    text-align: right;
}

.navigation-item span {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    color: #45a7ef;
    transition: .3s ease;
}

.navigation-item .title {
    position: relative;
    font-weight: 700;
    font-size: 20px;
    line-height: 29px;
    color: #fff;
    transition: .3s ease;
}

.navigation-item.navigation-left .title {
    padding-left: 20px;
}

.navigation-item.navigation-right .title {
    padding-right: 20px;
}



.navigation-item.navigation-left .title:before {
    left: 0;
    content: '\f104';
}

.navigation-item.navigation-right .title:before {
    content: '\f105';
    right: 0;
}

.navigation-item:hover {
    opacity: .7;
}

    .navigation-item:hover .title {
        color: #45a7ef;
    }

/*reviews*/
.reviews {
    margin-top: 50px;
}

    .reviews .title {
        margin-bottom: 20px;
        text-transform: capitalize;
        letter-spacing: 0;
    }

.reviews-form {
    margin-top: 50px;
}

    .reviews-form .inp-name,
    .reviews-form .inp-email {
        width: calc(50% - 15px);
    }

/*---------------------- S-ERROR ----------------------*/
.s-error {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: 720px;
    padding: 166px 0 180px;
    text-align: center;
    overflow: hidden;
}

    .s-error:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background-color: rgba(0,0,0,.8);
    }

    .s-error .container {
        position: relative;
        z-index: 2;
    }

    .s-error .title {
        font-size: 170px;
        line-height: 180px;
        font-weight: 700;
        letter-spacing: 0.1em;
    }

    .s-error p {
        font-size: 26px;
        font-weight: 600;
        margin: 30px 0 50px;
        color: #fff;
    }

.drone-error {
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 3;
    max-width: 500px;
    animation: levitation 20s linear 0s infinite normal;
}

/*----------------- S-PRAVICY-POLICY -----------------*/
.s-pravicy-policy {
    padding: 166px 0;
}

    .s-pravicy-policy h3 {
        margin-bottom: 5px;
    }

        .s-pravicy-policy h3:not(:first-child) {
            margin-top: 30px;
        }

    .s-pravicy-policy ul {
        list-style-type: disc;
        padding-left: 15px;
        margin-top: 15px;
    }

    .s-pravicy-policy a:hover,
    .review-btn:hover,
    .widget-archive li a:hover,
    .widget-recent-posts li a:hover,
    .widget-categories li a:hover,
    .offer-item-content a:hover,
    .meta a:hover,
    .blok-link li a:hover,
    .copyright a:hover,
    .footer-menu li a:hover {
        color: #fff;
    }
/* -------------------- MEDIA --------------------- */
@media(max-width: 1700px) {
    .slide-info {
        max-width: 52%;
    }

    .main-slider-nav {
        max-width: 650px;
    }
}

@media(max-width: 1440px) {
    .main-slider-nav {
        max-width: 600px;
    }

    .main-slide-nav img {
        height: 120px;
    }

    .slide-info h3 {
        font-size: 34px;
    }

    .slide-info {
        padding: 8px 30px 17px 0;
        min-height: 178px;
    }

    .serv-block-item {
        height: 600px;
    }
}

@media(max-width: 1365px) {
    .nav-list > li {
        margin-right: 32px;
    }

    .main-slide-for {
        height: 650px;
    }

    .slide-info h3 {
        font-size: 32px;
    }

    .serv-block-item {
        height: 540px;
    }

    .serv-block-info h4 {
        font-size: 22px;
    }

    .s-shop .prod-item .prod-thumbnail .prod-img {
        height: 360px;
    }

    .s-opportunities {
        min-height: 780px;
    }

    .slider-opportunities .title {
        font-size: 86px;
    }

    .slider-opportunities .slick-arrow {
        top: 5px;
    }

    .testimonial-item img {
        margin-top: -98px;
        width: 120px;
        height: 120px;
    }

    .s-infographics .block-icon h6 {
        padding-top: 12px;
        min-height: 58px;
        font-size: 16px;
    }

    .s-infographics .number {
        margin-bottom: 4px;
        font-size: 46px;
    }

    .s-infographics h2 {
        margin-bottom: 20px;
    }

    .s-we-offer .block-icon img {
        max-height: 44px;
    }

    .prod-item .prod-thumbnail .prod-img {
        height: 300px;
    }

    .baner-item h2 {
        font-size: 30px;
    }

    .slider-new-product .slick-arrow {
        top: 120px;
    }

    .single-for-img img {
        height: 474px;
    }

    .s-shop .block-icon {
        padding: 20px 16px;
    }

    .prod-tabs .item {
        margin-right: 10px;
    }
}

@media(max-width: 1279px) {
    .slide-testimonial {
        padding-top: 55px;
    }

    .nav-list > li {
        margin-right: 30px;
    }

    .slide-info {
        max-width: 48%;
    }

    .main-slider-nav {
        max-width: 48%;
    }

    footer {
        padding-top: 65px;
    }

        footer h5 {
            margin-bottom: 25px;
        }

    .footer-subscribe h5 {
        margin-bottom: 30px;
    }

    .s-info-bg {
        min-height: 690px;
    }

    .slider-opportunities .title {
        font-size: 74px;
    }

    .slider-opportunities .slick-arrow {
        top: 0;
    }

    .s-testimonials.bg-testimonials {
        min-height: 750px;
    }

    .slider-new-product .slick-arrow {
        top: 130px;
    }

    .slider-new-product .slick-arrow {
        background: #45a7ef;
        border: 2px solid #45a7ef;
        font-size: 34px;
        width: 40px;
        line-height: 33px;
        padding: 0 10px;
        height: 40px;
        text-align: center;
    }

        .slider-new-product .slick-arrow.slick-arrow-next {
            right: 0px;
        }

        .slider-new-product .slick-arrow.slick-arrow-prev {
            left: 0px;
        }

        .slider-new-product .slick-arrow:hover {
            color: #fff;
            background-color: #333;
            border-color: #fff;
        }

    .drone-error {
        max-width: 410px;
    }
}

@media(max-width: 1199px) {
    .about-top-cover {
        align-items: stretch;
    }

    .about-img {
        padding-top: 10px;
    }

        .about-img img {
            height: 415px;
            object-fit: cover;
        }

    .s-product .pagination-cover {
        margin-top: 0;
    }

    .s-discount-program {
        padding: 116px 0 124px;
    }

    .s-testimonials.bg-testimonials {
        padding: 116px 0 130px;
    }

    .s-product {
        padding-bottom: 130px;
    }

    .s-banners {
        padding: 50px 0 116px;
    }

    .new-product {
        padding: 116px 0 0;
    }

    .s-info-bg.s-infographics {
        padding-bottom: 100px;
    }

    .slide-testimonial {
        padding-top: 70px;
    }

    body {
        font-size: 15px;
    }

    h5 {
        font-size: 18px;
    }

    .nav-menu {
        padding-right: 0;
    }

    .nav-list > li {
        margin-right: 12px;
    }

   

    .slide-info h3 {
        font-size: 26px;
    }

    .main-slide-nav img {
        height: 105px;
    }

    .slide-info {
        padding: 10px 10px 10px 0;
        min-height: 163px;
    }

        .slide-info h3 {
            margin-bottom: 5px;
        }

        .slide-info a {
            margin-top: 10px;
        }

    .footer-menu li {
        margin-right: 28px;
    }

    footer h5 {
        margin-bottom: 18px;
    }

    .footer-subscribe h5 {
        margin-bottom: 22px;
    }

    .blok-link li:not(:last-child) {
        margin-bottom: 10px;
    }

    

    h2 {
        font-size: 30px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    h4 {
        font-size: 22px;
    }

    h6 {
        font-size: 16px;
    }

    .best-prices {
        padding: 130px 0;
        overflow-x: hidden;
    }

    .price-img-cover {
        padding: 0 60px 0 0;
    }

        .price-img-cover .price-drone {
            max-width: 450px;
            right: -30px;
        }

    .price-info {
        padding: 0 0 20px;
    }

    .s-we-offer {
        padding: 116px 0 100px;
    }

    .s-team,
    .s-blog {
        padding: 116px 0 130px;
    }

    .s-shop {
        padding: 116px 0 50px;
    }

    .s-testimonials {
        padding: 116px 0 130px;
    }

    .s-clients,
    .about-top,
    .s-contacts {
        padding: 130px 0;
    }

    .border-item {
        width: calc(100% - 20px);
        height: calc(100% - 20px);
    }

    .serv-block-info h4 {
        font-size: 18px;
    }

    .serv-block-info {
        padding: 40px 25px;
    }

    .serv-block-item {
        height: 490px;
    }

    .serv-block-info p {
        margin-top: 10px;
    }

    .serv-block-info span {
        margin-top: 20px;
    }

    .serv-block-item:hover .serv-block-info p {
        height: 90px;
    }

    .serv-block-info p {
        line-height: 1.3em;
        font-size: 14px;
    }

    .s-blog .post-content .title {
        font-size: 16px;
    }

    .post-item .prod-thumbnail img {
        height: 280px;
    }

    .opportunitie-item, .block-icon {
        min-height: 190px;
    }

        .block-icon img {
            margin-bottom: 15px;
            max-height: 49px;
        }

        .block-icon h6 {
            padding-top: 16px;
            font-size: 15px;
        }

        .block-icon:hover img {
            margin-bottom: 10px;
        }

        .block-icon:hover h6 {
            padding-top: 8px;
        }

    .s-infographics .block-icon h6 {
        padding-top: 12px;
    }

    .we-offer-bottom .block-icon, .s-shop .block-icon,
    .opportunitie-item, .block-icon {
        min-height: 170px;
    }

    .s-shop .prod-item .prod-thumbnail .prod-img {
        height: 300px;
    }

    .opportunitie-item .item-wrap .numb {
        font-size: 38px;
    }

    .s-opportunities {
        min-height: 670px;
    }

    .s-opportunities,
    .s-info-bg {
        padding: 116px 0 130px;
    }

    .testimonial-item {
        padding: 30px;
    }

        .testimonial-item:before {
            width: calc(100% - 20px);
            height: calc(100% - 20px);
        }

        .testimonial-item .testimon-content {
            padding: 24px 30px;
        }

    .page-title .title, h1 {
        font-size: 38px;
    }

    .page-title {
        padding-top: 66px;
    }

    .about-info p {
        margin-bottom: 16px;
    }

    .about-block-icon svg {
        max-height: 40px;
    }

    .about-block-icon {
        min-width: 60px;
    }

    .about-block-info .title {
        font-size: 16px;
    }

    .s-infographics .block-icon {
        margin-bottom: 30px;
    }

    .team-img img {
        height: 250px;
    }

    .team-img:before {
        width: calc(100% - 20px);
        height: calc(100% - 20px);
    }

    .we-offer-bottom .block-icon {
        margin-bottom: 30px;
    }

    .contacts-top.about-top {
        padding: 130px 0 116px;
    }

    .slide-video {
        height: 500px;
    }

    .s-video {
        padding: 116px 0;
    }

        .s-video .slider-video .slick-arrow,
        .s-video .slider-video .slick-dots {
            opacity: 1;
        }

    .slider-video .slick-arrow.slick-arrow-prev {
        left: 5px;
    }

    .slider-video .slick-arrow.slick-arrow-next {
        right: 5px;
    }

    .slider-video .slick-dots {
        bottom: 30px;
    }

        .slider-video .slick-dots li {
            width: 14px;
            height: 14px;
        }

    .gallery-tabs .item {
        font-size: 18px;
    }

    .gal-item {
        padding: 20px 30px;
    }

    .gallery-item a:before {
        font-size: 30px;
    }

    .s-gallery {
        padding-bottom: 115px;
    }

    .baner-item {
        padding: 30px;
        height: 430px;
    }

        .baner-item h2 {
            font-size: 25px;
        }

    .s-single-product {
        padding: 130px 0 110px;
    }

    .single-tab {
        padding-top: 120px;
    }

    .single-for-img img {
        height: 370px;
    }

    .single-nav-img img {
        height: 90px;
    }

    .single-info li .single-img {
        width: 40px;
        height: 40px;
    }

    .single-info li {
        padding: 12px 0;
    }

    .single-text {
        margin-bottom: 30px;
    }

    .review-btn {
        margin-top: 5px;
    }

    .s-news {
        padding: 130px 0;
    }

    .post-thumbnail ~ .post-header-info {
        padding: 25px 50px;
    }

    .post-thumbnail img {
        max-height: 370px;
    }

    .blog-cover .pagination-cover,
    .post-item-cover {
        margin-top: 80px;
    }

    .support {
        padding: 40px 30px;
    }

        .support .title {
            margin-bottom: 8px;
        }

    .widget {
        margin-top: 45px;
    }

    .widget-tags li a {
        padding: 0 10px;
        line-height: 34px;
    }

    .widget-tags li {
        margin-right: 10px;
    }

    .widget-archive li a, .widget-categories li a {
        font-size: 15px;
    }

    .widget-instagram li img {
        height: 82px;
    }

    blockquote:before {
        top: 20px;
        left: 25px;
        font-size: 70px;
        line-height: 70px;
    }

    blockquote p {
        font-size: 20px;
        line-height: 1.5em;
    }

    blockquote cite {
        font-size: 20px;
    }

    blockquote {
        padding: 20px 20px 20px 115px;
    }

    .s-error .title {
        font-size: 130px;
        line-height: 150px;
    }

    .s-error p {
        font-size: 22px;
    }

    .s-error p {
        margin-bottom: 34px;
    }

    .drone-error {
        max-width: 330px;
    }

    .s-error {
        min-height: 620px;
        padding: 116px 0 130px;
    }

    .s-pravicy-policy {
        padding: 116px 0;
    }

    #message {
        margin: 20px 0;
    }

    #success_page h3 {
        font-size: 25px;
    }

    .single-price,
    .about-info .title-left, .price-info .title-left,
    .price-info .price {
        margin-bottom: 42px;
    }

    .slogan {
        margin-bottom: 45px;
    }

    .meta.top {
        margin-bottom: 26px;
    }

    .single-info,
    .post-item .btn {
        margin-top: 33px;
    }

    .prod-content .title {
        margin-bottom: 31px;
    }

    .prod-item .btn {
        margin-top: 31px;
    }

    .s-opportunities .slogan {
        margin-bottom: 48px;
    }

    .slider-opportunities .title {
        margin-bottom: 59px;
    }

    .s-opportunities .btn,
    .slider-testimonials .slick-dots {
        margin-top: 50px;
    }

    .we-offer-bottom {
        margin-top: 45px;
    }

    .baner-item-content h2, .s-discount-program h2 {
        margin-bottom: 41px;
    }

    .s-anim {
        transform: translateY(0);
        opacity: 1;
    }
}

@media(max-width: 991px) {
   

    .slider-new-product .slick-arrow {
        top: 100px;
    }

    .gallery-tabs .item {
        font-size: 16px;
    }

    .s-info-bg {
        min-height: 640px;
    }

   

    .slide-info h3 {
        font-size: 22px;
    }

    .footer-menu li {
        margin-right: 10px;
    }

    .blok-link {
        order: 2;
        margin-top: 30px;
    }

    footer h5 {
        margin-bottom: 10px;
    }

    .footer-subscribe h5 {
        margin-bottom: 16px;
    }

    .price-img-cover {
        padding: 0;
    }

        .price-img-cover .price-drone {
            max-width: 400px;
            right: -30px;
        }

    .price-info {
        padding: 0;
    }

    .serv-block {
        flex-wrap: wrap;
    }

    .serv-block-item {
        width: 50%;
    }

    .post-item .prod-thumbnail img {
        height: 230px;
    }

    .meta {
        font-size: 13px;
    }

    .post-item .post-comments {
        margin-right: 12px;
    }

    .s-shop .prod-item .prod-thumbnail .prod-img {
        height: 240px;
    }

    .prod-content p {
        margin-bottom: 18px;
    }

    .prod-tabs {
        flex-wrap: wrap;
        margin: -15px -15px 15px;
    }

        .prod-tabs .item {
            width: 33.33%;
            padding: 15px;
            margin-right: 0;
        }

    .slider-opportunities .slick-arrow {
        font-size: 44px;
        top: -8px;
    }

    .slider-opportunities .title {
        font-size: 50px;
    }

    .slider-testimonials .slick-dots {
        margin-top: 40px;
    }

    .about-img {
        display: none;
    }

    .about-info-text {
        font-size: 13px;
    }

    .page-title {
        padding-top: 42px;
        min-height: 200px;
    }

    .team-img img {
        height: 200px;
    }

    .s-discount-program {
        min-height: 430px;
    }

    .about-block-icon svg {
        max-height: 34px;
    }

    .about-block-icon {
        min-width: 50px;
    }

    .slide-video {
        height: 400px;
    }

    .prod-item .prod-thumbnail .prod-img {
        height: 240px;
    }

    .prod-item .lable {
        top: 10px;
        left: 10px;
        font-size: 12px;
    }

    .baner-item:before {
        background-color: rgb(0,0,0,.6);
    }

    .single-price {
        font-size: 30px;
        margin-bottom: 22px;
    }

    .single-for-img img {
        height: 340px;
    }

    .single-nav-img img {
        height: 72px;
    }

    .slider-single-for {
        margin-bottom: 20px;
    }

    .single-info li {
        padding: 6px 0;
    }

        .single-info li .single-img {
            width: 34px;
            height: 34px;
        }

    .single-for-img:before {
        font-size: 30px;
    }

    .s-related-products {
        padding: 116px 0 80px;
    }

    .blog-cover {
        margin-bottom: 130px;
    }

    .widget-instagram li img {
        height: 180px;
    }

    .drone-error {
        max-width: 250px;
        top: 30px;
    }

    #success_page h3 {
        font-size: 22px;
    }

    .price-img-block {
        padding-top: 10px;
        align-self: flex-start;
    }

    .main-slider-nav {
        bottom: 30px;
    }

    .main-slide-for .container {
        padding-bottom: 30px;
    }

    .serv-block .serv-block-item .serv-block-info {
        bottom: 0;
        transform: translate(0,0);
    }

        .serv-block .serv-block-item .serv-block-info p {
            max-height: 90px;
            height: auto;
            opacity: 1;
            transform: translateY(0px);
            transition: .4s ease .2s;
            overflow: hidden;
        }

        .serv-block .serv-block-item .serv-block-info span {
            opacity: 1;
            transform: translateY(0px);
            transition: .4s ease .3s;
        }

    .serv-block .serv-block-item:after {
        opacity: 1;
    }

    .main-slide-nav span {
        font-size: 30px;
    }

    .about-block {
        height: 100%;
    }

    .opportunitie-item .item-wrap .numb,
    .s-infographics .number {
        font-size: 34px;
    }

    .single-tab .tab-nav {
        margin-bottom: 34px;
    }

    .faq-cover li:not(:last-child) {
        padding-bottom: 28px;
        margin-bottom: 43px;
    }

    .single-price,
    .about-info .title-left,
    .price-info .title-left,
    .price-info .price {
        margin-bottom: 30px;
    }

    .about-cont {
        padding-top: 10px;
    }

    .single-info, .post-item .btn {
        margin-top: 0;
    }

    .single-text {
        margin-bottom: 22px;
    }

    .single-info {
        margin-bottom: 26px;
    }
}

@media(max-width: 860px) {
    .header-icon {
        padding-right: 50px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        flex-direction: column; /* Cambia a diseño vertical en pantallas más pequeñas */
    }
}


@media(max-width: 767px) {
    .s-info-bg.s-infographics {
        padding-bottom: 80px;
    }

    #message {
        margin: 10px 0;
        font-size: 14px;
    }

    #success_page h3 {
        font-size: 20px;
    }

    .baner-item {
        padding: 40px 20px;
        height: 430px;
    }

        .baner-item h2 {
            font-size: 22px;
        }

    .baner-item-content .btn {
        margin: 41px 0 20px;
    }

    .s-product {
        padding-bottom: 110px;
    }

    .s-banners {
        padding: 30px 0 96px;
    }

    .new-product {
        padding: 96px 0 0;
    }

    .gal-item {
        display: none;
    }

    .s-video {
        padding: 96px 0;
    }

    .slide-video video {
        max-width: 767px;
    }

    .contacts-top.about-top {
        padding: 110px 0 96px;
    }

    .s-testimonials.bg-testimonials {
        min-height: 630px;
        padding: 96px 0 110px;
    }

    .page-title .title, h1 {
        font-size: 32px;
    }

    .block-icon {
        margin-bottom: 30px;
    }

    .main-slide-for .container {
        padding-bottom: 0;
    }

    .main-slider-nav {
        bottom: auto;
        position: relative;
        max-width: 100%;
        margin-top: 20px;
        padding-bottom: 0;
    }

    .main-slide-for {
        height: 530px;
    }

    .slide-info {
        padding: 10px 0 15px;
        min-height: 120px;
        max-width: 100%;
        width: 100%;
    }

        .slide-info:before {
            right: -15px;
        }

    .main-slide-nav span {
        font-size: 32px;
        bottom: 15px;
    }

    .footer-bottom {
        text-align: center;
        padding: 13px 0 26px;
    }

    footer .soc-link {
        justify-content: center;
        margin-top: 20px;
    }

    .footer-menu {
        margin-top: 8px;
    }

    .to-top {
        bottom: 15px;
        right: 15px;
    }

        .to-top span {
            width: 54px;
            height: 54px;
            background: #45a7ef;
            border: none;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
        }

        .to-top i {
            font-size: 16px;
        }

        .to-top:hover i {
            color: #fff;
        }

    .blok-link li:not(:last-child) {
        margin-bottom: 8px;
    }

    .copyright {
        padding: 25px 0;
    }

    footer {
        padding-top: 60px;
    }

    .footer-logo {
        display: inline-block;
    }

    .price-img-cover img {
        width: 100%;
        max-height: 400px;
        object-fit: cover;
    }

    .price-img-cover .price-drone {
        max-width: 401px;
        right: 50px;
    }

    .best-prices {
        padding: 96px 0 110px;
    }

    .s-team {
        padding: 96px 0 57px;
    }

    .s-blog {
        padding: 96px 0 110px;
    }

    .s-shop {
        padding: 96px 0 30px;
    }

    .price-img-block {
        display: none;
    }

    h2 {
        font-size: 25px;
    }

    h3 {
        font-size: 22px;
    }

    h4 {
        font-size: 20px;
    }

    .s-blog .post-item {
        margin-bottom: 50px;
    }

        .s-blog .post-item:last-child {
            margin-bottom: 0;
        }

    .post-item {
        margin-top: 0;
    }

    .slogan {
        margin-bottom: 40px;
    }

    .post-item .prod-thumbnail img {
        height: 260px;
    }

    .s-info-bg .btn {
        margin-top: 0;
    }

    .s-opportunities,
    .s-info-bg {
        padding: 96px 0 110px;
    }

    .s-shop .block-icon {
        margin-bottom: 0;
    }

    .opportunitie-item {
        margin-bottom: 30px;
        min-height: 150px;
    }

    .s-opportunities .btn {
        margin-top: 10px;
    }

    .slider-opportunities .title {
        font-size: 40px;
    }

    .slider-opportunities .slick-arrow {
        top: -13px;
    }

    .testimonial-item img {
        margin-top: -80px;
        width: 100px;
        height: 100px;
    }

    .slide-testimonial {
        padding-top: 50px;
    }

    .s-testimonials {
        padding: 96px 0;
    }

    .s-contacts {
        padding: 96px 0 110px;
    }

    .s-clients {
        padding: 80px 0;
    }

    .about-top {
        padding: 96px 0 110px;
    }

    .about-img {
        display: none;
    }

    .about-top-block .col-12 {
        margin-top: 30px;
    }

    .about-block {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 25px 20px;
    }

    .about-block-info .title {
        font-size: 18px;
    }

        .about-block-info .title:before {
            left: 50%;
            transform: translate(-50%,0);
        }

    .about-info-text {
        font-size: inherit;
    }

    .about-block-icon {
        padding-right: 0;
    }

    .about-top-block {
        margin-top: 57px;
    }

    .s-infographics .number {
        margin-bottom: 4px;
        font-size: 36px;
    }

    .team-item {
        padding-top: 0;
        margin-bottom: 50px;
    }

    .team-img img {
        height: 254px;
    }

    .s-discount-program {
        padding: 96px 0 104px;
    }

    .s-gallery {
        padding-bottom: 106px;
    }

    .single-for-img img {
        height: 390px;
    }

    .single-nav-img img {
        height: 100px;
    }

    .slider-single-nav {
        margin-bottom: 30px;
    }

    .s-single-product {
        padding: 110px 0 90px;
    }

    .single-tab {
        padding-top: 110px;
    }

    .s-related-products {
        padding: 96px 0 30px;
    }

    .sale-cover .sale {
        font-size: 18px;
    }

    .s-news {
        padding: 110px 0;
    }

    .blog-cover {
        margin-bottom: 110px;
    }

        .blog-cover .pagination-cover, .post-item-cover {
            margin-top: 60px;
        }

            .post-item-cover .meta span {
                padding: 10px;
            }

            .post-item-cover .meta {
                margin-left: -10px;
                margin-right: -10px;
            }

  

    blockquote:before {
        font-size: 50px;
        line-height: 50px;
        left: 20px;
    }

    blockquote {
        padding-left: 80px;
    }

        blockquote p {
            font-size: 16px;
        }

        blockquote cite {
            font-size: 16px;
        }

    .s-error .title {
        font-size: 90px;
        line-height: 100px;
    }

    .s-error p {
        font-size: 20px;
    }

    .drone-error {
        display: none;
    }

    .s-error {
        padding: 86px 0 110px;
        min-height: auto;
    }

    .s-pravicy-policy {
        padding: 96px 0;
    }

    .serv-block-info {
        padding: 30px 20px;
    }

    .serv-block-item {
        height: 460px;
    }

    .s-we-offer {
        padding: 96px 0 80px;
    }

    .prod-item {
        margin-bottom: 80px;
    }

    .s-product .pagination-cover {
        margin-top: 0px;
    }

    .main-slider-nav {
        display: none;
    }
}

@media(max-width: 575px) {
    .s-banners {
        padding-bottom: 70px;
    }

    .baner-item {
        margin-bottom: 30px;
        min-height: 380px;
    }

    .pagination-item a {
        width: 34px;
    }

    .s-discount-program h2 {
        font-size: 24px;
    }

    .we-offer-bottom .block-icon h6, .s-shop .block-icon h6 {
        font-size: 13px;
    }

    .we-offer-item:not(:last-child) {
        margin-bottom: 30px;
    }

    .clients-cover > div {
        margin-bottom: 30px;
    }

    .s-clients {
        padding: 110px 0 80px;
    }

    .page-title {
        padding-top: 40px;
    }

  

    

    
    

    .footer-info {
        margin-bottom: 50px;
    }

    .blok-link {
        margin-top: 50px;
    }

    .footer-bottom {
        margin-top: 50px;
        padding: 26px 0;
    }

    .footer-menu,
    .footer-logo {
        display: none;
    }

    footer .soc-link {
        margin-top: 0;
    }

    .blok-link li:not(:last-child) {
        margin-bottom: 6px;
    }

    .price-info ul li {
        font-size: 12px;
        padding: 0 10px;
        margin: 0 10px 10px 0;
    }

    .s-shop .prod-item .prod-thumbnail .prod-img {
        height: 280px;
    }

    .slider-opportunities .title {
        font-size: 30px;
    }

    .slider-opportunities .slick-arrow {
        font-size: 34px;
    }

    .inp-name, .inp-phone, .inp-email {
        width: 100%;
    }

    .s-infographics .block-icon h6 {
        font-size: 12px;
    }

    .s-infographics .number {
        font-size: 30px;
    }

    .team-img {
        margin-bottom: 10px;
    }

    .gallery-tabs .item {
        font-size: 15px;
    }

    .gallery-item {
        padding: 4px;
    }

    .prod-tabs {
        margin: 0 0 30px;
    }

        .prod-tabs .block-icon img {
            display: none;
        }

        .s-shop .block-icon:before,
        .prod-tabs .block-icon h6:before {
            display: none;
        }

    .s-shop .block-icon {
        min-height: auto;
        padding: 0 10px;
    }

    .prod-tabs,
    .gallery-tabs {
        flex-direction: column;
        align-items: center;
    }

        .prod-tabs .item {
            width: 100%;
            padding: 0;
        }

            .prod-tabs .item.active {
                pointer-events: none;
            }

        .prod-tabs .block-icon:hover h6 {
            color: #fff;
        }

        .prod-tabs .item.active .block-icon h6,
        .prod-tabs .block-icon h6 {
            padding: 0;
            line-height: 38px;
            text-align: center;
            font-size: 15px;
        }

        .gallery-tabs .item {
            background: #292929;
            box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
            line-height: 38px;
            width: 100%;
            border-bottom: none;
        }

            .gallery-tabs .item:before {
                display: none;
            }

            .gallery-tabs .item.active {
                background-color: #45a7ef;
                color: #fff;
            }

    .single-for-img img {
        height: 320px;
    }

    .single-nav-img img {
        height: 84px;
    }

    .review-avatar img {
        width: 60px;
        height: 60px;
    }

    .review-avatar {
        margin-right: 10px;
    }

    .reviews-list ul {
        padding-left: 15px;
    }

    .single-tab .tab-nav {
        margin-bottom: 30px;
    }

    

    .post-item-cover .meta span {
        padding: 10px 5px;
    }

    .post-item-cover .meta {
        margin-left: -5px;
        margin-right: -5px;
    }

    blockquote:before {
        font-size: 36px;
        line-height: 36px;
        left: 10px;
        top: 10px;
    }

    blockquote {
        padding: 10px 10px 10px 56px;
    }

        blockquote cite {
            margin-top: 10px;
        }

    .widget-instagram li img {
        height: 120px;
    }

    .nav-btn {
        top: 0;
        transform: none;
    }

    .testimonial-item {
        padding: 30px 15px;
    }

        .testimonial-item .testimon-content {
            padding: 24px 15px;
        }


    .main-slide-for .container {
        padding-bottom: 0;
    }

    .autor-cover img {
        min-width: 90px;
        width: 90px;
        height: 90px;
        margin-right: 20px;
    }
}

@media(max-width: 479px) {
    .reviews-form .inp-name, .reviews-form .inp-email {
        width: 100%;
    }

    .block-icon img {
        max-height: 40px;
    }

    .footer-menu {
        flex-wrap: wrap;
    }

    .footer-bottom .footer-menu li {
        margin: 0 10px;
        text-align: center;
    }

    .footer-menu li a {
        display: inline-block;
    }

    .serv-block-item {
        width: 50%;
        height: 230px;
    }

    .serv-block-info {
        padding: 20px;
    }

    .serv-block .serv-block-item .serv-block-info {
        height: 100%;
    }

        .serv-block .serv-block-item .serv-block-info span {
            font-size: 12px;
        }

    .serv-block-info p {
        display: none;
    }

    .serv-block-info h4 {
        font-size: 14px;
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        transform: translate(0,-50%);
        margin: 0;
        padding: 0 20px;
    }

    .block-icon h6 {
        font-size: 13px;
    }

    .opportunitie-item, .block-icon {
        min-height: 150px;
    }

        .opportunitie-item h6 {
            font-size: 12px;
        }

        .opportunitie-item .item-wrap .numb {
            font-size: 24px;
        }

        .opportunitie-item .item-wrap .item-value {
            font-size: 10px;
            line-height: 14px;
        }
}
