@charset "utf-8";
/* ----------------------------------

Name: style.css
Version: 1.1

-------------------------------------

Table of contents
        
    01. Google Fonts
    02. Reset
    03. Page Loader
    04. Header
    05. Video
    06. Background Image
    07. Social Media Icons
    08. Footer
    09. Latest Posts
    10. Newsletter
    11. Instagram
    12. List Style
    13. Feature Box
    14. Skill Bar
    15. Tabs
    16. Portfolio
    17. Team
    18. Blog
    19. Sliders
    20. Lightcase
    21. Countdown
    22. Scroll Top

*/

/* ===================================
    Google font
====================================== */

@import url('https://fonts.googleapis.com/css?family=Roboto:400,100,300,500,700,900');
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900');
/* ===================================
    Reset
====================================== */

body {
	font-family: 'Roboto', sans-serif;
	-webkit-font-smoothing: antialiased;
	font-size: 14px;
	color: #6f6f6f;
	font-weight: 400;
	line-height: 24px;
}

body,
html {
    height: 100%;
    -moz-osx-font-smoothing: grayscale;
}

a,
a:focus {
    color: #6f6f6f;
    text-decoration: none;
}

a:hover,
a:active {
    color: #1080d0;
    text-decoration: none;
    -webkit-transition: 300ms;
    transition: 300ms;
}

a:focus,
a:active,
button:focus,
button:active,
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
}

video {
    background-size: cover;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

.exposant {
position: relative;
bottom: 1px;
font-size: .8em;
line-height: .8em;
vertical-align:super;
text-decoration:none;
}

input,
textarea,
select {
    border: 1px solid #d1d1d1;
    font-size: 14px;
    padding: 8px 15px;
    width: 100%;
    margin: 0 0 20px 0;
    max-width: 100%;
    resize: none;
}

input[type="submit"] {
    width: auto
}

input[type="button"],
input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
textarea,
input[type="submit"] {
    -webkit-appearance: none;
    outline: none;
}

input:focus,
textarea:focus {
    border-color: #585858;
    outline: none;
}

input[type="button"]:focus {
    outline: none;
}

select::-ms-expand {
    display: none;
}

iframe {
    border: 0;
}

p {
    margin: 0 0 25px
}

b,
strong {
    font-weight: 600;
}

.alt-font strong {
    font-weight: 700
}

ul,
ol,
dl {
    list-style-position: outside;
    margin: 0;
}

a {
    -webkit-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -ms-transition-duration: .2s;
    -o-transition-duration: .2s;
    transition-duration: .2s;
}

::selection {
    color: #fff;
    background: #1080d0;
}

::-moz-selection {
    color: #fff;
    background: #1080d0;
}

::-webkit-input-placeholder {
    color: #6f6f6f;
    text-overflow: ellipsis;
}

::-moz-placeholder {
    color: #6f6f6f;
    text-overflow: ellipsis;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #6f6f6f;
    text-overflow: ellipsis;
    opacity: 1;
}

/* ====================================================
    Page Loader
==================================================== */

.page-loader {
    background: #fff;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99999;
    opacity: 1;
}

.page-loader-inner {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    padding: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.spinner {
    position: relative;
    height: 30px;
    width: 30px;
    margin: 100px auto;
}

.double-bounce1,
.double-bounce2 {
    position: absolute;
    background-color: #1080d0;
    border-radius: 50%;
    opacity: .5;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    -webkit-animation: bounce 2s infinite ease-in-out;
    animation: bounce 2s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes bounce {

    0%,
    100% {
        -webkit-transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
    }
}

@keyframes bounce {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* ====================================================
    Header
==================================================== */

.header {
    background: #fff;
    -webkit-transition: all 400ms ease 0s;
    transition: all 400ms ease 0s;
}

.header .nav-item:hover .nav-link,
.header .nav-item .active.nav-link {
    color: #1080d0 !important;
}

.header .navbar-brand {
    position: relative;
    padding: 25px 0;
    vertical-align: middle;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
    font-size: 1.25rem;
}

/* Mega Menu
==================================================== */

.m-dropdown-mega-menu {
    width: 100%;
    padding: 30px 35px;
    background: #252A2C;
    list-style-type: none;
}

.mm-column ul:first-child {
    margin-top: 0;
}

.mm-column ul {
    margin: 15px 0 0 0;
    padding: 0;
}

.mm-column li {
    list-style-type: none;
    list-style-type: none;
    padding: 8px 0;
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

.mm-column li.mm-header {
    color: #fff;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    white-space: inherit;
    padding: 0;
    border-bottom: none;
    text-transform: uppercase;
}

.mm-column li a {
    text-align: left;
    font-size: 13px;
    color: #9d9d9d;
    text-transform: capitalize;
    margin: 0;
    display: block;
    position: relative;
    left: 0;
    padding: 0;
    line-height: normal;
}

.mm-column li:hover a {
    left: 4px;
    color: #fff;
    text-decoration: none;
}

.mm-column li a.active {
    color: #fff;
}

/* Single Menu
==================================================== */

.m-dropdown {
    position: relative;
}

.m-dropdown-multilevel .m-dropdown-menu {
    margin: 0;
    padding: 13px 0 15px;
    background: #252A2C;
    width: 100%;
}

.m-dropdown-multilevel .m-dropdown-menu li {
    list-style-type: none;
    padding-left: 18px;
    padding-right: 18px;
    position: relative;
}

.m-dropdown-multilevel .m-dropdown-menu li a {
    text-align: left;
    font-size: 16px;
    color: #9d9d9d;
    text-transform: capitalize;
    text-decoration: none;
    margin: 0;
    display: block;
    position: relative;
    left: 0;
    padding: 9px 0 7px;
    font-weight: 500;
}

.m-dropdown-multilevel .m-dropdown-menu li a:hover {
    color: #fff;
}

.m-dropdown-multilevel .m-dropdown-menu ul {
    margin: 0;
    padding: 13px 0 15px;
    background: #252A2C;
    width: 100%;
}

@media (min-width: 992px) {
    #menu-toggle {
        display: none;
    }

    .m-dropdown-multilevel .m-dropdown-menu>li>ul,
    .m-dropdown-multilevel .m-dropdown-menu>li>ul>li>ul,
    .m-dropdown-multilevel .m-dropdown-menu>li>ul>li>ul>li>ul,
    .m-dropdown .m-dropdown-menu {
        -webkit-transition: all 400ms ease 0s;
        transition: all 400ms ease 0s;
        -webkit-transform: rotateX(90deg);
        transform: rotateX(90deg);
        -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
        transform-origin: 0 0;
    }

    .m-dropdown .m-dropdown-menu li>a {
        line-height: 1.42857143;
    }

    .m-dropdown-multilevel .m-dropdown-menu>li:hover>ul,
    .m-dropdown-multilevel .m-dropdown-menu>li>ul>li:hover>ul,
    .m-dropdown-multilevel .m-dropdown-menu>li>ul>li>ul>li:hover>ul,
    .m-dropdown:hover .m-dropdown-menu {
        -webkit-transition-delay: 200ms !important;
        transition-delay: 200ms !important;
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        opacity: 1;
        visibility: visible;
    }

    .m-dropdown .m-dropdown-toggle {
        display: block;
    }

    .m-mega-menu {
        position: static !important;
    }

    .m-dropdown-mega-menu {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 50;
    }

    .m-dropdown-multilevel .m-dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 50;
        width: 220px;
    }

    .m-dropdown-multilevel .m-dropdown-menu li.hover-trigger>a i {
        position: absolute;
        right: 0;
        font-size: 12px;
        margin-top: 0;
        height: 20px;
        width: 20px;
        line-height: 20px;
        text-align: center;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
    }

    .m-dropdown-multilevel .m-dropdown-menu>li>ul>li>ul>li>ul>li:hover>a,
    .m-dropdown-multilevel .m-dropdown-menu>li>ul>li>ul>li:hover>a,
    .m-dropdown-multilevel .m-dropdown-menu>li>ul>li:hover>a,
    .m-dropdown-multilevel .m-dropdown-menu>li:hover>a {
        left: 4px;
        color: #fff;
        text-decoration: none;
    }

    .m-dropdown-multilevel .m-dropdown-menu>li a.active {
        color: #fff;
    }

    .m-dropdown-multilevel .m-dropdown-menu ul {
        position: absolute;
        top: 0;
        left: 100%;
        z-index: 50;
        width: 220px;
    }

    .m-dropdown-multilevel .m-dropdown-menu>li>ul {
        position: absolute;
        top: 0;
        left: 100%;
    }
}

@media (max-width: 991px) {
    a.nav-link:before {
        font-family: 'Font Awesome 5 Free';
        content: "\f107";
        float: right;
        font-size: 16px;
        margin-left: 10px;
    }

    .onepage-nav a.nav-link:before {
        content: none;
    }

    .m-dropdown a .fa-angle-down {
        display: none;
    }

    .m-dropdown .m-dropdown-menu {
        padding: 10px 15px;
        display: none;
    }

    .m-dropdown .m-dropdown-mega-menu {
        padding: 10px 15px;
    }

    .m-dropdown .m-dropdown-menu.open-menu {
        display: block;
    }

    .m-dropdown-multilevel .m-dropdown-menu li {
        padding-left: 0;
        padding-right: 0;
        position: relative;
    }

    .m-dropdown-multilevel .m-dropdown-menu li.hover-trigger {
        margin-bottom: 10px;
    }

    .m-dropdown-multilevel .m-dropdown-menu li.hover-trigger>ul>li {
        border-top: 1px solid rgba(255, 255, 255, 0.07);
    }

    .m-dropdown-multilevel .m-dropdown-menu li.hover-trigger:last-child {
        margin-bottom: 0;
    }

    .m-dropdown-menu-title {
        font-size: 14px !important;
        color: #fff !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .m-dropdown-multilevel .m-dropdown-menu li a {
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .m-dropdown-multilevel .m-dropdown-menu li:last-child a {
        border-bottom: 0;
    }

    .m-dropdown-multilevel .m-dropdown-menu li a .arrow {
        display: none;
    }

    .m-dropdown-multilevel .m-dropdown-menu li li {
        padding-left: 0;
        padding-right: 0;
    }

    .m-dropdown-multilevel .m-dropdown-menu ul {
        padding: 0;
        float: none;
    }

    .m-dropdown-multilevel .m-dropdown-menu ul.open-menu {
        display: block;
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        padding: 0 0 0px 10px;
        margin-bottom: 15px;
    }

    .m-dropdown-multilevel .m-dropdown-menu .open-menu-parent>a {
        color: #fff;
    }

    .mm-column {
        margin-bottom: 15px;
    }

    .mm-column:last-child {
        margin-bottom: 0;
    }

    .mm-column li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .mm-column li:last-child {
        border-bottom: 0;
    }

    .header .top-menu::-webkit-scrollbar {
        width: 5px;
    }

    .header .top-menu::-webkit-scrollbar-thumb {
        border-radius: 0px;
        background: rgba(204, 204, 204, 0.5);
    }
}

/* Search Box
==================================================== */

.header .search-box {
    padding: 26px 0 26px 10px;
    position: relative;
}

.header .search-box .search_click {
    width: 20px;
    height: 20px;
    color: #232323;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    line-height: 20px;
}

.header .search-box .searh-form {
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    padding: 19px;
    width: 250px;
    z-index: 1;
    -webkit-transition: all 400ms ease 0s;
    transition: all 400ms ease 0s;
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
}

.header .search-box.searh-form-open .searh-form {
    -webkit-transition-delay: 200ms !important;
    transition-delay: 200ms !important;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
    visibility: visible;
}

.header .search-box.searh-form-open .search_click:before {
    content: "\f00d";
}

.header .search-box .searh-form .input-search {
    width: 100%;
    border: 1px solid #ddd;
    padding: 7px 10px;
    margin: 0;
}

.header .search-box .searh-form .searc-btn {
    position: absolute;
    top: 25px;
    right: 26px;
    background: none;
    border: none;
}

/* Mini Cart
==================================================== */

.header .min-cart {
    position: relative;
}

.header .min-cart .cart-icon {
    padding: 26px 10px;
    position: relative;
    cursor: pointer;
}

.header .min-cart .cart-icon i {
    color: #232323;
}

.header .min-cart .number {
    width: 17px;
    height: 17px;
    font-size: 10px;
    line-height: 17px;
    padding: 0;
    text-align: center;
    position: absolute;
    top: 20px;
    right: -2px;
    border-radius: 50%;
    color: #232323;
}

.header.fixed-header .min-cart .number {
    color: #232323;
}

.header .min-cart .cart-title {
    font-weight: 600;
    text-align: center;
    margin: 0 0 15px 0;
    padding: 0 0 10px 0;
    border-bottom: 1px solid #ddd;
    color: #232323;
    font-size: 15px;
    line-height: 22px;
    text-transform: uppercase;
}

.header .min-cart .cart-function {
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    padding: 15px;
    width: 280px;
    -webkit-transition: all 400ms ease 0s;
    transition: all 400ms ease 0s;
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
}

.header .min-cart .cart-function .row {
    margin-bottom: 10px;
}

.header .min-cart .cart-function .row:last-child {
    margin-bottom: 0;
}

.header .min-cart:hover .cart-function {
    -webkit-transition-delay: 200ms !important;
    transition-delay: 200ms !important;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
    visibility: visible;
}

.header .min-cart .cart-function .product-title {
    display: block;
}

.header .min-cart .cart-function .product-title a {
    color: #232323;
    font-size: 13px;
    font-weight: 600;
}

.header .min-cart .cart-function .product-title .price {
    font-size: 13px;
    font-weight: 600;
}

.header .min-cart .cart-controls {
    font-weight: 600;
    text-align: center;
    margin: 15px 0 0 0;
    padding: 10px 0 0 0;
    border-top: 1px solid #ddd;
    color: #232323;
    font-size: 15px;
}

.header .min-cart .cart-controls .m-btn {
    display: block;
    font-size: 13px;
    line-height: 30px;
    padding: 0;
    text-align: center;
}

.header .min-cart .cart-controls span {
    font-weight: 600;
    font-size: 13px;
    color: #232323;
}

/* Top Header
==================================================== */

.header .top-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    width: 100%;
}

.header .top-header ul {
    margin: 0;
    padding: 0;
}

.header .top-header li {
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
}

.header .top-header li:last-child {
    margin-right: 0;
}

.header .top-header li a {
    color: #232323;
    font-size: 14px;
    text-decoration: none;
}

.header .top-header li i {
    margin-right: 5px;
}

/* Top Header Dark
==================================================== */

.header .top-header-dark {
    background: #232323;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    width: 100%;
}

.header .top-header-dark ul {
    margin: 0;
    padding: 0;
}

.header .top-header-dark li {
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
}

.header .top-header-dark li:last-child {
    margin-right: 0;
}

.header .top-header-dark li a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.header .top-header-dark li i {
    margin-right: 5px;
}

/* Extra Menu
==================================================== */

#menu-toggle {
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
    margin-left: 20px;
}

#menu-toggle span {
    display: block;
    border-radius: 2px;
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#menu-toggle #hamburger {
    position: absolute;
    height: 100%;
    width: 100%;
}

#menu-toggle #hamburger span {
    position: absolute;
    width: 100%;
    height: 1px;
    background: #232323;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#menu-toggle #hamburger span:nth-child(1) {
    top: 30%;
    -webkit-transition-delay: .5s;
    transition-delay: .5s;
}

#menu-toggle #hamburger span:nth-child(2) {
    transition-delay: .625s;
}

#menu-toggle #hamburger span:nth-child(3) {
    top: 70%;
    -webkit-transition-delay: .75s;
    transition-delay: .75s;
}

#menu-toggle #cross {
    position: absolute;
    height: 100%;
    width: 100%;
    transform: rotate(45deg);
}

#menu-toggle #cross span {
    position: absolute;
    width: 100%;
    height: 1px;
    background: #232323;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#menu-toggle #cross span:nth-child(1) {
    position: absolute;
    width: 1px;
    height: 0%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

#menu-toggle #cross span:nth-child(2) {
    position: absolute;
    width: 0%;
    height: 1px;
    -webkit-transition-delay: .25s;
    transition-delay: .25s;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#menu-toggle.open #hamburger span {
    width: 0%;
}

#menu-toggle.open #hamburger span:nth-child(1) {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

#menu-toggle.open #hamburger span:nth-child(2) {
    -webkit-transition-delay: .125s;
    transition-delay: .125s;
}

#menu-toggle.open #hamburger span:nth-child(3) {
    -webkit-transition-delay: .25s;
    transition-delay: .25s;
}

#menu-toggle.open #cross span:nth-child(1) {
    height: 30px;
    -webkit-transition-delay: .625s;
    transition-delay: .625s;
}

#menu-toggle.open #cross span:nth-child(2) {
    width: 30px;
    -webkit-transition-delay: .375s;
    transition-delay: .375s;
}

/* Logo
==================================================== */

.navbar-brand {
    position: absolute;
    padding: 25px 0;
    vertical-align: middle;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
    font-size: 1.25rem;
}

.header-logo {
    max-height: 100px;
}

.navbar-brand .dark-logo {
    display: block;
}

.navbar-brand .light-logo {
    display: none;
}

.top-menu .nav-link {
    font-size: 16px;
    letter-spacing: 0.015em;
    text-transform: uppercase;
    font-weight: 600;
    color: #232323;
}

@media (max-width: 991px) {
    .header .top-menu {
        background: #252A2C;
        position: absolute;
        top: 100%;
        left: 0px;
        right: 0px;
        max-height: 70vh;
        overflow-y: auto;
        z-index: 2;
    }

    .header .top-menu>.navbar-nav>li+li {
        border-top: 1px solid rgba(255, 255, 255, 0.07);
    }

    .header .top-menu .nav-link {
        color: #fff;
    }

    .header .top-menu .nav-item.active .nav-link,
    .header .top-menu .nav-item:hover .nav-link {
        color: #1080d0;
    }

    .header .min-cart .cart-function {
        float: none;
        width: 200px;
    }

}

/* Header Classic
==================================================== */

.header-classic {
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
}

.header-classic .navbar {
    padding: 0;
}

.header-classic .top-menu .nav-link {
    padding: 26px 15px;
}

.header-classic .extra-menu {
    margin: 0;
    padding: 0;
    text-align: right;
}

.header-classic .extra-menu>li {
    display: inline-block;
    vertical-align: middle;
    list-style-type: none;
}

@media (max-width: 991px) {
    .header-classic .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .header-classic.fixed-header {
        top: 0;
    }

    .header-classic .top-menu {
        left: 0;
        right: 0;
    }

    .header-classic .top-menu .nav-link {
        padding: 6px 0;
    }
}

/* Header With Top Bar
==================================================== */

.header-with-top-bar {
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
}

.header-with-top-bar.fixed-header {
    box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
    top: -45px;
}

.header-with-top-bar .navbar {
    padding: 0;
}

.header-with-top-bar .top-menu .nav-link {
    padding: 26px 15px;
}

.header-with-top-bar .extra-menu {
    margin: 0;
    padding: 0;
    text-align: right;
}

.header-with-top-bar .extra-menu>li {
    display: inline-block;
    vertical-align: middle;
    list-style-type: none;
}

@media (max-width: 991px) {
    .header-with-top-bar.fixed-header .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

    .header-with-top-bar .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .header-with-top-bar.fixed-header {
        top: 0;
    }

    .header-with-top-bar .top-menu {
        position: absolute;
        padding: 0;
    }

    .header-with-top-bar .top-menu .nav-link {
        padding: 8px 15px;
    }
}

/* Header Center
==================================================== */

.header-center {
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
}

.header-center.fixed-header {
    box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
    background: #fff;
}

.header-center .navbar {
    padding: 0;
}

.header-center .top-menu .nav-link {
    padding: 26px 10px;
}

.header-center.fixed-header .navbar-brand {
    color: #232323;
}

.header-center .extra-menu {
    margin: 0;
    padding: 0;
    text-align: right;
}

.header-center .extra-menu>li {
    display: inline-block;
    vertical-align: middle;
    list-style-type: none;
}

.header-center .min-cart .cart-icon {
    margin-right: 10px;
}

@media (max-width: 991px) {
    .header-center .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .header-center.fixed-header {
        top: 0;
    }

    .header-center .top-menu {
        left: 0;
        right: 0;
    }

    .header-center .top-menu .nav-link {
        padding: 6px 0;
    }
}

/* Header Top Logo
==================================================== */

.header-top-logo {
    position: relative;
}

.header-top-logo .navbar-brand {
    position: relative;
    padding: 20px 0 10px 0;
}

.header-top-logo .top-menu .nav-link {
    padding: 14px;
}

@media (max-width: 991px) {
    .header-top-logo .navbar-brand {
        position: relative;
        padding: 25px 0;
    }

    .header-top-logo .top-menu {
        left: 0;
        right: 0;
        padding: 0;
        z-index: 9;
    }

    .header-top-logo .top-menu .nav-link {
        padding: 8px 15px;
    }

    .header-top-logo ul #menu-toggle {
        float: right;
    }

    .header-top-logo #menu-toggle span {
        background: #232323 !important;
    }
}

/* Header Dark Layout
==================================================== */

.header.dark {
    background: #222225 !important;
}

.header.dark .nav-item .nav-link {
    color: #ddd;
}

.header.dark.fixed-header .nav-item .nav-link,
.header.dark .extra-menu li a i,
.header.dark .min-cart .number {
    color: #ddd !important;
}

.header.dark .nav-item:hover .nav-link,
.header.dark .nav-item .active.nav-link {
    color: #1080d0 !important;
}

.header.dark .navbar-brand .dark-logo {
    display: none;
}

.header.dark .navbar-brand .light-logo {
    display: block;
}

.header.dark #menu-toggle span {
    background: #ddd !important;
}

.header.dark .search-box:after,
.header.dark.fixed-header .search-box:after {
    background: rgba(255, 255, 255, 0.2);
}

.header.dark .min-cart .cart-function,
.header.dark .search-box .searh-form {
    background: #252A2C !important;
}

.header.dark .search-box .searh-form .input-search {
    border: 1px solid #333;
    background: #ddd;
}

/* Header Transparent Layout
==================================================== */

.header.transparent {
    background: transparent;
}

.header.transparent.fixed-header {
    background: #fff;
}

.header.transparent .nav-item .nav-link {
    color: #fff;
}

.header.transparent .nav-item .nav-link,
.header.transparent .extra-menu li a i,
.header.transparent .min-cart .number {
    color: #fff !important;
}

.header.transparent.fixed-header .nav-item .nav-link,
.header.transparent.fixed-header .extra-menu li a i,
.header.transparent.fixed-header .min-cart .number {
    color: #232323 !important;
}

.header.transparent .nav-item:hover .nav-link,
.header.transparent .nav-item .active.nav-link {
    color: #1080d0 !important;
}

.header.transparent .navbar-brand .dark-logo {
    display: none;
}

.header.transparent .navbar-brand .light-logo {
    display: block;
}

.header.transparent.fixed-header .navbar-brand .dark-logo {
    display: block;
}

.header.transparent.fixed-header .navbar-brand .light-logo {
    display: none;
}

.header.transparent #menu-toggle span {
    background: #fff !important;
}

.header.transparent.fixed-header #menu-toggle span {
    background: #232323 !important;
}

@media (max-width: 992px) {
    .header.transparent.fixed-header .nav-item .nav-link {
        color: #ddd !important;
    }

    .header.transparent.fixed-header .nav-item:hover .nav-link,
    .header.transparent.fixed-header .nav-item .active.nav-link {
        color: #1080d0 !important;
    }
}

/* Header Transparent Dark Layout
==================================================== */

.header.transparent-dark {
    background: transparent;
}

.header.transparent-dark.fixed-header {
    background: #222225;
}

.header.transparent-dark .nav-item .nav-link,
.header.transparent-dark .extra-menu li a i,
.header.transparent-dark .min-cart .number {
    color: #222 !important;
}

.header.transparent-dark.fixed-header .nav-item .nav-link,
.header.transparent-dark.fixed-header .extra-menu li a i,
.header.transparent-dark.fixed-header .min-cart .number {
    color: #ddd !important;
}

.header.transparent-dark .nav-item:hover .nav-link,
.header.transparent-dark .nav-item .active.nav-link {
    color: #1080d0 !important;
}

.header.transparent-dark .navbar-brand .dark-logo {
    display: block;
}

.header.transparent-dark .navbar-brand .light-logo {
    display: none;
}

.header.transparent-dark.fixed-header .navbar-brand .dark-logo {
    display: none;
}

.header.transparent-dark.fixed-header .navbar-brand .light-logo {
    display: block;
}

.header.transparent-dark #menu-toggle span {
    background: #222 !important;
}

.header.transparent-dark.fixed-header #menu-toggle span {
    background: #ddd !important;
}

.header.transparent-dark .search-box:after,
.header.transparent-dark.fixed-header .search-box:after {
    background: rgba(255, 255, 255, 0.2);
}

.header.transparent-dark .min-cart .cart-function,
.header.transparent-dark .search-box .searh-form {
    background: #252A2C !important;
}

.header.transparent-dark .search-box .searh-form .input-search {
    border: 1px solid #333;
    background: #ddd;
}

@media (max-width: 992px) {
    .header.transparent-dark .nav-item .nav-link {
        color: #fff !important;
    }

    .header.transparent-dark.fixed-header .nav-item .nav-link {
        color: #fff !important;
    }

    .header.transparent-dark.fixed-header .nav-item:hover .nav-link,
    .header.transparent-dark.fixed-header .nav-item .active.nav-link {
        color: #1080d0 !important;
    }
}

/* ====================================================
    Video
==================================================== */

.html-video {
    background-color: #000;
    height: auto;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    top: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: auto;
    z-index: -3;
}

.video-background {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
    top: 0;
    background: rgba(67, 67, 67, 0.5)
}

.js-video {
    height: 0;
    padding-top: 25px;
    padding-bottom: 54%;
    position: relative;
    overflow: hidden;
}

.js-video.widescreen {
    padding-bottom: 34.34%;
}

.js-video embed,
.js-video iframe,
.js-video object,
.js-video video {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    border: none;
}

.js-video.big {
    padding-top: 30px;
}

/* ====================================================
    Background Image
==================================================== */

.parallax {
    position: relative;
    background-size: cover;
    overflow: hidden;
    background-attachment: fixed
}

.fix-background {
    position: relative;
    background-size: cover;
    animation-duration: 0s;
    animation-fill-mode: none;
    -webkit-animation-duration: 0s;
    -webkit-animation-fill-mode: none;
    -moz-animation-duration: 0s;
    -moz-animation-fill-mode: none;
    -ms-animation-duration: 0s;
    -ms-animation-fill-mode: none;
    -o-animation-fill-mode: none;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed
}

.cover-background {
    position: relative !important;
    background-size: cover !important;
    overflow: hidden !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.background-size-inherit {
    background-size: inherit
}

.background-attachment-inherit {
    background-attachment: inherit
}

.background-position-left {
    background-position: left center;
}

.background-position-left-bottom {
    background-position: left bottom;
}

.background-position-right {
    background-position: right center;
}

.background-position-top {
    background-position: center top !important;
}

.background-position-x-50 {
    background-position-x: 50% !important;
}

/* ====================================================
    Social Media Icons
==================================================== */

.icon-social-very-small {
    font-size: 12px
}

.icon-social-small {
    font-size: 14px
}

.icon-social-medium {
    font-size: 16px
}

.icon-social-large {
    font-size: 20px
}

.icon-social-extra-large {
    font-size: 24px
}

.icon-social-very-small a i,
.icon-social-small a i,
.icon-social-medium a i {
    margin: 0 8px;
    vertical-align: middle;
}

.icon-social-large a i {
    margin: 0 4px;
    vertical-align: middle;
}

.extra-small-icon,
.small-icon,
.medium-icon,
.large-icon,
.extra-large-icon {
    list-style: none;
    padding: 0;
}

.extra-small-icon li,
.small-icon li,
.medium-icon li,
.large-icon li,
.extra-large-icon li {
    display: inline-block;
}

footer .extra-small-icon li:first-child,
footer .small-icon li:first-child,
footer .medium-icon li:first-child,
footer .large-icon li:first-child,
footer .extra-large-icon li:first-child {
    margin-left: 0;
}

footer .extra-small-icon li:last-child,
footer .small-icon li:last-child,
footer .medium-icon li:last-child,
footer .large-icon li:last-child,
footer .extra-large-icon li:last-child {
    margin-right: 0;
}

.extra-small-icon li {
    margin: 0 2px
}

.small-icon li {
    margin: 0 5px
}

.medium-icon li {
    margin: 0 8px
}

.large-icon li {
    margin: 0 10px
}

.extra-large-icon li {
    margin: 0 12px
}

.extra-small-icon a {
    font-size: 14px;
    width: 30px;
    height: 30px;
    line-height: 29px;
}

.small-icon a {
    font-size: 16px;
    width: 40px;
    height: 40px;
    line-height: 38px;
}

.medium-icon a {
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 48px;
}

.large-icon a {
    font-size: 24px;
    width: 60px;
    height: 60px;
    line-height: 61px;
}

.extra-large-icon a {
    font-size: 30px;
    width: 70px;
    height: 70px;
    line-height: 68px;
}

.social-icon-style-1 a.facebook,
.social-icon-style-2 a.facebook,
.social-icon-style-3 a.facebook,
.social-icon-style-4 a.facebook span,
.social-icon-style-10 a.facebook span {
    background-color: #3b5998
}

.social-icon-style-1 a.twitter,
.social-icon-style-2 a.twitter,
.social-icon-style-3 a.twitter,
.social-icon-style-4 a.twitter span,
.social-icon-style-10 a.twitter span {
    background-color: #00aced
}

.social-icon-style-1 a.google,
.social-icon-style-2 a.google,
.social-icon-style-3 a.google,
.social-icon-style-4 a.google span,
.social-icon-style-10 a.google span {
    background-color: #dc4a38
}

.social-icon-style-1 a.dribbble,
.social-icon-style-2 a.dribbble,
.social-icon-style-3 a.dribbble,
.social-icon-style-4 a.dribbble span,
.social-icon-style-10 a.dribbble span {
    background-color: #ea4c89
}

.social-icon-style-1 a.youtube,
.social-icon-style-2 a.youtube,
.social-icon-style-3 a.youtube,
.social-icon-style-4 a.youtube span,
.social-icon-style-10 a.youtube span {
    background-color: #bb0000
}

.social-icon-style-1 a.linkedin,
.social-icon-style-2 a.linkedin,
.social-icon-style-3 a.linkedin,
.social-icon-style-4 a.linkedin span,
.social-icon-style-10 a.linkedin span {
    background-color: #007bb6
}

.social-icon-style-1 a.instagram,
.social-icon-style-2 a.instagram,
.social-icon-style-3 a.instagram,
.social-icon-style-4 a.instagram span,
.social-icon-style-10 a.instagram span {
    background-color: #FE1F49
}

.social-icon-style-1 a.pinterest,
.social-icon-style-2 a.pinterest,
.social-icon-style-3 a.pinterest,
.social-icon-style-4 a.pinterest span,
.social-icon-style-10 a.pinterest span {
    background-color: #CB2027
}

.social-icon-style-1 a.flickr,
.social-icon-style-2 a.flickr,
.social-icon-style-3 a.flickr,
.social-icon-style-4 a.flickr span,
.social-icon-style-10 a.flickr span {
    background-color: #ff0084
}

.social-icon-style-1 a.rss,
.social-icon-style-2 a.rss,
.social-icon-style-3 a.rss,
.social-icon-style-4 a.rss span,
.social-icon-style-10 a.rss span {
    background-color: #f2890a
}

.social-icon-style-1 a.behance,
.social-icon-style-2 a.behance,
.social-icon-style-3 a.behance,
.social-icon-style-4 a.behance span,
.social-icon-style-10 a.behance span {
    background-color: #1769ff
}

.social-icon-style-1 a.vine,
.social-icon-style-2 a.vine,
.social-icon-style-3 a.vine,
.social-icon-style-4 a.vine span,
.social-icon-style-10 a.vine span {
    background-color: #00bf8f
}

.social-icon-style-1 a.email,
.social-icon-style-2 a.email,
.social-icon-style-3 a.email,
.social-icon-style-4 a.email span,
.social-icon-style-10 a.email span {
    background-color: #7d7d7d
}

.social-icon-style-1 a.sms,
.social-icon-style-2 a.sms,
.social-icon-style-3 a.sms,
.social-icon-style-4 a.sms span,
.social-icon-style-10 a.sms span {
    background-color: #ffbd00
}

.social-icon-style-1 a.sharethis,
.social-icon-style-2 a.sharethis,
.social-icon-style-3 a.sharethis,
.social-icon-style-4 a.sharethis span,
.social-icon-style-10 a.sharethis span {
    background-color: #95D03A
}

.social-icon-style-1 a.reddit,
.social-icon-style-2 a.reddit,
.social-icon-style-3 a.reddit,
.social-icon-style-4 a.reddit span,
.social-icon-style-10 a.reddit span {
    background-color: #ff4500
}

.social-icon-style-1 a.tumblr,
.social-icon-style-2 a.tumblr,
.social-icon-style-3 a.tumblr,
.social-icon-style-4 a.tumblr span,
.social-icon-style-10 a.tumblr span {
    background-color: #32506d
}

.social-icon-style-1 a.digg,
.social-icon-style-2 a.digg,
.social-icon-style-3 a.digg,
.social-icon-style-4 a.digg span,
.social-icon-style-10 a.digg span {
    background-color: #262626
}

.social-icon-style-1 a.stumbleupon,
.social-icon-style-2 a.stumbleupon,
.social-icon-style-3 a.stumbleupon,
.social-icon-style-4 a.stumbleupon span,
.social-icon-style-10 a.stumbleupon span {
    background-color: #eb4924
}

.social-icon-style-1 a.whatsapp,
.social-icon-style-2 a.whatsapp,
.social-icon-style-3 a.whatsapp,
.social-icon-style-4 a.whatsapp span,
.social-icon-style-10 a.whatsapp span {
    background-color: #25d366
}

.social-icon-style-1 a.vk,
.social-icon-style-2 a.vk,
.social-icon-style-3 a.vk,
.social-icon-style-4 a.vk span,
.social-icon-style-10 a.vk span {
    background-color: #4c6c91
}

.social-icon-style-1 a.weibo,
.social-icon-style-2 a.weibo,
.social-icon-style-3 a.weibo,
.social-icon-style-4 a.weibo span,
.social-icon-style-10 a.weibo span {
    background-color: #ff9933
}

.social-icon-style-1 a.odnoklassniki,
.social-icon-style-2 a.odnoklassniki,
.social-icon-style-3 a.odnoklassniki,
.social-icon-style-4 a.odnoklassniki span,
.social-icon-style-10 a.odnoklassniki span {
    background-color: #d7772d
}

.social-icon-style-1 a.xing,
.social-icon-style-2 a.xing,
.social-icon-style-3 a.xing,
.social-icon-style-4 a.xing span,
.social-icon-style-10 a.xing span {
    background-color: #1a7576
}

.social-icon-style-1 a.print,
.social-icon-style-2 a.print,
.social-icon-style-3 a.print,
.social-icon-style-4 a.print span,
.social-icon-style-10 a.print span {
    background-color: #222222
}

.social-icon-style-1 a.blogger,
.social-icon-style-2 a.blogger,
.social-icon-style-3 a.blogger,
.social-icon-style-4 a.blogger span,
.social-icon-style-10 a.blogger span {
    background-color: #ff8000
}

.social-icon-style-1 a.flipboard,
.social-icon-style-2 a.flipboard,
.social-icon-style-3 a.flipboard,
.social-icon-style-4 a.flipboard span,
.social-icon-style-10 a.flipboard span {
    background-color: #e12828
}

.social-icon-style-1 a.meneame,
.social-icon-style-2 a.meneame,
.social-icon-style-3 a.meneame,
.social-icon-style-4 a.meneame span,
.social-icon-style-10 a.meneame span {
    background-color: #ff6400
}

.social-icon-style-1 a.mailru,
.social-icon-style-2 a.mailru,
.social-icon-style-3 a.mailru,
.social-icon-style-4 a.mailru span,
.social-icon-style-10 a.mailru span {
    background-color: #168de2
}

.social-icon-style-1 a.delicious,
.social-icon-style-2 a.delicious,
.social-icon-style-3 a.delicious,
.social-icon-style-4 a.delicious span,
.social-icon-style-10 a.delicious span {
    background-color: #205cc0
}

.social-icon-style-1 a.livejournal,
.social-icon-style-2 a.livejournal,
.social-icon-style-3 a.livejournal,
.social-icon-style-4 a.livejournal span,
.social-icon-style-10 a.livejournal span {
    background-color: #00b0ea
}

.social-icon-style-6 a.facebook:hover {
    border-color: #3b5998;
    color: #3b5998
}

.social-icon-style-6 a.twitter:hover {
    border-color: #00aced;
    color: #00aced
}

.social-icon-style-6 a.google:hover {
    border-color: #dc4a38;
    color: #dc4a38
}

.social-icon-style-6 a.dribbble:hover {
    border-color: #ea4c89;
    color: #ea4c89
}

.social-icon-style-6 a.youtube:hover {
    border-color: #bb0000;
    color: #bb0000
}

.social-icon-style-6 a.linkedin:hover {
    border-color: #0077b5;
    color: #0077b5
}

.social-icon-style-6 a.instagram:hover {
    border-color: #FE1F49;
    color: #FE1F49
}

.social-icon-style-6 a.pinterest:hover {
    border-color: #CB2027;
    color: #CB2027
}

.social-icon-style-6 a.flickr:hover {
    border-color: #ff0084;
    color: #ff0084
}

.social-icon-style-6 a.rss:hover {
    border-color: #f2890a;
    color: #f2890a
}

.social-icon-style-6 a.behance:hover {
    border-color: #1769ff;
    color: #1769ff
}

.social-icon-style-6 a.vine:hover {
    border-color: #00bf8f;
    color: #00bf8f
}

.social-icon-style-6 a.email:hover {
    border-color: #7d7d7d;
    color: #7d7d7d
}

.social-icon-style-6 a.sms:hover {
    border-color: #ffbd00;
    color: #ffbd00
}

.social-icon-style-6 a.sharethis:hover {
    border-color: #95D03A;
    color: #95D03A
}

.social-icon-style-6 a.reddit:hover {
    border-color: #ff4500;
    color: #ff4500
}

.social-icon-style-6 a.tumblr:hover {
    border-color: #32506d;
    color: #32506d
}

.social-icon-style-6 a.digg:hover {
    border-color: #262626;
    color: #262626
}

.social-icon-style-6 a.stumbleupon:hover {
    border-color: #eb4924;
    color: #eb4924
}

.social-icon-style-6 a.whatsapp:hover {
    border-color: #25d366;
    color: #25d366
}

.social-icon-style-6 a.vk:hover {
    border-color: #4c6c91;
    color: #4c6c91
}

.social-icon-style-6 a.weibo:hover {
    border-color: #ff9933;
    color: #ff9933
}

.social-icon-style-6 a.odnoklassniki:hover {
    border-color: #d7772d;
    color: #d7772d
}

.social-icon-style-6 a.xing:hover {
    border-color: #1a7576;
    color: #1a7576
}

.social-icon-style-6 a.print:hover {
    border-color: #222222;
    color: #222222
}

.social-icon-style-6 a.blogger:hover {
    border-color: #ff8000;
    color: #ff8000
}

.social-icon-style-6 a.flipboard:hover {
    border-color: #e12828;
    color: #e12828
}

.social-icon-style-6 a.meneame:hover {
    border-color: #ff6400;
    color: #ff6400
}

.social-icon-style-6 a.mailru:hover {
    border-color: #168de2;
    color: #168de2
}

.social-icon-style-6 a.delicious:hover {
    border-color: #205cc0;
    color: #205cc0
}

.social-icon-style-6 a.livejournal:hover {
    border-color: #00b0ea;
    color: #00b0ea
}

.social-icon-style-7 a.facebook:hover {
    border-color: #3b5998;
    background-color: #3b5998
}

.social-icon-style-7 a.twitter:hover {
    border-color: #00aced;
    background-color: #00aced
}

.social-icon-style-7 a.google:hover {
    border-color: #dc4a38;
    background-color: #dc4a38
}

.social-icon-style-7 a.dribbble:hover {
    border-color: #ea4c89;
    background-color: #ea4c89
}

.social-icon-style-7 a.youtube:hover {
    border-color: #bb0000;
    background-color: #bb0000
}

.social-icon-style-7 a.linkedin:hover {
    border-color: #0077b5;
    background-color: #0077b5
}

.social-icon-style-7 a.instagram:hover {
    border-color: #FE1F49;
    background-color: #FE1F49
}

.social-icon-style-7 a.pinterest:hover {
    border-color: #CB2027;
    background-color: #CB2027
}

.social-icon-style-7 a.flickr:hover {
    border-color: #ff0084;
    background-color: #ff0084
}

.social-icon-style-7 a.rss:hover {
    border-color: #f2890a;
    background-color: #f2890a
}

.social-icon-style-7 a.behance:hover {
    border-color: #1769ff;
    background-color: #1769ff
}

.social-icon-style-7 a.vine:hover {
    border-color: #00bf8f;
    background-color: #00bf8f
}

.social-icon-style-7 a.email:hover {
    border-color: #7d7d7d;
    background-color: #7d7d7d
}

.social-icon-style-7 a.sms:hover {
    border-color: #ffbd00;
    background-color: #ffbd00
}

.social-icon-style-7 a.sharethis:hover {
    border-color: #95D03A;
    background-color: #95D03A
}

.social-icon-style-7 a.reddit:hover {
    border-color: #ff4500;
    background-color: #ff4500
}

.social-icon-style-7 a.tumblr:hover {
    border-color: #32506d;
    background-color: #32506d
}

.social-icon-style-7 a.digg:hover {
    border-color: #262626;
    background-color: #262626
}

.social-icon-style-7 a.stumbleupon:hover {
    border-color: #eb4924;
    background-color: #eb4924
}

.social-icon-style-7 a.whatsapp:hover {
    border-color: #25d366;
    background-color: #25d366
}

.social-icon-style-7 a.vk:hover {
    border-color: #4c6c91;
    background-color: #4c6c91
}

.social-icon-style-7 a.weibo:hover {
    border-color: #ff9933;
    background-color: #ff9933
}

.social-icon-style-7 a.odnoklassniki:hover {
    border-color: #d7772d;
    background-color: #d7772d
}

.social-icon-style-7 a.xing:hover {
    border-color: #1a7576;
    background-color: #1a7576
}

.social-icon-style-7 a.print:hover {
    border-color: #222222;
    background-color: #222222
}

.social-icon-style-7 a.blogger:hover {
    border-color: #ff8000;
    background-color: #ff8000
}

.social-icon-style-7 a.flipboard:hover {
    border-color: #e12828;
    background-color: #e12828
}

.social-icon-style-7 a.meneame:hover {
    border-color: #ff6400;
    background-color: #ff6400
}

.social-icon-style-7 a.mailru:hover {
    border-color: #168de2;
    background-color: #168de2
}

.social-icon-style-7 a.delicious:hover {
    border-color: #205cc0;
    background-color: #205cc0
}

.social-icon-style-7 a.livejournal:hover {
    border-color: #00b0ea;
    background-color: #00b0ea
}

a.likes-count {
    padding: 0 15px;
    width: auto;
    border-radius: 30px !important;
}

a.likes-count i {
    margin-right: 8px;
}

a.likes-count span {
    position: relative;
    top: -1px
}

.social-icon-style-1 a {
    text-align: center;
    display: inline-block;
    transition: all 400ms;
    -webkit-transition: all 400ms;
    -moz-transition: all 400ms;
    -ms-transition: all 400ms;
    -o-transition: all 400ms;
    color: #fff
}

.social-icon-style-1 a:hover {
    border-radius: 100%;
}

.social-icon-style-2 a {
    text-align: center;
    display: inline-block;
    transition: all 400ms;
    -webkit-transition: all 400ms;
    -moz-transition: all 400ms;
    -ms-transition: all 400ms;
    -o-transition: all 400ms;
    border-radius: 100%;
    color: #fff
}

.social-icon-style-2 a:hover {
    border-radius: 0;
}

.social-icon-style-3 a {
    text-align: center;
    display: inline-block;
    transition: all 400ms;
    -webkit-transition: all 400ms;
    -moz-transition: all 400ms;
    -ms-transition: all 400ms;
    -o-transition: all 400ms;
    border-radius: 100%;
    color: #fff
}

.social-icon-style-3 a:hover i {
    transition: transform 0.4s ease-out;
    -webkit-transition: transform 0.4s ease-out;
    -moz-transition: transform 0.4s ease-out;
    -ms-transition: transform 0.4s ease-out;
    -o-transition: transform 0.4s ease-out;
    transform: rotateZ(360deg);
    -webkit-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    -ms-transform: rotateZ(360deg);
    -o-transform: rotateZ(360deg);
}

.social-icon-style-4 a {
    text-align: center;
    display: inline-block;
    border-radius: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #232323;
    text-align: center;
    z-index: 1;
    -webkit-transition: all 400ms;
    -moz-transition: all 400ms;
    -ms-transition: all 400ms;
    -o-transition: all 400ms;
    transition: all 400ms;
}

.social-icon-style-4 a:hover {
    color: #fff;
}

.social-icon-style-4 a span {
    border-radius: 0;
    display: block;
    height: 0;
    left: 50%;
    margin: 0;
    position: absolute;
    top: 50%;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    width: 0;
    z-index: -1;
}

.social-icon-style-4 a:hover span {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    top: 0;
    left: 0;
}

.social-icon-style-5 a {
    text-align: center;
    display: inline-block;
    color: #232323;
    -webkit-transition: all 400ms;
    -moz-transition: all 400ms;
    -ms-transition: all 400ms;
    -o-transition: all 400ms;
    transition: all 400ms;
}

.social-icon-style-5 a:hover {
    color: #fff;
    border-radius: 100%;
    background-color: #ff214f;
}

.social-icon-style-5-light a {
    text-align: center;
    display: inline-block;
    color: #fff;
}

.social-icon-style-5-light a:hover {
    color: #fff;
    border-radius: 100%;
    background-color: #ff214f;
}

.social-icon-style-6 a {
    text-align: center;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #232323;
    background-color: transparent;
    border-radius: 100%;
    -webkit-transition: all 400ms;
    -moz-transition: all 400ms;
    -ms-transition: all 400ms;
    -o-transition: all 400ms;
    transition: all 400ms;
}

.social-icon-style-6 a:hover {
    border-color: #ff214f;
    color: #ff214f;
    background-color: transparent;
}

.social-icon-style-7 a {
    text-align: center;
    display: inline-block;
    border-radius: 100%;
    color: #232323;
    background-color: #fff;
    -webkit-transition: all 400ms;
    -moz-transition: all 400ms;
    -ms-transition: all 400ms;
    -o-transition: all 400ms;
    transition: all 400ms;
}

.social-icon-style-7 a:hover {
    color: #fff;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale(1.2);
    -o-transform: scale(1.2);
}

.social-icon-style-8 ul li a {
    text-align: center;
    width: auto;
    height: auto;
    -webkit-transition: all 400ms;
    -moz-transition: all 400ms;
    -ms-transition: all 400ms;
    -o-transition: all 400ms;
    transition: all 400ms;
}

.social-icon-style-8 a:hover {
    color: #1080d0;
}

.social-icon-style-9 ul li a {
    text-align: center;
    width: auto;
    height: auto;
    -webkit-transition: all 400ms;
    -moz-transition: all 400ms;
    -ms-transition: all 400ms;
    -o-transition: all 400ms;
    transition: all 400ms;
}

.social-icon-style-9 a.facebook:hover {
    color: #3b5998;
}

.social-icon-style-9 a.twitter:hover {
    color: #00aced;
}

.social-icon-style-9 a.google:hover {
    color: #dc4a38;
}

.social-icon-style-9 a.instagram:hover {
    color: #fe1f49;
}

.social-icon-style-9 a.dribbble:hover {
    color: #ea4c89;
}

.social-icon-style-9 a.youtube:hover {
    color: #bb0000;
}

.social-icon-style-9 a.linkedin:hover {
    color: #007bb6;
}

.social-icon-style-9 a.pinterest:hover {
    color: #CB2027
}

.social-icon-style-9 a.email:hover {
    color: #7d7d7d
}

.social-icon-style-9 a.sms:hover {
    color: #ffbd00
}

.social-icon-style-9 a.sharethis:hover {
    color: #95D03A
}

.social-icon-style-9 a.reddit:hover {
    color: #ff4500
}

.social-icon-style-9 a.tumblr:hover {
    color: #32506d
}

.social-icon-style-9 a.digg:hover {
    color: #262626
}

.social-icon-style-9 a.stumbleupon:hover {
    color: #eb4924
}

.social-icon-style-9 a.whatsapp:hover {
    color: #25d366
}

.social-icon-style-9 a.vk:hover {
    color: #4c6c91
}

.social-icon-style-9 a.weibo:hover {
    color: #ff9933
}

.social-icon-style-9 a.odnoklassniki:hover {
    color: #d7772d
}

.social-icon-style-9 a.xing:hover {
    color: #1a7576
}

.social-icon-style-9 a.print:hover {
    color: #222222
}

.social-icon-style-9 a.blogger:hover {
    color: #ff8000
}

.social-icon-style-9 a.flipboard:hover {
    color: #e12828
}

.social-icon-style-9 a.meneame:hover {
    color: #ff6400
}

.social-icon-style-9 a.mailru:hover {
    color: #168de2
}

.social-icon-style-9 a.delicious:hover {
    color: #205cc0
}

.social-icon-style-9 a.livejournal:hover {
    color: #00b0ea
}

.social-icon-style-10 {
    position: relative;
}

.social-icon-style-10 a {
    text-align: center;
    display: inline-block;
    border-radius: 100%;
    position: relative;
    text-align: center
}

.social-icon-style-10 a:hover {
    color: #fff;
    -webkit-transition: all 400ms;
    -moz-transition: all 400ms;
    -ms-transition: all 400ms;
    -o-transition: all 400ms;
    transition: all 400ms;
}

.social-icon-style-10 a i {
    position: relative;
    z-index: 1;
    -webkit-transition: all 400ms;
    -moz-transition: all 400ms;
    -ms-transition: all 400ms;
    -o-transition: all 400ms;
    transition: all 400ms;
}

.social-icon-style-10 a span {
    border-radius: 0;
    display: block;
    height: 0;
    left: 50%;
    margin: 0;
    position: absolute;
    top: 50%;
    transition: all 0.3s;
    -webkit-transition: all 400ms;
    -moz-transition: all 400ms;
    -ms-transition: all 400ms;
    -o-transition: all 400ms;
    transition: all 400ms;
    width: 0;
}

.social-icon-style-10 a:hover span {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    top: 0;
    left: 0;
}

.social-icon-style-11 {
    position: relative;
    -webkit-transition: all 400ms;
    -moz-transition: all 400ms;
    -ms-transition: all 400ms;
    -o-transition: all 400ms;
    transition: all 400ms;
}

.social-icon-style-11 a {
    text-align: center;
    display: inline-block;
    border-radius: 100%;
    position: relative;
    text-align: center;
    -webkit-transition: all 400ms;
    -moz-transition: all 400ms;
    -ms-transition: all 400ms;
    -o-transition: all 400ms;
    transition: all 400ms;
}

.social-icon-style-11 a.facebook {
    color: #3b5998
}

.social-icon-style-11 a.twitter {
    color: #00aced
}

.social-icon-style-11 a.google {
    color: #dc4a38
}

.social-icon-style-11 a.dribbble {
    color: #ea4c89
}

.social-icon-style-11 a.youtube {
    color: #bb0000
}

.social-icon-style-11 a.linkedin {
    color: #0077b5
}

.social-icon-style-11 a.instagram {
    color: #FE1F49
}

.social-icon-style-11 a.pinterest {
    color: #CB2027
}

.social-icon-style-11 a.flickr {
    color: #ff0084
}

.social-icon-style-11 a.rss {
    color: #f2890a
}

.social-icon-style-11 a.behance {
    color: #1769ff
}

.social-icon-style-11 a.vine {
    color: #00bf8f
}

.social-icon-style-11 a.email {
    color: #7d7d7d
}

.social-icon-style-11 a.sms {
    color: #ffbd00
}

.social-icon-style-11 a.sharethis {
    color: #95D03A
}

.social-icon-style-11 a.reddit {
    color: #ff4500
}

.social-icon-style-11 a.tumblr {
    color: #32506d
}

.social-icon-style-11 a.digg {
    color: #262626
}

.social-icon-style-11 a.stumbleupon {
    color: #eb4924
}

.social-icon-style-11 a.whatsapp {
    color: #25d366
}

.social-icon-style-11 a.vk {
    color: #4c6c91
}

.social-icon-style-11 a.weibo {
    color: #ff9933
}

.social-icon-style-11 a.odnoklassniki {
    color: #d7772d
}

.social-icon-style-11 a.xing {
    color: #1a7576
}

.social-icon-style-11 a.print {
    color: #222222
}

.social-icon-style-11 a.blogger {
    color: #ff8000
}

.social-icon-style-11 a.flipboard {
    color: #e12828
}

.social-icon-style-11 a.meneame {
    color: #ff6400
}

.social-icon-style-11 a.mailru {
    color: #168de2
}

.social-icon-style-11 a.delicious {
    color: #205cc0
}

.social-icon-style-11 a.livejournal {
    color: #00b0ea
}

.social-icon-style-11 a:hover {
    color: #fff;
}

footer .small-icon li {
    margin: 0 8px;
}

/* ====================================================
    Footer
==================================================== */

footer input::-webkit-input-placeholder {
    color: #6f6f6f;
    text-overflow: ellipsis;
    font-size: 11px;
    font-weight: 400;
    opacity: 1;
}

footer input::-moz-placeholder {
    color: #6f6f6f;
    text-overflow: ellipsis;
    font-size: 11px;
    font-weight: 400;
    opacity: 1;
}

footer input:-ms-input-placeholder {
    color: #6f6f6f;
    text-overflow: ellipsis;
    font-size: 11px;
    font-weight: 400;
    opacity: 1;
}

footer .newsletter input {
    color: #6f6f6f;
    letter-spacing: normal;
}

.bg-dark-footer {
    background-color: #141414;
}

.footer-logo {
    max-height: 432px;
}

/* ====================================================
    Latest Posts
==================================================== */

.latest-post {
    list-style: none;
    padding: 0;
    margin: 0;
}

.latest-post li {
    display: table;
    padding: 15px 0;
}

aside .latest-post li {
    padding: 10px 0;
}

.latest-post li:first-child {
    padding-top: 0
}

.latest-post li:last-child {
    border-bottom: none
}

.latest-post li figure {
    height: 33px;
    width: 60px;
    float: left
}

.latest-post li figure,
footer .latest-post li div {
    display: table-cell;
    vertical-align: top
}

aside .latest-post li figure {
    width: 75px;
}

.latest-post li div {
    line-height: normal;
    padding-left: 13px;
    position: relative;
    top: -1px;
}

.latest-post li figure:hover img,
.latest-post li figure:focus img {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
}

/* ====================================================
    Newsletter
==================================================== */

.newsletter input {
    float: left;
    font-size: 12px;
    color: #fff;
    width: 100%;
    height: 100%;
    padding: 0 38px 0 12px
}

.newsletter .btn.btn-arrow-small {
    background: transparent none repeat scroll 0 0;
    margin-right: 0;
    height: 100%;
    padding-top: 0;
    padding-bottom: 5px;
    text-align: center;
    right: 0;
    border-width: 0 0 0 1px
}

.newsletter .btn.btn-arrow-small i {
    color: #626262;
    font-size: 18px;
    display: block;
    margin-top: 6px;
}

.newsletter {
    width: 100%;
    height: 33px
}

.newsletter .btn.border-color-white {
    border-color: #fff
}

.newsletter .btn.border-color-black {
    border-color: #000
}

.newsletter .btn.border-color-extra-dark-gray {
    border-color: #232323
}

.newsletter .btn.border-color-medium-dark-gray {
    border-color: #363636
}

.newsletter .btn.border-color-dark-gray {
    border-color: #939393
}

.newsletter .btn.border-color-extra-medium-gray {
    border-color: #dbdbdb
}

.newsletter .btn.border-color-medium-gray {
    border-color: #e4e4e4
}

.newsletter .btn.border-color-extra-light-gray {
    border-color: #ededed
}

.newsletter .btn.border-color-light-gray {
    border-color: #f5f5f5
}

.newsletter .btn.border-color-light-pink {
    border-color: #862237
}

/* ====================================================
    Instagram
==================================================== */

.instagram-follow-api ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    text-align: center;
}

.instagram-follow-api li {
    padding: 0 10px 10px 0;
    width: 33.333%;
    box-sizing: border-box;
    display: inline-block
}

.instagram-follow-api li img {
    width: 100%
}

.instagram-follow-api li figure {
    position: relative;
    overflow: hidden
}

.instagram-follow-api li figure a .insta-counts {
    position: absolute;
    bottom: -100%;
    left: 0;
    text-align: center;
    background: rgba(35, 35, 35, 0.8);
    color: #fff;
    width: 100%;
    font-size: 12px;
}

.instagram-follow-api li figure:hover a .insta-counts {
    bottom: 0;
}

.instagram-follow-api li figure a .insta-counts i {
    margin-right: 5px;
    margin-left: 5px;
    vertical-align: middle;
}

.instagram-follow-api li figure span {
    vertical-align: middle;
}

.instafeed-style {
    margin-bottom: 30px;
    overflow: hidden;
}

.instafeed-style .insta-image {
    width: 100%;
}

.instafeed-style .insta-link {
    position: relative;
    display: block;
    background: #232323
}

.instafeed-style .insta-counts {
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-30%);
    -webkit-transform: translateY(-30%);
    -moz-transform: translateY(-30%);
    -ms-transform: translateY(-30%);
    -o-transform: translateY(-30%);
    left: 0;
    width: 100%;
    color: #fff;
    opacity: 0;
}

.instafeed-style .insta-link:hover .insta-counts {
    opacity: 1;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.instafeed-style .insta-link:hover .insta-image {
    opacity: 0.2;
}

.instafeed-style .insta-counts i {
    vertical-align: middle;
    font-size: 28px
}

.instafeed-style .insta-counts span {
    margin-right: 25px;
    position: relative
}

.instafeed-style .insta-counts span.count-number {
    position: absolute;
    top: -14px;
    font-size: 12px;
    left: 15px;
    width: 22px;
    height: 22px;
    text-align: center;
    background: #ff214f;
    line-height: 20px;
    border-radius: 100%;
}

/* ====================================================
    List Style
==================================================== */

.list-style-none li {
    list-style: none;
}

/* List Style 1
==================================================== */

.list-style-1 {
    list-style: none;
    margin: 0;
    padding: 0;
}

.list-style-1 li {
    position: relative;
    padding: 0 0 10px 22px;
    margin: 0 0 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.list-style-1 li:before {
    content: "\f00c";
    font-family: 'Font Awesome\ 5 Free';
    position: absolute;
    top: 1px;
    left: 0;
    font-weight: 900;
    color: #c0c0c0
}

.list-style-1 li:last-child {
    border-bottom: 0;
}

.list-style-1.list-style-color li {
    border-color: rgba(255, 255, 255, .15);
}

.list-style-1.list-style-color li:before {
    color: #1080d0;
}

/* List Style 2
==================================================== */

.list-style-2 {
    list-style: none;
    padding: 0;
}

.list-style-2 li {
    position: relative;
}

.list-style-2 li:last-child {
    border-bottom: 0;
}

/* ====================================================
    Feature Box
==================================================== */

/* Feature Box Style 1
==================================================== */

.feature-box {
    position: relative;
}

/* Feature Box Style 2
==================================================== */

.feature-box-2 {
    padding-left: 75px
}

.feature-box-2 i {
    position: absolute;
    top: 0;
    left: 0
}

/* ====================================================
    Skill Bar
==================================================== */

/* Skill Bar Style 1
==================================================== */

.skillbar-bar-style1 .skillbar {
    position: relative;
    display: inline-block;
    margin: 35px 0 10px;
    background: rgba(0, 0, 0, .15);
    height: 5px;
    width: 88%;
    border-radius: 10px;
    text-align: left;
}

.skillbar-bar-style1 .skillbar-bar {
    height: 5px;
    border-radius: 10px;
    width: 0px;
    background: rgba(0, 0, 0, .70);
    display: inline-block;
    position: absolute;
    top: 0;
    margin-bottom: 0px;
}

.skillbar-bar-style1 .skill-bar-percent {
    position: absolute;
    top: -12px;
    right: -39px;
}

.skillbar-bar-style1 .skill-bar-text {
    top: -22px;
    position: absolute
}

/* Skill Bar Style 2
==================================================== */

.skillbar-bar-style2 .skillbar {
    position: relative;
    display: inline-block;
    margin: 35px 0 10px;
    background: rgba(0, 0, 0, .15);
    height: 3px;
    width: 88%;
    text-align: left;
}

.skillbar-bar-style2 .skillbar-bar {
    height: 3px;
    width: 0px;
    background: rgba(0, 0, 0, .70);
    display: inline-block;
    position: absolute;
    top: 0;
    margin: 0;
}

.skillbar-bar-style2 .skill-bar-percent {
    position: absolute;
    top: -9px;
    right: -39px;
}

.skillbar-bar-style2 .skill-bar-text {
    top: -24px;
    position: absolute
}

/* Skill Bar Style 3
==================================================== */

.skillbar-bar-style3 .skillbar {
    position: relative;
    display: inline-block;
    margin: 15px 0 30px;
    background: rgba(255, 255, 255, .2);
    height: 5px;
    width: 88%;
    text-align: left;
}

.skillbar-bar-style3 .skillbar-bar {
    height: 5px;
    width: 0px;
    display: inline-block;
    position: absolute;
    top: 0;
    margin: 0;
    overflow: visible;
    background: #1080d0;
    background: -moz-linear-gradient(left, #1080d0 0%, #ffffff 100%);
    background: -webkit-linear-gradient(left, #1080d0 0%, #ffffff 100%);
    background: linear-gradient(to right, #1080d0 0%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff214f', endColorstr='#ffffff', GradientType=1);
}

.skillbar-bar-style3 .skill-bar-percent {
    position: absolute;
    top: 13px;
    right: 0;
}

.skillbar-bar-style3 .skill-bar-text {
    top: 15px;
    position: absolute
}

/* ====================================================
    Tabs
==================================================== */

.nav-tabs>li {
    display: inline-block;
    vertical-align: top;
    float: none;
    padding: 0;
    margin: auto;
    background: none !important;
}

.nav-tabs>li.active>a {
    color: #1080d0 !important;
}

/* ====================================================
    Portfolio
==================================================== */

/* Filters
==================================================== */

.filters {
    text-align: center;
    font-size: .925rem;
    padding: 0;
    margin-bottom: 50px;
}

.filters>span {
    display: inline-block;
    color: #a7a7a7;
    cursor: pointer;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
}

.flters>span:last-child {
    margin-right: 0;
}

.filters>span:not(:last-child)::after {
    content: '/';
    opacity: .4;
    margin: 0 10px;
}

.filters>span:hover,
.filters>span.active {
    color: #333;
}


/* Grid
==================================================== */

.portfolio2-grid {
    list-style: none;
    margin: 0;
    padding: 0;
}

.portfolio2-item {
    float: left;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.portfolio2-grid[data-columns="2"] .portfolio2-item {
    width: 50%;
}

.portfolio2-grid[data-columns="3"] .portfolio2-item {
    width: 33.333333%;
}

.portfolio2-grid[data-columns="4"] .portfolio2-item {
    width: 25%;
}

.portfolio2-grid[data-columns="5"] .portfolio2-item {
    width: 20%;
}

.portfolio2-item>a {
    display: block;
    padding: 0 0 84px 0;
    position: relative;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
}

.portfolio2-item a,
.portfolio2-item a:hover {
    color: #999999;
    border: none;
}

.portfolio2-img {
    position: relative;
    overflow: hidden;
}

.portfolio2-img img {
	margin: 20px 50px 20px 0;
	padding: 0;
	font-size: 11px;
	font-weight: 400;
	color:#666666;
	text-transform: uppercase;
	letter-spacing: 0em;
	line-height: 1;
}

.portfolio2-intro {
    width: 100%;
    height: 80px;
    padding: 20px 20px 0 20px;
    -webkit-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    overflow: hidden;
}

.portfolio2-title {
    margin: 0 0 8px 0;
    padding: 0;
    font-size: 11px;
	color: #ffffff;
	text-shadow: #FFFFFF;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    line-height: 1.2;
}

.portfolio2-descr {
	font-size: 11px;
	text-align: center;
	text-transform: uppercase;
	color: #FFCC00;
	line-height: 1.2;
}

.portfolio2-grid.hide-titles .portfolio2-item>a {
    overflow: hidden;
    padding: 0;
}

.portfolio2-grid.hide-titles .portfolio2-item .portfolio2-intro {
    opacity: 0;
    bottom: -4px;
}

.portfolio2-grid.hide-titles .portfolio2-item:hover .portfolio2-intro {
    opacity: 1;
}

.portfolio2-intro {
    -webkit-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -moz-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -o-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.portfolio2-item:hover .portfolio2-intro {
    color: #fff;
    -webkit-transform: translateY(-99px);
    -moz-transform: translateY(-99px);
    transform: translateY(-99px);
    z-index: 3;
}

.portfolio2-item:hover .portfolio2-title {
    color: #ccc;
}

.portfolio2-item:hover .portfolio2-descr {
    color: #999;
}

.portfolio2-item .portfolio2-img:after {
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(250, 250, 250, 0);
    -webkit-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -moz-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -o-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.portfolio2-item:hover .portfolio2-img:after {
    background: rgba(20, 20, 20, .85);
}

.portfolios2-grid.hover-color .portfolio2-item:hover .portfolio2-intro,
.portfolios2-grid.hover-color .portfolio2-item:hover .portfolio2-title,
.portfolios2-grid.hover-color .portfolio2-item:hover .portfolio2-descr {
    color: #fff;
}

.portfolios2-grid.hover-white .portfolio2-item:hover .portfolio2-intro,
.portfolios2-grid.hover-white .portfolio2-item:hover .portfolio2-title,
.portfolios2-grid.hover-white .portfolio2-item:hover .portfolio2-descr {
    color: #000;
}

.portfolios2-grid.hover-white .portfolio2-item:hover .portfolio2-img:after {
    background: rgba(250, 250, 250, .9);
}

.portfolio2-item .portfolio2-img>img {
    -webkit-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -moz-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -o-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -ms-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.portfolio2-item:hover .portfolio2-img>img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

/* Portfolio2 Grid Gutter
==================================================== */

.portfolio2-grid.portfolio2-grid-gut {
    margin: 0 0 0 -15px;
}

.portfolio2-grid.portfolio2-grid-gut .portfolio2-item {
    padding: 0 0 15px 15px;
}

@media (max-width: 992px) {

    .portfolio2-grid[data-columns="3"] .portfolio2-item,
    .portfolio2-grid[data-columns="4"] .portfolio2-item,
    .portfolio2-grid[data-columns="5"] .portfolio2-item {
        width: 50%;
    }
}

@media (max-width: 768px) {

    .portfolio2-grid[data-columns="3"] .portfolio2-item,
    .portfolio2-grid[data-columns="4"] .portfolio2-item,
    .portfolio2-grid[data-columns="5"] .portfolio2-item {
        width: 100%;
    }

    .portfolio2-grid {
        padding: 10px 0;
    }
}



/* Grid
==================================================== */

.portfolio-grid {
    list-style: none;
    margin: 0;
    padding: 0;
}

.portfolio-item {
    float: left;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.portfolio-grid[data-columns="2"] .portfolio-item {
    width: 50%;
}

.portfolio-grid[data-columns="3"] .portfolio-item {
    width: 33.333333%;
}

.portfolio-grid[data-columns="4"] .portfolio-item {
    width: 25%;
}

.portfolio-grid[data-columns="5"] .portfolio-item {
    width: 20%;
}

.portfolio-item>a {
    display: block;
    padding: 0 0 84px 0;
    position: relative;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
}

.portfolio-item a,
.portfolio-item a:hover {
	color: #1080d0;
	border: none;
}

.portfolio-img {
    position: relative;
    overflow: hidden;
}

.portfolio-img img {
    width: 75%;
    display: block;
    overflow: hidden;
}

.portfolio-img p {
	margin: 20px 50px 20px 0;
	padding: 0;
	font-size: 11px;
	font-weight: 400;
	color:#666666;
	text-transform: uppercase;
	letter-spacing: 0em;
	line-height: 1;
}


.portfolio-intro {
    width: 100%;
    height: 80px;
    padding: 20px 20px 0 20px;
    -webkit-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    overflow: hidden;
}

.portfolio-title {
	margin: 0 0 8px 0;
	padding: 0;
	font-size: 18px;
	font-weight: 400;
	text-transform: uppercase;
	text-align:center;
	letter-spacing: 0em;
	line-height: 1;
}

.portfolio-descr {
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
}

.portfolio-grid.hide-titles .portfolio-item>a {
    overflow: hidden;
    padding: 0;
}

.portfolio-grid.hide-titles .portfolio-item .portfolio-intro {
    opacity: 0;
    bottom: -94px;
}

.portfolio-grid.hide-titles .portfolio-item:hover .portfolio-intro {
    opacity: 1;
}

.portfolio-intro {
    -webkit-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -moz-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -o-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.portfolio-item:hover .portfolio-intro {
    color: #fff;
    -webkit-transform: translateY(-99px);
    -moz-transform: translateY(-99px);
    transform: translateY(-99px);
    z-index: 3;
}

.portfolio-item:hover .portfolio-title {
    color: #1080d0;
	text-shadow: 2px 2px 4px #000000;
}

.portfolio-item:hover .portfolio-descr {
    color: #1080d0;
	text-shadow: 2px 2px 4px #000000; 
}

.portfolio-item .portfolio-img:after {
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(250, 250, 250, 0);
    -webkit-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -moz-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -o-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.portfolio-item:hover .portfolio-img:after {
    background: rgba(0, 0, 0, .0);
}

.portfolios-grid.hover-color .portfolio-item:hover .portfolio-intro,
.portfolios-grid.hover-color .portfolio-item:hover .portfolio-title,
.portfolios-grid.hover-color .portfolio-item:hover .portfolio-descr {
    color: #fff;
}

.portfolios-grid.hover-white .portfolio-item:hover .portfolio-intro,
.portfolios-grid.hover-white .portfolio-item:hover .portfolio-title,
.portfolios-grid.hover-white .portfolio-item:hover .portfolio-descr {
    color: #000;
}

.portfolios-grid.hover-white .portfolio-item:hover .portfolio-img:after {
    background: rgba(250, 250, 250, .9);
}

.portfolio-item .portfolio-img>img {
    -webkit-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -moz-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -o-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -ms-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.portfolio-item:hover .portfolio-img>img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

/* Portfolio Grid Gutter
==================================================== */

.portfolio-grid.portfolio-grid-gut {
    margin: 0 0 0 -15px;
}

.portfolio-grid.portfolio-grid-gut .portfolio-item {
    padding: 0 0 15px 15px;
}

@media (max-width: 992px) {

    .portfolio-grid[data-columns="3"] .portfolio-item,
    .portfolio-grid[data-columns="4"] .portfolio-item,
    .portfolio-grid[data-columns="5"] .portfolio-item {
        width: 50%;
    }
}

@media (max-width: 768px) {

    .portfolio-grid[data-columns="3"] .portfolio-item,
    .portfolio-grid[data-columns="4"] .portfolio-item,
    .portfolio-grid[data-columns="5"] .portfolio-item {
        width: 100%;
    }

    .portfolio-grid {
        padding: 10px 0;
    }
}

/* ====================================================
    Team
==================================================== */

/* Team Style 1
==================================================== */

.team-style-1 figure .team-image {
    position: relative;
    overflow: hidden;
}

.team-style-1 .team-overlay {
    display: block;
    position: absolute;
    overflow: hidden;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -ms-transition: .3s ease;
    transition: .3s ease;
}

.team-style-1 .team-overlay {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
}

.team-style-1 figure:hover .team-overlay {
    height: 100%;
}

.team-style-1 figure figcaption {
    width: 100%;
    position: relative;
    margin-top: 17px
}

.team-style-1 figure .overlay-content {
    opacity: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    -webkit-transition: .3s ease-in;
    -moz-transition: .3s ease-in;
    -o-transition: .3s ease-in;
    -ms-transition: .3s ease-in;
    transition: .3s ease-in;
    top: -15px
}

.team-style-1 figure:hover .overlay-content {
    opacity: 1;
    z-index: 1111;
    top: 0
}

.team-style-1 figure figcaption .team-member-position {
    position: relative;
    top: 0;
    -webkit-transition: .3s ease-in;
    -moz-transition: .3s ease-in;
    -o-transition: .3s ease-in;
    -ms-transition: .3s ease-in;
    transition: .3s ease-in;
}

/* Team Style 2
==================================================== */

.team-style-2 figure {
    position: relative
}

.team-style-2 figure .team-image {
    position: relative;
}

.team-style-2 .team-overlay {
    display: block;
    position: absolute;
    overflow: hidden;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -ms-transition: .3s ease;
    transition: .3s ease;
}

.team-style-2 figure:hover .team-overlay {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: .9
}

.team-style-2 figure .team-member-position {
    position: absolute;
    top: 100%;
    width: 100%;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.team-style-2 figure:hover .team-member-position {
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    margin: 0;
}

.team-style-2 figure:hover .team-member-position .text-medium-gray,
.team-style-2 figure:hover .team-member-position .text-extra-dark-gray {
    color: #fff
}

.team-style-2 figure figcaption {
    min-height: 20px;
}

.team-style-2 figure figcaption .overlay-content {
    opacity: 0;
    top: 0;
    position: relative;
    -webkit-transition: .3s ease-in;
    -moz-transition: .3s ease-in;
    -o-transition: .3s ease-in;
    -ms-transition: .3s ease-in;
    transition: .3s ease-in;
}

.team-style-2 figure:hover figcaption .overlay-content {
    opacity: 1;
    top: 30px;
}

/* ====================================================
    Blog
==================================================== */

.blog-post .blog-post-images {
    background: #232323;
    overflow: hidden;
}

.blog-post .blog-post-images img {
    width: 100%;
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}

.blog-post:hover .blog-post-images img {
    opacity: 0.5;
}

.blog-entry {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.06);
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.blog-entry:hover {
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

.blog-detail {
    background: #fff;
}

.page-item.active .page-link {
    background: #1080d0 !important;
    border-color: transparent;
}

.page-item:hover .page-link,
.page-item:focus .page-link {
    background: #1080d0 !important;
    color: #fff;
    border-color: transparent;
    transition-duration: none !important;
    transition: none !important;
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6;
}

.page-item.disabled:hover .page-link {
    background-color: #fff !important;
}

.page-link,
.page-link:focus,
.page-link:hover {
    color: #1080d0;
}

.blog-box {
    padding: 30px;
    position: relative;
    z-index: 1;
}

.blog-info {
    position: relative;
    z-index: 9;
}

.blog-info span {
    color: #626262;
    font-size: 14px;
    margin-right: 6px;
}

.blog-info h4 {
    font-weight: 600;
    font-size: 18px;
}

.blog-box .post-format-icon {
    text-align: right;
    position: relative;
    z-index: 9
}

.blog-box .post-format-icon i {
    padding-right: 0;
    font-size: 35px;
    color: #e1e1e1;
}

.blog-info p {
    padding: 0px 0 10px;
    font-size: 14px;
}

.blog-box .post-category a {
    display: inline-block;
    padding: 5px 15px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 50em;
    color: #fff;
    background-color: #1080d0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: ll 0.3s ease;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

a.blog-btn {
    text-align: center;
    font-size: 14px;
    color: #1080d0;
    display: block;
    padding-bottom: 12px;
    position: relative;
    z-index: 1;
}

a.blog-btn i {
    margin-left: 10px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.blog-box .border {
    position: absolute;
    background: #1080d0;
    height: 0px;
    bottom: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.blog-box .blog-box-img {
    bottom: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    background-size: cover;
    background-position: center center;
}

.blog-box:hover .blog-box-img,
.blog-box.active .blog-box-img {
    opacity: 1;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.blog-1:hover h4,
.blog-1:hover i,
.blog-1:hover span,
.blog-1:hover p,
.blog-1:hover a.blog-btn,
.blog-1.active h4,
.blog-1.active i,
.blog-1.active span,
.blog-1.active p,
.blog-1.active a.blog-btn,
.blog-1:hover .post-category a,
.blog-1:hover .post-format-icon i,
.blog-1.active .post-category a,
.blog-1.active .post-format-icon i {
    color: #fff;
}

.blog-box:hover .blog-box-img:before,
.blog-box.active .blog-box-img:before {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    content: "";
    display: inline-block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

.blog-box.blog-2 {
    padding: 0;
    position: relative;
    border: none;
    transition: all 0.5s ease 0s;
    height: 100%;
}

.blog-box.blog-2 .blog-info {
    background: #ffffff;
    padding: 30px;
}

.blog-box.blog-2.gray-bg .blog-info {
    background: #f7f7f7;
}

.blog-box.blog-2 .blog-box-img {
    opacity: 1;
}

.blog-box.blog-2 .post-format-icon {
    position: absolute;
    right: 30px;
    top: 30px;
}

.blog-box.blog-2 .button.icon-color {
    text-transform: capitalize;
    float: right;
}

.blog-box.blog-2:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.07);
}

.blog-box.blog-2.gray-bg:hover {
    box-shadow: none;
}

.blog-box.blog-2.transparent .blog-info {
    background: transparent;
    padding: 30px 0;
}

.blog-box.blog-2.transparent .blog-info span {
    color: #ffffff;
}

/* ====================================================
    Sliders
==================================================== */

/* Owl Carousel
==================================================== */

.owl-carousel .owl-dots,
.owl-carousel .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    line-height: 1;
}

/* Owl Carousel - Controls - Arrows
==================================================== */

.owl-carousel .owl-nav [class*=owl-] {
    position: absolute;
    top: 40%;
    margin-top: -18px;
    zoom: 1;
    left: -36px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: #FFF;
    opacity: 0;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.owl-carousel .owl-prev i,
.owl-carousel .owl-next i {
    font-size: 20px;
    color: #fff;
    background: rgba(64, 89, 179, 0.7);
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin-top: -12px;
}

.owl-carousel-full .with-carousel-dots .owl-nav [class*=owl-] {
    margin-top: -50px;
}

.owl-carousel .owl-nav .owl-next {
    left: auto;
    right: -36px;
}

.slider-element .owl-nav .owl-next,
.owl-carousel-full .owl-nav .owl-next {
    left: auto !important;
    right: 0 !important;
    border-radius: 3px 0 0 3px;
}

.owl-carousel:hover .owl-nav [class*=owl-] {
    opacity: 1;
    left: -18px;
}

.owl-carousel:hover .owl-nav .owl-next {
    left: auto;
    right: -18px;
}

.owl-carousel .owl-nav .disabled {
    display: none !important;
}

/* Owl Carousel - Controls - Dots
==================================================== */

.owl-carousel .owl-dots {
    display: inline-block;
    margin-top: 20px;
    text-indent: inherit;
    width: 100%;
    cursor: pointer;
    text-align: center;
}

.owl-carousel .owl-dots .owl-dot span {
    width: 6px;
    height: 6px;
    margin: 5px 3px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
    border-radius: 30px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
    background: #1080d0;
}

.owl-carousel .owl-dots .owl-dot.active span {
    width: 20px;
}

.owl-carousel .owl-dots {
    text-align: center;
}

.bottom-center-dots .owl-dots {
    bottom: 30px !important;
    position: absolute;
}

/* Height
==================================================== */

.page-header {
    background-color: #B2AFAB;
    background-position: center center;
    background-size: cover;
    min-height: 100vh;
    max-height: 999px;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header.page-header-md {
    min-height: 65vh !important;
    max-height: 700px;
}

.page-header.page-header-xs {
    min-height: 40vh !important;
}

/* Captions
==================================================== */

.content-center {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 100%;
}

.content-center .container {
    padding-right: 50px;
    padding-left: 50px;
}

/* Carousel Indicators
==================================================== */

.carousel-control {
    position: absolute;
    opacity: 1;
    top: 50%;
    text-shadow: none;
    transform: translateY(-50%);
}

.carousel-control.left {
    font-size: 40px;
    opacity: 0;
}

.carousel-control.right {
    font-size: 40px;
    opacity: 0;
}

.carousel:hover .carousel-control.left,
.carousel:hover .carousel-control.right {
    opacity: 1;
    z-index: 1
}

.carousel-indicators {
    z-index: 1;
}

/* Carousel Fade
==================================================== */

.carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: 1s;
    transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
    opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
    transform: translateX(0);
    transform: translate3d(0, 0, 0);
}

/* Icons
==================================================== */

.slider-icons-bottom {
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
}

/* ====================================================
    Lightcase
==================================================== */

#lightcase-overlay {
    background: #000 !important;
}

/* ====================================================
    Countdown
==================================================== */

.countdown {
    display: inline-block;
    text-align: center;
    margin: 0px 20px;
}

.countdown span {
    font-size: 40px;
    line-height: 40px;
}

.countdown p {
    font-size: 16px;
    text-transform: capitalize;
    margin-bottom: 0;
}

/*small*/
.countdown.small {
    display: inline-block;
    text-align: center;
    margin: 0px 10px;
}

.countdown.small span {
    font-size: 30px;
    line-height: 30px;
}

/*medium*/
.countdown.medium {
    display: inline-block;
    text-align: center;
    margin: 0px 30px;
}

.countdown.medium span {
    font-size: 50px;
    line-height: 50px;
}

.countdown.medium p {
    font-size: 20px;
    text-transform: capitalize;
}

/*large*/
.countdown.large {
    display: inline-block;
    text-align: center;
    margin: 0px 40px;
}

.countdown.large span {
    font-size: 70px;
    line-height: 70px;
}

.countdown.large p {
    font-size: 24px;
    text-transform: capitalize;
}

/*gray-bg */
.countdown.gray-bg {
    padding: 10px;
}

/*border*/
.countdown.border {
    padding: 10px;
    border: 2px solid #eeeeee;
}

/*border*/
.countdown.round {
    padding: 30px;
    border: 7px solid #eeeeee;
    border-radius: 50%;
    width: 140px;
    height: 140px;
}

.countdown.round.small {
    width: 100px;
    height: 100px;
    padding: 15px 10px;
}

.countdown.round.medium {
    width: 150px;
    height: 150px;
    padding: 15px;
}

.countdown.round.medium span {
    line-height: 68px;
}

.countdown.round.large {
    width: 190px;
    height: 190px;
    padding: 20px;
}

.countdown.round.large span {
    line-height: 102px;
}

.countdown.text-white p {
    color: #ffffff;
}

.countdown.round.text-white {
    border-color: rgba(255, 255, 255, 0.3);
}

/* ====================================================
    Scroll Top
==================================================== */

.scroll-top-arrow,
.scroll-top-arrow:focus {
    color: #ffffff;
    background-color: #303133;
    border-color: #303133;
    border-radius: 2px;
    opacity: 0;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5em;
    padding: 0;
    position: fixed;
    right: 25px;
    text-align: center;
    text-decoration: none;
    top: 92%;
    z-index: 10006;
}

.scroll-top-arrow:hover {
    background: #000;
    color: #fff;
}

.scroll-top-arrow i {
    line-height: 30px;
    position: relative;
}

.menu-pos-invert {
    left: -100%;
    margin-left: -2px;
}

/* DEMO */

.demo-container {
    position: relative;
}

.image {
    display: block;
    width: 100%;
    height: auto;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #292929;
    overflow: hidden;
    width: 100%;
    opacity: 0;
    height: 100%;
    transition: .5s ease;
}

.demo-container:hover .overlay {
    opacity: .8;
}

.demo-info {
    color: white;
    font-size: 26px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    white-space: nowrap;
    text-transform: uppercase;
}

.demo-container .label {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
}

.label {
    font-size: 12px;
    line-height: 24px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    letter-spacing: 1px;
    background: #1080d0;
    color: #fff !important;
    border-radius: 0;
    padding: 6px 12px;
    font-size: 10px;
    vertical-align: middle;
}
