/*
Css documentation

1. Initial settings
2. Font-face
3. Color content
  3.1 Governing colors
  3.2 Background colors

4. Box content
  4.1 Background block size
  4.2 Widget block size

5. Background img settings
6. Buttons
7. Titles
  7.1 Section title
  7.2 Section title assistant
  7.3 Sub title
  7.4 Article title

8. Web-page fragment
  8.0 Index-intro
  8.1 To-top
  8.2 Preloader
  8.3 Header
    8.3.1 Navbar
  8.4 Home
  8.5 About
  8.6 Service
  8.7 Team
  8.8 Portfolio
  8.9 Price
  8.10 News
  8.11 Client-say
  8.12 Newsletter
  8.13 Planning
  8.14 Counter
  8.15 Contact
  8.16 Footer
  8.17 Glide slider
9. Auxiliary classes
*/
/******************
1. Initial settings
******************/
html {
    font-size: 16px;
    font-family: 'Poppins';
    overflow-x: hidden;
}

body {
    margin: 0;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    margin: 0px;
    padding: 0px;
}

ul.list-unstyled {
    padding: 0;
}

/*********** 
2. Font-face 
***********/
@font-face {
    font-family: 'Poppins';
    src: url("fonts/Poppins-Medium.eot");
    src: url("fonts/Poppins-Mediumd41d.eot?#iefix") format("embedded-opentype"), url("fonts/Poppins-Medium.woff2") format("woff2"), url("fonts/Poppins-Medium.woff") format("woff"), url("fonts/Poppins-Medium.ttf") format("truetype"), url("fonts/Poppins-Medium.svg#Poppins-Medium") format("svg");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

.Poppins {
    font-family: 'Poppins';
}

@font-face {
    font-family: 'Raleway';
    src: url("fonts/Raleway.eot");
    src: url("fonts/Ralewayd41d.eot?#iefix") format("embedded-opentype"), url("fonts/Raleway.woff") format("woff"), url("fonts/Raleway.ttf") format("truetype"), url("fonts/Raleway.svg#Raleway") format("svg");
    font-weight: normal;
    font-style: normal;
}

.Releway {
    font-family: 'Releway';
}

body {
    font-family: 'Raleway';
}

/***************
3. Color-content
***************/
.bg-white {
    background-color: #fff !important;
}

.bg-light {
    background-color: #fbfcff !important;
}

.bg-black {
    background-color: #000 !important;
}

.bg-dark {
    background-color: #171717 !important;
}

/*************
4. Box-content
*************/
.block {
    padding: 0 110px;
    width: 100%;
    height: auto;
    position: relative;
}

.block-1 {
    position: relative;
    padding: 120px 110px;
}

.block-2 {
    position: relative;
    padding: 120px 110px 80px;
}

.block-3 {
    position: relative;
    padding: 120px 110px 0px;
}

.block-4 {
    position: relative;
    padding: 30px 10px;
}

footer .background {
    background-color: #000;
}

.footer-block {
    position: relative;
    padding: 40px 110px 40px;
}

.widget-block {
    position: relative;
    padding: 40px;
    margin-bottom: 40px;
}

    .widget-block.no-padding {
        padding: 0;
    }

    .widget-block.no-margin {
        margin-bottom: 0;
    }

/*************************
5. Background img settings
*************************/
.background {
    width: 100%;
    height: auto;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*********
6. Buttons
*********/
a {
    text-decoration: none;
}

    a:focus {
        color: #c2a26a;
    }

    a:hover {
        color: #c2a26a;
        text-decoration: none;
    }

    a.btn-default {
        padding: 15px 25px;
        font-size: 12px;
        line-height: 15px;
        text-transform: uppercase;
        display: inline-block;
        border-radius: 2px;
        white-space: nowrap;
        font-weight: bold;
        -webkit-transition: all ease 0.3s;
        transition: all ease 0.3s;
        letter-spacing: 2px;
        font-family: 'Poppins';
        cursor: pointer;
    }

        a.btn-default i {
            font-size: 15px;
            padding-left: 5px;
            line-height: 0;
            font-weight: bold;
            -webkit-transition: -webkit-transform ease 0.3s;
            transition: -webkit-transform ease 0.3s;
            transition: transform ease 0.3s;
            transition: transform ease 0.3s, -webkit-transform ease 0.3s;
            display: inline-block;
        }

        a.btn-default:hover i {
            -webkit-transform: translateX(2px);
            transform: translateX(2px);
        }

        a.btn-default.dark {
            color: #fff;
            background-color: #222;
        }

            a.btn-default.dark:hover {
                background-color: #c2a26a;
                color: #000;
            }

        a.btn-default.light {
            color: #000;
            background-color: #fff;
        }

            a.btn-default.light:hover {
                background-color: #c2a26a;
            }

        a.btn-default.active {
            color: #000;
            background-color: #c2a26a;
        }

            a.btn-default.active:hover {
                background-color: #171717;
                color: #fafafa;
            }

        a.btn-default.outline {
            color: white;
            border: 1px solid #c2a26a;
        }

            a.btn-default.outline:hover {
                background-color: #c2a26a;
                color: #000;
            }

/********
7. Titles
********/
.section-title {
    font-size: 19px;
    line-height: 20px;
    font-family: 'Raleway';
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 10px;
    white-space: nowrap;
    position: absolute;
    top: 170px;
    color: #171717;
}

    .section-title a {
        color: #fafafa;
    }

        .section-title a i {
            font-size: 25px;
            color: #fff;
            margin-left: 7px;
        }

        .section-title a:hover {
            color: #c2a26a;
        }

            .section-title a:hover i {
                color: #c2a26a;
            }

    .section-title.left {
        left: 40px;
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg) translateX(-20px);
        transform: rotate(90deg) translateX(-20px);
    }

    .section-title.right {
        right: 40px;
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg) translateX(20px);
        transform: rotate(-90deg) translateX(20px);
    }

    .section-title.right-bottom {
        right: 40px;
        top: inherit;
        bottom: 160px;
        -webkit-transform-origin: right top;
        transform-origin: right top;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .section-title.left-bottom {
        left: 40px;
        right: inherit;
        top: inherit;
        bottom: 160px;
        -webkit-transform-origin: right top;
        transform-origin: right top;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .section-title.dark {
        color: #fafafa;
    }

.section-title-assistant {
    width: 18px;
    height: 150px;
    position: absolute;
    background-color: #171717;
}

    .section-title-assistant.left-top {
        left: 40px;
        top: 0;
    }

    .section-title-assistant.right-top {
        right: 40px;
        top: 0;
    }

    .section-title-assistant.left-bottom {
        left: 40px;
        bottom: 0;
    }

    .section-title-assistant.right-bottom {
        right: 40px;
        bottom: 0;
    }

    .section-title-assistant.dark {
        background-color: #fafafa;
    }

.sub-title-block {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
}

.project .sub-title-block {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 17px !important;
    text-align: left;
}

.sub-title-block .sub-title-content {
    width: 100%;
    height: auto;
    margin-top: auto;
    margin-bottom: auto;
}

    .sub-title-block .sub-title-content .sub-title {
        font-size: 30px;
        font-family: 'Poppins';
        color: #171717;
        letter-spacing: 1px;
        word-spacing: 1px;
        margin-bottom: 25px;
    }

    .sub-title-block .sub-title-content .sub-info {
        font-size: 21px;
        font-family: 'Raleway';
        color: black;
        letter-spacing: 2px;
        word-spacing: 2px;
        font-weight: bold;
        font-weight: 500;
        margin-bottom: 25px;
    }

        .sub-title-block .sub-title-content .sub-info.mb-0 {
            margin-bottom: 0;
        }

.sub-title-block.left {
    text-align: left;
}

.sub-title-block.right {
    text-align: right;
}

.sub-title-block.dark .sub-title-content .sub-title {
    color: #fafafa;
}

.sub-title-block.dark .sub-title-content .sub-info, .sub-title-block.dark .sub-title-content p {
    color: #ccc;
    font-size: 18px;
}

.widget-block.dark .w-title {
    color: #fafafa;
}

.widget-block.dark .w-category {
    color: #929292;
}

.widget-block.dark .w-info {
    color: #929292;
}

.w-title.dark {
    color: #fafafa;
}

.w-category.dark {
    color: #929292;
}

.w-info.dark {
    color: #929292;
}

.w-title {
    font-size: 1rem;
    line-height: 22px;
    font-family: 'Poppins';
    text-transform: capitalize;
    font-weight: bold;
    letter-spacing: 2px;
    color: #fff;
}

.w-category {
    font-size: 14px;
    line-height: 16px;
    font-family: 'Poppins';
    text-transform: capitalize;
    font-weight: medium;
    letter-spacing: 2px;
    color: #fff;
}

.w-info {
    font-size: 0.7rem;
    font-family: 'Raleway';
    text-transform: capitalize;
    letter-spacing: 2px;
    color: #fff;
    font-weight: 600;
}

/********************
8. Web-page fragments
********************/
.widget-block.intro {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

    .widget-block.intro a .info-page-intro {
        width: 100%;
        height: auto;
        position: absolute;
        bottom: 0px;
        left: 0px;
        padding: 13px 40px;
        text-align: center;
        background-color: #c2a26a;
        opacity: 0.98;
    }

        .widget-block.intro a .info-page-intro h4.w-title {
            color: #111;
        }

    .widget-block.intro:hover {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }

#cursor {
    position: fixed;
    top: -100px;
    left: 0;
    width: 70px;
    height: 4px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 999999999;
    border-radius: 50%;
}

    #cursor #cursorScroll {
        position: absolute;
        bottom: -25px;
        left: -15px;
        width: 100%;
        height: 4px;
        background-color: #ccc;
    }

        #cursor #cursorScroll #cursorProgress {
            position: absolute;
            bottom: 0;
            left: 0px;
            width: 0px;
            height: 4px;
            background-color: #c2a26a;
        }

.up-and-down {
    display: inline-block;
    -webkit-animation: to 0.5s infinite alternate;
    animation: to 0.5s infinite alternate;
}

@-webkit-keyframes to {
    0% {
        -webkit-transform: translateX(0) translateY(2px);
        transform: translateX(0) translateY(2px);
    }

    100% {
        -webkit-transform: translateX(-10px) translateY(2px);
        transform: translateX(-10px) translateY(2px);
    }
}

@keyframes to {
    0% {
        -webkit-transform: translateX(0) translateY(2px);
        transform: translateX(0) translateY(2px);
    }

    100% {
        -webkit-transform: translateX(-10px) translateY(2px);
        transform: translateX(-10px) translateY(2px);
    }
}

/* To-top animation end */
/* Preloader animation */
.quadrado {
    -webkit-animation: crescendo 7s alternate infinite ease-in;
    animation: crescendo 7s alternate infinite ease-in;
}

    .quadrado.delay1 {
        -webkit-animation-delay: 0s;
        animation-delay: 0s;
    }

    .quadrado.delay2 {
        -webkit-animation-delay: 2s;
        animation-delay: 2s;
    }

    .quadrado.delay3 {
        -webkit-animation-delay: 4s;
        animation-delay: 4s;
    }

@-webkit-keyframes crescendo {
    0% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }

    100% {
        -webkit-transform: scale(0.97);
        transform: scale(0.97);
    }
}

@keyframes crescendo {
    0% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }

    100% {
        -webkit-transform: scale(0.97);
        transform: scale(0.97);
    }
}

/* Preloader animation end */
/* Section title assistant animation */
.section-title-assistant {
    -webkit-animation: flip-flip 5s alternate infinite ease-in;
    animation: flip-flip 5s alternate infinite ease-in;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

    .section-title-assistant.dark {
        -webkit-animation-delay: 0.5s;
        animation-delay: 0.5s;
    }

@-webkit-keyframes flip-flip {
    0% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    2% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    4% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    6% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    8% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    10% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    12% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    14% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    16% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    18% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    20% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    22% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    24% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    26% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    28% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    30% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    32% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    34% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    36% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    38% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    40% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    42% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    44% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    46% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    48% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    50% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    52% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    54% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    56% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    58% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    60% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    62% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    64% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    66% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    68% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    70% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    72% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    74% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    76% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    78% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    80% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    82% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    84% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    86% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    88% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    90% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    92% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    94% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    96% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    98% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    100% {
        -webkit-transform: rotateY(90deg);
        transform: rotateY(90deg);
    }
}

@keyframes flip-flip {
    0% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    2% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    4% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    6% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    8% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    10% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    12% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    14% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    16% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    18% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    20% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    22% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    24% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    26% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    28% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    30% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    32% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    34% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    36% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    38% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    40% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    42% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    44% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    46% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    48% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    50% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    52% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    54% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    56% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    58% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    60% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    62% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    64% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    66% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    68% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    70% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    72% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    74% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    76% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    78% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    80% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    82% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    84% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    86% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    88% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    90% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    92% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    94% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    96% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    98% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    100% {
        -webkit-transform: rotateY(90deg);
        transform: rotateY(90deg);
    }
}

/* Section title assistant animation end */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000000;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

    #preloader #status {
        width: 100%;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        background-color: black;
    }

        #preloader #status #content {
            margin: auto;
        }

            #preloader #status #content .bounceball {
                position: relative;
                display: inline-block;
                height: 37px;
                width: 15px;
            }

                #preloader #status #content .bounceball:before {
                    position: absolute;
                    content: '';
                    display: block;
                    top: 0;
                    width: 15px;
                    height: 15px;
                    border-radius: 50%;
                    background-color: #c2a26a;
                    -webkit-transform-origin: 50%;
                    transform-origin: 50%;
                    -webkit-animation: bounce 500ms alternate infinite ease;
                    animation: bounce 500ms alternate infinite ease;
                }

@-webkit-keyframes bounce {
    0% {
        top: 30px;
        height: 5px;
        border-radius: 60px 60px 20px 20px;
        -webkit-transform: scaleX(2);
        transform: scaleX(2);
    }

    35% {
        height: 15px;
        border-radius: 50%;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }

    100% {
        top: 0;
    }
}

@keyframes bounce {
    0% {
        top: 30px;
        height: 5px;
        border-radius: 60px 60px 20px 20px;
        -webkit-transform: scaleX(2);
        transform: scaleX(2);
    }

    35% {
        height: 15px;
        border-radius: 50%;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }

    100% {
        top: 0;
    }
}

#preloader.fadehide {
    opacity: 0;
    display: none;
}

    #preloader.fadehide #status {
        display: none;
    }

.block-header.fixed {
    background-color: rgba(23, 23, 23, 0.99);
}

.block-header.light.fixed {
    width: 100%;
    position: fixed;
    background-color: rgba(255, 255, 255, 0.99);
    right: 0;
    top: 0px;
    left: 0px;
}

.block-header {
    width: 100%;
    height: auto;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 999999;
    padding: 5px 110px;
    -webkit-transition: all ease 0.7s;
    transition: all ease 0.7s;
}

    .block-header .navbar .navbar-brand img {
        width: 220px;
        height: auto;
        transition: all ease 0.3s;
    }

.fixed .navbar .navbar-brand img {
    width: 130px;
}


.block-header .navbar .navbar-toggler {
    border-radius: 3px;
    position: relative;
    width: 20px;
    height: 20px;
}

    .block-header .navbar .navbar-toggler:focus {
        -webkit-box-shadow: 0 0 0 0 transparent;
        box-shadow: 0 0 0 0 transparent;
    }

    .block-header .navbar .navbar-toggler .icon-bar {
        width: 100%;
        height: 1px;
        background-color: #202020;
        position: absolute;
        left: 0;
        -webkit-transition: all ease 0.3s;
        transition: all ease 0.3s;
    }

        .block-header .navbar .navbar-toggler .icon-bar.bar-a {
            top: 0px;
        }

        .block-header .navbar .navbar-toggler .icon-bar.bar-b {
            top: 8px;
        }

        .block-header .navbar .navbar-toggler .icon-bar.bar-c {
            bottom: 0px;
        }

    .block-header .navbar .navbar-toggler:hover .icon-bar.bar-a {
        height: 1px;
    }

    .block-header .navbar .navbar-toggler:hover .icon-bar.bar-c {
        height: 1px;
    }

.block-header .navbar .navbar-nav .nav-item .nav-link {
    margin: 0;
    padding: 5px 20px 5px 0px;
    /*text-transform: uppercase;*/
    font-size: 13px;
    font-family: "Raleway";
    color: #171717;
    letter-spacing: 1px;
    font-weight: bold;
}

    .block-header .navbar .navbar-nav .nav-item .nav-link:hover {
        color: #c2a26a;
    }

    .block-header .navbar .navbar-nav .nav-item .nav-link.current {
        color: #c2a26a;
    }

.block-header .navbar .navbar-nav .nav-item:last-child .nav-link {
    padding-right: 0;
}

.block-header .navbar .navbar-nav .dropdown-menu {
    padding: 10px 0;
    background-color: white;
    -webkit-transform: translateY(7px);
    transform: translateY(7px);
    border-radius: 2px;
    -webkit-transition: all ease 0.7s;
    transition: all ease 0.7s;
    border: transparent;
}

    .block-header .navbar .navbar-nav .dropdown-menu .dropdown-item {
        margin: 0;
        padding: 10px 10px 10px 20px;
        text-transform: uppercase;
        font-size: 12px;
        font-family: "Raleway";
        color: #171717;
        letter-spacing: 1px;
        font-weight: bold;
    }

        .block-header .navbar .navbar-nav .dropdown-menu .dropdown-item:hover {
            background-color: #c2a26a;
            color: #111;
        }

        .block-header .navbar .navbar-nav .dropdown-menu .dropdown-item.current {
            color: #c2a26a;
        }

            .block-header .navbar .navbar-nav .dropdown-menu .dropdown-item.current:hover {
                color: #111;
            }

    .block-header .navbar .navbar-nav .dropdown-menu.show {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

.block-header .navbar.dark .navbar-toggler .icon-bar {
    background-color: #d3d1d1;
}

.block-header .navbar.dark .navbar-nav .nav-item .nav-link {
    color: #fafafa;
}

    .block-header .navbar.dark .navbar-nav .nav-item .nav-link:hover {
        color: #c2a26a;
    }

    .block-header .navbar.dark .navbar-nav .nav-item .nav-link.current {
        color: #c2a26a;
    }

.block-header .navbar.dark .navbar-nav .dropdown-menu {
    background-color: #171717;
    border: transparent;
}

    .block-header .navbar.dark .navbar-nav .dropdown-menu .dropdown-item {
        color: #fafafa;
    }

        .block-header .navbar.dark .navbar-nav .dropdown-menu .dropdown-item:hover {
            background-color: #c2a26a;
            color: #111;
        }

        .block-header .navbar.dark .navbar-nav .dropdown-menu .dropdown-item.current {
            color: #c2a26a;
        }

            .block-header .navbar.dark .navbar-nav .dropdown-menu .dropdown-item.current:hover {
                color: #111;
            }

#VideoPlayer {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#VideoPlayer2 {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 400px;
    -o-object-fit: cover;
    object-fit: cover;
}

.bg-dark-half {
    background: rgba(0, 0, 0, 0.5);
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), color-stop(72%, rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.7)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 72%, rgba(0, 0, 0, 0.7) 100%);
}

.home-text-block {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

    .home-text-block .home-text {
        width: 100%;
        height: auto;
        margin-top: auto;
        margin-bottom: auto;
        padding-top: 50px;
    }

        .home-text-block .home-text .large {
            display: block;
            font-size: 60px;
            line-height: 70px;
            font-family: 'Poppins';
            text-transform: capitalize;
            color: #171717;
            margin-bottom: 20px;
            -webkit-transition: all ease 0.3s;
            transition: all ease 0.3s;
        }

        .home-text-block .home-text .medium {
            display: block;
            font-size: 25px;
            font-family: 'Raleway';
            text-transform: capitalize;
            color: #fdfdfd;
            margin-bottom: 32px;
        }

    .home-text-block.left .home-text {
        padding-right: 50%;
        text-align: left;
    }

    .home-text-block.right .home-text {
        text-align: right;
        padding-left: 50%;
    }

    .home-text-block.center .home-text {
        text-align: center;
        padding-left: 20%;
        padding-right: 20%;
    }

    .home-text-block.dark .home-text .large {
        color: #fafafa;
    }

    .home-text-block.dark .home-text .medium {
        color: #ccc;
    }

ul.social-icon-table {
    position: absolute;
    bottom: 170px;
    right: 38px;
    margin-bottom: 0;
}

    ul.social-icon-table li {
        display: block;
        margin-top: 7px;
    }

        ul.social-icon-table li a i {
            font-size: 23px;
            color: #fafafa;
        }

        ul.social-icon-table li a:hover i {
            color: #c2a26a;
        }

    ul.social-icon-table.dark li a i {
        color: #171717;
    }

        ul.social-icon-table.dark li a i:hover {
            color: #c2a26a;
        }

.skills-work-block {
    margin-bottom: 25px;
}

    .skills-work-block .skills-item {
        margin-bottom: 10px;
    }

        .skills-work-block .skills-item .number-skill {
            font-size: 40px;
            font-family: "Poppins";
            color: #c2a26a;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .skills-work-block .skills-item .w-title {
            margin-bottom: 15px;
        }

            .skills-work-block .skills-item .w-title.mb0 {
                margin-bottom: 0;
            }

        .skills-work-block .skills-item.mb20 {
            margin-bottom: 20px;
        }

    .skills-work-block.dark .skills-item .number-skill {
        color: #c2a26a;
    }

    .skills-work-block.dark .skills-item .w-title {
        color: #fafafa;
    }

    .skills-work-block.dark .skills-item .w-info {
        color: #929292;
    }

.effect-img {
    width: 100px;
    height: auto;
    position: absolute;
    opacity: 0.5;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

    .effect-img.left-top {
        top: 0;
        left: 0px;
    }

    .effect-img.right-bottom {
        bottom: 0;
        right: 0px;
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    .effect-img.right-top {
        right: 0;
        left: inherit;
        top: 0px;
        bottom: inherit;
    }

    .effect-img.left-bottom {
        left: 0;
        bottom: 0;
        top: inherit;
        right: inherit;
        -webkit-transform: translate(0);
        transform: translate(0);
    }

.join-it-block {
    width: 360px;
    position: absolute;
    bottom: 120px;
    left: -180px;
    margin-left: 50%;
}

    .join-it-block .box-sub {
        width: 100%;
        height: 100%;
        position: relative;
        padding-right: 100px;
        -webkit-box-shadow: 20px 30px 75px -20px #92908f, 0 0 1px 1px #eee;
        box-shadow: 20px 30px 75px -20px #92908f, 0 0 1px 1px #eee;
        background-color: #fff;
        border-radius: 3px;
        overflow: hidden;
    }

        .join-it-block .box-sub a.btn-default {
            border-radius: 3px;
        }

        .join-it-block .box-sub input.join {
            width: 100%;
            height: 35px;
            border: none;
            outline: none;
            border-radius: 3px;
            padding: 30px;
        }

        .join-it-block .box-sub a.btn-default {
            position: absolute;
            right: 7px;
            top: 7px;
        }

.small-introduction-block {
    margin-bottom: 25px;
}

    .small-introduction-block .small-in-item {
        margin-top: 25px;
        margin-bottom: 25px;
    }

        .small-introduction-block .small-in-item .head-item {
            position: relative;
            padding-right: 40px;
            margin-bottom: 20px;
        }

            .small-introduction-block .small-in-item .head-item i {
                font-size: 35px;
                line-height: 20px;
                position: absolute;
                right: 0;
                top: -3px;
                color: #c2a26a;
            }

    .small-introduction-block.dark .small-in-item .head-item .w-title {
        color: #fafafa;
    }

    .small-introduction-block.dark .small-in-item .body-item .w-info {
        color: #929292;
    }

    .small-introduction-block.right {
        text-align: right;
    }

    .small-introduction-block.left {
        text-align: left;
    }

        .small-introduction-block.left .head-item {
            padding-right: inherit;
            padding-left: 40px;
        }

            .small-introduction-block.left .head-item i {
                right: inherit;
                left: 0px;
            }

        .small-introduction-block.left .body-item .w-info {
            color: #101010;
        }

.rear-end {
    width: 400px;
    height: 400px;
    background-color: #c2a26a;
    opacity: 0.06;
    z-index: -1;
    border-radius: 50%;
    position: absolute;
    top: -10%;
    right: -30%;
}

blockquote {
    margin: 25px 0 25px;
    font-size: 18px;
    text-transform: capitalize;
    font-family: 'Raleway';
    font-style: italic;
}

    blockquote.right {
        padding-right: 20px;
        border-right: 2px solid #c2a26a;
    }

    blockquote.left {
        padding-left: 20px;
        border-left: 2px solid #c2a26a;
    }

    blockquote.dark {
        color: #b6b5b5;
    }

.truck-option-block {
    text-align: right;
}

    .truck-option-block ul {
        padding: 0;
        margin-bottom: 0;
    }

        .truck-option-block ul li {
            font-size: 18px;
            font-family: 'Raleway';
            color: #4d4d4d;
            margin-bottom: 15px;
            list-style: none;
            font-weight: 600;
        }

            .truck-option-block ul li:last-child {
                margin-bottom: 0px;
            }

    .truck-option-block.left {
        text-align: left;
    }

.data-series-block .data-series-item {
    margin-bottom: 20px;
}

    .data-series-block .data-series-item .d-s-item-head {
        margin-bottom: 20px;
    }

    .data-series-block .data-series-item .d-s-item-body .d-s-box {
        display: inline-block;
        position: relative;
        padding: 15px 15px 15px 120px;
        margin-bottom: 20px;
        border-bottom: 1px solid #ddd;
    }

        .data-series-block .data-series-item .d-s-item-body .d-s-box img {
            width: 100px;
            height: auto;
            position: absolute;
            left: 0;
            top: 15px;
        }

        .data-series-block .data-series-item .d-s-item-body .d-s-box i {
            display: block;
            font-size: 60px;
            line-height: 50px;
            position: absolute;
            left: 0px;
            top: 0px;
            color: #c2a26a;
        }

        .data-series-block .data-series-item .d-s-item-body .d-s-box img.filip {
            -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
        }

        .data-series-block .data-series-item .d-s-item-body .d-s-box .w-title {
            margin-bottom: 10px;
        }

        .data-series-block .data-series-item .d-s-item-body .d-s-box.no-border {
            border-bottom: transparent;
        }

        .data-series-block .data-series-item .d-s-item-body .d-s-box.for-icon {
            max-width: 380px;
            padding: 0px 15px 15px 70px;
        }

        .data-series-block .data-series-item .d-s-item-body .d-s-box.mb0 {
            margin-bottom: 0px;
        }

.widget-block.service {
    border-radius: 2px;
    text-align: left;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
    -webkit-box-shadow: 0px 0px 83px -34px rgba(34, 60, 80, 0.2), 0 0 1px 1px #f9f9f9;
    box-shadow: 0px 0px 83px -34px rgba(34, 60, 80, 0.2), 0 0 1px 1px #f9f9f9;
    overflow: hidden;
}

    .widget-block.service i {
        display: block;
        font-size: 45px;
        line-height: 35px;
        color: #171717;
        margin-bottom: 30px;
        -webkit-transition: all ease 0.3s;
        transition: all ease 0.3s;
        z-index: 4;
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }

    .widget-block.service span.mark-badge {
        width: 150px;
        height: 150px;
        background-color: #f3dcb5;
        position: absolute;
        top: -40px;
        left: -35px;
        border-radius: 50%;
        z-index: 3;
        opacity: 0.2;
    }

    .widget-block.service .w-title {
        margin-bottom: 15px;
    }

    .widget-block.service .w-info {
        margin-bottom: 15px;
        line-height: 22px;
    }

        .widget-block.service .w-info.mb-0 {
            margin-bottom: 0px;
        }

    .widget-block.service a.read-more {
        color: #222;
        text-decoration: none;
        font-size: 14px;
        line-height: 10px;
        font-family: 'Poppins';
        -webkit-transition: all ease 0.3s;
        transition: all ease 0.3s;
        text-transform: capitalize;
    }

        .widget-block.service a.read-more i {
            font-size: 14px;
            color: #222;
            display: inline-block;
            padding-left: 5px;
            margin-bottom: 0;
            -webkit-transition: all ease 0.3s;
            transition: all ease 0.3s;
        }

        .widget-block.service a.read-more:hover {
            -webkit-text-decoration: solid;
            text-decoration: solid;
            color: #c2a26a;
        }

            .widget-block.service a.read-more:hover i {
                color: #c2a26a;
                -webkit-transform: translateX(3px);
                transform: translateX(3px);
            }

    .widget-block.service:hover {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

        .widget-block.service:hover i {
            color: #c2a26a;
        }

    .widget-block.service.dark {
        background-color: #171717;
        -webkit-box-shadow: 0 15px 50px -25px #111111;
        box-shadow: 0 15px 50px -25px #111111;
    }

        .widget-block.service.dark i {
            color: #fafafa;
        }

        .widget-block.service.dark span.mark-badge {
            background-color: #2e2e2e;
        }

        .widget-block.service.dark a.read-more {
            color: #ccc;
        }

            .widget-block.service.dark a.read-more i {
                color: #ccc;
            }

            .widget-block.service.dark a.read-more:hover {
                -webkit-text-decoration: solid;
                text-decoration: solid;
                color: #c2a26a;
            }

                .widget-block.service.dark a.read-more:hover i {
                    color: #c2a26a;
                    -webkit-transform: translateX(3px);
                    transform: translateX(3px);
                }

        .widget-block.service.dark:hover i {
            color: #c2a26a;
        }

.widget-block.team {
    position: relative;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

    .widget-block.team img {
        -webkit-transition: all ease 0.5s;
        transition: all ease 0.5s;
        z-index: 1;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform: translateZ(10px);
        transform: translateZ(10px);
    }

        .widget-block.team img.secondary-img {
            width: 133px;
            position: absolute;
            top: 115px;
            left: 0;
            opacity: 0.5;
            z-index: 0;
            -webkit-transform: translateZ(1px);
            transform: translateZ(1px);
            -webkit-transition: all ease 0.5s;
            transition: all ease 0.5s;
        }

    .widget-block.team .team-info {
        /*position: absolute;*/
        left: 0;
        top: 0;
        padding: 10px;
        text-align: center;
    }

        .widget-block.team .team-info .w-title {
            margin-bottom: 15px;
        }

        .widget-block.team .team-info .w-category {
            margin-bottom: 15px;
            white-space: nowrap;
        }

        .widget-block.team .team-info ul.team-social-media li {
            display: inline-block;
            padding-right: 10px;
        }

            .widget-block.team .team-info ul.team-social-media li a i {
                font-size: 20px;
                color: #fff;
            }

            .widget-block.team .team-info ul.team-social-media li a:hover i {
                color: #c2a26a;
            }

    .widget-block.team:hover img {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

        .widget-block.team:hover img.secondary-img {
            -webkit-transform: translateY(0px);
            transform: translateY(0px);
            opacity: 0.9;
        }

    .widget-block.team.dark .team-info ul.team-social-media li a i {
        color: #929292;
    }

    .widget-block.team.dark .team-info ul.team-social-media li a:hover i {
        color: #c2a26a;
    }

.progress-block .progress {
    height: 4px;
    border-radius: 10px;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 35px 0 65px;
    background-color: #ccc;
    position: relative;
    overflow: visible;
}

    .progress-block .progress .progress-bar {
        background-color: #c2a26a;
        height: 4px;
        position: relative;
        overflow: inherit;
        border-radius: 15px;
    }

        .progress-block .progress .progress-bar:after {
            content: '';
            width: 12px;
            height: 13px;
            background-color: #c2a26a;
            position: absolute;
            right: -6px;
            bottom: -5px;
            z-index: 999;
            border-radius: 50%;
            -webkit-transition: all ease 0.5s;
            transition: all ease 0.5s;
        }

    .progress-block .progress .skill-value {
        float: left;
        text-align: left;
        text-transform: capitalize;
        position: absolute;
        width: 100%;
        top: -32px;
        color: #171717;
        font-size: 18px;
        line-height: 22px;
        letter-spacing: 3px;
        font-family: "Poppins";
        font-weight: 550;
        text-shadow: 0px 0px 1px #464545;
    }

        .progress-block .progress .skill-value span {
            color: #171717;
            float: right;
        }

    .progress-block .progress:hover .progress-bar:after {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

.progress-block.no-pad {
    padding: 0;
}

.widget-block.portfolio {
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}

    .widget-block.portfolio span.badge {
        position: absolute;
        left: 40px;
        top: 40px;
        z-index: 15;
        padding: 9px 17px;
        background-color: #c2a26a;
        color: #000;
        font-size: 13px;
        line-height: 13px;
        font-family: "Raleway";
        text-transform: uppercase;
    }

    .widget-block.portfolio img {
        -webkit-transition: all ease 1s;
        transition: all ease 1s;
        z-index: 10;
    }

    .widget-block.portfolio .portfolio-info {
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 40px;
    }

        .widget-block.portfolio .portfolio-info a.w-title {
            display: block;
            text-decoration: none;
            line-height: 15px;
        }

            .widget-block.portfolio .portfolio-info a.w-title:hover {
                color: #c2a26a;
            }

        .widget-block.portfolio .portfolio-info .w-category {
            margin-bottom: 15px;
        }

    .widget-block.portfolio:hover img {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

.basicLightbox {
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 999999;
}

    .basicLightbox .basicLightbox__placeholder {
        position: relative;
    }

        .basicLightbox .basicLightbox__placeholder img {
            padding: 5% 0;
        }

        .basicLightbox .basicLightbox__placeholder::before {
            content: 'Close';
            width: 50px;
            height: 50px;
            position: absolute;
            right: 20px;
            top: 10px;
            z-index: 999999999;
            opacity: 0;
            -webkit-transition: all ease 0.3s;
            transition: all ease 0.3s;
            color: #fff;
            font-size: 16px;
            text-transform: uppercase;
            font-family: 'Poppins';
        }

    .basicLightbox.basicLightbox--visible .basicLightbox__placeholder::before {
        opacity: 1;
    }

.widget-block.price {
    background-color: #fff;
    border-radius: 2px;
    overflow: hidden;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
    -webkit-box-shadow: 0px 0px 83px -34px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 0px 83px -34px rgba(34, 60, 80, 0.2);
}

    .widget-block.price .price-head {
        padding: 40px 40px 0 40px;
        background-color: white;
        margin-bottom: 10px;
        position: relative;
    }

        .widget-block.price .price-head img.secondary-img {
            width: 100px;
            position: absolute;
            top: 10px;
            right: 10px;
            opacity: 0.5;
            z-index: 0;
            -webkit-transform: translateZ(1px);
            transform: translateZ(1px);
            -webkit-transition: all ease 0.5s;
            transition: all ease 0.5s;
            -webkit-transform-origin: center center;
            transform-origin: center center;
            -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
        }

        .widget-block.price .price-head i {
            display: block;
            font-size: 55px;
            color: #171717;
            -webkit-transition: all ease 0.3s;
            transition: all ease 0.3s;
        }

        .widget-block.price .price-head .w-title {
            margin-bottom: 15px;
        }

        .widget-block.price .price-head .w-price {
            font-size: 45px;
            font-family: "Poppins";
            font-weight: bold;
            color: #c2a26a;
        }

            .widget-block.price .price-head .w-price span {
                font-size: 30px;
                font-weight: 100;
            }

                .widget-block.price .price-head .w-price span.demand {
                    font-size: 15px;
                    font-weight: 100;
                }

    .widget-block.price .price-body {
        padding: 0 40px 40px 40px;
    }

        .widget-block.price .price-body ul.price-list {
            margin-bottom: 30px;
        }

            .widget-block.price .price-body ul.price-list li {
                list-style: none;
                font-size: 16px;
                font-family: 'Raleway';
                color: #5c5c5c;
                margin-bottom: 5px;
                font-weight: 600;
                letter-spacing: 1px;
            }

                .widget-block.price .price-body ul.price-list li i {
                    display: inline-block;
                    font-size: 30px;
                    line-height: 15px;
                    color: #171717;
                    font-weight: bold;
                    padding-right: 10px;
                    -webkit-transform: translateY(8px);
                    transform: translateY(8px);
                }

                .widget-block.price .price-body ul.price-list li:last-child {
                    margin-bottom: 0;
                }

    .widget-block.price:hover {
        -webkit-transform: translateZ(25px) translateY(-10px);
        transform: translateZ(25px) translateY(-10px);
        -webkit-box-shadow: 0 35px 60px -30px #e4e4e4;
        box-shadow: 0 35px 60px -30px #e4e4e4;
    }

        .widget-block.price:hover .price-head img.secondary-img {
            opacity: 0.8;
        }

    .widget-block.price.dark .price-head .w-price {
        color: #fafafa;
    }

.shadow-block {
    padding: 30px;
    border: 1px solid #f2f2f2;
    border-radius: 5px;
}

.widget-block.news {
    position: relative;
    text-align: left;
    overflow: hidden;
}

    .widget-block.news img {
        -webkit-transition: all ease-out 0.5s;
        transition: all ease-out 0.5s;
        border-radius: 2px;
    }

    .widget-block.news .img-after-layer {
        width: 100%;
        height: 100%;
        background-color: #000;
        opacity: 0;
        position: absolute;
        left: 0px;
        top: 0px;
        -webkit-transition: all ease 0.3s;
        transition: all ease 0.3s;
    }

    .widget-block.news .w-data {
        font-size: 18px;
        line-height: 15px;
        color: #171717;
        margin-bottom: 40px;
        letter-spacing: 3px;
        font-family: 'Poppins';
        position: absolute;
        right: 40px;
        top: 40px;
    }

    .widget-block.news .info-blog {
        padding: 40px;
        width: 100%;
        height: auto;
        position: absolute;
        bottom: 0px;
        left: 0px;
    }

        .widget-block.news .info-blog .w-title {
            display: block;
            text-decoration: none;
            font-family: 'Poppins';
            margin-bottom: 15px;
            text-shadow: 1px 1px 1px #555;
            -webkit-transition: all ease 0.5s;
            transition: all ease 0.5s;
            cursor: pointer;
        }

            .widget-block.news .info-blog .w-title:hover {
                color: #c2a26a;
            }

        .widget-block.news .info-blog .w-info {
            font-family: 'Raleway';
            margin-bottom: 0px;
            -webkit-transition: all ease 0.5s;
            transition: all ease 0.5s;
            height: 0px;
            opacity: 0;
        }

        .widget-block.news .info-blog ul.w-social {
            z-index: 50;
            margin-bottom: 0px;
            line-height: 3px;
        }

            .widget-block.news .info-blog ul.w-social li {
                display: inline-block;
            }

                .widget-block.news .info-blog ul.w-social li a {
                    font-size: 17px;
                    color: #171717;
                    text-decoration: none;
                }

                    .widget-block.news .info-blog ul.w-social li a i {
                        display: block;
                        font-size: 17px;
                        color: #171717;
                        margin-right: 10px;
                        font-style: normal;
                    }

                    .widget-block.news .info-blog ul.w-social li a:hover i {
                        color: #c2a26a;
                    }

                    .widget-block.news .info-blog ul.w-social li a:hover {
                        color: #c2a26a;
                    }

    .widget-block.news:hover img {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    .widget-block.news:hover .img-after-layer {
        opacity: 0.7;
    }

    .widget-block.news:hover .info-blog .w-info {
        height: 43px;
        opacity: 1;
        margin-bottom: 20px;
    }

    .widget-block.news.dark .w-data {
        color: #fafafa;
    }

    .widget-block.news.dark .info-blog .w-title {
        color: #fafafa;
    }

        .widget-block.news.dark .info-blog .w-title:hover {
            color: #c2a26a;
        }

    .widget-block.news.dark .info-blog .w-info {
        color: #cccc;
    }

    .widget-block.news.dark .info-blog ul.w-social li a {
        color: #fafafa;
    }

        .widget-block.news.dark .info-blog ul.w-social li a i {
            color: #fafafa;
        }

        .widget-block.news.dark .info-blog ul.w-social li a:hover i {
            color: #c2a26a;
        }

        .widget-block.news.dark .info-blog ul.w-social li a:hover {
            color: #c2a26a;
        }

.center-quote {
    width: 450px;
    height: auto;
    opacity: 0.1;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

img.mini-clients {
    height: auto;
    position: absolute;
}

    img.mini-clients.two {
        width: 150px;
        top: 70px;
        right: 30%;
    }

    img.mini-clients.one {
        width: 120px;
        bottom: 140px;
        left: 45%;
    }

    img.mini-clients.three {
        width: 130px;
        bottom: 110px;
        right: 70px;
    }

.client-name-block {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

    .client-name-block .client-name {
        width: 100%;
        height: auto;
        margin-top: auto;
        margin-bottom: auto;
        text-align: left;
    }

        .client-name-block .client-name .w-title {
            margin-bottom: 15px;
        }

.client-comment-block {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

    .client-comment-block .client-comment {
        width: 100%;
        height: auto;
        margin-top: auto;
        margin-bottom: auto;
    }

        .client-comment-block .client-comment i {
            display: block;
            font-size: 45px;
            color: #171717;
            margin-bottom: 35px;
            opacity: 0;
        }

        .client-comment-block .client-comment .head-client {
            font-size: 30px;
            line-height: 35px;
            font-family: 'Poppins';
            color: #171717;
            letter-spacing: 1px;
            word-spacing: 1px;
            margin-bottom: 25px;
        }

        .client-comment-block .client-comment .body-client {
            font-size: 17px;
            line-height: 23px;
            font-family: 'Raleway';
            color: black;
            letter-spacing: 2px;
            word-spacing: 2px;
            font-weight: bold;
            font-weight: 500;
            margin-bottom: 25px;
        }

.widget-block.newsletter .newsletter-block .form-item {
    width: 100%;
    height: 50px;
    padding: 7px 25px 7px 20px;
    margin-bottom: 25px;
    background-color: white;
    border-radius: 2px;
    border: none;
    border: 2px solid #e6e6e6;
    border-right-color: #8a8a8a;
    color: #171717;
}

    .widget-block.newsletter .newsletter-block .form-item:focus {
        outline: none;
        border-right-color: #c2a26a;
    }

.widget-block.newsletter .newsletter-block.dark .form-item {
    background-color: #222;
    border: 2px solid #1b1b1b;
    border-right-color: #777777;
    color: #fafafa;
}

    .widget-block.newsletter .newsletter-block.dark .form-item:focus {
        outline: none;
        border-right-color: #c2a26a;
    }

.widget-block.newsletter .newsletter-block.transparent .form-item {
    background-color: rgba(255, 255, 255, 0.095);
    border: 0px solid #1b1b1b;
    border-right-color: #777777;
    color: #fafafa;
}

    .widget-block.newsletter .newsletter-block.transparent .form-item:focus {
        outline: none;
        border-right-color: #c2a26a;
    }

.widget-block.planning {
    cursor: crosshair;
    padding: 18px 0 0 0;
}

    .widget-block.planning .background-active {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        border: 1px solid #c2a26a;
        position: absolute;
        left: 40px;
        top: 0px;
    }

    .widget-block.planning .plan-number {
        display: inline-block;
        font-size: 20px;
        line-height: 20px;
        font-family: "Poppins";
        font-weight: bold;
        color: #171717;
        border-radius: 50%;
        -webkit-transition: all ease 0.3s;
        transition: all ease 0.3s;
        position: relative;
        margin-bottom: 41px;
        padding-left: 15px;
    }

    .widget-block.planning .w-title {
        margin-bottom: 15px;
    }

    .widget-block.planning:hover .plan-number {
        color: #171717;
    }

    .widget-block.planning:hover .background-active {
        background-color: #c2a26a;
    }

    .widget-block.planning.dark .plan-number {
        color: #fafafa;
    }

    .widget-block.planning.dark .w-info {
        color: #ccc;
    }

    .widget-block.planning.dark:hover .plan-number {
        color: #171717;
    }

    .widget-block.planning.center {
        text-align: center;
    }

        .widget-block.planning.center .background-active {
            left: -28px;
            margin-left: 50%;
        }

        .widget-block.planning.center .plan-number {
            padding-left: 0;
        }

    .widget-block.planning.right {
        text-align: right;
    }

        .widget-block.planning.right .background-active {
            left: inherit;
            right: 40px;
        }

        .widget-block.planning.right .plan-number {
            padding-right: 15px;
        }

.widget-block.counter {
    text-align: center;
}

    .widget-block.counter .counter-block .count-number {
        display: inline-block;
        font-size: 32px;
        line-height: 30px;
        font-family: 'Poppins';
        font-weight: bold;
        margin-bottom: 15px;
        color: #c2a26a;
    }

    .widget-block.counter.left {
        text-align: left;
    }

    .widget-block.counter.right {
        text-align: right;
    }

.widget-block.contact .box-contact-info {
    padding: 40px;
    background-color: #202020;
    border-radius: 2px;
    position: relative;
}

    .widget-block.contact .box-contact-info i.bg-icon {
        line-height: 100px;
        font-size: 130px;
        color: #272727;
        position: absolute;
        bottom: 25px;
        right: 40px;
        z-index: 0;
        -webkit-transform: translateZ(1px);
        transform: translateZ(1px);
    }

    .widget-block.contact .box-contact-info .w-title {
        margin-bottom: 15px;
        z-index: 10;
        -webkit-transform: translateZ(10px);
        transform: translateZ(10px);
    }

    .widget-block.contact .box-contact-info .w-info {
        margin-bottom: 15px;
        z-index: 10;
        -webkit-transform: translateZ(10px);
        transform: translateZ(10px);
    }

    .widget-block.contact .box-contact-info .contacts-share {
        margin-top: 30px;
        margin-bottom: 0;
        z-index: 10;
        -webkit-transform: translateZ(10px);
        transform: translateZ(10px);
    }

        .widget-block.contact .box-contact-info .contacts-share a {
            color: #fff;
        }

        .widget-block.contact .box-contact-info .contacts-share li {
            margin-bottom: 25px;
        }

            .widget-block.contact .box-contact-info .contacts-share li a {
                color: #dfdfdf;
                font-size: 16px;
                font-family: 'Raleway';
                -webkit-transition: all ease 0.5s;
                transition: all ease 0.5s;
                font-weight: 600;
            }

                .widget-block.contact .box-contact-info .contacts-share li a i {
                    font-size: 23px;
                    padding: 11px 16px;
                    border-radius: 100%;
                    color: #fafafa;
                    background-color: rgba(194, 162, 106, 0.3);
                    margin-right: 5px;
                    -webkit-transition: all ease 0.5s;
                    transition: all ease 0.5s;
                    margin-right: 7px;
                }

                .widget-block.contact .box-contact-info .contacts-share li a:hover {
                    color: #c2a26a;
                }

                    .widget-block.contact .box-contact-info .contacts-share li a:hover i {
                        color: #c2a26a;
                        background-color: rgba(194, 162, 106, 0.9);
                        color: #fff;
                    }

            .widget-block.contact .box-contact-info .contacts-share li:last-child {
                margin-bottom: 0;
            }

        .widget-block.contact .box-contact-info .contacts-share.light li a {
            color: #fff;
        }

            .widget-block.contact .box-contact-info .contacts-share.light li a i {
                color: #171717;
            }

            .widget-block.contact .box-contact-info .contacts-share.light li a:hover {
                color: #c2a26a;
            }

                .widget-block.contact .box-contact-info .contacts-share.light li a:hover i {
                    color: #c2a26a;
                    background-color: rgba(194, 162, 106, 0.9);
                    color: #fff;
                }

    .widget-block.contact .box-contact-info.no-bg {
        padding: 0;
        background-color: transparent;
    }

    .widget-block.contact .box-contact-info.light {
        background-color: #fff;
        -webkit-box-shadow: 0px 0px 105px -45px rgba(34, 60, 80, 0.2);
        box-shadow: 0px 0px 105px -45px rgba(34, 60, 80, 0.2);
    }

        .widget-block.contact .box-contact-info.light .contacts-share li {
            color: #000;
        }

            .widget-block.contact .box-contact-info.light .contacts-share li a {
                color: #000;
            }

                .widget-block.contact .box-contact-info.light .contacts-share li a i {
                    color: #000;
                }

                .widget-block.contact .box-contact-info.light .contacts-share li a:hover {
                    color: #c2a26a;
                }

                    .widget-block.contact .box-contact-info.light .contacts-share li a:hover i {
                        color: #fff;
                    }

.widget-block.contact form .form-item {
    width: 100%;
    height: 50px;
    padding: 7px 25px 7px 20px;
    margin-bottom: 15px;
    background-color: #ffffff;
    border: 2px solid #e6e6e6;
    border-right-color: #8a8a8a;
    border-radius: 2px;
    color: #171717;
}

    .widget-block.contact form .form-item:focus {
        outline: none;
        border-right-color: #c2a26a;
    }

.widget-block.contact form .form-textarea {
    width: 100%;
    height: 200px;
    padding: 20px 20px 0 20px;
    background-color: #ffff;
    border: 0 transparent;
    border: 2px solid #e6e6e6;
    border-right-color: #8a8a8a;
    border-radius: 2px;
    color: #171717;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 15px;
}

    .widget-block.contact form .form-textarea:focus {
        outline: none;
        border-right-color: #c2a26a;
    }

.widget-block.contact.action {
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

    .widget-block.contact.action:hover {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }

.widget-block.footer {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

    .widget-block.footer img {
        width: 150px;
        height: auto;
        margin-bottom: 15px;
    }

    .widget-block.footer .w-title {
        margin-bottom: 15px;
    }

    .widget-block.footer .w-info {
        color: #ccc;
        line-height: 21px;
        margin-bottom: 15px;
    }

    .widget-block.footer .learn-info-block a.learn-info {
        display: block;
        margin-bottom: 7px;
        color: #ccc;
        font-size: 16px;
        font-family: "Raleway";
    }

        .widget-block.footer .learn-info-block a.learn-info i {
            font-size: 20px;
            margin-right: 5px;
        }

        .widget-block.footer .learn-info-block a.learn-info:hover {
            color: #c2a26a;
        }

        .widget-block.footer .learn-info-block a.learn-info:last-child {
            margin-bottom: 0;
        }

    .widget-block.footer .footer-information {
        margin-bottom: 0px;
    }

        .widget-block.footer .footer-information li {
            margin-bottom: 7px;
        }

            .widget-block.footer .footer-information li:last-child {
                margin-bottom: 0px;
            }

            .widget-block.footer .footer-information li a {
                color: #ccc;
                font-size: 16px;
                font-family: "Raleway";
                font-weight: 600;
                letter-spacing: 1px;
            }

                .widget-block.footer .footer-information li a:hover {
                    color: #c2a26a;
                }

                .widget-block.footer .footer-information li a i {
                    margin-right: 5px;
                }

            .widget-block.footer .footer-information li.for-social a i {
                font-size: 20px;
            }

    .widget-block.footer:hover {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }

    .widget-block.footer.main {
        width: 100%;
        height: 100%;
        text-align: right;
        background-color: transparent;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 0px 20px;
    }

        .widget-block.footer.main .inline-center {
            width: 100%;
            height: auto;
            margin-top: auto;
            margin-bottom: auto;
            padding-bottom: 40px;
        }

            .widget-block.footer.main .inline-center p.w-info {
                color: #b5b5b5;
            }

        .widget-block.footer.main:hover {
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }

.last-item {
    background-color: #000;
    padding: 20px 110px 0 110px;
    color: #b9b9b9;
}

    .last-item a {
        color: #c2a26a;
        opacity: 0.85;
        -webkit-transition: all ease 0.3s;
        transition: all ease 0.3s;
    }

        .last-item a:hover {
            opacity: 1;
        }

    .last-item .box-last {
        margin-bottom: 20px;
        font-size: 14px;
    }

.redirection-block {
    position: relative;
}

    .redirection-block .secondary-layer {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        background-color: rgba(0, 0, 0, 0.3);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-transition: all ease 0.3s;
        transition: all ease 0.3s;
    }

        .redirection-block .secondary-layer i {
            font-size: 35px;
            color: #fff;
            margin: auto;
            opacity: 0.5;
            -webkit-transition: all ease 0.3s;
            transition: all ease 0.3s;
        }

    .redirection-block:hover .secondary-layer {
        background-color: rgba(0, 0, 0, 0.7);
    }

        .redirection-block:hover .secondary-layer i {
            opacity: 1;
        }

.glide .glide__track {
    cursor: w-resize;
}

    .glide .glide__track .glide__slides {
        margin-bottom: 0px;
    }

        .glide .glide__track .glide__slides .glide__slide.focus-center {
            -webkit-transition: all ease 0.3s;
            transition: all ease 0.3s;
        }

        .glide .glide__track .glide__slides .glide__slide.glide__slide--active {
            opacity: 1;
        }

.glide .glide__arrows.client_controls {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-22px);
    transform: translateY(-22px);
}

    .glide .glide__arrows.client_controls .glide__arrow {
        padding: 10px 17px;
        background-color: #fff;
        border: none;
        color: #000;
        -webkit-transition: all ease 0.5s;
        transition: all ease 0.5s;
    }

        .glide .glide__arrows.client_controls .glide__arrow:focus {
            border: none;
            outline: none;
        }

        .glide .glide__arrows.client_controls .glide__arrow:hover {
            background-color: #c2a26a;
            color: #000;
        }

        .glide .glide__arrows.client_controls .glide__arrow.dark {
            background-color: #000;
            color: #fff;
        }

            .glide .glide__arrows.client_controls .glide__arrow.dark:focus {
                border: none;
                outline: none;
            }

            .glide .glide__arrows.client_controls .glide__arrow.dark:hover {
                background-color: #c2a26a;
                color: #000;
            }

    .glide .glide__arrows.client_controls .glide__arrow--left {
        -webkit-transform: translateX(-41px);
        transform: translateX(-41px);
        border-top-left-radius: 2px;
        border-bottom-left-radius: 2px;
    }

    .glide .glide__arrows.client_controls .glide__arrow--right {
        -webkit-transform: translateX(-46px);
        transform: translateX(-46px);
        border-top-right-radius: 2px;
        border-bottom-right-radius: 2px;
    }

.glide .my-contrlos {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 0 0 0;
}

    .glide .my-contrlos .glide__bullets {
        display: inline-block;
        margin: auto;
    }

        .glide .my-contrlos .glide__bullets .glide__bullet {
            width: 25px;
            height: 8px;
            background-color: #eee;
            border: none;
        }

            .glide .my-contrlos .glide__bullets .glide__bullet:focus {
                outline: none;
            }

            .glide .my-contrlos .glide__bullets .glide__bullet.glide__bullet--active {
                background-color: #c2a26a;
            }

.glide .home-controls {
    position: absolute;
    bottom: 170px;
    right: 40px;
}

    .glide .home-controls .glide__bullets {
        display: inline-block;
        margin: auto;
        -webkit-transform-origin: right top;
        transform-origin: right top;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

        .glide .home-controls .glide__bullets .glide__bullet {
            width: 20px;
            height: 20px;
            border: 1px solid #fff;
            border-radius: 50%;
            margin-left: 5px;
            background-color: transparent;
        }

            .glide .home-controls .glide__bullets .glide__bullet:focus {
                outline: none;
            }

            .glide .home-controls .glide__bullets .glide__bullet.glide__bullet--active {
                background-color: #c2a26a;
                border: 1px solid #c2a26a;
            }

    .glide .home-controls.version-2 .glide__bullets .glide__bullet {
        width: 15px;
        border-radius: 2px;
    }

.glide .news2-controls .glide__bullets {
    position: absolute;
    bottom: 200px;
    right: 40px;
    display: inline-block;
    margin: auto;
    -webkit-transform-origin: right top;
    transform-origin: right top;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

    .glide .news2-controls .glide__bullets .glide__bullet {
        width: 15px;
        height: 25px;
        border: 1px solid #fff;
        margin-left: 5px;
        background-color: transparent;
    }

        .glide .news2-controls .glide__bullets .glide__bullet:focus {
            outline: none;
        }

        .glide .news2-controls .glide__bullets .glide__bullet.glide__bullet--active {
            background-color: #c2a26a;
            border: 1px solid #c2a26a;
        }

.glide__slide.glide__slide--active {
    margin-left: 0px;
    margin-right: 0px;
}

.glide__slides {
    margin: 0px;
}

.glide__arrow.none {
    display: none;
}

/*******************
9. Auxiliary classes
*******************/
.full-height {
    height: 100vh;
}

.home.for-pages-height {
    height: 600px !important;
}

.team.for-pages-height {
    height: 250px;
    background-color: #000;
}

.contact.for-pages-height {
    height: 200px;
    background-color: #000;
}

.for-pages-height {
    height: 450px;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.opacity-09 {
    opacity: 0.9;
}

.opacity-08 {
    opacity: 0.8;
}

.opacity-07 {
    opacity: 0.7;
}

.opacity-06 {
    opacity: 0.6;
}

.opacity-05 {
    opacity: 0.5;
}

.opacity-04 {
    opacity: 0.4;
}

.opacity-03 {
    opacity: 0.3;
}

.opacity-02 {
    opacity: 0.2;
}

.opacity-01 {
    opacity: 0.1;
}

.d-none {
    display: none;
}

.position-relative {
    position: relative;
}

.my-auto {
    margin: auto initial;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pl-0 {
    padding-left: 0;
}

.pb-55 {
    padding-bottom: 55px;
}

.display-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.z-index-large {
    z-index: 9999;
}

.z-index-small {
    z-index: 1111;
}

.cur-point {
    cursor: pointer;
}

.breadcrumb-item {
    font-size: 17px;
    font-family: 'Poppins';
}

a.breadcrumb-link {
    color: #fff;
}

    a.breadcrumb-link:hover {
        color: #c2a26a;
    }

span.primary {
    color: #171717;
    font-weight: bold;
}

.mb-20 {
    padding-bottom: 20px;
}

.pagination {
    margin-bottom: 0;
    border-radius: 2px;
}

    .pagination .page-item {
        border-radius: 0;
    }

        .pagination .page-item .page-link {
            color: #111;
            border: transparent;
            font-family: 'Poppins';
            font-size: 16px;
            line-height: 23px;
            padding: 7px 15px;
        }

        .pagination .page-item.disabled .page-link {
            background-color: #c2a26a;
        }

    .pagination.dark .page-item .page-link {
        color: #fff;
        background-color: #333;
        border: transparent;
    }

    .pagination.dark .page-item.disabled .page-link {
        background-color: #c2a26a;
        color: #111;
    }

.admin-card {
    padding: 0 0 0 40px;
    text-align: left;
}

    .admin-card img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        margin-bottom: 15px;
    }

    .admin-card .w-title {
        margin-bottom: 15px;
    }

    .admin-card .w-info {
        margin-bottom: 15px;
    }

    .admin-card ul.social {
        padding: 0;
        margin-bottom: 0;
    }

        .admin-card ul.social li {
            display: inline-block;
        }

            .admin-card ul.social li a {
                display: inline-block;
                padding: 0 10px;
            }

                .admin-card ul.social li a i {
                    font-size: 16px;
                    color: #171717;
                }

                    .admin-card ul.social li a i:hover {
                        color: #c2a26a;
                    }

    .admin-card.dark ul.social li a i {
        color: #fafafa;
    }

        .admin-card.dark ul.social li a i:hover {
            color: #c2a26a;
        }

.widget-block.blog-list {
    padding: 10px 0 10px 40px;
}

    .widget-block.blog-list input.search {
        width: 100%;
        height: 50px;
        padding: 7px 25px 7px 20px;
        margin-bottom: 15px;
        background-color: #ffffff;
        border: 2px solid #b3b3b3;
        border-right-color: #636363;
        border-radius: 2px;
        color: #171717;
    }

        .widget-block.blog-list input.search:focus {
            outline: none;
            border-right-color: #c2a26a;
        }

    .widget-block.blog-list .w-title {
        margin-bottom: 15px;
    }

    .widget-block.blog-list ul.list-unstyled li {
        margin-bottom: 6px;
    }

        .widget-block.blog-list ul.list-unstyled li span.badge {
            background-color: #c2a26a;
            color: #171717;
            font-size: 11px;
        }

        .widget-block.blog-list ul.list-unstyled li a {
            color: #171717;
            font-weight: 600;
        }

            .widget-block.blog-list ul.list-unstyled li a:hover {
                color: #c2a26a;
            }

        .widget-block.blog-list ul.list-unstyled li:last-child {
            margin-bottom: 0;
        }

    .widget-block.blog-list .tags-block a.tag {
        display: inline-block;
        padding: 7px 11px;
        border: 1px solid #c2a26a;
        margin: 10px 5px 0 0;
        color: #171717;
        font-weight: 600;
    }

        .widget-block.blog-list .tags-block a.tag:last-child {
            margin: 10px 0 0 0;
        }

        .widget-block.blog-list .tags-block a.tag:hover {
            background-color: #c2a26a;
        }

    .widget-block.blog-list.dark input.search {
        background-color: #161616;
        border: 2px solid #252525;
        border-right-color: #333333;
        color: #fafafa;
    }

        .widget-block.blog-list.dark input.search:focus {
            outline: none;
            border-right-color: #c2a26a;
        }

    .widget-block.blog-list.dark ul.list-unstyled li a {
        color: #bebebe;
    }

        .widget-block.blog-list.dark ul.list-unstyled li a:hover {
            color: #c2a26a;
        }

    .widget-block.blog-list.dark .tags-block a.tag {
        color: #bebebe;
    }

        .widget-block.blog-list.dark .tags-block a.tag:last-child {
            margin: 10px 0 0 0;
        }

        .widget-block.blog-list.dark .tags-block a.tag:hover {
            color: #171717;
            background-color: #c2a26a;
        }

.comments-block .form-item {
    width: 100%;
    height: 50px;
    padding: 7px 25px 7px 20px;
    margin-bottom: 15px;
    background-color: #ffffff;
    border: 2px solid #e6e6e6;
    border-right-color: #8a8a8a;
    border-radius: 2px;
    color: #171717;
}

    .comments-block .form-item:focus {
        outline: none;
        border-right-color: #c2a26a;
    }

.comments-block .form-textarea {
    width: 100%;
    height: 200px;
    padding: 20px 20px 0 20px;
    background-color: #ffff;
    border: 0 transparent;
    border: 2px solid #e6e6e6;
    border-right-color: #8a8a8a;
    border-radius: 2px;
    color: #171717;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 15px;
}

    .comments-block .form-textarea:focus {
        outline: none;
        border-right-color: #c2a26a;
    }

.comments-block.dark .form-item {
    background-color: #161616;
    border: 2px solid #252525;
    border-right-color: #333333;
    color: #fafafa;
}

    .comments-block.dark .form-item:focus {
        outline: none;
        border-right-color: #c2a26a;
    }

.comments-block.dark .form-textarea {
    width: 100%;
    height: 200px;
    padding: 20px 20px 0 20px;
    background-color: #161616;
    border: 2px solid #252525;
    border-right-color: #333333;
    border-radius: 2px;
    color: #fafafa;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 15px;
}

    .comments-block.dark .form-textarea:focus {
        outline: none;
        border-right-color: #c2a26a;
    }

ul.nav-basic li {
    margin-right: 11px;
    display: inline-block;
}

    ul.nav-basic li a {
        color: #fff;
    }

        ul.nav-basic li a:hover {
            color: #c2a26a;
        }

ul.nav-basic.light li {
    margin-right: 11px;
    display: inline-block;
}

    ul.nav-basic.light li a {
        color: #000;
    }

        ul.nav-basic.light li a:hover {
            color: #c2a26a;
        }

ul.social {
    margin-bottom: 0;
    padding-bottom: 0;
}

    ul.social li {
        display: inline-block;
        margin-right: 11px;
    }

        ul.social li a i {
            font-size: 23px;
            line-height: 16px;
        }

.modal {
    z-index: 999999;
    padding-right: 0 !important;
}

    .modal .modal-dialog.modal-fullscreen {
        width: 100%;
        height: 100%;
    }

        .modal .modal-dialog.modal-fullscreen .modal-content {
            background-color: rgba(0, 0, 0, 0.7);
        }

            .modal .modal-dialog.modal-fullscreen .modal-content .modal-body {
                overflow-x: hidden;
                padding: 0px;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
            }

                .modal .modal-dialog.modal-fullscreen .modal-content .modal-body .news-content-modal {
                    width: 100%;
                    height: auto;
                    margin-top: auto;
                    margin-bottom: auto;
                }

                    .modal .modal-dialog.modal-fullscreen .modal-content .modal-body .news-content-modal .news-content-body {
                        position: relative;
                    }

                .modal .modal-dialog.modal-fullscreen .modal-content .modal-body .main-view {
                    padding-top: 50px;
                    position: relative;
                }

                    .modal .modal-dialog.modal-fullscreen .modal-content .modal-body .main-view i.close-icon {
                        display: block;
                        position: absolute;
                        top: 55px;
                        right: 9px;
                        z-index: 9999999999;
                        color: #fff;
                        font-size: 49px;
                        line-height: 11px;
                        cursor: pointer;
                        padding: 0px;
                    }

                    .modal .modal-dialog.modal-fullscreen .modal-content .modal-body .main-view .news-content-header {
                        padding: 30px 62px 30px 30px;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        height: auto;
                        background-color: #222;
                        position: relative;
                    }

                        .modal .modal-dialog.modal-fullscreen .modal-content .modal-body .main-view .news-content-header h4 {
                            margin-top: auto;
                            margin-bottom: auto;
                        }

                    .modal .modal-dialog.modal-fullscreen .modal-content .modal-body .main-view .flex-block {
                        height: 100%;
                        height: 100%;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        position: relative;
                    }

                        .modal .modal-dialog.modal-fullscreen .modal-content .modal-body .main-view .flex-block .news-content-body {
                            width: 100%;
                            height: 100%;
                            margin-top: auto;
                            margin-bottom: auto;
                            padding: 30px 62px 30px 30px;
                            background-color: #fff;
                        }

                            .modal .modal-dialog.modal-fullscreen .modal-content .modal-body .main-view .flex-block .news-content-body .news-data {
                                font-size: 16px;
                                font-family: "Poppins";
                                color: #000;
                                margin-bottom: 20px;
                            }

                            .modal .modal-dialog.modal-fullscreen .modal-content .modal-body .main-view .flex-block .news-content-body p.w-info {
                                margin-bottom: 20px;
                                line-height: 25px;
                            }

                            .modal .modal-dialog.modal-fullscreen .modal-content .modal-body .main-view .flex-block .news-content-body ul.w-social li {
                                display: inline-block;
                                margin-right: 5px;
                            }

                                .modal .modal-dialog.modal-fullscreen .modal-content .modal-body .main-view .flex-block .news-content-body ul.w-social li a {
                                    color: #000;
                                    font-weight: bold;
                                    -webkit-transition: all ease 0.3s;
                                    transition: all ease 0.3s;
                                }

                                    .modal .modal-dialog.modal-fullscreen .modal-content .modal-body .main-view .flex-block .news-content-body ul.w-social li a i {
                                        font-size: 16px;
                                    }

                                    .modal .modal-dialog.modal-fullscreen .modal-content .modal-body .main-view .flex-block .news-content-body ul.w-social li a:hover {
                                        color: #c2a26a;
                                    }

                            .modal .modal-dialog.modal-fullscreen .modal-content .modal-body .main-view .flex-block .news-content-body ul.w-social-rating {
                                padding: 0px;
                            }

                                .modal .modal-dialog.modal-fullscreen .modal-content .modal-body .main-view .flex-block .news-content-body ul.w-social-rating li {
                                    display: inline-block;
                                    line-height: 16px;
                                    margin-right: 5px;
                                }

                                    .modal .modal-dialog.modal-fullscreen .modal-content .modal-body .main-view .flex-block .news-content-body ul.w-social-rating li a i {
                                        color: #000;
                                        font-weight: bold;
                                        -webkit-transition: all ease 0.3s;
                                        transition: all ease 0.3s;
                                        font-size: 23px;
                                        color: #c2a26a;
                                    }

.modal-title-assistant.dark {
    position: absolute;
    width: 18px;
    height: 30px;
    right: 20px;
    bottom: 0px;
    background-color: #fff;
    z-index: 9999;
}

.modal-title-assistant.top {
    position: absolute;
    width: 18px;
    height: 120px;
    right: 20px;
    top: 0;
    bottom: inherit;
    background-color: #000;
    z-index: 999;
}
/*# sourceMappingURL=main.css.map */
.background {
    position: relative;
    background-color: #000;
}

    .background::before {
        content: ' ';
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        opacity: 0.6;
        background-size: cover;
        background-color: #000;
    }

.example-image {
    margin-bottom: 30px;
}

.social-icons {
    display: inline-block;
    margin-left: 20px;
}

    .social-icons i {
        text-shadow: none;
        color: #fff;
        padding: 8px;
        width: 28px;
        height: 28px;
        text-align: center;
        font-size: 16px;
        border-radius: 1px;
        -moz-border-radius: 1px;
        -webkit-border-radius: 1px;
    }

.glide.mobileview {
    display: none;
}

.mobile-view {
    display: none;
}

@media (max-width: 414px) {
    .social-icons {
        display: none;
    }

    .glide.desktop {
        display: none !important;
    }

    .glide.mobileview {
        display: block !important;
    }

    .mobile-view {
        display: block !important;
    }
}
