/*-----------------------------------------------------------------------------------

    Template Name: Olima - Modern Personal Blog HTML Template
    Template URI: 
    Description: Olima - Modern Personal Blog HTML Template
    Author: 
    Author URI: 
    Version: 1.0

-----------------------------------------------------------------------------------
---------------------------
		CSS Index
---------------------------
1. variables
2. mixin
3. common
4. header
5. Hero
6. About
7. about
8. features
9. video
10. post
11. testimonial
11. shop
12. blog
13. sidebar
14. contact
15. footer
---------------------------*/


/*------=================-----------
			Common css
--------=================---------*/

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&amp;family=Roboto:wght@400;500;700&amp;display=swap");
html {
    font-size: 100%;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-family: "Playfair Display";
    color: #374146;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
}

h5,
h6 {
    font-weight: 600;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 30px;
    line-height: 45px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

label,
blockquote,
p {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}

input,
select,
textarea {
    border: none;
    outline: none;
}

iframe {
    display: inherit;
    border: none;
}

button {
    border: none;
    cursor: pointer;
    outline: none;
}

button:hover,
button:focus {
    outline: none;
}

body {
    font-family: "Roboto";
    font-size: 16px;
    line-height: 28px;
    color: #666666;
    font-weight: normal;
    overflow-x: hidden;
    color: #666666;
}

@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

.section_title span {
    letter-spacing: 2px;
    color: #FF7200;
}

.section_title h3 {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(112, 112, 112, 0.3);
    margin-bottom: 10px;
}

.section_title_2 h3 {
    position: relative;
}

.section_title_2 h3:before {
    position: absolute;
    bottom: -2.5px;
    left: 0;
    content: '';
    width: 70px;
    height: 5px;
    background: #ea7026;
}

.section_title_2 h3:after {
    position: absolute;
    bottom: -10px;
    left: 30px;
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid #ea7026;
}

.features_post_v1 .section_title_2 h3:after {
    bottom: -9px;
}

.blog_v4 .section_title_2 h3:before,
.video_v3 .section_title_2 h3:before,
.blog_v3 .section_title_2 h3:before {
    left: 50%;
    transform: translateX(-50%);
}

.blog_v4 .section_title_2 h3:after,
.video_v3 .section_title_2 h3:after,
.blog_v3 .section_title_2 h3:after {
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
}

.bg_image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


/*
	Start scroll_up css
*/

#scroll_up {
    background: #1f2332;
    border-radius: 50%;
    bottom: 30px;
    color: #fff;
    cursor: pointer;
    display: none;
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: fixed;
    right: 30px;
    text-align: center;
    text-decoration: none;
    transition: .3s;
    z-index: 337;
}

#scroll_up:hover,
#scroll_up:focus {
    background: #8b3eea;
    color: #fff;
}


/*
	End scroll_up css
*/


/*
	03. Start Preloader css
*/

.preloader {
    background-color: #8b3eea;
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.lds-ellipsis {
    margin: 0 auto;
    position: relative;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 64px;
    text-align: center;
    z-index: 9999;
}

.lds-ellipsis span {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
    -webkit-animation: ball-pulse-sync .6s 0s infinite ease-in-out;
    animation: ball-pulse-sync .6s 0s infinite ease-in-out;
}

.lds-ellipsis span:nth-child(1) {
    -webkit-animation: ball-pulse-sync .6s -.14s infinite ease-in-out;
    animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
}

.lds-ellipsis span:nth-child(2) {
    -webkit-animation: ball-pulse-sync .6s -70ms infinite ease-in-out;
    animation: ball-pulse-sync 0.6s -70ms infinite ease-in-out;
}

@-webkit-keyframes ball-pulse-sync {
    33% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
    66% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes ball-pulse-sync {
    33% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
    66% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}


/*
	End Preloader css
*/


/*------=================-----------
			header css
--------=================---------*/

.header_navigation .nav-container {
    position: relative;
}

.header_navigation .nav-container .nav-pushed-item {
    display: none;
}

.header_navigation .nav-container .main-menu ul>li:first-child a {
    padding: 20px 20px 20px 0;
}

.header_navigation .nav-container .main-menu ul li {
    display: inline-block;
    position: relative;
}

.header_navigation .nav-container .main-menu ul li a {
    display: block;
    font-size: 16px;
    color: #374146;
    text-transform: capitalize;
    padding: 20px 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .header_navigation .nav-container .main-menu ul li a {
        padding: 20px 8px;
        font-size: 14px;
    }
}

.header_navigation .nav-container .main-menu ul li.static {
    position: static;
}

.header_navigation .nav-container .main-menu ul li.mega-item ul li:first-child {
    padding: 5px 0 !important;
}

.header_navigation .nav-container .main-menu ul li.mega-item ul li a {
    padding: 5px 0 !important;
}

@media (max-width: 767px) {
    .header_navigation .nav-container .main-menu ul li.mega-item ul li>a {
        padding: 0 !important;
    }
}

.header_navigation .nav-container .main-menu ul li .mega-menu {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    height: auto;
    background: #fff;
    padding: 35px;
    opacity: 0;
    visibility: hidden;
    text-align: left;
    box-shadow: 0px 15px 30px 0px rgba(0, 3, 143, 0.1);
    transition: .3s;
    z-index: 99;
}

.header_navigation .nav-container .main-menu ul li .mega-menu li.mega-item {
    margin: 0;
    margin-bottom: 15px;
}

.header_navigation .nav-container .main-menu ul li .mega-menu li.mega-item>a {
    color: #233d63;
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
}

.header_navigation .nav-container .main-menu ul li .mega-menu li.mega-item ul {
    margin-top: 5px;
}

.header_navigation .nav-container .main-menu ul li .mega-menu li.mega-item ul li {
    display: block;
    margin: 0;
}

.header_navigation .nav-container .main-menu ul li .mega-menu li.mega-item ul li:last-child {
    margin-bottom: 0;
}

.header_navigation .nav-container .main-menu ul li .mega-menu li.mega-item ul li a {
    color: #233d63;
    padding: 0;
    text-transform: capitalize;
    font-weight: 400;
}

.header_navigation .nav-container .main-menu ul li .mega-menu li.mega-item ul li a:hover {
    color: #8b3eea;
}

.header_navigation .nav-container .main-menu ul li .mega-menu li.mega-item:hover>a {
    background: transparent;
    color: #8b3eea;
}

.header_navigation .nav-container .main-menu ul li .mega-menu li.mega-item ul li:hover>a {
    background: transparent;
    color: #8b3eea;
}

.header_navigation .nav-container .main-menu ul li .sub-menu {
    position: absolute;
    left: 0;
    top: 110%;
    width: 200px;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out 0s;
    z-index: 99;
    height: auto;
}

.header_navigation .nav-container .main-menu ul li .sub-menu li {
    display: block;
}

.header_navigation .nav-container .main-menu ul li .sub-menu li a {
    display: block;
    padding: 8px 24px;
    position: relative;
    transition: all 0.3s ease-out 0s;
    border-radius: 0;
    margin: 0 0;
    line-height: 30px !important;
    border-bottom: 1px solid rgba(242, 244, 248, 0.7);
    color: #666666;
}

.header_navigation .nav-container .main-menu ul li .sub-menu li a:hover {
    background-color: rgba(35, 41, 44, 0.03);
    color: #374146 !important;
    border-color: rgba(35, 41, 44, 0.03);
}

.header_navigation .nav-container .main-menu ul li .sub-menu li .sub-menu {
    left: 100%;
    top: 50%;
}

.header_navigation .nav-container .main-menu ul li .sub-menu li:hover .sub-menu {
    top: 0;
}

.header_navigation .nav-container .main-menu ul li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.header_navigation .nav-container .main-menu ul li:hover>.mega-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.header_navigation .nav-container .main-menu ul li .dd-trigger {
    display: none;
}

.header_navigation .nav-container.breakpoint-on .nav-menu {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: -300px;
    z-index: 9999;
    width: 300px;
    height: 100%;
    transition-duration: 500ms;
    padding: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: block;
    overflow-x: hidden;
    overflow-y: scroll;
    padding-top: 70px;
}

.header_navigation .nav-container.breakpoint-on .nav-menu.menu-on {
    left: 0;
}

.header_navigation .nav-container.breakpoint-on .nav-menu .main-menu ul>li:first-child a {
    padding: 8px 20px;
}

.header_navigation .nav-container.breakpoint-on .nav-menu .main-menu ul li {
    display: block;
}

.header_navigation .nav-container.breakpoint-on .nav-menu .main-menu ul li a {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    color: #374146 !important;
    padding: 8px 20px;
}

.header_navigation .nav-container.breakpoint-on .nav-menu .main-menu ul li.static {
    position: relative;
}

.header_navigation .nav-container.breakpoint-on .nav-menu .main-menu ul li .sub-menu {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
    background-color: transparent;
    visibility: visible;
    opacity: 1;
    display: none;
    transition: none;
}

.header_navigation .nav-container.breakpoint-on .nav-menu .main-menu ul li .sub-menu li a {
    color: #374146;
    padding: 0px 20px 0 40px;
    line-height: 45px !important;
}

.header_navigation .nav-container.breakpoint-on .nav-menu .main-menu ul li .sub-menu li a:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.header_navigation .nav-container.breakpoint-on .nav-menu .main-menu ul li .mega-menu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: transparent;
    padding: 35px;
    opacity: 1;
    visibility: visible;
    text-align: left;
    box-shadow: none;
    display: none;
    transition: none;
}

.header_navigation .nav-container.breakpoint-on .nav-menu .main-menu ul li .mega-menu li a {
    padding: 0px !important;
}

.header_navigation .nav-container.breakpoint-on .nav-menu .main-menu ul li .dd-trigger {
    display: block;
    position: absolute;
    right: 0;
    height: 45px;
    width: 45px;
    top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 2;
    background: transparent;
    text-align: center;
    line-height: 45px;
    cursor: pointer;
    color: #374146;
    font-size: 20px;
}

.header_navigation .nav-container.breakpoint-on .nav-menu .main-menu.menu-on {
    left: 0;
}

.header_navigation .nav-container.breakpoint-on .nav-pushed-item,
.header_navigation .nav-container.breakpoint-on .navbar-close,
.header_navigation .nav-container.breakpoint-on .navbar-toggler {
    display: block;
}

.header_navigation .navbar-toggler {
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
    display: none;
}

.header_navigation .navbar-toggler span {
    position: relative;
    background-color: #374146;
    border-radius: 3px;
    display: block;
    height: 3px;
    margin-top: 5px;
    padding: 0;
    transition-duration: 300ms;
    width: 30px;
    cursor: pointer;
    display: block;
}

.header_navigation .navbar-toggler.active span:nth-of-type(1) {
    transform: rotate3d(0, 0, 1, 45deg);
    top: 8px;
}

.header_navigation .navbar-toggler.active span:nth-of-type(2) {
    opacity: 0;
}

.header_navigation .navbar-toggler.active span:nth-of-type(3) {
    transform: rotate3d(0, 0, 1, -45deg);
    top: -8px;
}

.header_navigation .navbar-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 12;
    display: none;
}

.header_navigation .navbar-close .cross-wrap {
    width: 26px;
    height: 26px;
    cursor: pointer;
    position: relative;
}

.header_navigation .navbar-close .cross-wrap span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 6px;
    background: #374146;
}

.header_navigation .navbar-close .cross-wrap span.top {
    top: 12px;
    left: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.header_navigation .navbar-close .cross-wrap span.bottom {
    bottom: 12px;
    left: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.header_v1 .top_header {
    padding: 12px 0;
}

.header_v1 .top_header .top_left ul li {
    display: inline-block;
    margin-right: 35px;
}

.header_v1 .top_header .top_left ul li a {
    font-size: 14px;
    color: #888888;
    -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;
}

@media (max-width: 767px) {
    .header_v1 .top_header .top_left {
        text-align: center;
    }
    .header_v1 .top_header .top_left ul li {
        margin-left: 10px;
        margin-right: 10px;
    }
}

.header_v1 .top_header .social_box {
    float: right;
}

.header_v1 .top_header .social_box ul li {
    margin-left: 20px;
    display: inline-block;
}

.header_v1 .top_header .social_box ul li a {
    font-size: 14px;
    color: #888888;
}

@media (max-width: 767px) {
    .header_v1 .top_header .social_box {
        float: none;
        text-align: center;
    }
    .header_v1 .top_header .social_box ul li {
        margin-left: 10px;
        margin-right: 10px;
    }
}

.header_v1 .top_header .top_left ul li a,
.header_v1 .top_header .social_box ul li a {
    -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;
}

.header_v1 .top_header .top_left ul li a:hover,
.header_v1 .top_header .top_left ul li a:focus,
.header_v1 .top_header .social_box ul li a:hover,
.header_v1 .top_header .social_box ul li a:focus {
    color: #8b3eea;
}

.header_v1 .nav-container .brand_logo {
    position: absolute;
    top: -53px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_v1 .nav-container .brand_logo {
        position: relative;
        left: auto;
        top: 0;
        transform: none;
    }
    .header_v1 .nav-container .brand_logo img {
        max-height: 60px;
        height: 100%;
    }
}

@media (max-width: 767px) {
    .header_v1 .nav-container .brand_logo {
        position: relative;
        left: auto;
        top: 0;
        transform: none;
    }
    .header_v1 .nav-container .brand_logo img {
        max-height: 60px;
        height: 100%;
    }
}

.header_search .form_group {
    position: relative;
}

.header_search .form_group .form_control {
    background: #F8F8F8;
    width: 300px;
    height: 40px;
    color: #888888;
    font-size: 14px;
    padding-left: 45px;
}

.header_search .form_group .fa-search {
    position: absolute;
    left: 17px;
    top: 10px;
}

.header_v2 .top_header .top_left ul li a,
.header_v2 .top_header .social_box ul li a {
    -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;
}

.header_v2 .top_header .top_left ul li a:hover,
.header_v2 .top_header .top_left ul li a:focus,
.header_v2 .top_header .social_box ul li a:hover,
.header_v2 .top_header .social_box ul li a:focus {
    color: #8b3eea;
}

.header_v3 .top_header {
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .header_v3 .top_header {
        margin-top: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_v3 .top_header {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .header_v3 .top_header .social_widget {
        text-align: center;
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_v3 .top_header .social_widget {
        text-align: center;
        margin-bottom: 20px;
    }
}

.header_v3 .top_header .brand_logo {
    text-align: center;
}

@media (max-width: 767px) {
    .header_v3 .top_header .brand_logo {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_v3 .top_header .brand_logo {
        display: none;
    }
}

.header_v3 .header_navigation {
    background: #EA7026;
}

.header_v3 .header_navigation .nav-container {
    justify-content: center;
}

@media (max-width: 767px) {
    .header_v3 .header_navigation .nav-container {
        justify-content: space-between;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_v3 .header_navigation .nav-container {
        justify-content: space-between;
    }
}

.header_v3 .header_navigation .nav-container .brand_logo {
    display: none;
}

.header_v3 .header_navigation .nav-container .brand_logo img {
    max-width: 150px;
}

@media (max-width: 767px) {
    .header_v3 .header_navigation .nav-container .brand_logo {
        display: block;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_v3 .header_navigation .nav-container .brand_logo {
        display: block;
    }
}

.header_v3 .header_navigation .navbar-toggler span {
    background-color: #fff;
}

.header_v3 .header_navigation .main-menu ul>li>a {
    color: #fff;
}

.header_v3 .header_navigation .main-menu ul>li ul.sub-menu>li>a {
    color: #374146;
}

.header_v4 .social_widget {
    float: right;
}

@media (max-width: 767px) {
    .header_v4 .social_widget {
        margin-top: 40px;
        margin-left: 20px;
        float: none;
        text-align: left;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_v4 .social_widget {
        margin-top: 40px;
        margin-left: 20px;
        float: none;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .header_v4 .top_header {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_v4 .top_header {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

.header_v4 .top_header .brand_logo {
    text-align: left;
}

@media (max-width: 767px) {
    .header_v4 .top_header .brand_logo {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_v4 .top_header .brand_logo {
        display: none;
    }
}

@media (max-width: 767px) {
    .header_v4 .header_navigation {
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_v4 .header_navigation {
        margin-bottom: 20px;
    }
}

.header_v4 .header_navigation .nav-container {
    justify-content: space-between;
}

.header_v4 .header_navigation .nav-container .brand_logo {
    display: none;
}

.header_v4 .header_navigation .nav-container .brand_logo img {
    max-width: 150px;
}

@media (max-width: 767px) {
    .header_v4 .header_navigation .nav-container .brand_logo {
        display: block;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_v4 .header_navigation .nav-container .brand_logo {
        display: block;
    }
}

.header_v2 .nav-container .main-menu ul li .mega-menu li.mega-item ul li a:hover {
    color: #8b3eea;
}

.header_v2 .nav-container .main-menu ul li .mega-menu li.mega-item:hover>a {
    color: #8b3eea;
}

.header_v2 .nav-container .main-menu ul li .mega-menu li.mega-item ul li:hover>a {
    color: #8b3eea;
}

.header_v4 .header_search,
.header_v3 .header_search {
    float: right;
}

@media (max-width: 767px) {
    .header_v4 .header_search,
    .header_v3 .header_search {
        text-align: center;
        float: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_v4 .header_search,
    .header_v3 .header_search {
        text-align: center;
        float: none;
    }
}

.header_v4 .header_search .form_control,
.header_v3 .header_search .form_control {
    min-width: 300px;
    max-width: 300px;
    background: transparent;
    border: 1px solid #ddd;
    padding-left: 20px;
    height: 55px;
}

@media (max-width: 767px) {
    .header_v4 .header_search .form_control,
    .header_v3 .header_search .form_control {
        min-width: 100%;
        max-width: 100%;
    }
}

.header_v4 .header_search .fa-search,
.header_v3 .header_search .fa-search {
    top: 20px;
    left: auto;
    right: 20px;
}

.header_v4 .nav-container .main-menu ul li .mega-menu li.mega-item ul li a:hover,
.header_v3 .nav-container .main-menu ul li .mega-menu li.mega-item ul li a:hover {
    color: #FF7200;
}

.header_v4 .nav-container .main-menu ul li .mega-menu li.mega-item:hover>a,
.header_v3 .nav-container .main-menu ul li .mega-menu li.mega-item:hover>a {
    color: #FF7200;
}

.header_v4 .nav-container .main-menu ul li .mega-menu li.mega-item ul li:hover>a,
.header_v3 .nav-container .main-menu ul li .mega-menu li.mega-item ul li:hover>a {
    color: #FF7200;
}

.social_widget ul li {
    display: inline-block;
}

.social_widget ul li a {
    display: block;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #F8F8F8;
    color: #fff;
    margin-left: 3px;
}

.social_widget ul li a.facebook {
    background: #5E5EB7;
}

.social_widget ul li a.twitter {
    background: #29A4DD;
}

.social_widget ul li a.linkedin {
    background: #42548E;
}

.social_widget ul li a.pinterest {
    background: #C72026;
}

li.menu-item-has-children>a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    font-weight: 600;
    margin-left: 5px;
}

@media (max-width: 767px) {
    li.menu-item-has-children>a:after {
        display: none;
    }
}


/*------=================-----------
		Hero css
--------=================---------*/

.hero_post_v1 .arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 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;
}

.hero_post_v1 .arrow span {
    vertical-align: middle;
}

.hero_post_v1 .arrow:hover {
    color: #8b3eea;
}

.hero_post_v1 .arrow.prev {
    left: 17%;
}

.hero_post_v1 .arrow.prev span i {
    margin-right: 10px;
}

.hero_post_v1 .arrow.next {
    right: 18%;
}

.hero_post_v1 .arrow.next span i {
    margin-left: 10px;
}

@media (max-width: 359px) {
    .hero_post_v1 .grid_item .post_img {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .hero_post_v1 .grid_item .post_img {
        height: 500px;
    }
}

.hero_post_v1 .grid_item .post_img:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    -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;
}

.hero_post_v1 .grid_item .post_img .post_overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 10px;
    max-width: 620px;
    max-height: 290px;
    width: 100%;
    height: 100%;
    border: 10px solid rgba(255, 255, 255, 0.7);
    border-radius: 3px;
    visibility: hidden;
    opacity: 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;
    z-index: 1;
}

.hero_post_v1 .grid_item .post_img .post_overlay .post_content {
    padding: 40px 50px;
    border-radius: 3px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 767px) {
    .hero_post_v1 .grid_item .post_img .post_overlay .post_content {
        padding: 0 150px;
    }
}

@media only screen and (min-width: 450px) and (max-width: 767px) {
    .hero_post_v1 .grid_item .post_img .post_overlay .post_content {
        padding: 0 70px;
    }
}

.hero_post_v1 .grid_item .post_img .post_overlay .post_content .cat_btn {
    margin-bottom: 10px;
    display: block;
}

.hero_post_v1 .grid_item .post_img .post_overlay .post_content h3 {
    margin-bottom: 5px;
    -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;
}

.hero_post_v1 .grid_item .post_img .post_overlay .post_content h3:hover {
    color: #000000;
}

.hero_post_v1 .grid_item .post_img .post_overlay .post_content .post_meta span {
    margin-left: 10px;
    margin-right: 10px;
}

.hero_post_v1 .grid_item.slick-center .post_img:after {
    background: rgba(255, 255, 255, 0);
}

.hero_post_v1 .grid_item.slick-center .post_img .post_overlay {
    visibility: visible;
    opacity: 1;
}

.hero_post_slide_v2 .arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 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;
}

.hero_post_slide_v2 .arrow span {
    vertical-align: middle;
    color: #fff;
}

.hero_post_slide_v2 .arrow:hover {
    color: #8b3eea;
}

.hero_post_slide_v2 .arrow.prev {
    left: 17%;
}

.hero_post_slide_v2 .arrow.prev span i {
    margin-right: 20px;
}

.hero_post_slide_v2 .arrow.next {
    right: 18%;
}

.hero_post_slide_v2 .arrow.next span i {
    margin-left: 20px;
}

.hero_post_slide_v2 .grid_item {
    margin-left: 15px;
    margin-right: 15px;
    transition: all .3s;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .hero_post_slide_v2 .grid_item .post_img {
        height: 550px;
    }
}

.hero_post_slide_v2 .grid_item .post_img img {
    width: 100%;
}

.hero_post_slide_v2 .grid_item .post_img .post_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero_post_slide_v2 .grid_item .post_img .post_overlay .post_content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    padding: 0 20px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.hero_post_slide_v2 .grid_item .post_img .post_overlay .post_content .tag {
    color: #fff;
    font-weight: bold;
    letter-spacing: .50em;
    font-size: 16px;
    text-transform: uppercase;
}

.hero_post_slide_v2 .grid_item .post_img .post_overlay .post_content h3 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 20px;
}

@media (max-width: 359px) {
    .hero_post_slide_v2 .grid_item .post_img .post_overlay .post_content h3 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 1366px) {
    .hero_post_slide_v2 .grid_item .post_img .post_overlay .post_content h3 {
        font-size: 24px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .hero_post_slide_v2 .grid_item .post_img .post_overlay .post_content h3 {
        font-size: 34px;
    }
}

.hero_post_slide_v2 .grid_item .post_img .post_overlay .post_content p {
    color: #fff;
}

@media (max-width: 359px) {
    .hero_post_slide_v2 .grid_item .post_img .post_overlay .post_content p {
        font-size: 14px;
        line-height: 26px;
    }
}

.hero_post_slide_v2 .grid_item .post_img .post_overlay .post_meta {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 0 50px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

@media (max-width: 359px) {
    .hero_post_slide_v2 .grid_item .post_img .post_overlay .post_meta {
        bottom: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media only screen and (max-width: 1366px) {
    .hero_post_slide_v2 .grid_item .post_img .post_overlay .post_meta {
        padding: 0 10px 0 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .hero_post_slide_v2 .grid_item .post_img .post_overlay .post_meta {
        padding: 0 20px 0 35px;
    }
}

.hero_post_slide_v2 .grid_item .post_img .post_overlay .post_meta .admin img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
}

.hero_post_slide_v2 .grid_item .post_img .post_overlay .post_meta .admin span {
    margin-left: 10px;
    font-size: 16px;
    color: #fff;
}

@media only screen and (max-width: 1366px) {
    .hero_post_slide_v2 .grid_item .post_img .post_overlay .post_meta .admin span {
        margin-left: 5px;
        font-size: 13px;
    }
}

.hero_post_slide_v2 .grid_item .post_img .post_overlay .post_meta .meta_tag span {
    display: inline-block;
    color: #fff;
    margin-right: 30px;
}

@media (max-width: 359px) {
    .hero_post_slide_v2 .grid_item .post_img .post_overlay .post_meta .meta_tag span {
        margin-left: 10px;
        margin-right: 10px;
    }
}

@media only screen and (max-width: 1366px) {
    .hero_post_slide_v2 .grid_item .post_img .post_overlay .post_meta .meta_tag span {
        font-size: 13px;
        margin-right: 5px;
    }
    .hero_post_slide_v2 .grid_item .post_img .post_overlay .post_meta .meta_tag span:before {
        font-size: 13px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .hero_post_slide_v2 .grid_item .post_img .post_overlay .post_meta .meta_tag span {
        margin-right: 15px;
    }
}

.hero_post_slide_v2 .grid_item .post_img .post_overlay .post_meta .meta_tag span:before {
    color: #fff;
}

.hero_post_slide_v2 .grid_item.slick-current {
    position: relative;
    z-index: 1;
}

.hero_post_slide_v2 .grid_item.slick-current .post_overlay {
    background: rgba(0, 0, 0, 0.2);
}

.hero_post_slide_v2 .grid_item.slick-current .post_overlay .post_meta,
.hero_post_slide_v2 .grid_item.slick-current .post_overlay .post_content {
    visibility: visible;
    opacity: 1;
}

.hero_post_v3 .col,
.hero_post_v3 .col-1,
.hero_post_v3 .col-10,
.hero_post_v3 .col-11,
.hero_post_v3 .col-12,
.hero_post_v3 .col-2,
.hero_post_v3 .col-3,
.hero_post_v3 .col-4,
.hero_post_v3 .col-5,
.hero_post_v3 .col-6,
.hero_post_v3 .col-7,
.hero_post_v3 .col-8,
.hero_post_v3 .col-9,
.hero_post_v3 .col-auto,
.hero_post_v3 .col-lg,
.hero_post_v3 .col-lg-1,
.hero_post_v3 .col-lg-10,
.hero_post_v3 .col-lg-11,
.hero_post_v3 .col-lg-12,
.hero_post_v3 .col-lg-2,
.hero_post_v3 .col-lg-3,
.hero_post_v3 .col-lg-4,
.hero_post_v3 .col-lg-5,
.hero_post_v3 .col-lg-6,
.hero_post_v3 .col-lg-7,
.hero_post_v3 .col-lg-8,
.hero_post_v3 .col-lg-9,
.hero_post_v3 .col-lg-auto,
.hero_post_v3 .col-md,
.hero_post_v3 .col-md-1,
.hero_post_v3 .col-md-10,
.hero_post_v3 .col-md-11,
.hero_post_v3 .col-md-12,
.hero_post_v3 .col-md-2,
.hero_post_v3 .col-md-3,
.hero_post_v3 .col-md-4,
.hero_post_v3 .col-md-5,
.hero_post_v3 .col-md-6,
.hero_post_v3 .col-md-7,
.hero_post_v3 .col-md-8,
.hero_post_v3 .col-md-9,
.hero_post_v3 .col-md-auto,
.hero_post_v3 .col-sm,
.hero_post_v3 .col-sm-1,
.hero_post_v3 .col-sm-10,
.hero_post_v3 .col-sm-11,
.hero_post_v3 .col-sm-12,
.hero_post_v3 .col-sm-2,
.hero_post_v3 .col-sm-3,
.hero_post_v3 .col-sm-4,
.hero_post_v3 .col-sm-5,
.hero_post_v3 .col-sm-6,
.hero_post_v3 .col-sm-7,
.hero_post_v3 .col-sm-8,
.hero_post_v3 .col-sm-9,
.hero_post_v3 .col-sm-auto,
.hero_post_v3 .col-xl,
.hero_post_v3 .col-xl-1,
.hero_post_v3 .col-xl-10,
.hero_post_v3 .col-xl-11,
.hero_post_v3 .col-xl-12,
.hero_post_v3 .col-xl-2,
.hero_post_v3 .col-xl-3,
.hero_post_v3 .col-xl-4,
.hero_post_v3 .col-xl-5,
.hero_post_v3 .col-xl-6,
.hero_post_v3 .col-xl-7,
.hero_post_v3 .col-xl-8,
.hero_post_v3 .col-xl-9,
.hero_post_v3 .col-xl-auto {
    padding-left: 10px;
    padding-right: 10px;
}

@media (max-width: 767px) {
    .hero_post_v3 .grid_item {
        margin-bottom: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero_post_v3 .grid_item {
        margin-bottom: 40px;
    }
}

.hero_post_v3 .grid_item .post_img {
    width: 100%;
    height: 450px;
    background-position: center center;
    background-size: cover;
    border-radius: 4px;
}

.hero_post_v3 .grid_item .post_img .post_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.34) 34%, black 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(34%, rgba(0, 0, 0, 0.34)), color-stop(100%, black));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.34) 34%, black 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.34) 34%, black 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.34) 34%, black 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.34) 34%, black 100%);
}

.hero_post_v3 .grid_item .post_img .post_overlay .post_content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px 20px;
}

.hero_post_v3 .grid_item .post_img .post_overlay .post_content .post_meta {
    margin-bottom: 15px;
    color: #fff;
}

.hero_post_v3 .grid_item .post_img .post_overlay .post_content .post_meta .tag_btn {
    padding: 3px 10px;
    background: #FF7200;
    color: #fff;
    line-height: 21px;
    margin-right: 10px;
}

.hero_post_v3 .grid_item .post_img .post_overlay .post_content h3 {
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    -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;
}

.hero_post_v3 .grid_item .post_img .post_overlay .post_content h3:hover,
.hero_post_v3 .grid_item .post_img .post_overlay .post_content h3:focus {
    color: #FF7200;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .hero_post_v3 .grid_item .post_img .post_overlay .post_content h3 {
        font-size: 18px;
        line-height: 28px;
    }
}

.hero_post_v4 .hero_post_slide_v3 {
    margin-left: -15px;
    margin-right: -15px;
}

.hero_post_v4 .hero_post_slide_v3 .arrow {
    position: absolute;
    top: 41%;
    -webkit-transform: translateY(-41%);
    -moz-transform: translateY(-41%);
    -ms-transform: translateY(-41%);
    -o-transform: translateY(-41%);
    transform: translateY(-41%);
    cursor: pointer;
    z-index: 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;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #fff;
    border-radius: 5px;
    font-size: 18px;
}

.hero_post_v4 .hero_post_slide_v3 .arrow:hover {
    background: #FF7200;
    color: #fff;
}

.hero_post_v4 .hero_post_slide_v3 .arrow.prev {
    left: 17%;
}

.hero_post_v4 .hero_post_slide_v3 .arrow.next {
    right: 18%;
}

.hero_post_v4 .hero_post_slide_v3 .grid_item {
    margin-left: 15px;
    margin-right: 15px;
}

.hero_post_v4 .hero_post_slide_v3 .grid_item .post_img img {
    width: 100%;
}

.hero_post_v4 .hero_post_slide_v3 .grid_item .post_content {
    margin-top: -90px;
    position: relative;
    margin-left: 35px;
    margin-right: 35px;
    text-align: center;
    background: #EA7026;
    padding: 35px 100px;
    visibility: hidden;
    opacity: 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;
}

.hero_post_v4 .hero_post_slide_v3 .grid_item .post_content .date {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    padding-bottom: 10px;
}

.hero_post_v4 .hero_post_slide_v3 .grid_item .post_content .date:after {
    display: block;
    content: '';
    width: 60px;
    height: 1px;
    background: #fff;
    margin: 0 auto;
}

.hero_post_v4 .hero_post_slide_v3 .grid_item .post_content h3 {
    color: #fff;
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .hero_post_v4 .hero_post_slide_v3 .grid_item .post_content h3 {
        font-size: 13px;
    }
}

.hero_post_v4 .hero_post_slide_v3 .grid_item .post_content .post_meta span {
    margin-left: 15px;
    margin-right: 15px;
    color: #fff;
}

.hero_post_v4 .hero_post_slide_v3 .grid_item .post_content .post_meta span:before {
    color: #fff;
}

@media (max-width: 767px) {
    .hero_post_v4 .hero_post_slide_v3 .grid_item .post_content .post_meta span {
        font-size: 13px;
    }
}

.hero_post_v4 .hero_post_slide_v3 .grid_item.slick-center .post_content {
    visibility: visible;
    opacity: 1;
}


/*------=================-----------
		Olima About css
--------=================---------*/

.olima_about .olima_img img {
    width: 100%;
}

.olima_about .olima_content_box span {
    margin-bottom: 5px;
    display: block;
}

.olima_about .olima_content_box h2 {
    margin-bottom: 60px;
}

.olima_about .olima_content_box p {
    font-size: 20px;
    line-height: 36px;
}

.olima_about .olima_content_box .para-1 {
    padding-bottom: 90px;
}

.olima_about .olima_content_box blockquote {
    background: #F8F8F8;
    padding: 40px 30px;
    position: relative;
    border-radius: 3px;
}

.olima_about .olima_content_box blockquote i {
    font-size: 45px;
    color: #8b3eea;
    position: absolute;
    left: 30px;
    top: -22px;
}

.olima_about .grid_item .post_img .post_button .play_btn {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #8b3eea;
    font-size: 20px;
    color: #fff;
    border-radius: 50%;
}

@media (max-width: 767px) {
    .olima_about .grid_item .post_img .post_button .play_btn {
        width: 70px;
        height: 70px;
    }
}

.olima_about .grid_item .post_content {
    padding-top: 30px;
}

.olima_about .grid_item .post_content h3 {
    margin-bottom: 26px;
    -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;
}

.olima_about .grid_item .post_content h3:hover {
    color: #8b3eea;
}

.olima_place_v1 .place_row {
    display: flex;
}

@media (max-width: 767px) {
    .olima_place_v1 .place_row {
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .olima_place_v1 .place_row {
        flex-wrap: wrap;
    }
}

.olima_place_v1 .place_row .place_box {
    width: 39%;
}

@media only screen and (max-width: 1366px) {
    .olima_place_v1 .place_row .place_box {
        width: 35%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .olima_place_v1 .place_row .place_box {
        width: 35%;
    }
}

@media (max-width: 767px) {
    .olima_place_v1 .place_row .place_box {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .olima_place_v1 .place_row .place_box {
        width: 100%;
    }
}

.olima_place_v1 .place_row .place_box .post_img {
    width: 100%;
    height: 300px;
}

@media (max-width: 359px) {
    .olima_place_v1 .place_row .place_box .post_img {
        height: 250px;
    }
}

.olima_place_v1 .place_row .place_box .post_img .post_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 45.18%, rgba(0, 53, 99, 0.4) 100%);
}

.olima_place_v1 .place_row .place_box .post_img .post_overlay .post_content {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

.olima_place_v1 .place_row .place_box .post_img .post_overlay .post_content .tag {
    color: #fff;
    letter-spacing: 2px;
}

.olima_place_v1 .place_row .place_box .post_img .post_overlay .post_content h3 {
    color: #fff;
}

.olima_place_v1 .place_row .place_box .post_img img {
    width: 100%;
    height: 100%;
}

.olima_place_v1 .place_row .place_box:nth-child(1) .post_img {
    height: 630px;
}

@media (max-width: 359px) {
    .olima_place_v1 .place_row .place_box:nth-child(1) .post_img {
        height: 300px;
    }
}

.olima_place_v1 .place_row .place_box .grid_item .post_img .post_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.olima_place_v1 .place_row .place_about_box {
    position: relative;
    width: 20%;
    margin-left: 30px;
    margin-right: 30px;
    z-index: 1;
}

@media (max-width: 359px) {
    .olima_place_v1 .place_row .place_about_box {
        margin-left: 0px;
        margin-right: 0px;
    }
}

@media only screen and (max-width: 1366px) {
    .olima_place_v1 .place_row .place_about_box {
        width: 26%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .olima_place_v1 .place_row .place_about_box {
        width: 30%;
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media (max-width: 767px) {
    .olima_place_v1 .place_row .place_about_box {
        width: 100%;
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .olima_place_v1 .place_row .place_about_box {
        width: 100%;
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

.olima_place_v1 .place_row .place_about_box:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: -1;
}

.olima_place_v1 .place_row .place_about_box .about_img {
    position: relative;
    padding: 5px;
    max-width: 250px;
    max-height: 250px;
    width: 100%;
    height: 100%;
    margin: 35px auto;
    border-radius: 50%;
    border: 2px dashed #8b3eea;
}

.olima_place_v1 .place_row .place_about_box .about_img img {
    max-width: 240px;
    max-height: 240px;
    width: 100%;
    height: 100%;
    margin: auto;
    border-radius: 50%;
}

.olima_place_v1 .place_row .place_about_box .about_content {
    position: relative;
    padding: 0 60px;
    padding-bottom: 40px;
    text-align: center;
}

@media only screen and (max-width: 1366px) {
    .olima_place_v1 .place_row .place_about_box .about_content {
        padding: 0 40px;
        padding-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .olima_place_v1 .place_row .place_about_box .about_content {
        padding: 0 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .olima_place_v1 .place_row .place_about_box .about_content {
        padding: 0 20px;
    }
}

.olima_place_v1 .place_row .place_about_box .about_content h4 {
    margin-bottom: 20px;
}

.olima_place_v1 .place_row .place_about_box .about_content p {
    margin-bottom: 15px;
}

.olima_place_v1 .place_row .place_about_box .about_content .social_link li {
    display: inline-block;
    margin-right: 7px;
    margin-left: 7px;
}

.olima_place_v1 .place_row .place_about_box .place_count_box {
    position: relative;
    padding: 0 20px;
    padding-bottom: 22px;
    justify-content: center;
}

@media only screen and (max-width: 1366px) {
    .olima_place_v1 .place_row .place_about_box .place_count_box {
        padding: 0 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .olima_place_v1 .place_row .place_about_box .place_count_box {
        padding: 0 10px;
    }
}

@media (max-width: 359px) {
    .olima_place_v1 .place_row .place_about_box .place_count_box {
        padding-bottom: 20px;
    }
}

.olima_place_v1 .place_row .place_about_box .place_count_box .single_count {
    margin-right: 30px;
    text-align: center;
    position: relative;
}

@media only screen and (max-width: 1366px) {
    .olima_place_v1 .place_row .place_about_box .place_count_box .single_count {
        margin-right: 20px;
    }
}

.olima_place_v1 .place_row .place_about_box .place_count_box .single_count:last-child:after {
    display: none;
}

.olima_place_v1 .place_row .place_about_box .place_count_box .single_count:after {
    content: '';
    width: 1px;
    height: 50px;
    background: rgba(35, 41, 44, 0.2);
    display: block;
    position: absolute;
    top: 15px;
    right: -15px;
}

@media only screen and (max-width: 1366px) {
    .olima_place_v1 .place_row .place_about_box .place_count_box .single_count:after {
        right: -11px;
    }
}

.olima_place_v1 .place_row .place_about_box .place_count_box .single_count:last-child {
    margin-right: 0;
}

.olima_place_v1 .place_row .place_about_box .place_count_box .single_count h3 {
    color: #8b3eea;
    font-family: "Roboto";
}

.olima_place_v1 .place_row .place_about_box .place_count_box .single_count span {
    color: rgba(102, 102, 102, 0.7);
    font-size: 14px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .olima_place_v1 .place_row .place_about_box .place_count_box .single_count span {
        font-size: 12px;
    }
}


/*------=================-----------
		Features css
--------=================---------*/

.rating li {
    display: inline-block;
}

.rating li i {
    color: #F7B717;
}

.post_button {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.categories_v1 .categories_slide {
    margin-left: -20px;
    margin-right: -20px;
}

.categories_v1 .categories_slide:hover .arrow {
    opacity: 1;
    visibility: visible;
}

.categories_v1 .categories_slide:hover .arrow.prev {
    left: 20px;
}

.categories_v1 .categories_slide:hover .arrow.next {
    right: 20px;
}

.categories_v1 .categories_slide .arrow {
    position: absolute;
    top: 42%;
    -webkit-transform: translateY(-42%);
    -moz-transform: translateY(-42%);
    -ms-transform: translateY(-42%);
    -o-transform: translateY(-42%);
    transform: translateY(-42%);
    cursor: pointer;
    z-index: 1;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    color: #374146;
    -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;
    opacity: 0;
    visibility: hidden;
}

.categories_v1 .categories_slide .arrow.prev {
    left: 0px;
}

.categories_v1 .categories_slide .arrow.next {
    right: 0px;
}

.categories_v1 .categories_slide .categories_box {
    border-radius: 3px;
    background: #f8f8f8;
    margin: 20px 20px 40px 20px;
    -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;
}

.categories_v1 .categories_slide .categories_box:hover {
    box-shadow: 0px 10px 30px rgba(14, 28, 57, 0.3);
}

@media (max-width: 767px) {
    .categories_v1 .categories_slide .categories_box {
        margin-bottom: 40px;
    }
    .categories_v1 .categories_slide .categories_box:first-child {
        margin-left: 20px;
        margin-right: 20px;
    }
    .categories_v1 .categories_slide .categories_box:last-child {
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media only screen and (min-width: 450px) and (max-width: 767px) {
    .categories_v1 .categories_slide .categories_box {
        margin-bottom: 40px;
    }
    .categories_v1 .categories_slide .categories_box:first-child {
        margin-left: 20px;
        margin-right: 20px;
    }
    .categories_v1 .categories_slide .categories_box:last-child {
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_v1 .categories_slide .categories_box {
        margin-bottom: 40px;
    }
    .categories_v1 .categories_slide .categories_box:first-child {
        margin-left: 20px;
        margin-right: 20px;
    }
    .categories_v1 .categories_slide .categories_box:last-child {
        margin-left: 20px;
        margin-right: 20px;
    }
}

.categories_v1 .categories_slide .categories_box .cat_img {
    position: relative;
    overflow: hidden;
}

@media (max-width: 767px) {
    .categories_v1 .categories_slide .categories_box .cat_img img {
        width: 100%;
    }
}

@media only screen and (min-width: 450px) and (max-width: 767px) {
    .categories_v1 .categories_slide .categories_box .cat_img img {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_v1 .categories_slide .categories_box .cat_img img {
        width: 100%;
    }
}

.categories_v1 .categories_slide .categories_box .cat_img .cat_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(35, 41, 44, 0.5);
}

.categories_v1 .categories_slide .categories_box .cat_img .cat_overlay .cat_content h5 {
    color: #fff;
}

.instagram_v1 .instagram_wrap {
    position: relative;
    margin-left: -5px;
    margin-right: -5px;
}

.instagram_v1 .instagram_wrap .gird_item {
    margin-left: 5px;
    margin-right: 5px;
}

.instagram_v1 .instagram_wrap .gird_item .post_img img {
    margin: auto;
}

.instagram_v1 .instagram_wrap .insta_wrap_box {
    position: absolute;
    top: 50%;
    left: 50%;
    max-height: 135px;
    max-width: 260px;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 5px solid rgba(255, 255, 255, 0.9);
    padding: 5px;
}

.instagram_v1 .instagram_wrap .insta_wrap_box .insta_content {
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.instagram_v2 .container-fluid {
    padding-left: 10%;
    padding-right: 10%;
}

.instagram_v2 .instagram_slide_v2 {
    position: relative;
    margin-bottom: -80px;
    margin-left: -5px;
    margin-right: -5px;
}

.instagram_v2 .instagram_slide_v2 .gird_item {
    margin-left: 5px;
    margin-right: 5px;
}

.instagram_v2 .instagram_slide_v2 .gird_item:hover .post_img .post_overlay .post_content .post_meta {
    visibility: visible;
    opacity: 1;
}

.instagram_v2 .instagram_slide_v2 .gird_item .post_img img {
    width: 100%;
}

.instagram_v2 .instagram_slide_v2 .gird_item .post_img .post_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.instagram_v2 .instagram_slide_v2 .gird_item .post_img .post_overlay .post_content {
    text-align: center;
}

.instagram_v2 .instagram_slide_v2 .gird_item .post_img .post_overlay .post_content .insta_icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
}

.instagram_v2 .instagram_slide_v2 .gird_item .post_img .post_overlay .post_content .post_meta {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    visibility: hidden;
    opacity: 0;
    transition: all .4s;
}

.instagram_v2 .instagram_slide_v2 .gird_item .post_img .post_overlay .post_content .post_meta span {
    display: inline-block;
    color: #fff;
    margin-left: 7px;
    margin-right: 7px;
}

.instagram_v2 .instagram_slide_v2 .gird_item .post_img .post_overlay .post_content .post_meta span:before {
    color: #fff;
}

.newsletter_v1 .section_title h3 {
    border-bottom: none;
}

.newsletter_v1 .newsletter_box .form_group {
    position: relative;
}

.newsletter_v1 .newsletter_box .form_group .form_control {
    padding: 20px;
    width: 100%;
    height: 70px;
    background: #fff;
    box-shadow: 0px 10px 40px rgba(14, 28, 57, 0.1);
    border-radius: 3px;
}

.newsletter_v1 .newsletter_box .form_group .submit_btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 70px;
    background: #8b3eea;
    color: #fff;
}

.olima_breadcrumb {
    padding: 120px 0;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .olima_breadcrumb {
        padding: 100px 0;
    }
}

@media (max-width: 767px) {
    .olima_breadcrumb {
        padding: 100px 0;
    }
}

.olima_breadcrumb .bg_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(35, 41, 44, 0.2);
}

.olima_breadcrumb .breadcrumb-title h1 {
    color: #fff;
    font-size: 48px;
    line-height: 70px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .olima_breadcrumb .breadcrumb-title {
        text-align: center;
    }
    .olima_breadcrumb .breadcrumb-title h1 {
        font-size: 42px;
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .olima_breadcrumb .breadcrumb-title {
        text-align: center;
    }
    .olima_breadcrumb .breadcrumb-title h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
}

.olima_breadcrumb .breadcrumb-link ul {
    float: right;
}

.olima_breadcrumb .breadcrumb-link ul li {
    display: inline-block;
    color: #fff;
}

.olima_breadcrumb .breadcrumb-link ul li:after {
    display: inline-block;
    content: '\f061';
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    margin-left: 10px;
    margin-right: 7px;
}

.olima_breadcrumb .breadcrumb-link ul li:last-child:after {
    display: none;
}

.olima_breadcrumb .breadcrumb-link ul li.active {
    color: #fff;
}

.olima_breadcrumb .breadcrumb-link ul li a {
    color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .olima_breadcrumb .breadcrumb-link ul {
        float: none;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .olima_breadcrumb .breadcrumb-link ul {
        float: none;
        text-align: center;
    }
}

.olima_pagination ul li {
    display: inline-block;
    margin-right: 8px;
}

.olima_pagination ul li.active a {
    background: #8b3eea;
    color: #fff;
    border-color: transparent;
}

.olima_pagination ul li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid rgba(35, 41, 44, 0.2);
    border-radius: 5px;
    transition: all .3s;
}

.olima_pagination ul li a:hover,
.olima_pagination ul li a:focus {
    background: #8b3eea;
    color: #fff;
    border-color: transparent;
}

.olima_404 .error_content img {
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .olima_404 .error_content img {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .olima_404 .error_content img {
        width: 100%;
    }
}

.olima_404 .error_content h2 {
    margin-bottom: 30px;
}


/*------=================-----------
		Olima_video css
--------=================---------*/

@media (max-width: 767px) {
    .video_v1 {
        padding: 70px 0 120px;
    }
}

.video_v1 .section_title {
    margin-bottom: 130px;
}

.video_v1 .video_slide_v1 {
    margin-left: 23px;
    margin-right: 25px;
}

.video_v1 .video_slide_v1 .arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    cursor: pointer;
}

.video_v1 .video_slide_v1 .arrow span {
    font-size: 18px;
}

.video_v1 .video_slide_v1 .arrow.next {
    right: 10%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .video_v1 .video_slide_v1 .arrow.next {
        right: 15%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .video_v1 .video_slide_v1 .arrow.next {
        right: 15%;
    }
}

.video_v1 .video_slide_v1 .arrow.next span i {
    margin-left: 10px;
}

.video_v1 .video_slide_v1 .arrow.prev {
    left: 10%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .video_v1 .video_slide_v1 .arrow.prev {
        left: 15%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .video_v1 .video_slide_v1 .arrow.prev {
        left: 15%;
    }
}

.video_v1 .video_slide_v1 .arrow.prev span i {
    margin-right: 10px;
}

.video_v1 .video_slide_v1 .arrow span {
    color: #fff;
}

.video_v1 .video_slide_v1 .slick-list {
    overflow: visible;
}

.video_v1 .video_slide_v1 .grid_item {
    margin-left: 23px;
    margin-right: 25px;
    -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;
}

.video_v1 .video_slide_v1 .grid_item .post_img .post_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(35, 41, 44, 0.5);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.video_v1 .video_slide_v1 .grid_item .post_img .post_overlay .play_button {
    width: 85px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 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;
}

@media (max-width: 767px) {
    .video_v1 .video_slide_v1 .grid_item .post_img .post_overlay .play_button {
        width: 60px;
        height: 60px;
        transform: translate(-50%, -50%) scale(0.5);
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .video_v1 .video_slide_v1 .grid_item .post_img .post_overlay .play_button {
        width: 80px;
        height: 80px;
        transform: translate(-50%, -50%) scale(0.5);
    }
}

.video_v1 .video_slide_v1 .grid_item .post_img .post_overlay .play_button .play_btn {
    width: 75px;
    height: 50px;
    background: rgba(255, 255, 255, 0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .video_v1 .video_slide_v1 .grid_item .post_img .post_overlay .play_button .play_btn {
        width: 40px;
        height: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .video_v1 .video_slide_v1 .grid_item .post_img .post_overlay .play_button .play_btn {
        width: 60px;
        height: 60px;
    }
}

.video_v1 .video_slide_v1 .grid_item .post_img .post_overlay .post_content {
    visibility: hidden;
    opacity: 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;
}

.video_v1 .video_slide_v1 .grid_item .post_img .post_overlay .post_content h3 {
    font-size: 14px;
    color: #fff;
}

@media (max-width: 767px) {
    .video_v1 .video_slide_v1 .grid_item .post_img .post_overlay .post_content h3 {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .video_v1 .video_slide_v1 .grid_item .post_img .post_overlay .post_content h3 {
        display: none;
    }
}

.video_v1 .video_slide_v1 .grid_item.slick-center {
    position: relative;
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -ms-transform: scale(1.6);
    -o-transform: scale(1.6);
    transform: scale(1.6);
    z-index: 1;
}

@media (max-width: 767px) {
    .video_v1 .video_slide_v1 .grid_item.slick-center {
        -webkit-transform: scale(2.4);
        -moz-transform: scale(2.4);
        -ms-transform: scale(2.4);
        -o-transform: scale(2.4);
        transform: scale(2.4);
    }
}

.video_v1 .video_slide_v1 .grid_item.slick-center:after {
    position: absolute;
    bottom: -10px;
    content: '';
    width: 290px;
    height: 210px;
    border-radius: 3px;
    background: #f8f8f8;
    box-shadow: 0px 10px 40px rgba(14, 28, 57, 0.3);
    left: 8px;
    z-index: -1;
}

@media (max-width: 767px) {
    .video_v1 .video_slide_v1 .grid_item.slick-center:after {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .video_v1 .video_slide_v1 .grid_item.slick-center:after {
        display: none;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .video_v1 .video_slide_v1 .grid_item.slick-center:after {
        width: 210px;
        height: 150px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.video_v1 .video_slide_v1 .grid_item.slick-center .post_img .post_overlay .play_button {
    visibility: visible;
    opacity: 1;
}

.video_v1 .video_slide_v1 .grid_item.slick-center .post_img .post_overlay .post_content {
    visibility: visible;
    opacity: 1;
}

.video_v2 {
    position: relative;
}

.video_v2 .olima_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00005A;
    opacity: .75;
}

.video_v2 .section_title h3 {
    border-bottom: none;
    color: #fff;
    padding-bottom: 0;
}

.video_v2 .section_title p {
    color: #fff;
}

.video_v2 .video_slide_v2 .grid_item.swiper-slide-active .post_img .post_overlay .play_button {
    visibility: visible;
    opacity: 1;
}

.video_v2 .video_slide_v2 .grid_item.swiper-slide-active .post_img .post_overlay .post_content {
    visibility: visible;
    opacity: 1;
}

.video_v2 .video_slide_v2 .grid_item .post_img {
    width: 100%;
    height: 100%;
}

.video_v2 .video_slide_v2 .grid_item .post_img .post_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.4);
}

.video_v2 .video_slide_v2 .grid_item .post_img .post_overlay .play_button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
}

.video_v2 .video_slide_v2 .grid_item .post_img .post_overlay .play_button .play_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    color: #fff;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 3px;
}

@media (max-width: 767px) {
    .video_v2 .video_slide_v2 .grid_item .post_img .post_overlay .play_button .play_btn {
        width: 50px;
        height: 50px;
    }
}

.video_v2 .video_slide_v2 .grid_item .post_img .post_overlay .post_content {
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
}

.video_v2 .video_slide_v2 .grid_item .post_img .post_overlay .post_content h3 {
    font-size: 18px;
    color: #fff;
    -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;
}

.video_v2 .video_slide_v2 .grid_item .post_img .post_overlay .post_content h3:hover {
    color: #8b3eea;
}

@media (max-width: 767px) {
    .video_v2 .video_slide_v2 .grid_item .post_img .post_overlay .post_content h3 {
        font-size: 14px;
    }
}

@media only screen and (min-width: 450px) and (max-width: 767px) {
    .video_v2 .video_slide_v2 .grid_item .post_img .post_overlay .post_content h3 {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .video_v2 .video_slide_v2 .video_slide_v2_nav {
        display: none;
    }
}

.video_v2 .video_slide_v2 .video_slide_v2_nav .swiper-button-next {
    right: 25%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .video_v2 .video_slide_v2 .video_slide_v2_nav .swiper-button-next {
        right: 15%;
    }
}

.video_v2 .video_slide_v2 .video_slide_v2_nav .swiper-button-next span i {
    margin-left: 20px;
}

.video_v2 .video_slide_v2 .video_slide_v2_nav .swiper-button-prev {
    left: 25%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .video_v2 .video_slide_v2 .video_slide_v2_nav .swiper-button-prev {
        left: 15%;
    }
}

.video_v2 .video_slide_v2 .video_slide_v2_nav .swiper-button-prev span i {
    margin-right: 20px;
}

.video_v2 .video_slide_v2 .video_slide_v2_nav .swiper-button-next span,
.video_v2 .video_slide_v2 .video_slide_v2_nav .swiper-button-prev span {
    color: #fff;
}

.video_v2 .video_slide_v2 .video_slide_v2_nav .swiper-button-next:after,
.video_v2 .video_slide_v2 .video_slide_v2_nav .swiper-button-prev:after {
    display: none;
}

.video_v3 {
    position: relative;
}

.video_v3 .bg_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .90;
}

.video_v3 .section_title h3 {
    color: #fff;
}

.video_v3 .grid_item {
    margin-bottom: 20px;
}

.video_v3 .grid_item .post_img .post_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video_v3 .grid_item .post_img .post_overlay .play_bitton {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.video_v3 .grid_item .post_img .post_overlay .play_bitton .play_btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #EA7026;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

@media (max-width: 767px) {
    .video_v3 .grid_item .post_img .post_overlay .play_bitton .play_btn {
        width: 60px;
        height: 60px;
    }
}

.video_v3 .grid_item .post_img .post_overlay .play_bitton .play_btn:after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(234, 112, 38, 0.3);
    margin-left: -65px;
    margin-top: -65px;
    z-index: -1;
}

@media (max-width: 767px) {
    .video_v3 .grid_item .post_img .post_overlay .play_bitton .play_btn:after {
        width: 80px;
        height: 80px;
        margin-left: -40px;
        margin-top: -40px;
    }
}

.video_v3 .grid_item .post_img .post_overlay .post_content {
    position: absolute;
    bottom: 30px;
    left: 30px;
}

@media (max-width: 767px) {
    .video_v3 .grid_item .post_img .post_overlay .post_content {
        display: none;
    }
}

.video_v3 .grid_item .post_img .post_overlay .post_content .tag {
    color: #EA7026;
}

.video_v3 .grid_item .post_img .post_overlay .post_content h3 {
    color: #fff;
    -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;
}

.video_v3 .grid_item .post_img .post_overlay .post_content h3:hover {
    color: #FF7200;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .video_v3 .grid_item .post_img .post_overlay .post_content h3 {
        font-size: 20px;
        line-height: 30px;
    }
}

.video_v3 .grid_item.grid_post_big {
    border: 1px solid #535353;
    padding: 25px 20px;
}

.video_v3 .video_play_list .grid_item {
    cursor: pointer;
}

@media (max-width: 767px) {
    .video_v3 .video_play_list .grid_item {
        flex-wrap: wrap;
    }
}

.video_v3 .video_play_list .grid_item .post_img {
    max-width: 170px;
    min-width: 170px;
    max-height: 100px;
    width: 100%;
    height: 100%;
}

.video_v3 .video_play_list .grid_item .post_img .play_bitton .play_btn {
    width: 35px;
    height: 35px;
    font-size: 12px;
}

.video_v3 .video_play_list .grid_item .post_img .play_bitton .play_btn:after {
    width: 50px;
    height: 50px;
    margin-left: -25px;
    margin-top: -25px;
}

.video_v3 .video_play_list .grid_item .post_content {
    margin-left: 20px;
    padding-right: 7px;
}

@media (max-width: 767px) {
    .video_v3 .video_play_list .grid_item .post_content {
        margin-left: 0px;
        margin-top: 20px;
    }
}

.video_v3 .video_play_list .grid_item .post_content .tag {
    color: #fff;
}

.video_v3 .video_play_list .grid_item .post_content h3 {
    font-size: 18px;
    line-height: 30px;
    color: #fff;
    -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;
}

.video_v3 .video_play_list .grid_item .post_content h3:hover {
    color: #FF7200;
}

@media (max-width: 767px) {
    .video_v3 .video_play_list .grid_item .post_content h3 {
        font-size: 14px;
        line-height: 24px;
    }
}

@media only screen and (min-width: 400px) and (max-width: 449px) {
    .video_v3 .video_play_list .grid_item .post_content h3 {
        font-size: 16px;
        line-height: 26px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .video_v3 .video_play_list .grid_item .post_content h3 {
        font-size: 15px;
        line-height: 26px;
    }
}

@media only screen and (min-width: 450px) and (max-width: 767px) {
    .video_v3 .video_play_list .grid_item .post_content h3 {
        font-size: 19px;
        line-height: 30px;
    }
}


/*------=================-----------
			Post css
--------=================---------*/

@media (max-width: 767px) {
    .post_img img {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .post_img img {
        width: 100%;
    }
}

.post_img {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}

.post_meta span {
    display: inline-block;
}

.post_meta span:before {
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-size: 18px;
    color: #8b3eea;
    margin-right: 10px;
}

.post_meta span.eye:before {
    content: '\f06e';
}

.post_meta span.love:before {
    content: '\f004';
}

.post_meta span.comment:before {
    content: '\f086';
}

.post_meta span.calender:before {
    content: '\f073';
}

.post_meta span.time:before {
    content: '\f017';
}

.post_meta span.user:before {
    content: '\f007';
}

.btn_link {
    display: inline-block;
    font-weight: 500;
}

.btn_link:after {
    content: "\f100";
    font-family: 'Flaticon';
    font-weight: 400;
    font-size: 20px;
    margin-left: 15px;
    vertical-align: middle;
}

.post_tag {
    position: absolute;
    top: 20px;
    left: 0;
}

.post_tag a {
    display: inline-block;
    margin-right: 5px;
}

.cat_btn {
    display: inline-block;
    font-size: 16px;
    color: #8b3eea;
    padding: 6px 20px;
    background: #fff;
    text-transform: uppercase;
    border-radius: 0 3px 3px 0px;
}

.love_btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #fff;
    color: #8b3eea;
    border-radius: 3px;
}


/*------=================-----------
		latest_post css
--------=================---------*/

.latest_post_v1 .grid_item {
    -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;
}

.latest_post_v1 .grid_item:hover {
    border-radius: 0px 0px 3px 3px;
    background: #fff;
    box-shadow: 0px 10px 40px rgba(0, 18, 88, 0.1);
}

.latest_post_v1 .grid_item:hover .post_img .post_overlay {
    opacity: 1;
    visibility: visible;
}

.latest_post_v1 .grid_item:hover .post_content {
    padding: 20px 30px;
}

.latest_post_v1 .grid_item .post_img img {
    width: 100%;
}

.latest_post_v1 .grid_item .post_img .post_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(35, 41, 44, 0.5);
    visibility: hidden;
    opacity: 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;
}

.latest_post_v1 .grid_item .post_content {
    padding: 20px 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;
}

.latest_post_v1 .grid_item .post_content h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 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;
}

.latest_post_v1 .grid_item .post_content h3:hover {
    color: #000;
}

.latest_post_v1 .grid_item .post_content .post_meta span {
    margin-right: 10px;
}

.latest_post_v1 .grid_item.grid_post_big .post_img .post_overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 10px;
    max-width: 580px;
    max-height: 290px;
    width: 100%;
    height: 100%;
    background: transparent;
    border: 10px solid rgba(255, 255, 255, 0.7);
    visibility: visible;
    opacity: 1;
}

.latest_post_v1 .grid_item.grid_post_big .post_img .post_overlay .post_content {
    padding: 40px 50px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
}

@media only screen and (min-width: 450px) and (max-width: 767px) {
    .latest_post_v1 .grid_item.grid_post_big .post_img .post_overlay .post_content {
        padding: 20px 30px;
    }
}

@media (max-width: 767px) {
    .latest_post_v1 .grid_item.grid_post_big .post_img .post_overlay .post_content {
        padding: 0;
    }
}

@media only screen and (min-width: 400px) and (max-width: 449px) {
    .latest_post_v1 .grid_item.grid_post_big .post_img .post_overlay .post_content {
        padding: 10px;
    }
}

.latest_post_v1 .grid_item.grid_post_big .post_img .post_overlay .post_content .cat_btn {
    margin-bottom: 10px;
    display: block;
}

.latest_post_v1 .grid_item.grid_post_big .post_img .post_overlay .post_content h3 {
    font-size: 30px;
    margin-bottom: 7px;
}

@media (max-width: 767px) {
    .latest_post_v1 .grid_item.grid_post_big .post_img .post_overlay .post_content h3 {
        font-size: 18px;
        line-height: 24px;
    }
}

.latest_post_v1 .grid_item.grid_post_big .post_img .post_overlay .post_content .post_meta span {
    margin-left: 10px;
    margin-right: 10px;
}

.latest_post_v2 .grid_item .post_content {
    background: #F1FCFD;
    padding: 35px 20px;
}

.latest_post_v2 .grid_item .post_content h3 {
    font-size: 24px;
    line-height: 36px;
    -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;
}

.latest_post_v2 .grid_item .post_content h3:hover,
.latest_post_v2 .grid_item .post_content h3:focus {
    color: #FF7200;
}

@media (max-width: 767px) {
    .latest_post_v2 .grid_item .post_content h3 {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (max-width: 767px) {
    .latest_post_v2 .grid_item .post_content h3 {
        font-size: 20px;
        line-height: 29px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .latest_post_v2 .grid_item .post_content h3 {
        font-size: 20px;
        line-height: 29px;
    }
}

.latest_post_v2 .grid_item .post_content p {
    padding-top: 10px;
}

.latest_post_v2 .grid_item .post_content .btn_link {
    padding-top: 35px;
}

.latest_post_v2 .grid_item .post_content .post_meta {
    margin-bottom: 15px;
}

.latest_post_v2 .grid_item .post_content .post_meta .tag_btn {
    padding: 0 10px;
    background: #FF7200;
    color: #fff;
    line-height: 21px;
    margin-right: 10px;
}

.latest_post_v2 .sidebar_v1 .widget_box h4 {
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.latest_post_v2 .sidebar_v1 .widget_box h4:before {
    position: absolute;
    bottom: -2.5px;
    left: 0;
    content: '';
    width: 70px;
    height: 5px;
    background: #ea7026;
}

.latest_post_v2 .sidebar_v1 .widget_box h4:after {
    position: absolute;
    bottom: -10px;
    left: 30px;
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid #ea7026;
}

.latest_post_v2 .sidebar_v1 .widget_box.about_box {
    padding-bottom: 10px;
}

.latest_post_v2 .sidebar_v1 .widget_box.about_box .about_img {
    width: 180px;
    height: 180px;
    background: #fff;
    border-color: #ddd;
    position: relative;
    margin-bottom: 15px;
}

.latest_post_v2 .sidebar_v1 .widget_box.about_box .about_img img {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 160px;
}

.latest_post_v2 .sidebar_v1 .widget_box.about_box .about_content h4 {
    border-bottom: none;
    margin-bottom: 0;
}

.latest_post_v2 .sidebar_v1 .widget_box.about_box .about_content h4:before,
.latest_post_v2 .sidebar_v1 .widget_box.about_box .about_content h4:after {
    display: none;
    margin-bottom: 0;
}

.latest_post_v2 .sidebar_v1 .widget_box.about_box .about_content span {
    color: #FF7200;
    margin-bottom: 10px;
    display: block;
}

.latest_post_v2 .sidebar_v1 .widget_box.about_box .about_content img {
    margin-bottom: 15px;
}

.latest_post_v2 .sidebar_v1 .widget_box.about_box .about_content .social_link li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #FF7200;
    color: #fff;
    border-radius: 50%;
}

.latest_post_v2 .sidebar_v1 .widget_box.featured_post .single_post {
    background: transparent;
    padding: 0;
}

.latest_post_v2 .sidebar_v1 .widget_box.featured_post .single_post .post_img {
    max-width: 120px;
    min-width: 120px;
    width: 100%;
}

.latest_post_v2 .sidebar_v1 .widget_box.featured_post .single_post .post_content h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #23292C;
    margin-bottom: 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;
}

.latest_post_v2 .sidebar_v1 .widget_box.featured_post .single_post .post_content h3:hover,
.latest_post_v2 .sidebar_v1 .widget_box.featured_post .single_post .post_content h3:focus {
    color: #FF7200;
}

@media (max-width: 767px) {
    .latest_post_v2 .sidebar_v1 .widget_box.featured_post .single_post .post_content h3 {
        font-size: 12px;
        line-height: 24px;
    }
}

@media only screen and (min-width: 400px) and (max-width: 449px) {
    .latest_post_v2 .sidebar_v1 .widget_box.featured_post .single_post .post_content h3 {
        font-size: 14px;
        line-height: 24px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .latest_post_v2 .sidebar_v1 .widget_box.featured_post .single_post .post_content h3 {
        font-size: 12px;
        line-height: 22px;
    }
}

.latest_post_v2 .sidebar_v1 .widget_box.featured_post .single_post .post_content .date {
    padding: 4px 13px;
    background: rgba(234, 112, 38, 0.1);
    border-radius: 50px;
    display: inline-block;
    color: #EA7026;
}

@media (max-width: 767px) {
    .latest_post_v2 .sidebar_v1 .widget_box.featured_post .single_post .post_content .date {
        padding: 0px 13px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .latest_post_v2 .sidebar_v1 .widget_box.featured_post .single_post .post_content .date {
        padding: 0px 13px;
    }
}

.latest_post_v2 .sidebar_v1 .widget_box.newsletter_widget {
    background: transparent;
    text-align: left;
    padding: 0;
}

.latest_post_v2 .sidebar_v1 .widget_box.newsletter_widget .form_group {
    position: relative;
}

.latest_post_v2 .sidebar_v1 .widget_box.newsletter_widget .form_group .form_control {
    text-align: left;
    padding: 20px;
    background: #F6F6F6;
    border: none;
    border-radius: 0;
}

.latest_post_v2 .sidebar_v1 .widget_box.newsletter_widget .form_group .olima_btn {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 130px;
    padding: 11px 25px;
    border-radius: 0;
    background: #FF7200;
}

.latest_post_v2 .sidebar_v1 .widget_box.archive_widget ul li {
    line-height: 30px;
    margin-bottom: 20px;
}

.latest_post_v2 .sidebar_v1 .widget_box.archive_widget ul li a {
    color: #374146;
}

.latest_post_v2 .sidebar_v1 .widget_box.archive_widget ul li a span {
    float: right;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #FF7200;
}

.latest_post_v2 .sidebar_v1 .widget_box.social_widget .social_link li a {
    width: 85px;
    height: 85px;
    font-size: 24px;
}

@media (max-width: 767px) {
    .latest_post_v2 .sidebar_v1 .widget_box.social_widget .social_link li a {
        width: 55px;
        height: 55px;
        font-size: 18px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .latest_post_v2 .sidebar_v1 .widget_box.social_widget .social_link li a {
        width: 55px;
        height: 55px;
        font-size: 18px;
    }
}

.latest_post_v2 .button_box .load-btn {
    padding: 15px 65px;
    color: #374146;
    font-size: 18px;
    font-weight: 500;
    border: 1px solid #666666;
    transition: all .3s;
}

.latest_post_v2 .button_box .load-btn:hover,
.latest_post_v2 .button_box .load-btn:focus {
    background: #FF7200;
    color: #fff;
    border-color: #FF7200;
}

.latest_post_v2 .button_box .load-btn i {
    margin-right: 10px;
}


/*------=================-----------
		features post css
--------=================---------*/

.features_post_v1 .section_title.section_title_2:after {
    bottom: -9px;
}

@media (max-width: 767px) {
    .features_post_v1 .grid_item {
        flex-wrap: wrap;
    }
}

.features_post_v1 .grid_item .post_img {
    max-width: 170px;
    min-width: 170px;
    width: 100%;
}

.features_post_v1 .grid_item .post_content {
    margin-left: 30px;
}

@media (max-width: 767px) {
    .features_post_v1 .grid_item .post_content {
        margin-left: 0px;
        margin-top: 20px;
    }
}

.features_post_v1 .grid_item .post_content h3 {
    font-size: 20px;
    line-height: 30px;
    -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;
}

.features_post_v1 .grid_item .post_content h3:hover,
.features_post_v1 .grid_item .post_content h3:focus {
    color: #FF7200;
}

@media (max-width: 767px) {
    .features_post_v1 .grid_item .post_content h3 {
        font-size: 16px;
        line-height: 26px;
    }
}

@media only screen and (min-width: 400px) and (max-width: 449px) {
    .features_post_v1 .grid_item .post_content h3 {
        font-size: 18px;
        line-height: 28px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .features_post_v1 .grid_item .post_content h3 {
        font-size: 16px;
        line-height: 26px;
    }
}

.features_post_v1 .grid_item .post_content .post_meta {
    padding-top: 10px;
}

.features_post_v1 .grid_item .post_content .post_meta .date {
    display: inline-block;
    padding: 0 10px;
    background: #FF7200;
    line-height: 28px;
    color: #fff;
    border-radius: 12px;
}

.features_post_v1 .grid_item.grid_post_big {
    display: block;
}

.features_post_v1 .grid_item.grid_post_big .post_img {
    max-width: 100%;
    min-width: 100%;
    width: 100%;
}

.features_post_v1 .grid_item.grid_post_big .post_content {
    margin-left: 30px;
}

@media (max-width: 767px) {
    .features_post_v1 .grid_item.grid_post_big .post_content {
        margin-left: 0px;
        margin-top: 0px;
    }
}

.features_post_v1 .grid_item.grid_post_big .post_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.34) 34%, black 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(34%, rgba(0, 0, 0, 0.34)), color-stop(100%, black));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.34) 34%, black 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.34) 34%, black 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.34) 34%, black 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.34) 34%, black 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

@media (max-width: 767px) {
    .features_post_v1 .grid_item.grid_post_big .post_overlay {
        padding: 20px;
    }
}

@media only screen and (min-width: 450px) and (max-width: 767px) {
    .features_post_v1 .grid_item.grid_post_big .post_overlay {
        padding: 30px;
    }
}

.features_post_v1 .grid_item.grid_post_big .post_overlay .post_content {
    margin-left: 0;
}

.features_post_v1 .grid_item.grid_post_big .post_overlay .post_content h3 {
    color: #fff;
    font-size: 24px;
    line-height: 36px;
    -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;
}

.features_post_v1 .grid_item.grid_post_big .post_overlay .post_content h3:hover,
.features_post_v1 .grid_item.grid_post_big .post_overlay .post_content h3:focus {
    color: #FF7200;
}

@media (max-width: 767px) {
    .features_post_v1 .grid_item.grid_post_big .post_overlay .post_content h3 {
        font-size: 16px;
        line-height: 26px;
    }
}

@media only screen and (min-width: 400px) and (max-width: 449px) {
    .features_post_v1 .grid_item.grid_post_big .post_overlay .post_content h3 {
        font-size: 18px;
        line-height: 28px;
    }
}

.features_post_v1 .grid_item.grid_post_big .post_overlay .post_content .post_meta {
    padding-top: 0;
    margin-bottom: 15px;
}

.features_post_v1 .grid_item.grid_post_big .post_overlay .post_content .post_meta span {
    color: #fff;
}

.features_post_v1 .grid_item.grid_post_big .post_overlay .post_content .post_meta .tag_btn {
    padding: 3px 10px;
    background: #FF7200;
    color: #fff;
    line-height: 21px;
    margin-right: 10px;
}

.features_post_v2 .grid_item .post_content .post_meta {
    padding-top: 0;
    padding-bottom: 15px;
}

.features_post_v2 .grid_item .post_content .post_meta .date {
    border-radius: 3px;
}

.features_post_v2 .grid_item.grid_post_big .post_img {
    min-width: 270px;
    max-width: 270px;
    width: 100%;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .features_post_v2 .grid_item.grid_post_big .post_img {
        min-width: 220px;
        max-width: 220px;
    }
}

.features_post_v2 .grid_item.grid_post_big .post_img .date {
    position: absolute;
    bottom: 20px;
    left: 40px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 0px 20px 0px 30px;
    border-radius: 3px;
}

.features_post_v2 .grid_item.grid_post_big .post_img .date:after {
    position: absolute;
    left: -17px;
    top: -4px;
    content: '\f030';
    font-weight: 600;
    font-family: 'Font Awesome 5 Free';
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    background: #FF7200;
    color: #fff;
    text-align: center;
}

@media (max-width: 767px) {
    .features_post_v2 .grid_item.grid_post_big .post_content {
        margin-top: 20px;
    }
}

.features_post_v2 .grid_item.grid_post_big .post_content h3 {
    margin-bottom: 15px;
}


/*------=================-----------
		vagetarian_v1 css
--------=================---------*/

.vagetarian_v1 .button_box {
    float: right;
}

@media (max-width: 767px) {
    .vagetarian_v1 .button_box {
        margin-bottom: 60px;
        float: none;
    }
}

.vagetarian_v1 .button_box .olima_btn {
    display: inline-block;
    padding: 12px 30px;
    color: #8b3eea;
    border: 1px solid #8b3eea;
    border-radius: 3px;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.vagetarian_v1 .button_box .olima_btn:hover,
.vagetarian_v1 .button_box .olima_btn:focus {
    background: #374146;
    color: #fff;
    border-color: #374146;
}

.vagetarian_v1 .grid_item,
.trending_v1 .grid_item {
    position: relative;
    border-radius: 3px;
}

.vagetarian_v1 .grid_item:hover .post_img .post_overlay .post_tag,
.trending_v1 .grid_item:hover .post_img .post_overlay .post_tag {
    visibility: visible;
    opacity: 1;
}

.vagetarian_v1 .grid_item .post_img img,
.trending_v1 .grid_item .post_img img {
    width: 100%;
}

.vagetarian_v1 .grid_item .post_img .post_overlay,
.trending_v1 .grid_item .post_img .post_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59.75%, rgba(0, 0, 0, 0.6) 100%);
}

.vagetarian_v1 .grid_item .post_img .post_overlay .post_tag,
.trending_v1 .grid_item .post_img .post_overlay .post_tag {
    opacity: 0;
    visibility: hidden;
    -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;
}

.vagetarian_v1 .grid_item .post_img .post_overlay .post_content,
.trending_v1 .grid_item .post_img .post_overlay .post_content {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.vagetarian_v1 .grid_item .post_img .post_overlay .post_content h3,
.trending_v1 .grid_item .post_img .post_overlay .post_content h3 {
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    margin-bottom: 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;
}

.vagetarian_v1 .grid_item .post_img .post_overlay .post_content h3:hover,
.trending_v1 .grid_item .post_img .post_overlay .post_content h3:hover {
    color: #8b3eea;
}

@media (max-width: 767px) {
    .vagetarian_v1 .grid_item .post_img .post_overlay .post_content h3,
    .trending_v1 .grid_item .post_img .post_overlay .post_content h3 {
        font-size: 18px;
        line-height: 24px;
    }
}

.vagetarian_v1 .grid_item .post_img .post_overlay .post_content .post_meta span,
.trending_v1 .grid_item .post_img .post_overlay .post_content .post_meta span {
    color: #fff;
    margin-right: 15px;
}

.olima_highlights_post .section_title h3 {
    padding-bottom: 0;
    margin-bottom: 0;
}

.olima_highlights_post .post_filter {
    position: relative;
    text-align: right;
    width: 100%;
}

@media (max-width: 767px) {
    .olima_highlights_post .post_filter {
        text-align: left;
        margin-bottom: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .olima_highlights_post .post_filter {
        text-align: left;
        margin-bottom: 40px;
    }
}

.olima_highlights_post .post_filter:after {
    display: block;
    content: '';
    width: 100%;
    height: 1px;
    background: #ddd;
    margin-top: 15px;
}

.olima_highlights_post .post_filter .filter_btn {
    position: relative;
    transition: all .3s;
    margin-left: 40px;
    font-size: 20px;
    background: transparent;
}

@media (max-width: 767px) {
    .olima_highlights_post .post_filter .filter_btn {
        margin-left: 0px;
        margin-right: 15px;
        font-size: 16px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .olima_highlights_post .post_filter .filter_btn {
        margin-left: 0px;
        margin-right: 15px;
        font-size: 16px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .olima_highlights_post .post_filter .filter_btn {
        margin-left: 30px;
        font-size: 18px;
    }
}

.olima_highlights_post .post_filter .filter_btn:after {
    display: block;
    content: '';
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: #FF7200;
    position: absolute;
    bottom: -19px;
    left: 0;
    visibility: hidden;
    opacity: 1;
    transition: all .3s;
}

@media (max-width: 767px) {
    .olima_highlights_post .post_filter .filter_btn:after {
        display: none;
    }
}

.olima_highlights_post .post_filter .filter_btn.active_btn:after,
.olima_highlights_post .post_filter .filter_btn:hover:after,
.olima_highlights_post .post_filter .filter_btn:focus:after {
    visibility: visible;
    opacity: 1;
}

.olima_highlights_post .grid_item .post_img .date {
    position: absolute;
    bottom: 20px;
    left: 40px;
    background: #000;
    color: #fff;
    padding: 0 20px 0 30px;
    border-radius: 5px;
}

.olima_highlights_post .grid_item .post_img .date:before {
    position: absolute;
    left: -17px;
    top: -4px;
    content: '\f030';
    font-weight: 600;
    font-family: 'Font Awesome 5 Free';
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    background: #FF7200;
    color: #fff;
    text-align: center;
}

.olima_highlights_post .grid_item .post_content {
    margin-top: 12px;
}

.olima_highlights_post .grid_item .post_content h3 {
    font-size: 20px;
    line-height: 30px;
    -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;
}

.olima_highlights_post .grid_item .post_content h3:hover,
.olima_highlights_post .grid_item .post_content h3:focus {
    color: #FF7200;
}

.blog_v3 .grid_item .post_content {
    background: #F8F8F8;
    padding: 30px;
    margin-top: -100px;
    position: relative;
    margin-left: 30px;
    margin-right: 30px;
}

@media (max-width: 767px) {
    .blog_v3 .grid_item .post_content {
        margin-left: 10px;
        margin-right: 10px;
    }
}

.blog_v3 .grid_item .post_content h3 {
    font-size: 24px;
    line-height: 36px;
    -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_v3 .grid_item .post_content h3:hover {
    color: #FF7200;
}

@media (max-width: 767px) {
    .blog_v3 .grid_item .post_content h3 {
        font-size: 20px;
        line-height: 30px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .blog_v3 .grid_item .post_content h3 {
        font-size: 20px;
        line-height: 30px;
    }
}

.blog_v3 .grid_item .post_content .post_meta .date {
    display: block;
    margin-bottom: 5px;
    color: #EA7026;
    padding-bottom: 10px;
}

.blog_v3 .grid_item .post_content .post_meta .date:after {
    display: block;
    content: '';
    width: 60px;
    height: 1px;
    background: #EA7026;
}

.blog_v4 .grid_item .post_img .date {
    position: absolute;
    top: 0;
    left: 20px;
    display: inline-block;
    padding: 5px 20px;
    background: #EA7026;
    color: #fff;
    border-radius: 0 0 3px 3px;
}

.blog_v4 .grid_item .post_content {
    position: relative;
    margin-top: -45px;
    padding: 20px;
    background: #fff;
    box-shadow: 3px 5.2px 50px rgba(37, 37, 37, 0.05);
    margin-left: 20px;
    margin-right: 20px;
}

.blog_v4 .grid_item .post_content h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 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_v4 .grid_item .post_content h3:hover {
    color: #FF7200;
}

@media (max-width: 767px) {
    .blog_v4 .grid_item .post_content h3 {
        font-size: 16px;
        line-height: 26px;
    }
}

@media only screen and (min-width: 450px) and (max-width: 767px) {
    .blog_v4 .grid_item .post_content h3 {
        font-size: 18px;
        line-height: 30px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .blog_v4 .grid_item .post_content h3 {
        font-size: 16px;
        line-height: 26px;
    }
}

.blog_v4 .grid_item .post_content .post_meta img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.blog_v4 .grid_item .post_content .post_meta span {
    margin-left: 20px;
}

.blog_v4 .olima_pagination ul li a {
    -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_v4 .olima_pagination ul li a:hover {
    background: #FF7200;
}

@media only screen and (min-width: 450px) and (max-width: 767px) {
    .post_content h3 {
        font-size: 20px;
        line-height: 30px;
    }
}

@media (max-width: 767px) {
    .post_content h3 {
        font-size: 18px;
        line-height: 24px;
    }
}


/*------=================-----------
	Olima Testimonial css
--------=================---------*/

.olima_testimonial .button_box {
    float: right;
}

@media (max-width: 767px) {
    .olima_testimonial .button_box {
        float: none;
        text-align: left;
    }
}

.olima_testimonial .button_box .olima_btn {
    display: inline-block;
    padding: 11px 30px;
    font-size: 16px;
    border: 1px solid #8b3eea;
    border-radius: 3px;
    color: #374146;
    -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;
}

.olima_testimonial .button_box .olima_btn:hover,
.olima_testimonial .button_box .olima_btn:focus {
    background: #8b3eea;
    color: #fff;
    border-color: #8b3eea;
}

.olima_testimonial .testimonial_slide {
    margin-left: -15px;
    margin-right: -15px;
}

.olima_testimonial .testimonial_slide .slick-track {
    padding-top: 25px;
}

.olima_testimonial .testimonial_slide .testimonial_box {
    position: relative;
    padding: 50px 35px 40px;
    border: 1px solid #8b3eea;
    margin-left: 15px;
    margin-right: 15px;
}

.olima_testimonial .testimonial_slide .testimonial_box:after {
    position: absolute;
    right: 40px;
    bottom: 50px;
    color: #8b3eea;
    font-size: 60px;
    content: '\f10d';
    font-weight: 600;
    font-family: "Font Awesome 5 Free";
}

@media (max-width: 767px) {
    .olima_testimonial .testimonial_slide .testimonial_box:after {
        display: none;
    }
}

@media only screen and (min-width: 450px) and (max-width: 767px) {
    .olima_testimonial .testimonial_slide .testimonial_box:after {
        display: block;
    }
}

.olima_testimonial .testimonial_slide .testimonial_box .rating {
    position: absolute;
    top: -25px;
    left: 35px;
    display: inline-block;
    background: #F8F8F8;
    border: 1px solid #8b3eea;
    padding: 9px 46px;
}

.olima_testimonial .testimonial_slide .testimonial_box p {
    padding-bottom: 25px;
}

.olima_testimonial .testimonial_slide .testimonial_box .author_box img {
    display: inline-block;
    max-width: 70px;
    max-height: 70px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.olima_testimonial .testimonial_slide .testimonial_box .author_box span {
    font-weight: bold;
    color: #374146;
    font-size: 20px;
    margin-left: 25px;
}

.olima_sponsor .sponsor_slide {
    margin-left: -15px;
    margin-right: -15px;
}

.olima_sponsor .sponsor_slide .sponsor_box {
    background: #F8F8F8;
    margin-left: 15px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: 100%;
    min-height: 150px;
    max-height: 150px;
    height: 100%;
}


/*------=================-----------
		  Olima shop css
--------=================---------*/

.olima_shop .olima_pagination ul li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
}

.olima_shop .olima_pagination ul li a:hover,
.olima_shop .olima_pagination ul li a:focus {
    background: #FF7200;
}

.olima_shop .shop_filter {
    border: 2px solid #e1ecff;
    border-radius: 50px;
    padding: 35px 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .olima_shop .shop_filter {
        padding: 5px 10px;
    }
}

.olima_shop .shop_filter .nice-select {
    width: 100%;
    border: none;
    font-size: 20px;
    color: #42495B;
}

.olima_shop .shop_filter .nice-select:after {
    content: '\f067';
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    right: 0;
    transform: none;
    border: none;
    top: 0;
    margin-top: 0;
}

.olima_shop .shop_filter .nice-select .list {
    width: 100%;
    border-radius: 0;
    box-shadow: 0 0 0 1px #e1ecff;
    font-size: 16px;
}

@media (max-width: 767px) {
    .olima_shop .shop_filter .shop_result {
        margin: 10px 0 20px;
    }
}

.olima_shop .shop_filter .shop_result h5 {
    font-family: "Roboto";
    font-size: 20px;
    font-weight: normal;
}

.olima_shop .shop_filter .shop_result h5 i {
    margin-left: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .olima_shop .shop_filter .shop_result h5 {
        font-size: 11px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .olima_shop .shop_filter .shop_result h5 {
        font-size: 15px;
    }
}

.olima_shop .shop_filter .short_box ul li {
    display: inline-block;
    margin-left: 3px;
    margin-right: 3px;
}

.olima_shop .shop_filter .short_box ul li a {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 14px;
    -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;
}

.olima_shop .shop_filter .short_box ul li a:hover {
    color: #FF7200;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .olima_shop .shop_filter .short_box ul li a {
        width: 25px;
        height: 25px;
        line-height: 25px;
    }
}

.olima_shop .product_box:hover .product_img .product_overlay {
    opacity: 1;
    visibility: visible;
}

.olima_shop .product_box:hover .product_img .product_overlay .product_link a:nth-child(1) {
    transform: translateY(0px);
}

.olima_shop .product_box:hover .product_img .product_overlay .product_link a:nth-child(2) {
    transform: translateY(0px);
}

.olima_shop .product_box:hover .product_img .product_overlay .product_link a:nth-child(3) {
    transform: translateY(0px);
}

.olima_shop .product_box .product_img {
    position: relative;
    overflow: hidden;
}

.olima_shop .product_box .product_img img {
    width: 100%;
}

.olima_shop .product_box .product_img .product_overlay {
    position: absolute;
    bottom: 0;
    background: rgba(255, 115, 0, 0.8);
    left: 0;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    -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;
}

.olima_shop .product_box .product_img .product_overlay .product_link a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #fff;
    color: #FF7200;
    font-size: 14px;
    margin-left: 10px;
    margin-right: 10px;
}

.olima_shop .product_box .product_img .product_overlay .product_link a:nth-child(1) {
    transform: translateY(5px);
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -ms-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}

.olima_shop .product_box .product_img .product_overlay .product_link a:nth-child(2) {
    transform: translateY(7px);
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.olima_shop .product_box .product_img .product_overlay .product_link a:nth-child(3) {
    transform: translateY(10px);
    -webkit-transition: all 0.6s ease-out 0s;
    -moz-transition: all 0.6s ease-out 0s;
    -ms-transition: all 0.6s ease-out 0s;
    -o-transition: all 0.6s ease-out 0s;
    transition: all 0.6s ease-out 0s;
}

.olima_shop .product_box .product_info {
    text-align: center;
    padding: 40px 20px;
}

.olima_shop .product_box .product_info .rating li {
    margin-left: 5px;
    margin-right: 5px;
}

.olima_shop .product_box .product_info h3 {
    margin-bottom: 10px;
    font-size: 24px;
    -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;
}

.olima_shop .product_box .product_info h3:hover {
    color: #FF7200;
}

.olima_shop .product_box .product_info span.price {
    color: #FF7200;
}

.olima_shop .releted_post_slide {
    margin-left: -15px;
    margin-right: -15px;
}

.olima_shop .releted_post_slide .product_box {
    margin-left: 15px;
    margin-right: 15px;
}

.olima_shop_details .shop_big_slide {
    margin-bottom: 20px;
}

.olima_shop_details .shop_big_slide .olima_img {
    position: relative;
}

.olima_shop_details .shop_big_slide .olima_img .new {
    position: absolute;
    top: 30px;
    left: 30px;
    display: block;
    width: 55px;
    height: 24px;
    line-height: 24px;
    background: #FF7200;
    border-radius: 30px;
    text-align: center;
    color: white;
    font-size: 12px;
    text-transform: uppercase;
}

.olima_shop_details .shop_thumb_slide {
    margin-left: -15px;
    margin-right: -15px;
    cursor: pointer;
}

.olima_shop_details .shop_thumb_slide .olima_img {
    margin-left: 15px;
    margin-right: 15px;
}

@media (max-width: 767px) {
    .olima_shop_details .shop_thumb_slide {
        margin-bottom: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .olima_shop_details .shop_thumb_slide {
        margin-bottom: 40px;
    }
}

.olima_shop_details .shop_thumb_slide:hover .arrow {
    opacity: 1;
    visibility: visible;
}

.olima_shop_details .shop_thumb_slide:hover .arrow.prev {
    left: 20px;
}

.olima_shop_details .shop_thumb_slide:hover .arrow.next {
    right: 20px;
}

.olima_shop_details .shop_thumb_slide .arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: #FF7200;
    color: #fff;
    -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;
    opacity: 0;
    visibility: hidden;
}

.olima_shop_details .shop_thumb_slide .arrow.prev {
    left: 0px;
}

.olima_shop_details .shop_thumb_slide .arrow.next {
    right: 0px;
}

.olima_shop_details .shop_details_box h2 {
    margin-bottom: 15px;
}

.olima_shop_details .shop_details_box .rating {
    margin-bottom: 20px;
}

.olima_shop_details .shop_details_box .price {
    font-size: 30px;
    color: #FF7200;
    font-family: "Playfair Display";
    font-weight: bold;
    display: block;
    margin-bottom: 30px;
}

.olima_shop_details .shop_details_box p {
    margin-bottom: 30px;
}

.olima_shop_details .shop_details_box .button_box .nice-number {
    margin-right: 20px;
}

@media (max-width: 767px) {
    .olima_shop_details .shop_details_box .button_box .nice-number {
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .olima_shop_details .shop_details_box .button_box .nice-number {
        margin-bottom: 20px;
    }
}

.olima_shop_details .shop_details_box .button_box .olima_btn {
    display: inline-block;
    padding: 8px 45px;
    background: #FF7200;
    color: #fff;
    margin-top: -1px;
    border-radius: 30px;
}

.olima_shop_details .shop_details_box ul li {
    display: inline-block;
    margin-right: 10px;
}

.olima_shop_details .shop_details_box ul li span {
    display: block;
    font-size: 14px;
    margin-right: 20px;
}

.olima_shop_details .shop_details_box ul li a:hover,
.olima_shop_details .shop_details_box ul li a:focus {
    color: #FF7200;
}

.olima_shop_details .discription_area .discription_tabs .nav-tabs {
    border-bottom: 2px solid #ddd;
}

.olima_shop_details .discription_area .discription_tabs .nav-tabs .nav-item {
    margin-right: 50px;
}

.olima_shop_details .discription_area .discription_tabs .nav-tabs .nav-link {
    position: relative;
    border: none;
    font-family: "Playfair Display";
    font-size: 24px;
    font-weight: bold;
    padding: 0;
    padding-bottom: 20px;
}

@media (max-width: 767px) {
    .olima_shop_details .discription_area .discription_tabs .nav-tabs .nav-link {
        font-size: 14px;
    }
}

@media only screen and (min-width: 450px) and (max-width: 767px) {
    .olima_shop_details .discription_area .discription_tabs .nav-tabs .nav-link {
        font-size: 16px;
    }
}

.olima_shop_details .discription_area .discription_tabs .nav-tabs .nav-link:after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FF7200;
    opacity: 0;
    visibility: hidden;
    -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;
}

.olima_shop_details .discription_area .discription_tabs .nav-tabs .nav-link.active {
    background-color: transparent;
    color: #FF7200;
}

.olima_shop_details .discription_area .discription_tabs .nav-tabs .nav-link.active:after {
    visibility: visible;
    opacity: 1;
}

.olima_shop_details .discription_area .shop_review_area .title {
    text-transform: capitalize;
    margin-bottom: 30px;
}

.olima_shop_details .discription_area .shop_review_area .review_user {
    position: relative;
    padding-left: 100px;
    margin-bottom: 20px;
}

.olima_shop_details .discription_area .shop_review_area .review_user img {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
}

.olima_shop_details .discription_area .shop_review_area .review_user .rating li i {
    font-size: 14px;
}

.olima_checkout .billing_form .olima_select.nice-select {
    width: 100%;
    margin-bottom: 30px;
    background: #F8F8F8;
    border: none;
    height: 50px;
    line-height: 50px;
}

.olima_checkout .billing_form .olima_select.nice-select:after {
    content: '\f107';
    font-weight: 600;
    font-family: "Font Awesome 5 Free";
    border: none;
    transform: none;
    top: 4px;
    transform-origin: none;
}

.olima_checkout .billing_form .olima_select.nice-select .list {
    width: 100%;
}

.olima_checkout .billing_form .form_button .olima_btn {
    font-size: 14px;
}

.olima_checkout .order_wrap_box .order_product_info {
    margin-top: 20px;
}

.olima_checkout .order_wrap_box .order_product_info h3 {
    margin-bottom: 15px;
}

.olima_checkout .order_wrap_box .order_product_info .order_list_info ul li {
    display: flex;
    justify-content: space-between;
    line-height: 35px;
    margin-bottom: 5px;
    border-bottom: 1px solid #ddd;
}

.olima_checkout .order_wrap_box .order_product_info .order_list_bottom ul {
    display: flex;
    justify-content: space-between;
}

.olima_checkout .order_wrap_box .order_payment_box {
    margin: 20px 0;
}

.olima_checkout .order_wrap_box .order_payment_box h3 {
    margin-bottom: 20px;
}

.olima_checkout .order_wrap_box .place_oder .olima_btn {
    padding: 11px 20px;
    display: inline-block;
    font-size: 14px;
    background: #8b3eea;
    color: #fff;
}

.olima_checkout .order_wrap_box .place_oder .olima_btn:hover,
.olima_checkout .order_wrap_box .place_oder .olima_btn:focus {
    color: #fff;
    background: #374146;
}

.coupon_box .form_group {
    position: relative;
}

.coupon_box .form_group .form_control {
    width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    padding: 20px;
}

.coupon_box .form_group .olima_btn {
    padding: 11px 20px;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 14px;
    background: #8b3eea;
    color: #fff;
}

.coupon_box .form_group .olima_btn:hover,
.coupon_box .form_group .olima_btn:focus {
    color: #fff;
    background: #374146;
}

.olima_cart .olima_btn {
    padding: 11px 20px;
    display: inline-block;
    background: #8b3eea;
    color: #fff;
    -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;
}

.olima_cart .olima_btn:hover,
.olima_cart .olima_btn:focus {
    color: #fff;
    background: #374146;
}

.olima_cart .table_content {
    border-bottom: 1px solid #ddd;
}

.olima_cart .table_content .table thead th {
    border-bottom: none;
}

.olima_cart .table_content .table tbody tr td {
    padding: 15px 0;
    vertical-align: middle;
}

@media (max-width: 767px) {
    .olima_cart .product_total_box {
        margin-top: 30px;
    }
}

.olima_cart .product_total_box .total_info ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    border-bottom: 1px solid #ddd;
    line-height: 35px;
}

.olima_cart .product_total_box .total_info ul li:last-child {
    border-bottom: none;
}

.nice-number button {
    width: 44px;
    height: 44px;
    line-height: 44px;
    border: 1px solid #ddd;
    background: transparent;
}

.nice-number input {
    width: 44px !important;
    height: 42px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.single_radio,
.single_checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.single_radio span,
.single_checkbox span {
    display: inline-block;
    margin-left: 30px;
    margin-top: -3px;
}

.single_radio .single_input,
.single_checkbox .single_input {
    display: none;
}

.single_radio .single_input:checked+.single_input_label:after,
.single_checkbox .single_input:checked+.single_input_label:after {
    opacity: 1;
}

.single_radio .single_input:checked+.single_input_label:before,
.single_checkbox .single_input:checked+.single_input_label:before {
    border-color: #8b3eea;
}

.single_radio .single_input_label:after,
.single_radio .single_input_label:before {
    border-radius: 50%;
}

.single_radio .single_input_label:after {
    content: '';
    width: 14px;
    height: 14px;
    line-height: 20px;
    top: 3px;
    left: 3px;
}

.single_input_label {
    display: inline-flex;
    position: relative;
    cursor: pointer;
    margin-bottom: 0;
}

.single_input_label:before {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
    display: inline-block;
    border: 1px solid #ddd;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.single_input_label:after {
    position: absolute;
    top: 0;
    left: 0;
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    width: 20px;
    height: 20px;
    display: block;
    overflow: hidden;
    text-align: center;
    opacity: 0;
    -webkit-transition: .2s opacity;
    -o-transition: .2s opacity;
    transition: .2s opacity;
}

.sigle_input_check:before {
    border-color: #ddd;
}

.sigle_input_check:after {
    background: #8b3eea;
    color: #FFFFFF;
    border-color: #ddd;
}

.single_label {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 2px 12px;
    border: 1px solid #ddd;
    text-transform: uppercase;
    font-size: 14px;
}

.single_label:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: -1;
}


/*------=================-----------
		Olima Blog css
--------=================---------*/

.blog_v1 .grid_item .post_img {
    max-width: 365px;
    max-height: 300px;
    width: 100%;
    height: 100%;
}

@media (max-width: 767px) {
    .blog_v1 .grid_item .post_img {
        max-width: 100%;
        min-width: 100%;
    }
}

.blog_v1 .grid_item .post_img img {
    min-width: 365px;
    max-width: 365px;
    max-height: 300px;
    width: 100%;
    height: 100%;
}

@media (max-width: 767px) {
    .blog_v1 .grid_item .post_img img {
        max-width: 100%;
        min-width: 100%;
    }
}

.blog_v1 .grid_item .post_content {
    border-radius: 3px;
    box-shadow: -10px 0px 40px rgba(14, 28, 57, 0.2);
    margin-left: -50px;
    background: #fff;
    position: relative;
    padding: 25px 35px;
}

.blog_v1 .grid_item .post_content .post_meta {
    margin-bottom: 15px;
}

.blog_v1 .grid_item .post_content .post_meta span {
    margin-right: 30px;
    font-size: 18px;
}

.blog_v1 .grid_item .post_content .post_meta span:before {
    color: #23292C;
}

@media (max-width: 767px) {
    .blog_v1 .grid_item .post_content .post_meta span {
        font-size: 14px;
        margin-right: 5px;
    }
}

.blog_v1 .grid_item .post_content h3 {
    font-size: 24px;
    line-height: 36px;
    font-weight: 400;
    margin-bottom: 15px;
    -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_v1 .grid_item .post_content h3:hover {
    color: #8b3eea;
}

@media (max-width: 767px) {
    .blog_v1 .grid_item .post_content {
        margin-left: 0px;
        padding: 25px 20px;
    }
    .blog_v1 .grid_item .post_content h3 {
        font-size: 20px;
        line-height: 30px;
    }
}

.blog_v1 .grid_item .post_content .btn_link {
    -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_v1 .grid_item .post_content .btn_link:hover {
    color: #8b3eea;
}

.blog_v1 .grid_item.grid_post_big .post_img {
    max-width: 100%;
    max-height: 500px;
}

.blog_v1 .grid_item.grid_post_big .post_img img {
    max-width: 100%;
    max-height: 500px;
}

.blog_v1 .grid_item.grid_post_big .post_img .ribbon {
    position: absolute;
    z-index: 1;
    background: #8b3eea;
    top: 37px;
    padding: 4px 30px 4px 10px;
    transform: rotate(-90deg);
}

.blog_v1 .grid_item.grid_post_big .post_img .ribbon span {
    color: #fff;
}

.blog_v1 .grid_item.grid_post_big .post_img .ribbon span i {
    margin-right: 10px;
}

.blog_v1 .grid_item.grid_post_big .post_content {
    position: relative;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: -50px;
    padding: 35px 20px;
    background: #fff;
    box-shadow: 0px 10px 40px rgba(14, 28, 57, 0.1);
}

@media (max-width: 767px) {
    .blog_v1 .grid_item.grid_post_big .post_content {
        margin-left: 0px;
        margin-right: 0px;
    }
}

@media only screen and (min-width: 400px) and (max-width: 449px) {
    .blog_v1 .grid_item.grid_post_big .post_content {
        margin-left: 10px;
        margin-right: 10px;
    }
}

.blog_v1 .grid_item.grid_post_big .post_content .post_meta span {
    margin-right: 40px;
}

@media (max-width: 767px) {
    .blog_v1 .grid_item.grid_post_big .post_content .post_meta span {
        font-size: 14px;
        margin-right: 5px;
    }
}

.blog_v1 .olima_sidebar .widget_box.featured_post .single_post .post_content .post_meta span {
    color: #374146;
    margin-right: 10px;
}

@media (max-width: 767px) {
    .blog_v1 .olima_sidebar .widget_box.featured_post .single_post .post_content .post_meta span {
        font-size: 12px;
        margin-right: 5px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .blog_v1 .olima_sidebar .widget_box.featured_post .single_post .post_content .post_meta span {
        font-size: 12px;
        margin-right: 5px;
    }
}

.blog_v1 .olima_sidebar .widget_box.featured_post .single_post .post_content .post_meta span:before {
    color: #374146;
}

.blog_v2 .grid_item .post_content {
    position: relative;
    padding: 20px;
    margin-left: 15px;
    margin-right: 15px;
    border-radius: 3px;
    background: #fff;
    margin-top: -50px;
    box-shadow: 0px 10px 40px rgba(14, 28, 57, 0.1);
}

@media (max-width: 767px) {
    .blog_v2 .grid_item .post_content {
        margin-right: 0px;
        margin-left: 0px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .blog_v2 .grid_item .post_content {
        margin-right: 7px;
        margin-left: 7px;
    }
}

.blog_v2 .grid_item .post_content .post_meta {
    margin-bottom: 10px;
}

.blog_v2 .grid_item .post_content .post_meta span {
    font-size: 14px;
    margin-right: 30px;
}

@media (max-width: 767px) {
    .blog_v2 .grid_item .post_content .post_meta span {
        font-size: 13px;
        margin-right: 10px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .blog_v2 .grid_item .post_content .post_meta span {
        font-size: 13px;
        margin-right: 4px;
    }
}

.blog_v2 .grid_item .post_content .post_meta span:before {
    color: #23292C;
}

.blog_v2 .grid_item .post_content h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
    -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_v2 .grid_item .post_content h3:hover {
    color: #8b3eea;
}

.blog_v2 .grid_item .post_content .btn_link {
    -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_v2 .grid_item .post_content .btn_link:hover {
    color: #8b3eea;
}

.olima_blog_grid .grid_item,
.olima_blog_standard .grid_item,
.olima_blog_masonry .grid_item,
.related_post .grid_item {
    border: 1px solid rgba(35, 41, 44, 0.2);
    border-radius: 5px;
}

.olima_blog_grid .grid_item .post_content .post_meta,
.olima_blog_standard .grid_item .post_content .post_meta,
.olima_blog_masonry .grid_item .post_content .post_meta,
.related_post .grid_item .post_content .post_meta {
    position: relative;
    padding: 20px 25px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 20px 40px rgba(0, 18, 88, 0.1);
    display: flex;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .olima_blog_grid .grid_item .post_content .post_meta,
    .olima_blog_standard .grid_item .post_content .post_meta,
    .olima_blog_masonry .grid_item .post_content .post_meta,
    .related_post .grid_item .post_content .post_meta {
        padding: 10px 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .olima_blog_grid .grid_item .post_content .post_meta,
    .olima_blog_standard .grid_item .post_content .post_meta,
    .olima_blog_masonry .grid_item .post_content .post_meta,
    .related_post .grid_item .post_content .post_meta {
        padding: 10px 15px;
    }
}

.olima_blog_grid .grid_item .post_content .btn_heart,
.olima_blog_standard .grid_item .post_content .btn_heart,
.olima_blog_masonry .grid_item .post_content .btn_heart,
.related_post .grid_item .post_content .btn_heart {
    display: inline-block;
    float: right;
    width: 50px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 2px;
    background: #F8F8F8;
    color: #666666;
}

.olima_blog_grid .grid_item .post_content .btn_heart i,
.olima_blog_standard .grid_item .post_content .btn_heart i,
.olima_blog_masonry .grid_item .post_content .btn_heart i,
.related_post .grid_item .post_content .btn_heart i {
    margin-right: 5px;
}

.olima_blog_grid .grid_item .post_content h3,
.olima_blog_grid .grid_item .post_content h2,
.olima_blog_standard .grid_item .post_content h3,
.olima_blog_standard .grid_item .post_content h2,
.olima_blog_masonry .grid_item .post_content h3,
.olima_blog_masonry .grid_item .post_content h2,
.related_post .grid_item .post_content h3,
.related_post .grid_item .post_content h2 {
    -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;
}

.olima_blog_grid .grid_item .post_content h3:hover,
.olima_blog_grid .grid_item .post_content h3:focus,
.olima_blog_grid .grid_item .post_content h2:hover,
.olima_blog_grid .grid_item .post_content h2:focus,
.olima_blog_standard .grid_item .post_content h3:hover,
.olima_blog_standard .grid_item .post_content h3:focus,
.olima_blog_standard .grid_item .post_content h2:hover,
.olima_blog_standard .grid_item .post_content h2:focus,
.olima_blog_masonry .grid_item .post_content h3:hover,
.olima_blog_masonry .grid_item .post_content h3:focus,
.olima_blog_masonry .grid_item .post_content h2:hover,
.olima_blog_masonry .grid_item .post_content h2:focus,
.related_post .grid_item .post_content h3:hover,
.related_post .grid_item .post_content h3:focus,
.related_post .grid_item .post_content h2:hover,
.related_post .grid_item .post_content h2:focus {
    color: #000;
}

.olima_blog_standard .grid_item {
    padding: 40px;
}

@media (max-width: 767px) {
    .olima_blog_standard .grid_item {
        padding: 20px 10px;
    }
}

.olima_blog_standard .grid_item .post_content .post_meta {
    margin-top: -35px;
    margin-left: 100px;
    margin-right: 100px;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .olima_blog_standard .grid_item .post_content .post_meta {
        flex-wrap: wrap;
        margin-left: 10px;
        margin-right: 10px;
    }
}

@media only screen and (min-width: 450px) and (max-width: 767px) {
    .olima_blog_standard .grid_item .post_content .post_meta {
        flex-wrap: nowrap;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .olima_blog_standard .grid_item .post_content .post_meta {
        margin-left: 50px;
        margin-right: 50px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .olima_blog_standard .grid_item .post_content .post_meta {
        margin-left: 50px;
        margin-right: 50px;
    }
}

@media (max-width: 767px) {
    .olima_blog_standard .grid_item .post_content .post_meta span {
        font-size: 12px;
    }
}

.olima_blog_standard .grid_item .post_content h2 {
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .olima_blog_standard .grid_item .post_content h2 {
        font-size: 18px;
        line-height: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .olima_blog_standard .grid_item .post_content h2 {
        font-size: 24px;
        line-height: 34px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .olima_blog_standard .grid_item .post_content h2 {
        font-size: 24px;
        line-height: 34px;
    }
}

.olima_blog_standard .grid_item .post_content .btn_link:after {
    display: none;
}

.olima_blog_standard .grid_item .post_content p {
    padding-bottom: 50px;
}

.olima_blog_standard .grid_item.grid_item_content {
    margin-top: 95px;
}

.olima_blog_standard .grid_item.grid_item_content .post_content .post_meta {
    margin-top: -75px;
}

.olima_blog_grid .grid_item,
.olima_blog_masonry .grid_item,
.related_post .grid_item {
    padding: 20px;
}

@media (max-width: 767px) {
    .olima_blog_grid .grid_item,
    .olima_blog_masonry .grid_item,
    .related_post .grid_item {
        padding: 20px 10px;
    }
}

.olima_blog_grid .grid_item .post_content .post_meta,
.olima_blog_masonry .grid_item .post_content .post_meta,
.related_post .grid_item .post_content .post_meta {
    margin-bottom: 50px;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: -35px;
}

@media (max-width: 767px) {
    .olima_blog_grid .grid_item .post_content .post_meta,
    .olima_blog_masonry .grid_item .post_content .post_meta,
    .related_post .grid_item .post_content .post_meta {
        margin-left: 5px;
        margin-right: 5px;
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .olima_blog_grid .grid_item .post_content .post_meta,
    .olima_blog_masonry .grid_item .post_content .post_meta,
    .related_post .grid_item .post_content .post_meta {
        margin-left: 5px;
        margin-right: 5px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .olima_blog_grid .grid_item .post_content .post_meta span,
    .olima_blog_masonry .grid_item .post_content .post_meta span,
    .related_post .grid_item .post_content .post_meta span {
        font-size: 12px;
    }
}

@media only screen and (min-width: 400px) and (max-width: 449px) {
    .olima_blog_grid .grid_item .post_content .post_meta span,
    .olima_blog_masonry .grid_item .post_content .post_meta span,
    .related_post .grid_item .post_content .post_meta span {
        font-size: 14px;
    }
}

@media only screen and (min-width: 450px) and (max-width: 767px) {
    .olima_blog_grid .grid_item .post_content .post_meta span,
    .olima_blog_masonry .grid_item .post_content .post_meta span,
    .related_post .grid_item .post_content .post_meta span {
        font-size: 16px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .olima_blog_grid .grid_item .post_content .post_meta span,
    .olima_blog_masonry .grid_item .post_content .post_meta span,
    .related_post .grid_item .post_content .post_meta span {
        font-size: 14px;
    }
}

.olima_blog_grid .grid_item .post_content h3,
.olima_blog_masonry .grid_item .post_content h3,
.related_post .grid_item .post_content h3 {
    font-size: 30px;
    line-height: 40px;
    color: #374146;
    margin-bottom: 22px;
}

@media (max-width: 767px) {
    .olima_blog_grid .grid_item .post_content h3,
    .olima_blog_masonry .grid_item .post_content h3,
    .related_post .grid_item .post_content h3 {
        font-size: 18px;
        line-height: 30px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .olima_blog_grid .grid_item .post_content h3,
    .olima_blog_masonry .grid_item .post_content h3,
    .related_post .grid_item .post_content h3 {
        font-size: 18px;
        line-height: 30px;
    }
}

.olima_blog_grid .grid_item .post_content .comments i,
.olima_blog_masonry .grid_item .post_content .comments i,
.related_post .grid_item .post_content .comments i {
    color: #8b3eea;
    margin-right: 10px;
}

.olima_blog_grid .grid_item .post_content .post_meta,
.related_post .grid_item .post_content .post_meta {
    margin-bottom: 30px;
}

.olima_blog_masonry .grid_item {
    padding: 0;
    background: #F8F8F8;
    border-color: transparent;
}

.olima_blog_masonry .grid_item .post_content {
    padding: 20px 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .olima_blog_masonry .grid_item .post_content {
        padding: 20px 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .olima_blog_masonry .grid_item .post_content {
        padding: 20px 10px;
    }
}

.olima_blog_masonry .grid_item .post_content .post_meta {
    margin-bottom: 30px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: -55px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .olima_blog_masonry .grid_item .post_content .post_meta {
        padding: 20px 10px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .olima_blog_masonry .grid_item .post_content .post_meta {
        padding: 20px 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .olima_blog_masonry .grid_item .post_content h3 {
        font-size: 18px;
        line-height: 30px;
    }
}

.olima_blog_masonry .grid_item.grid_item_content {
    margin-top: 35px;
}


/*------=================-----------
		Olima Blog details css
--------=================---------*/

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .olima_blog_details .blog_details_wrapper {
        margin-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .olima_blog_details .blog_details_wrapper {
        margin-bottom: 60px;
    }
}

.olima_blog_details .blog_details_wrapper .post_img {
    margin-bottom: 25px;
}

.olima_blog_details .blog_details_wrapper .post_img .blog_details_slide {
    position: relative;
}

.olima_blog_details .blog_details_wrapper .post_img .blog_details_slide .olima_img img {
    width: 100%;
}

.olima_blog_details .blog_details_wrapper .post_img .blog_details_slide .arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 35px;
    height: 60px;
    line-height: 60px;
    background: #fff;
    color: #374146;
    z-index: 1;
    cursor: pointer;
    text-align: center;
    -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;
}

.olima_blog_details .blog_details_wrapper .post_img .blog_details_slide .arrow:hover {
    background: #8b3eea;
    color: #fff;
}

.olima_blog_details .blog_details_wrapper .post_img .blog_details_slide .arrow.prev {
    left: 0;
}

.olima_blog_details .blog_details_wrapper .post_img .blog_details_slide .arrow.next {
    right: 0;
}

.olima_blog_details .blog_details_wrapper .post_content h3 {
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .olima_blog_details .blog_details_wrapper .post_content h3 {
        font-size: 18px;
        line-height: 28px;
    }
}

.olima_blog_details .blog_details_wrapper .post_content .post_meta {
    background: #F8F8F8;
    padding: 5px;
    padding: 35px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

@media (max-width: 767px) {
    .olima_blog_details .blog_details_wrapper .post_content .post_meta {
        padding: 15px 20px;
        flex-direction: column;
        align-items: flex-start;
    }
}

.olima_blog_details .blog_details_wrapper .post_content p {
    padding-bottom: 50px;
    font-size: 20px;
    line-height: 30px;
}

@media (max-width: 767px) {
    .olima_blog_details .blog_details_wrapper .post_content p {
        font-size: 16px;
        line-height: 26px;
    }
}

.olima_blog_details .blog_details_wrapper .post_content .olima_img img {
    width: 100%;
}

.olima_blog_details .blog_details_wrapper .post_content blockquote {
    background: #F8F8F8;
    padding: 35px 30px;
    text-align: center;
}

.olima_blog_details .blog_details_wrapper .post_content blockquote p {
    padding-bottom: 0;
    color: #23292C;
}

.olima_blog_details .blog_details_wrapper .post_content .content_list ul li:before {
    display: inline-block;
    content: '\f00c';
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    margin-right: 10px;
    color: #8b3eea;
}

.olima_blog_details .blog_details_wrapper .post_share_tag {
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.olima_blog_details .blog_details_wrapper .post_share_tag .post_tag_box ul li {
    display: inline-block;
    margin-right: 10px;
}

@media (max-width: 767px) {
    .olima_blog_details .blog_details_wrapper .post_share_tag .post_tag_box ul li {
        margin-bottom: 10px;
    }
}

.olima_blog_details .blog_details_wrapper .post_share_tag .post_tag_box ul li span {
    font-weight: 500;
    color: #151515;
}

.olima_blog_details .blog_details_wrapper .post_share_tag .post_tag_box ul li a {
    padding: 5px 10px;
    display: block;
    background: #F8F8F8;
    color: #374146;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .olima_blog_details .blog_details_wrapper .post_share_tag .post_tag_box ul li a {
        font-size: 13px;
    }
}

.olima_blog_details .blog_details_wrapper .post_share_tag .social_box {
    float: right;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .olima_blog_details .blog_details_wrapper .post_share_tag .social_box {
        float: none;
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .olima_blog_details .blog_details_wrapper .post_share_tag .social_box {
        float: none;
        margin-top: 15px;
    }
}

.olima_blog_details .blog_details_wrapper .post_share_tag .social_box ul li {
    display: inline-block;
    margin-left: 10px;
}

.olima_blog_details .blog_details_wrapper .post_share_tag .social_box ul li a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: #F8F8F8;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .olima_blog_details .blog_details_wrapper .post_share_tag .social_box ul li a {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}

.olima_blog_details .blog_details_wrapper .post_prev_next {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.olima_blog_details .blog_details_wrapper .post_prev_next .box i {
    font-size: 18px;
}

.olima_blog_details .blog_details_wrapper .post_prev_next .box .prev i {
    margin-right: 10px;
}

.olima_blog_details .blog_details_wrapper .post_prev_next .box .next i {
    margin-left: 10px;
}

.olima_blog_details .blog_details_wrapper .author_box {
    padding: 30px 0 20px;
    position: relative;
    padding-left: 80px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.olima_blog_details .blog_details_wrapper .author_box img {
    position: absolute;
    left: 0;
    top: 30px;
}

.olima_blog_details .blog_details_wrapper .author_box h5 {
    margin-bottom: 5px;
    font-family: "Roboto";
    color: #151515;
}

.olima_blog_details .blog_details_wrapper .author_box h6 {
    margin-bottom: 7px;
    color: rgba(21, 21, 21, 0.7);
    font: 500 16px "Roboto";
}

.olima_blog_details .blog_details_wrapper .related_post {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .olima_blog_details .blog_details_wrapper .related_post .grid_item {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .olima_blog_details .blog_details_wrapper .related_post .grid_item {
        margin-bottom: 40px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .olima_blog_details .blog_details_wrapper .related_post .grid_item .post_img {
        margin-bottom: 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .olima_blog_details .blog_details_wrapper .related_post .grid_item .post_content h3 {
        font-size: 18px;
        line-height: 26px;
    }
}

.olima_blog_details .blog_details_wrapper .related_post .grid_item .post_content h3 {
    margin-bottom: 0;
}

.olima_blog_details .blog_details_wrapper .related_post .grid_item .post_content .post_meta {
    background: #fff;
    padding: 20px 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .olima_blog_details .blog_details_wrapper .related_post .grid_item .post_content .post_meta {
        padding: 10px;
        margin: 0;
        margin-bottom: 20px;
    }
}

.olima_blog_details .blog_details_wrapper .comment_area h3 {
    margin-bottom: 30px;
}

.olima_blog_details .blog_details_wrapper .comment_area .single_comment {
    position: relative;
    margin-bottom: 30px;
}

.olima_blog_details .blog_details_wrapper .comment_area .single_comment:nth-child(2n+1) {
    padding-left: 100px;
}

.olima_blog_details .blog_details_wrapper .comment_area .single_comment:last-child .comment_info {
    border-bottom: none;
}

@media (max-width: 767px) {
    .olima_blog_details .blog_details_wrapper .comment_area .single_comment:nth-child(2n+1) {
        padding-left: 0px;
    }
}

.olima_blog_details .blog_details_wrapper .comment_area .single_comment .comment_img {
    min-width: 80px;
    max-width: 80px;
    width: 80px;
    height: 80px;
}

.olima_blog_details .blog_details_wrapper .comment_area .single_comment .comment_img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.olima_blog_details .blog_details_wrapper .comment_area .single_comment .comment_info {
    margin-left: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.olima_blog_details .blog_details_wrapper .comment_area .single_comment .comment_info h6 {
    font-size: 16px;
    color: rgba(21, 21, 21, 0.7);
}

.olima_blog_details .blog_details_wrapper .comment_area .single_comment .reply_btn {
    position: absolute;
    right: 0;
    top: 0px;
}

.olima_blog_details .blog_details_wrapper .comment_area .single_comment h5 {
    margin-bottom: 10px;
}

.olima_blog_details .blog_details_wrapper .comment_area .single_comment h6 {
    margin-bottom: 20px;
}

.olima_blog_grid .olima_sidebar .widget_box.about_box .about_img,
.olima_blog_standard .olima_sidebar .widget_box.about_box .about_img,
.olima_blog_details .olima_sidebar .widget_box.about_box .about_img {
    max-width: 190px;
    max-height: 190px;
}

.olima_blog_grid .olima_sidebar .widget_box.about_box .about_content,
.olima_blog_standard .olima_sidebar .widget_box.about_box .about_content,
.olima_blog_details .olima_sidebar .widget_box.about_box .about_content {
    padding: 40px 20px 0;
}

.olima_blog_grid .olima_sidebar .widget_box.featured_post .single_post,
.olima_blog_standard .olima_sidebar .widget_box.featured_post .single_post,
.olima_blog_details .olima_sidebar .widget_box.featured_post .single_post {
    background: transparent;
}

.olima_blog_grid .olima_sidebar .widget_box.featured_post .single_post .post_img img,
.olima_blog_standard .olima_sidebar .widget_box.featured_post .single_post .post_img img,
.olima_blog_details .olima_sidebar .widget_box.featured_post .single_post .post_img img {
    max-width: 80px;
    max-height: 80px;
    width: 100%;
    height: 100%;
}

.olima_blog_grid .olima_sidebar .widget_box.featured_post .single_post .post_content,
.olima_blog_standard .olima_sidebar .widget_box.featured_post .single_post .post_content,
.olima_blog_details .olima_sidebar .widget_box.featured_post .single_post .post_content {
    margin-left: 15px;
}

.olima_blog_grid .olima_sidebar .widget_box.featured_post .single_post .post_content .post_meta span,
.olima_blog_standard .olima_sidebar .widget_box.featured_post .single_post .post_content .post_meta span,
.olima_blog_details .olima_sidebar .widget_box.featured_post .single_post .post_content .post_meta span {
    font-size: 14px;
    margin-right: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .olima_blog_grid .olima_sidebar .widget_box.featured_post .single_post .post_content .post_meta span,
    .olima_blog_standard .olima_sidebar .widget_box.featured_post .single_post .post_content .post_meta span,
    .olima_blog_details .olima_sidebar .widget_box.featured_post .single_post .post_content .post_meta span {
        font-size: 12px;
        margin-right: 0;
    }
}

.olima_blog_grid .olima_sidebar .widget_box.featured_post .single_post .post_content h3,
.olima_blog_standard .olima_sidebar .widget_box.featured_post .single_post .post_content h3,
.olima_blog_details .olima_sidebar .widget_box.featured_post .single_post .post_content h3 {
    font-size: 16px;
    line-height: 36px;
    -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;
}

.olima_blog_grid .olima_sidebar .widget_box.featured_post .single_post .post_content h3:hover,
.olima_blog_grid .olima_sidebar .widget_box.featured_post .single_post .post_content h3:focus,
.olima_blog_standard .olima_sidebar .widget_box.featured_post .single_post .post_content h3:hover,
.olima_blog_standard .olima_sidebar .widget_box.featured_post .single_post .post_content h3:focus,
.olima_blog_details .olima_sidebar .widget_box.featured_post .single_post .post_content h3:hover,
.olima_blog_details .olima_sidebar .widget_box.featured_post .single_post .post_content h3:focus {
    color: #000;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .olima_blog_grid .olima_sidebar .widget_box.featured_post .single_post .post_content h3,
    .olima_blog_standard .olima_sidebar .widget_box.featured_post .single_post .post_content h3,
    .olima_blog_details .olima_sidebar .widget_box.featured_post .single_post .post_content h3 {
        font-size: 11px;
        line-height: 24px;
    }
}


/*------=================-----------
			Sidebar css
--------=================---------*/

.olima_sidebar .widget_box h4 {
    margin-bottom: 20px;
}

.olima_sidebar .widget_box.place_widget_box h4 {
    max-width: 240px;
    line-height: 36px;
}

.olima_sidebar .widget_box.place_widget_box ul li a {
    display: block;
    padding: 15px 25px;
    background: #8b3eea17;
    border-left: 5px solid #8b3eea;
    margin-bottom: 10px;
    color: #8b3eea;
    font-size: 20px;
    -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;
}

.olima_sidebar .widget_box.place_widget_box ul li a:hover {
    color: #fff;
    background: #8b3eea;
    border-color: #8b3eea;
}

.olima_sidebar .widget_box.place_widget_box ul li a i {
    margin-right: 10px;
    font-size: 30px;
}

.olima_sidebar .widget_box.add_widget_2 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.olima_sidebar .widget_box.add_widget_2 .add_btn {
    position: absolute;
    bottom: 40px;
    display: block;
    padding: 30px;
    background: #ffff;
    font-size: 24px;
    font-weight: 700;
    color: #23292C;
}

.olima_sidebar .widget_box.about_box {
    background: #F8F8F8;
    text-align: center;
    padding-top: 40px;
}

.olima_sidebar .widget_box.about_box .about_content {
    padding: 40px 40px 0;
}

.olima_sidebar .widget_box.about_box .about_content p {
    margin-bottom: 30px;
}

.olima_sidebar .widget_box.about_box .about_content .social_link {
    margin-bottom: 30px;
}

.olima_sidebar .widget_box.about_box .about_content .social_link li {
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
}

.olima_sidebar .widget_box.about_box .about_img {
    border: 1px dashed #8b3eea;
    max-width: 260px;
    max-height: 260px;
    width: 100%;
    height: 100%;
    padding: 10px;
    border-radius: 50%;
    margin-bottom: 35px;
    margin: auto;
}

.olima_sidebar .widget_box.about_box .about_img img {
    max-width: 240px;
    max-height: 240px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.olima_sidebar .widget_box .olima_btn {
    width: 100%;
    padding: 13px 30px;
    background: #8b3eea;
    display: inline-block;
    color: #fff;
    text-align: center;
}

.olima_sidebar .widget_box.booking_widget {
    position: relative;
}

.olima_sidebar .widget_box.booking_widget .title {
    background: #374146;
}

.olima_sidebar .widget_box.booking_widget .title h3 {
    color: #fff;
    font-family: "Roboto";
    font-weight: 400;
    text-align: center;
    padding: 15px 0;
}

.olima_sidebar .widget_box.booking_widget img {
    width: 100%;
}

.olima_sidebar .widget_box.booking_widget .olima_btn {
    position: absolute;
    bottom: 0;
    left: 0;
}

.olima_sidebar .widget_box.add_widget .add_img img {
    width: 100%;
}

.olima_sidebar .widget_box.featured_post .single_post {
    background: #F8F8F8;
    border-radius: 3px;
    margin-bottom: 20px;
}

.olima_sidebar .widget_box.featured_post .single_post .post_content {
    margin-left: 20px;
}

.olima_sidebar .widget_box.featured_post .single_post .post_content h3 {
    font-size: 20px;
    -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;
}

.olima_sidebar .widget_box.featured_post .single_post .post_content h3:hover {
    color: #000;
}

@media (max-width: 767px) {
    .olima_sidebar .widget_box.featured_post .single_post .post_content h3 {
        font-size: 14px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .olima_sidebar .widget_box.featured_post .single_post .post_content h3 {
        font-size: 14px;
        line-height: 24px;
    }
}

.olima_sidebar .widget_box.newsletter_widget {
    background: #F8F8F8;
    text-align: center;
    padding: 30px;
}

.olima_sidebar .widget_box.newsletter_widget img {
    margin-bottom: 25px;
}

.olima_sidebar .widget_box.newsletter_widget h4 {
    margin-bottom: 20px;
}

.olima_sidebar .widget_box.newsletter_widget p {
    margin-bottom: 20px;
}

.olima_sidebar .widget_box.newsletter_widget .form_control {
    width: 100%;
    height: 50px;
    border: 1px solid #23292C;
    border-radius: 3px;
    text-align: center;
    margin-bottom: 30px;
}

.olima_sidebar .widget_box.categories_widget ul li {
    margin-bottom: 10px;
}

.olima_sidebar .widget_box.categories_widget ul li.active a {
    background: #8b3eea;
    color: #fff;
    border-color: transparent;
}

.olima_sidebar .widget_box.categories_widget ul li a {
    display: block;
    padding: 11px 20px;
    border: 1px solid rgba(35, 41, 44, 0.2);
    border-radius: 3px;
    -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;
}

.olima_sidebar .widget_box.categories_widget ul li a:hover,
.olima_sidebar .widget_box.categories_widget ul li a:focus {
    background: #8b3eea;
    color: #fff;
    border-color: transparent;
}

.olima_sidebar .widget_box.tags_widget ul li {
    display: inline-block;
    margin-right: 10px;
}

.olima_sidebar .widget_box.tags_widget ul li a {
    display: block;
    padding: 7px 16px;
    background: #F8F8F8;
    color: #374146;
    font-size: 16px;
    margin-bottom: 15px;
    border-radius: 3px;
    -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;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .olima_sidebar .widget_box.tags_widget ul li a {
        font-size: 12px;
    }
}

.olima_sidebar .widget_box.tags_widget ul li a:hover,
.olima_sidebar .widget_box.tags_widget ul li a:focus {
    color: #fff;
    background: #8b3eea;
}

.olima_sidebar .widget_box.category_widget_2 ul li {
    margin-bottom: 10px;
}

.olima_sidebar .widget_box.category_widget_2 ul li a {
    -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;
}

.olima_sidebar .widget_box.category_widget_2 ul li a:hover,
.olima_sidebar .widget_box.category_widget_2 ul li a:focus {
    color: #FF7200;
}

.olima_sidebar .widget_box.category_widget_2 ul li a span {
    float: right;
}

.olima_sidebar .widget_box.price_ranger_widget input {
    font-size: 14px;
    color: #252525;
}

.olima_sidebar .widget_box.price_ranger_widget .ui-widget.ui-widget-content {
    border: none;
    height: 4px;
    background: #E6E6E6;
    margin-bottom: 25px;
}

.olima_sidebar .widget_box.price_ranger_widget .ui-widget .ui-widget-header {
    background: #FF7200;
}

.olima_sidebar .widget_box.price_ranger_widget .ui-widget .ui-slider-handle {
    top: -3px;
    margin-left: 0;
    border-radius: 0;
    width: 10px;
    height: 10px;
    background: #FF7200;
    border: none;
}

.olima_sidebar .widget_box.size_widget .single_checkbox {
    display: inline-flex;
    margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .olima_sidebar .widget_box.size_widget .single_checkbox {
        margin-bottom: 10px;
    }
}

.olima_sidebar .widget_box.size_widget .single_checkbox .single_input:checked+.single_label {
    color: #fff;
}

.olima_sidebar .widget_box.size_widget .single_checkbox .single_input:checked+.single_label:before {
    background: #FF7200;
}

.olima_sidebar .widget_box.size_widget .single_checkbox .single_label span {
    margin-left: 0;
}

.olima_sidebar .widget_box.color_widget .single_checkbox {
    display: inline-flex;
    margin-bottom: 0;
    margin-right: 7px;
}

.olima_sidebar .widget_box.color_widget .single_checkbox .single_label {
    display: block;
    width: 31px;
    height: 30px;
    background: #F8F8F8;
    padding: 0;
    border: none;
}

.olima_sidebar .widget_box.color_widget .single_checkbox .single_label.color_1 {
    background: #775848;
}

.olima_sidebar .widget_box.color_widget .single_checkbox .single_label.color_2 {
    background: #252125;
}

.olima_sidebar .widget_box.color_widget .single_checkbox .single_label.color_3 {
    background: #B56C2F;
}

.olima_sidebar .widget_box.color_widget .single_checkbox .single_label.color_4 {
    background: #BAB1A6;
}

.olima_sidebar .widget_box.color_widget .single_checkbox .single_label.color_5 {
    background: #576579;
}

.olima_sidebar .widget_box.color_widget .single_checkbox .single_label span {
    margin-left: 0;
}

.olima_shop .olima_sidebar .widget_box.tags_widget ul li a {
    font-size: 14px;
}

.olima_shop .olima_sidebar .widget_box.tags_widget ul li a:hover,
.olima_shop .olima_sidebar .widget_box.tags_widget ul li a:focus {
    background: #FF7200;
}


/*------=================-----------
		Olima Contact css
--------=================---------*/

.contact_map .map_box {
    position: relative;
}

.contact_map .map_box i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: #8b3eea;
}

.contact_map .map_box iframe {
    display: inherit;
    border: none;
    width: 100%;
    height: 600px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .olima_conact .contact_information {
        margin-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .olima_conact .contact_information {
        margin-bottom: 60px;
    }
}

.olima_conact .contact_information .title {
    margin-bottom: 30px;
}

.olima_conact .contact_information .info_box {
    margin-bottom: 25px;
}

.olima_conact .contact_information .info_box span {
    font-size: 20px;
    color: rgba(14, 24, 43, 0.4);
    margin-bottom: 10px;
    display: block;
}

.olima_conact .contact_information .info_box span i {
    margin-right: 15px;
}

.olima_conact .contact_information .info_box h5 {
    line-height: 32px;
}

.olima_conact .contact_information .social_box ul li {
    display: inline-block;
    margin-right: 7px;
}

.olima_conact .contact_information .social_box ul li a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #888888;
    border-radius: 50%;
    transition: all .3s;
}

.olima_conact .contact_information .social_box ul li a:hover,
.olima_conact .contact_information .social_box ul li a:focus {
    background: #8b3eea;
    color: #fff;
    border-color: transparent;
}

.olima_conact .contact-form h3,
.olima_conact .comment_form h3 {
    margin-bottom: 50px;
}

.olima_conact .contact-form .form_group,
.olima_conact .comment_form .form_group {
    margin-bottom: 30px;
}

.olima_conact .contact-form .form_group label,
.olima_conact .comment_form .form_group label {
    font-size: 20px;
    color: #666666;
}

.olima_conact .contact-form .form_group .form_control,
.olima_conact .comment_form .form_group .form_control {
    width: 100%;
    height: 50px;
    background: #F8F8F8;
    border-radius: 3px;
    padding: 20px;
}

.olima_conact .contact-form .form_group textarea.form_control,
.olima_conact .comment_form .form_group textarea.form_control {
    height: 200px;
}

.contact-form h3,
.comment_form h3,
.billing_form h3,
.review_form h3 {
    margin-bottom: 50px;
}

.contact-form .form_group,
.comment_form .form_group,
.billing_form .form_group,
.review_form .form_group {
    margin-bottom: 30px;
}

.contact-form .form_group label,
.comment_form .form_group label,
.billing_form .form_group label,
.review_form .form_group label {
    display: block;
    font-size: 20px;
    color: #666666;
    margin-bottom: 10px;
}

.contact-form .form_group .form_control,
.comment_form .form_group .form_control,
.billing_form .form_group .form_control,
.review_form .form_group .form_control {
    width: 100%;
    height: 50px;
    background: #F8F8F8;
    border-radius: 3px;
    padding: 20px;
}

.contact-form .form_group textarea.form_control,
.comment_form .form_group textarea.form_control,
.billing_form .form_group textarea.form_control,
.review_form .form_group textarea.form_control {
    height: 200px;
}

.contact-form .form_button .olima_btn,
.comment_form .form_button .olima_btn,
.billing_form .form_button .olima_btn,
.review_form .form_button .olima_btn {
    display: inline-block;
    padding: 15px 40px;
    background: #8b3eea;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all .4s;
}

.contact-form .form_button .olima_btn:hover,
.contact-form .form_button .olima_btn:focus,
.comment_form .form_button .olima_btn:hover,
.comment_form .form_button .olima_btn:focus,
.billing_form .form_button .olima_btn:hover,
.billing_form .form_button .olima_btn:focus,
.review_form .form_button .olima_btn:hover,
.review_form .form_button .olima_btn:focus {
    background: #374146;
}


/*------=================-----------
			footer_v1 css
--------=================---------*/

.footer_v1 .widget_box.about_box {
    text-align: center;
}

.footer_v1 .widget_box.about_box img {
    margin-bottom: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer_v1 .widget_box {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .footer_v1 .widget_box {
        margin-bottom: 30px;
    }
}

.footer_v1 .widget_box.useful_link_widget .widget_link {
    margin-bottom: 5px;
}

.footer_v1 .widget_box.useful_link_widget .widget_link li {
    display: inline-block;
    margin-right: 30px;
}

@media (max-width: 767px) {
    .footer_v1 .widget_box.useful_link_widget .widget_link li {
        margin-left: 10px;
        margin-right: 10px;
    }
    .footer_v1 .widget_box.useful_link_widget .widget_link li a {
        font-size: 14px;
    }
}

.footer_v1 .widget_box.useful_link_widget .widget_link li a {
    color: #374146;
    -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;
}

.footer_v1 .widget_box.useful_link_widget .widget_link li a:hover,
.footer_v1 .widget_box.useful_link_widget .widget_link li a:focus {
    color: #8b3eea;
}

.footer_v1 .widget_box.useful_link_widget .social_link li {
    display: inline-block;
    margin-right: 20px;
}

.footer_v1 .widget_box.useful_link_widget .social_link li a {
    color: #888888;
    -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;
}

.footer_v1 .widget_box.useful_link_widget .social_link li a:hover,
.footer_v1 .widget_box.useful_link_widget .social_link li a:focus {
    color: #8b3eea;
}

@media (max-width: 767px) {
    .footer_v1 .widget_box.useful_link_widget {
        text-align: center;
    }
}

.footer_v1 .widget_box.copyright_box {
    text-align: right;
}

@media (max-width: 767px) {
    .footer_v1 .widget_box.copyright_box {
        text-align: center;
    }
}

.footer_v1 .widget_box.copyright_box h6 {
    font-size: 14px;
    font-family: "Roboto";
    margin-bottom: 10px;
}

.footer_v1 .widget_box.copyright_box h6 i {
    color: #FF0000;
}

.footer_v1 .widget_box.copyright_box p {
    font-size: 14px;
}

.footer_v2 .widget_box h4 {
    margin-bottom: 50px;
    color: #fff;
}

.footer_v2 .widget_box.about_box {
    position: relative;
    z-index: 1;
    background: #8b3eea;
    text-align: center;
    padding: 70px 30px;
    margin-bottom: -70px;
}

@media (max-width: 767px) {
    .footer_v2 .widget_box.about_box {
        margin-bottom: 40px;
        padding: 50px 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer_v2 .widget_box.about_box {
        margin-bottom: 40px;
    }
}

.footer_v2 .widget_box.about_box h5 {
    color: #fff;
    margin: 15px 0;
}

.footer_v2 .widget_box.about_box p {
    color: #fff;
    margin-bottom: 10px;
}

.footer_v2 .widget_box.about_box .social_link li {
    display: inline-block;
    margin-left: 7px;
    margin-right: 7px;
}

.footer_v2 .widget_box.about_box .social_link li a {
    color: #fff;
}

.footer_v2 .widget_box.useful_link_widget .widget_link li {
    line-height: 44px;
}

.footer_v2 .widget_box.useful_link_widget .widget_link li a {
    color: #fff;
}

.footer_v2 .widget_box.contact_widget p {
    position: relative;
    margin-bottom: 30px;
    padding-left: 30px;
    color: #fff;
}

.footer_v2 .widget_box.contact_widget p i {
    position: absolute;
    left: 0;
    top: 3px;
}

.footer_v2 .copyright_area {
    background: #fff;
    padding: 20px 0 22px;
    position: relative;
}

.footer_v2 .copyright_area:before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 30%;
    height: 70px;
    background: #301255;
}

@media (max-width: 767px) {
    .footer_v2 .copyright_area:before {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer_v2 .copyright_area:before {
        display: none;
    }
}

@media (max-width: 767px) {
    .footer_v2 .copyright_area .right_text {
        text-align: center;
    }
}

.footer_v2 .copyright_area .copy_text {
    float: right;
}

@media (max-width: 767px) {
    .footer_v2 .copyright_area .copy_text {
        float: none;
        text-align: center;
    }
}

.footer_v3 {
    background: #0D1820;
}

.footer_v3 .widget_box {
    margin-bottom: 40px;
}

.footer_v3 .widget_box h4 {
    margin-bottom: 30px;
    color: #fff;
}

.footer_v3 .widget_box.about_box .about_content p {
    margin-bottom: 30px;
    color: #888888;
    padding-left: 0px;
}

.footer_v3 .widget_box.about_box p {
    position: relative;
    padding-left: 70px;
}

.footer_v3 .widget_box.about_box p span {
    position: absolute;
    top: 0;
    left: 0;
    color: #EA7026;
    padding-right: 20px;
}

.footer_v3 .widget_box.useful_link_widget .widget_link li {
    line-height: 40px;
}

.footer_v3 .widget_box.useful_link_widget .widget_link li:before {
    display: inline-block;
    content: '\f105';
    font-weight: 600;
    font-family: "Font Awesome 5 Free";
    margin-right: 10px;
}

.footer_v3 .widget_box.useful_link_widget .widget_link li a {
    color: #888888;
}

.footer_v3 .widget_box.useful_link_widget .widget_link li a:hover {
    color: #EA7026;
}

.footer_v3 .widget_box.featured_post .single_post {
    margin-bottom: 20px;
}

.footer_v3 .widget_box.featured_post .single_post .post_content {
    margin-left: 20px;
}

.footer_v3 .widget_box.featured_post .single_post .post_content h3 {
    font-size: 20px;
    line-height: 30px;
    color: #fff;
}

@media (max-width: 767px) {
    .footer_v3 .widget_box.featured_post .single_post .post_content h3 {
        font-size: 14px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .footer_v3 .widget_box.featured_post .single_post .post_content h3 {
        font-size: 16px;
        line-height: 26px;
    }
}

.footer_v3 .widget_box.featured_post .single_post .post_content span .date {
    color: #EA7026;
}

.footer_v3 .footer_bottom {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px 0;
}

@media (max-width: 767px) {
    .footer_v3 .footer_bottom .newsletter_text {
        text-align: center;
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer_v3 .footer_bottom .newsletter_text {
        text-align: center;
        margin-bottom: 20px;
    }
}

.footer_v3 .footer_bottom .newsletter_text h5 {
    color: #fff;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .footer_v3 .footer_bottom .newsletter_text h5 {
        font-size: 14px;
    }
}

.footer_v3 .footer_bottom .newsletter_text h5 i {
    color: #EA7026;
    margin-right: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .footer_v3 .footer_bottom .newsletter_text h5 i {
        margin-right: 10px;
    }
}

.footer_v3 .footer_bottom .newsletter_box .form_group {
    position: relative;
}

.footer_v3 .footer_bottom .newsletter_box .form_group .form_control {
    width: 100%;
    height: 70px;
    background: transparent;
    border: 1px solid #878787;
    padding: 0 30px;
}

.footer_v3 .footer_bottom .newsletter_box .olima_btn {
    display: block;
    padding: 14px 25px;
    background: #EA7026;
    color: #fff;
    position: absolute;
    right: 7px;
    top: 7px;
}

@media (max-width: 767px) {
    .footer_v3 .footer_bottom .newsletter_box .olima_btn {
        position: relative;
        top: auto;
        right: auto;
        margin: auto;
        margin-top: 20px;
    }
}

@media only screen and (min-width: 400px) and (max-width: 449px) {
    .footer_v3 .footer_bottom .newsletter_box .olima_btn {
        position: absolute;
        right: 7px;
        top: 7px;
        margin-top: 0;
    }
}

@media only screen and (min-width: 450px) and (max-width: 767px) {
    .footer_v3 .footer_bottom .newsletter_box .olima_btn {
        position: absolute;
        right: 7px;
        top: 7px;
        margin-top: 0;
    }
}

.footer_v3 .footer_bottom .newsletter_box .olima_btn i {
    margin-right: 10px;
}

.footer_v3 .footer_bottom .social_widget {
    float: right;
}

@media (max-width: 767px) {
    .footer_v3 .footer_bottom .social_widget {
        margin-top: 30px;
        float: none;
        text-align: center;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer_v3 .footer_bottom .social_widget {
        margin-top: 30px;
        float: none;
        text-align: center;
    }
}

.footer_v3 .footer_bottom .social_widget ul li a {
    width: 70px;
    height: 70px;
    line-height: 70px;
}

@media (max-width: 767px) {
    .footer_v3 .footer_bottom .social_widget ul li a {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .footer_v3 .footer_bottom .social_widget ul li a {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
}

.footer_v3 .copyright_area {
    padding: 25px 0;
}


/*# sourceMappingURL=style.css.map */


/*----captcha------*/

.captcha {
    background-color: #f8f8f8;
    border: 1px solid #8b3eea;
    border-radius: 5px;
    color: #4c4a4b;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    height: 73px;
    margin-top: 20px;
}

@media screen and (max-width: 500px) {
    .captcha {
        flex-direction: column;
    }
    .text {
        margin: .5em!important;
        text-align: center;
    }
    .logo {
        align-self: center!important;
    }
    .spinner {
        margin: 2em .5em .5em .5em!important;
    }
}

.text1 {
    font-size: 13px;
    font-weight: bold;
    margin-right: 1em;
}

.spinner {
    position: relative;
    width: 1em;
    height: 1em;
    display: flex;
    margin: 2em 1em;
    align-items: center;
    justify-content: center;
}

.spinner input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.spinner input[type="checkbox"]+.checkmark {
    display: inline-block;
    width: 25px;
    height: 25px;
    background-color: #fcfcfc;
    border: 2.5px solid #c3c3c3;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-top: 6px;
}

.spinner input[type="checkbox"]+.checkmark span {
    content: '';
    position: relative;
    /*
  position:absolute;
  border-bottom:3px solid;
  border-right:3px solid;
  border-color:#029f56;*/
    margin-top: -3px;
    transform: rotate(45deg);
    width: .75em;
    height: 1.2em;
    opacity: 0;
}

.spinner input[type="checkbox"]+.checkmark>span:after {
    content: '';
    position: absolute;
    display: block;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #029f56;
}

.spinner input[type="checkbox"]+.checkmark>span:before {
    content: '';
    position: absolute;
    display: block;
    width: 3px;
    bottom: 0;
    right: 0;
    background-color: #029f56;
}

.spinner input[type="checkbox"]:checked+.checkmark {
    animation: 2s spin forwards;
}

.spinner input[type="checkbox"]:checked+.checkmark>span {
    animation: 1s fadein 1.9s forwards;
}

.spinner input[type="checkbox"]:checked+.checkmark>span:after {
    animation: .3s bottomslide 2s forwards;
}

.spinner input[type="checkbox"]:checked+.checkmark>span:before {
    animation: .5s rightslide 2.2s forwards;
}

@keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes bottomslide {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes rightslide {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}

.logo1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: flex-end;
    margin: 0 12px !important;
}

.logo1 img {
    height: 2em;
    width: 2em;
    box-shadow: none;
}

.logo1 p {
    color: #000;
    margin: 0;
    font-size: 10px;
    font-weight: 700;
    margin: .4em 0 .2em 0;
}

.logo1 small {
    color: #9d9ba7;
    margin: 0;
    font-size: 8px;
}

@keyframes spin {
    10% {
        width: 0;
        height: 0;
        border-width: 6px;
    }
    30% {
        width: 0;
        height: 0;
        border-radius: 50%;
        border-width: 1em;
        transform: rotate(0deg);
        border-color: rgb(199, 218, 245);
    }
    50% {
        width: 2em;
        height: 2em;
        border-radius: 50%;
        border-width: 4px;
        border-color: rgb(199, 218, 245);
        border-right-color: rgb(89, 152, 239);
    }
    70% {
        border-width: 4px;
        border-color: rgb(199, 218, 245);
        border-right-color: rgb(89, 152, 239);
    }
    90% {
        border-width: 4px;
    }
    100% {
        width: 2em;
        height: 2em;
        border-radius: 50%;
        transform: rotate(720deg);
        border-color: transparent;
    }
}