/* -----------------------------------------------
				CSS Styles 
--------------------------------------------------

    Template Name: NoonPost. - Personal Blog HTML Template
    
--------------------------------------------------

Table of Content

    - Global
    - Helpers
    - Section
    - Navigation
    - Layouts
    - Widget
    - Post-card
    - Post-single
    - Categorie
    - Hero
    - About
    - Contact 
    - Footer
	  - Preloader 
    - Responsive
 

----------------------------------- */


/* -----------------------------------
		 Global
----------------------------------- */

* {
    margin: 0;
    padding: 0;
    font-family: inherit;
    outline: none !important;
    list-style: none !important;
}

*:after,
*:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Muli", sans-serif;
    font-size: 16px;
    background-color: #F9F9FF;
    color: #506172;
    font-weight: 400;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Muli", sans-serif;
    font-weight: 700;
    line-height: 1.4;
    color: #152035;
    margin: 0;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

p:first-letter,
h5:first-letter {
    text-transform: capitalize;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #0c9a69;
}

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

ul {
    margin-bottom: 0;
}

.list-inline li {
    display: inline-block;
}

.max-width-400 {
    width: 400px;
}

.inner-width {
    width: 600px;
    margin: auto;
}

.card {
    background-color: transparent;
    border: 0px;
}

.form-control:focus {
    outline: none !important;
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
}


/* ------------------------------
		 Helpers
------------------------------ */

.pagination {
    padding: 0px 0px 50px 0px;
}

.pagination ul {
    text-align: center;
    margin: auto;
}

.pagination ul li {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #0c9a69;
    text-align: center;
    margin-right: 8px;
    line-height: 35px;
    -webkit-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
}

.pagination ul li:last-child {
    margin-right: 0px;
}

.pagination ul li a {
    color: #0c9a69;
    font-weight: 700;
}

.pagination ul li a i {
    line-height: 35px;
}

.pagination ul li.active,
.pagination ul li:hover {
    background-color: #0c9a69;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
    box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
}

.pagination ul li.active a,
.pagination ul li:hover a {
    color: #ffffff;
}

.search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #F9F9FF;
    -webkit-transform: translate(0%, 100%) scale(0, 0);
    transform: translate(0%, 100%) scale(0, 0);
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.search.search-open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
    visibility: visible;
    overflow: hidden;
}

.search .close {
    position: fixed;
    top: 30px;
    right: 30px;
    color: #ffffff;
    background-color: #0c9a69;
    border: none;
    opacity: 1;
    visibility: visible;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    cursor: pointer;
}

.search .close:hover {
    opacity: 1;
    background-color: #506172;
}

.search-form {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 40px;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
    box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
}

.search-form input {
    font-size: 16px;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    color: inherit;
    border: 0px;
    font-weight: 600;
    border-radius: 40px 0px 0px 40px;
    padding: 15px 10px 15px 30px;
    z-index: 1;
}

.search-form .search-btn {
    background-color: #0c9a69;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0px;
    cursor: pointer;
    border-radius: 0px 40px 40px 0px;
    width: 100px;
    font-weight: 700;
    color: #ffffff;
    text-transform: capitalize;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.search-form .search-btn:hover {
    background-color: #506172;
    color: #ffffff;
}

.newslettre {
    padding: 30px 0px 10px 0px;
    background-color: #054d44;
}

.newslettre-form {
    margin: auto;
    margin-bottom: 30px;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 20px;
}

.newslettre-form .form-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.newslettre-form .form-group {
    margin-bottom: 0;
    width: 100%;
}

.newslettre-form .form-control {
    height: 45px;
    background-color: #ffffff;
    border: 0px;
    padding: 0px 20px;
    border-radius: 20px 0 0 20px;
    color: #506172;
    width: 100%;
    cursor: pointer;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.newslettre-form .form-control:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.newslettre-form .submit-btn {
    background-color: #0c9a69;
    width: 150px;
    height: 45px;
    border-radius: 0 20px 20px 0;
    color: #ffffff;
    font-weight: 700;
    margin-top: 0px;
    border: 1px solid #0c9a69;
    -webkit-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
}

.newslettre-form .submit-btn:hover {
    background-color: #506172;
    border: 1px solid #506172;
}

.newslettre-info h5 {
    margin-bottom: 10px;
    color: #ffffff;
    margin-top: 10px;
}

.newslettre-info h4 {
    margin-bottom: 10px;
    color: #ffffff;
    margin-top: 10px;
}

.newslettre-info p {
    margin-bottom: 30px;
    font-size: 14px;
    color: #eee;
}

.newslettre .social-icones li {
    margin-right: 20px;
    font-weight: 500;
    line-height: 24px;
}

.newslettre .social-icones li a {
    margin-right: 0px;
    color: #eee;
}

.newslettre .social-icones li a:hover {
    color: #0c9a69;
}

.newslettre .social-icones li a:hover i {
    color: #0c9a69;
}

.newslettre .social-icones li a i {
    margin-right: 8px;
    color: #eee;
}

.newslettre .social-icones li a svg {
    margin-right: 8px;
    color: #eee;
}

.newslettre .social-icones li:last-child {
    margin-right: 0px;
}

.btn-custom {
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    font-size: 16px;
    font-weight: 600;
    padding: 6px 20px;
    text-transform: capitalize;
    border-radius: 20px;
    background-color: #0c9a69;
    color: #ffffff;
    border: 0px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.btn-custom-2 {
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    font-size: 16px;
    font-weight: 600;
    padding: 6px 20px;
    text-transform: capitalize;
    border-radius: 20px;
    background-color: #0c9a69;
    color: #ffffff;
    border: 0px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.btn-custom-2 a {
    color: #fff;
}

.btn-custom:hover,
.btn-custom:focus {
    color: #ffffff;
    background-color: #506172;
    outline: none;
}

.link {
    background-color: #0c9a69;
    color: #ffffff !important;
    padding: 1px 10px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-align: center;
    font-size: 13px;
    border-radius: 20px;
    font-weight: 700 !important;
    text-transform: capitalize;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.link:hover {
    color: #ffffff;
    background-color: #506172;
}

.link .arrow_right {
    margin-top: 4px;
    margin-left: 5px;
}

.link .arrow_left,
.link .arrow_back {
    margin-top: 4px;
    margin-right: 5px;
}

.dot {
    width: 4px;
    height: 4px;
    background-color: #0c9a69;
    border-radius: 50%;
    display: block;
    margin: 2px 6px !important;
}

.social-icones li a {
    display: block;
    text-align: center;
    margin-right: 10px;
}

.social-icones li a i {
    font-size: 14px;
    color: #506172;
}

.social-icones li a svg {
    font-size: 14px;
    color: #506172;
    width: 14px;
}

.social-icones li a i:hover {
    color: #0c9a69;
}

.social-icones li a svg:hover {
    color: #0c9a69;
}

.social-media a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: block;
    text-align: center;
    margin-right: 2px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.social-media a i {
    font-size: 13px;
    line-height: 30px;
    color: #ffffff;
}

.social-media a:hover {
    background-color: #F9F9FF;
}

.social-media a:hover i {
    color: #506172;
}

.color-facebook {
    background-color: #3b5998;
}

.color-instagram {
    background-color: #c32aa3;
}

.color-youtube {
    background-color: #e52d27;
}

.color-twitter {
    background-color: #1dcaff;
}

.color-dribbble {
    background-color: #ddd;
}

.color-pinterest {
    background-color: #bd081c;
}


/*margin-bottom*/

.mb-100 {
    margin-bottom: 100px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-10 {
    margin-bottom: 10px;
}


/*margin-top*/

.mt-100 {
    margin-top: 100px;
}

.mt-95 {
    margin-top: 95px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-10 {
    margin-top: 10px;
}

.mt--10 {
    margin-top: -10px;
}

.mt--20 {
    margin-top: -20px;
}

.pt-85 {
    padding-top: 85px !important;
}

.pt-80 {
    padding-top: 80px !important;
}

.pt-55 {
    padding-top: 55px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.pt-45 {
    padding-top: 45px !important;
}


/* ------------------------------
		 Section
------------------------------ */

.section {
    margin-top: 65px;
    background-color: #F9F9FF;
}

.section-title {
    margin-bottom: 20px;
    margin-top: 5px;
}

.section-title h5 {
    text-transform: capitalize;
    position: relative;
}

.section-title h5:after {
    background-color: #0c9a69;
    display: block;
    position: absolute;
    content: "";
    left: auto;
    top: -5px;
    width: 30px;
    height: 2px;
}

.section-title h2 {
    text-transform: capitalize;
    position: relative;
}

.section-title h2:after {
    background-color: #0c9a69;
    display: block;
    position: absolute;
    content: "";
    left: auto;
    top: -5px;
    width: 40px;
    height: 4px;
}

.section-title p {
    margin-bottom: 0;
}


/* -----------------------------------
		Navigation
----------------------------------- */

.navbar {
    background-color: #ffffff;
    padding: 15px 15px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.navbar-scroll {
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.navbar .logo img {
    max-height: 100px;
}

.navbar .nav-item .nav-link {
    font-weight: 700;
    color: #152035;
    font-size: 16px;
    padding: 0px 15px 0px 0px;
    display: inline-block;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    position: relative;
}

.navbar .nav-item .nav-link i {
    color: #0c9a69;
}

.navbar .nav-item .nav-link.active,
.navbar .nav-item .nav-link:hover {
    color: #0c9a69;
    background-color: #ffffff;
}

.navbar .nav-item:last-child .nav-link {
    padding-right: 0;
}

.navbar .nav-item .dropdown-toggle::after {
    border: 0 none;
    line-height: normal;
    margin-left: 5px;
    vertical-align: middle;
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    font-weight: 400;
    margin-left: 5px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.navbar .nav-item .dropdown-toggle1::after {
    border: 0 none;
    line-height: normal;
    margin-left: 5px;
    vertical-align: middle;
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    font-weight: 400;
    margin-left: 5px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.navbar .nav-item .dropdown-menu {
    border: 0px;
    padding: 20px;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
    box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
}

.navbar .nav-item .dropdown-menu .dropdown-item {
    color: #152035;
    padding: 0;
    margin-bottom: 15px;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 500;
    text-transform: capitalize;
}

.navbar .nav-item .dropdown-menu .dropdown-item:hover,
.navbar .nav-item .dropdown-menu .dropdown-item.active {
    background-color: #ffffff;
    color: #0c9a69;
}

.navbar .nav-item .dropdown-menu li:last-child .dropdown-item {
    margin-bottom: 0;
}

.navbar .nav-item:hover .nav-link {
    color: #0c9a69;
}

.navbar-toggler {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 0;
    padding: 0;
    margin-left: 10px;
    border: none;
}

.navbar-toggler span {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 25px;
    height: 2px;
    margin: auto;
    -webkit-box-shadow: 0px -8px 0 0px currentColor, 0px 8px 0 0px currentColor;
    box-shadow: 0px -8px 0 0px currentColor, 0px 8px 0 0px currentColor;
    background: #152035;
}

.navbar-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
}

.navbar-right .social-icones {
    margin-right: 10px;
}

.navbar-right .search-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #0c9a69;
    text-align: center;
    display: block;
    cursor: pointer;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.navbar-right .search-icon i {
    line-height: 35px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    display: block;
    /* -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg); */
}

.search-icon-cart {
    margin-right: 10px;
    position: relative;
}

.search-icon.search-icon-cart small {
    width: 16px;
    height: 16px;
    line-height: 16px;
    left: 19px;
    top: -7px;
    position: absolute;
    background-color: #f60;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    text-align: center;
    display: inline-block;
}

.navbar-right .search-icon:hover {
    background-color: #506172;
}

.widget-latest-posts.widget-latest-posts-v1 .last-post .content a {
    font-weight: 700;
}

@media all and (min-width: 991px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: .3s;
        transition: .3s;
        margin-top: 10px;
    }
    .navbar .nav-item:hover .dropdown-menu {
        -webkit-transition: .3s;
        transition: .3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
    }
    .navbar .dropdown-menu.fade-up {
        top: 180%;
    }
}


/* ------------------------------
		 Layouts
------------------------------ */

.masonry-layout {
    background-color: #F9F9FF;
}

.masonry-layout .card {
    border: 0;
    border-radius: 0;
    margin-bottom: 0px;
    background-color: transparent;
}

.masonry-layout .card-columns {
    -webkit-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 30px;
    column-gap: 30px;
}

.masonry-layout .card-columns .card {
    margin-bottom: 20px;
    margin-top: 40px;
}

.masonry-layout .card-columns .post-card {
    margin-bottom: 0px;
}

.col2-layout .card-columns {
    -webkit-column-count: 2;
    column-count: 2;
}

.col2-layout .post-card {
    margin-bottom: 30px;
}


/* ------------------------------
		  Widget
------------------------------ */

.widget {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
    box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
}

.widget .title {
    margin-bottom: 20px;
}

.widget-author {
    text-align: center;
}

.widget-author .image {
    position: relative;
    width: 100px;
    height: 100px;
}

.widget-author img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.widget-author h6 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 900;
}

.widget-author p {
    text-align: center;
    margin-bottom: 20px;
}

.widget-author .social-icones {
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.widget-author .link {
    margin-bottom: 10px;
}

.widget-latest-posts .last-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.widget-latest-posts .last-post .image {
    width: 90px;
    height: 90px;
    margin-right: 15px;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}

.widget-latest-posts .last-post .image img {
    border-radius: 20px;
    width: 90px;
    height: 90px;
    -webkit-transition: all 0.9s ease-in-out;
    transition: all 0.9s ease-in-out;
}

.widget-latest-posts .last-post .image img:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.widget-latest-posts .last-post .nb {
    position: absolute;
    content: "";
    left: -5px;
    top: -5px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #0c9a69;
    text-align: center;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    line-height: 2;
    z-index: 1;
}

.widget-latest-posts .last-post .content {
    width: calc(100% - 90px);
}

.widget-latest-posts .last-post .content p,
.widget-latest-posts .last-post .content a {
    font-weight: 900;
    color: #152035;
    margin-bottom: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.widget-latest-posts .last-post .content h3 {
    font-weight: 900;
    color: #152035;
    margin-bottom: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
}

.widget-latest-posts .last-post .content a:hover {
    color: #0c9a69;
}

.widget-latest-posts .last-post .content small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 8px;
    text-transform: capitalize;
    font-size: 13px;
    color: #506172;
    font-weight: 400;
}

.widget-latest-posts .last-post .content small .dot {
    margin: 0px 6px 0px 0px !important;
}

.widget-latest-posts .last-post .content small span {
    color: #0c9a69;
    margin-right: 5px;
}

.widget-latest-posts .last-post .content .link {
    margin-bottom: 8px;
}

.widget-latest-posts .last-post:last-child {
    margin-bottom: 0;
}

.widget-categories li {
    background-color: #F9F9FF;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.widget-categories li a {
    font-weight: 700;
}

.widget-categories li a:hover {
    color: #0c9a69;
}

.widget-categories li span {
    float: right;
    color: #506172;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.widget-categories li:last-child {
    margin-bottom: 0px;
}

.widget-instagram {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto auto auto;
    grid-template-columns: auto auto auto;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    grid-gap: 10px;
}

.widget-instagram li {
    overflow: hidden;
    border-radius: 5px;
}

.widget-instagram li img {
    border-radius: 5px;
    -webkit-transition: all 0.9s ease-in-out;
    transition: all 0.9s ease-in-out;
}

.widget-instagram li img:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.widget-comments {
    margin-bottom: 70px;
}

.widget-comments .comment-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 50px;
}

.widget-comments .comment-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 15px;
}

.widget-comments .comment-item .content p {
    margin-bottom: 15px;
}

.widget-comments .comment-item .content .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}

.widget-comments .comment-item .content .info li {
    margin-bottom: 0;
    font-size: 14px;
    color: #506172;
    text-transform: capitalize;
    font-weight: 400;
}

.widget-comments .comment-item .content .info li.dot {
    margin: 2px 15px !important;
}

.widget-form .form-group {
    margin-bottom: 20px;
}

.widget-form .form-control {
    background-color: #F9F9FF;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 20px 20px;
    font-size: 14px;
    color: #152035;
    display: inline-block;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.widget-form .form-control:focus,
.widget-form .form-control:hover {
    -webkit-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
    box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
    background-color: #ffffff;
}

.widget-form label {
    font-weight: 400;
    font-size: 14px;
}

.widget-form label span {
    line-height: 0;
}

.widget-next-post .small-post,
.widget-previous-post .small-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.widget-next-post .small-post .image,
.widget-previous-post .small-post .image {
    width: 90px;
    height: 90px;
    margin-right: 15px;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}

.widget-next-post .small-post .image img,
.widget-previous-post .small-post .image img {
    border-radius: 20px;
    width: 90px;
    height: 90px;
    -webkit-transition: all 0.9s ease-in-out;
    transition: all 0.9s ease-in-out;
}

.widget-next-post .small-post .image img:hover,
.widget-previous-post .small-post .image img:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.widget-next-post .small-post .nb,
.widget-previous-post .small-post .nb {
    position: absolute;
    content: "";
    left: -5px;
    top: -5px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #0c9a69;
    text-align: center;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    line-height: 2;
    z-index: 1;
}

.widget-next-post .small-post .content,
.widget-previous-post .small-post .content {
    width: calc(100% - 90px);
}

.widget-next-post .small-post .content p,
.widget-next-post .small-post .content a,
.widget-previous-post .small-post .content p,
.widget-previous-post .small-post .content a {
    font-weight: 900;
    color: #152035;
    margin-bottom: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.widget-next-post .small-post .content a:hover,
.widget-previous-post .small-post .content a:hover {
    color: #0c9a69;
}

.widget-next-post .small-post .content small,
.widget-previous-post .small-post .content small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 8px;
    text-transform: capitalize;
    font-size: 13px;
    color: #506172;
    font-weight: 400;
}

.widget-next-post .small-post .content small .dot,
.widget-previous-post .small-post .content small .dot {
    margin: 0px 6px 0px 0px !important;
}

.widget-next-post .small-post .content small span,
.widget-previous-post .small-post .content small span {
    color: #0c9a69;
    margin-right: 5px;
}

.widget-next-post .small-post .content .link,
.widget-previous-post .small-post .content .link {
    margin-bottom: 8px;
}

.widget-next-post .small-post:last-child,
.widget-previous-post .small-post:last-child {
    margin-bottom: 0;
}

.widget-tags ul li {
    background-color: #F9F9FF;
    padding: 4px 11px;
    margin-bottom: 5px;
    margin-right: 2px;
    border-radius: 20px;
    font-size: 13px;
    text-transform: capitalize;
    color: #506172;
    font-weight: 700;
}

.widget-tags ul li a:hover {
    color: #506172;
}


/* ------------------------------
		 Post-card
------------------------------ */

.post-card {
    background-color: #ffffff !important;
    padding: 30px;
    border-radius: 20px !important;
    margin-bottom: 20px;
    display: block;
    position: relative;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
    box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
    -webkit-transition: all 0.9s ease-in-out;
    transition: all 0.9s ease-in-out;
}

.post-card-image {
    margin-top: 0px;
    margin-bottom: 30px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08), 0 0 0 transparent;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08), 0 0 0 transparent;
}

.post-card-image img {
    border-radius: 20px;
    -webkit-transition: all 0.9s ease-in-out;
    transition: all 0.9s ease-in-out;
    width: 100%;
}

.post-card-image img:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.post-card-content .categorie {
    margin-bottom: 20px;
}

.post-card-content h5 {
    margin-bottom: 8px;
}

.post-card-content h5 a {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.post-card-content h5 a:hover {
    color: #0c9a69;
}

.post-card-content p {
    margin-bottom: 10px;
}

.post-card-info ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.post-card-info img {
    width: 40px !important;
    height: 40px;
    border-radius: 50%;
    margin-right: 7px;
}

.post-card-info li {
    margin-bottom: 0;
    font-size: 13px;
    color: #506172;
    text-transform: capitalize;
    font-weight: 500;
}

.post-card-info li.dot {
    margin: 2px 15px !important;
}

.widget_custom.widget {
    padding: 15px;
}

.widget_custom .widget-categories li span {
    padding: 2px 5px;
    font-size: 13px;
}

.widget_custom .widget-categories li {
    padding: 15px 5px;
}

.box_product_cate .post-card {
    padding: 10px;
}

.pro_normal .post-card-info .list-inline li {
    width: auto;
}


/* ------------------------------
		Post-single
------------------------------ */

.post-single {
    background-color: #ffffff !important;
    padding: 30px;
    border-radius: 20px !important;
    margin-bottom: 30px;
    margin-top: 30px;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
    box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
}

.post-single-image {
    margin-top: -60px;
    margin-bottom: 40px;
    border-radius: 20px;
}

.post-single-image img {
    border-radius: 20px;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
    box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
}

.post-single-content .categorie {
    margin-bottom: 20px;
}

.post-single-content h4 {
    margin-bottom: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.post-single-content h4 a:hover {
    color: #0c9a69;
}

.post-single-content p {
    margin-bottom: 30px;
}

.post-single-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 7px;
}

.post-single-info li {
    margin-bottom: 0;
    font-size: 13px;
    color: #506172;
    text-transform: capitalize;
    font-weight: 400;
}

.post-single-body {
    margin-top: 30px;
    color: #333;
}

.post-single-body p img {
    display: block;
    text-align: center;
    margin: 0 auto;
}

.post-single-body p em {
    display: block;
    text-align: center;
    margin: 10px auto;
    font-size: 13px;
}

.bg_color {
    background-color: #fff;
}

.box_product_cate div h1 {
    font-size: 30px;
}

.post-single-body h5 {
    margin-top: 30px;
    margin-bottom: 10px;
}

.post-single-body .image {
    margin-top: 15px;
    margin-bottom: 15px;
}

.post-single-body .image img {
    border-radius: 5px;
}

.post-single-body .image p {
    color: #506172;
    text-align: center;
    font-size: 12px;
    margin-top: 4px;
    margin-bottom: 0px;
}

.post-single-body .quote {
    background-color: #F9F9FF;
    padding: 20px;
    border-radius: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.post-single-body .quote i {
    font-size: 30px;
    color: #0c9a69;
}

.post-single-body .quote p {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #152035;
    font-weight: 900;
}

.post-single-body .quote small {
    color: #506172;
    font-weight: 400;
}

.post-single-body .list {
    margin-bottom: 15px;
}

.post-single-body .list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
}

.post-single-body .list li:before {
    background-color: #506172;
    border-radius: 50%;
    position: absolute;
    content: "";
    left: 0;
    top: 12px;
    width: 5px;
    height: 5px;
}

.post-single-footer {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.post-single-footer .tags ul li {
    background-color: #F9F9FF;
    padding: 4px 11px;
    margin-bottom: 5px;
    margin-right: 2px;
    border-radius: 20px;
    font-size: 13px;
    text-transform: capitalize;
    color: #506172;
    font-weight: 700;
}

.post-single-footer .tags ul li a:hover {
    color: #506172;
}

.post-single-footer .social-media {
    text-align: center;
    margin-left: auto;
}


/* ------------------------------
		Categorie
------------------------------ */

.categorie {
    background-color: #0c9a69;
    color: #fff;
    padding: 2px 15px;
    display: inline-block;
    margin: auto;
    text-align: center;
    font-size: 13px;
    border-radius: 20px;
    font-weight: 500;
    text-transform: capitalize;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.widget_custom .categorie {
    background-color: #fff;
    border: 1px solid #0c9a69;
    color: #0c9a69;
    padding: 2px 15px;
    display: inline-block;
    margin: auto;
    text-align: center;
    font-size: 13px;
    border-radius: 20px;
    font-weight: 500;
    text-transform: capitalize;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.widget_custom .categorie.active {
    background-color: #0c9a69;
    color: #fff;
}

.widget_custom .categorie.active {
    font-weight: 700;
}

.widget_custom .widget-latest-posts .last-post .content h3 {
    font-size: 14px;
    font-weight: 500;
    height: 62px;
    overflow: hidden;
}

.widget-tags ul li a {
    font-weight: 600;
}

.widget_custom .widget-latest-posts .last-post .content h3 a {
    font-size: 14px;
    font-weight: 500;
}

.categorie:hover {
    background-color: #506172;
    color: #ffffff !important;
}

.categorie-section {
    margin-top: 140px;
    margin-bottom: 30px;
}

.categorie-title h3 {
    margin-bottom: 10px;
}

.categorie-title h3 span {
    color: #0c9a69;
}

.categorie-title p {
    margin-bottom: 0px;
}

.categorie-title small {
    font-size: 14px;
}

.box_product h1 {
    margin-bottom: 20px;
    margin-top: 10px;
}


/* ------------------------------
		 Hero
------------------------------ */

.hero {
    margin-bottom: 0px;
    position: relative;
    background-position: center center;
    background-size: cover;
    height: calc(100vh - 65px);
    z-index: 1;
}

.hero:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 1;
    bottom: 0;
    z-index: -1;
}

.hero-content {
    text-align: center;
}

.hero-content .categorie {
    margin-bottom: 30px;
}

.hero-content p {
    color: #ffffff;
    font-weight: 500;
    display: none;
}

.hero-content h2 {
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-content h2 a:hover {
    color: #ffffff;
}

.hero-content .post-card-info {
    margin: auto;
    margin-top: 30px;
}

.hero-content .post-card-info ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.hero-content .post-card-info li {
    color: #eee;
    font-weight: 700;
}

.hero-content .post-card-info li img {
    display: none;
}

.carousel-hero {
    margin-top: 70px;
}

.carousel-hero .owl-carousel {
    margin-bottom: 0px;
    position: relative;
}

.carousel-hero .owl-nav {
    text-align: center;
    line-height: 0;
    margin-bottom: 0px;
    position: absolute;
    height: 40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
}

.carousel-hero .owl-nav .owl-prev,
.carousel-hero .owl-nav .owl-next {
    background-color: transparent !important;
    color: #ffffff !important;
    margin-right: 0px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    font-size: 18px;
    position: absolute;
    border: 1px solid #ffffff !important;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.carousel-hero .owl-nav .owl-prev:after,
.carousel-hero .owl-nav .owl-next:after {
    border: 0 none;
    line-height: normal;
    vertical-align: middle;
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
}

.carousel-hero .owl-nav .owl-prev span,
.carousel-hero .owl-nav .owl-next span {
    display: none;
}

.carousel-hero .owl-nav .owl-prev,
.carousel-hero .owl-nav .owl-next {
    background-color: #0c9a69 !important;
    color: #ffffff !important;
    border: 1px solid #0c9a69 !important;
}

.carousel-hero .owl-nav .owl-prev {
    left: 30px;
}

.carousel-hero .owl-nav .owl-prev:after {
    content: "\f104";
}

.carousel-hero .owl-nav .owl-next {
    right: 30px;
}

.carousel-hero .owl-nav .owl-next:after {
    content: "\f105";
}

.custom-dropdown {
    position: relative;
    display: inline-block;
    margin: 5px;
}

.custom-dropdown-btn {
    padding: 2px 10px;
    border: 1px solid #ccc;
    background-color: white;
    cursor: pointer;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 6px;
    float: right;
}

.custom-dropdown-content {
    display: none;
    /* position: absolute; */
    background-color: white;
    /* border: 1px solid #ccc;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
    z-index: 999;
    min-width: 160px;
    border-radius: 6px;
}

.custom-dropdown-content a {
    padding: 8px 12px;
    display: block;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.custom-dropdown-content a:hover {
    background-color: #f0f0f0;
}

.menu_mobi_cus .widget_custom .widget-categories li {
    display: inline-block;
    padding: 10px 5px;
    margin-bottom: 0px;
    background-color: #fff;
}

.widget_custom .cate_child_b {
    width: 100%;
}

.widget_custom .cate_child_b li {
    text-align: right;
    padding: 0px 0px;
    margin-bottom: 5px;
}

.widget_custom .cate_child_b li a {
    font-size: 14px;
    padding: 0px 0px;
    font-weight: 700;
}

.widget_custom ul li .ml-auto {
    position: absolute;
    top: 15px;
    right: 3px;
    font-weight: normal;
}

.widget_custom .widget-categories li {
    position: relative;
}


/* ------------------------------
		About
------------------------------ */

.about-us {
    background-color: #ffffff !important;
    padding: 30px;
    border-radius: 20px !important;
    margin-bottom: 50px;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
    box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
    -webkit-transition: all 0.9s ease-in-out;
    transition: all 0.9s ease-in-out;
}

.about-us-image {
    margin-top: -60px;
    margin-bottom: 50px;
    border-radius: 20px;
    -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08), 0 0 0 transparent;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08), 0 0 0 transparent;
}

.about-us-image img {
    border-radius: 20px;
}

.about-us .description h6 {
    margin-bottom: 15px;
    font-size: 18px;
}

.about-us .description .quote {
    background-color: #F9F9FF;
    padding: 20px;
    border-radius: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.about-us .description .quote i {
    font-size: 30px;
    color: #0c9a69;
}

.about-us .description .quote p {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #152035;
    font-weight: 900;
}

.about-us .description .quote small {
    color: #506172;
    font-weight: 400;
}


/* ------------------------------
		contact
------------------------------ */

.contact {
    background-color: #ffffff !important;
    padding: 30px;
    border-radius: 20px !important;
    margin-bottom: 60px;
    display: block;
    position: relative;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
    box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
    -webkit-transition: all 0.9s ease-in-out;
    transition: all 0.9s ease-in-out;
}

.contact .google-map {
    margin-top: -60px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08), 0 0 0 transparent;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08), 0 0 0 transparent;
    line-height: 0;
    border: 0;
    border-radius: 20px;
}

.contact .google-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 20px;
    -webkit-transition: all 0.9s ease-in-out;
    transition: all 0.9s ease-in-out;
}

.contact_form h6 {
    font-size: 18px;
    margin-bottom: 10px;
}


/* ------------------------------
		Footer
------------------------------ */

.footer {
    background-color: #024038;
}

.footer .copyright {
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .copyright p {
    margin-bottom: 0;
    font-size: 13px;
    text-align: center;
    color: #eee;
}

.footer .copyright p a {
    font-weight: 700;
}

.footer .back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.footer .back .back-top {
    width: 45px;
    height: 45px;
    background-color: #0c9a69;
    position: fixed;
    bottom: 15px;
    right: 10px;
    border-radius: 50%;
    z-index: 9;
    display: none;
    text-align: center;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.footer .back .back-top i {
    color: #ffffff;
    line-height: 45px;
    font-size: 16px;
    text-align: center;
    font-weight: 700;
}

.footer .back .back-top:hover {
    -webkit-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
    box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
    background-color: #506172;
}

.footer .back .back-top:hover i {
    color: #ffffff;
}

.box_special {
    background-color: #ebf8f2;
}


/* -----------------------------
		 Preloader 
--------------------------------- */

.loading {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #F9F9FF;
    z-index: 99999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.loading .circle {
    margin: auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #0c9a69;
    -webkit-animation: load 0.9s infinite linear;
    animation: load 0.9s infinite linear;
}

@-webkit-keyframes load {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes load {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}


/* ------------------------------
		 Responsive 
------------------------------ */

@media screen and (max-width: 991px) {
    .navbar .container {
        position: relative;
    }
    .navbar-right {
        position: absolute;
        right: 15px;
        top: 15px;
    }
    .navbar-nav {
        padding-top: 15px;
    }
    .navbar .nav-item .dropdown-menu {
        -webkit-box-shadow: none;
        box-shadow: none;
        margin-bottom: 15px;
        background-color: #F9F9FF;
        -webkit-transition: all 0.7s ease-in-out;
        transition: all 0.7s ease-in-out;
    }
    .navbar .nav-item .dropdown-menu .dropdown-item:hover,
    .navbar .nav-item .dropdown-menu .dropdown-item.active {
        color: #0c9a69;
        background-color: #F9F9FF;
    }
    .navbar .nav-item .nav-link {
        margin-bottom: 15px;
    }
    .navbar .nav-item:last-child .nav-link {
        margin-bottom: 0px;
    }
    .masonry-layout .card-columns {
        -webkit-column-count: 2;
        column-count: 2;
    }
    .max-width {
        margin: auto;
        width: 600px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .masonry-layout .card-columns,
    .col2-layout .card-columns {
        -webkit-column-count: 1;
        column-count: 1;
    }
    .search-form {
        width: 100%;
    }
    .search-form input {
        width: calc(100% - 100px);
    }
    .inner-width {
        width: auto;
        margin: auto;
    }
    .search .close {
        right: 30px;
    }
    .carousel-hero .owl-nav {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .max-width {
        max-width: 100%;
        margin: 0;
    }
    .max-width-400 {
        width: auto;
    }
    .hero-content h2 {
        font-size: 28px;
    }
    .hero-content .post-card-info li:nth-child(5),
    .hero-content .post-card-info li:nth-child(6) {
        display: none;
    }
    .card-columns .card {
        display: inline-block;
        width: 100%;
    }
    .navbar-right .social-icones {
        display: none;
    }
    .widget-comments .comment-item {
        display: block;
    }
    .widget-comments .comment-item img {
        margin-bottom: 15px;
    }
    .post-single-footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .post-single-footer .social-media {
        margin-top: 20px;
        margin-left: 0;
    }
}

@media screen and (max-width: 321px) {
    .post-card-info img {
        display: none !important;
    }
    .post-card-info li.dot {
        margin: 2px 8px !important;
    }
    .hero-content h3 {
        font-size: 24px;
    }
    .widget-instagram {
        -ms-grid-columns: auto auto;
        grid-template-columns: auto auto;
        -ms-grid-rows: auto auto auto;
        grid-template-rows: auto auto auto;
    }
    .newslettre-form .form-flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .newslettre-form .form-control {
        border-radius: 20px;
    }
    .newslettre-form .submit-btn {
        width: 100%;
        border-radius: 20px;
        margin-top: 10px;
    }
    .search {
        padding: 15px !important;
    }
    .search .close {
        right: 15px;
        top: 15px;
    }
    .search-form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .search-form input {
        border-radius: 20px;
        width: 100% !important;
        -webkit-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
        box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
    }
    .search-form .search-btn {
        width: 100%;
        height: 45px;
        border-radius: 20px;
        margin-top: 10px;
    }
}

.masonry-layout {
    width: 100%;
    overflow: hidden;
}

.post-card-info ul li i {
    margin-right: 5px;
}

.post-card-info li {
    margin-right: 15px;
}

.des_info {
    color: #fff;
    line-height: 25px;
    margin-top: 10px;
    font-size: 14px;
}

.social-icones hr {
    border-color: #f79898;
}

.social-icones li a {
    font-style: italic;
    font-size: 15px;
}

.btn-custom1 {
    font-size: 18px;
    font-weight: 700;
}

.navbar .nav-item:last-child .nav-link {
    border-radius: 4px;
    background-color: #0c9a69;
    color: #fff;
    padding: 2px 8px;
}

.bg_white {
    width: 100%;
    overflow: hidden;
    /* background-color: #fff; */
    padding-top: 20px;
}

.post-card-content h5 {
    height: 46px;
    overflow: hidden;
}

.post-card-content h5 a {
    height: 46px;
    overflow: hidden;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-card-content h3 {
    height: 46px;
    overflow: hidden;
    font-size: 16px;
}

.post-card-content h3 a {
    height: 46px;
    overflow: hidden;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pro_normal .post-card-content p {
    height: 70px;
    overflow: hidden;
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pro_special .post-card-content p {
    height: 72px;
    overflow: hidden;
    font-size: 15px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-categories-list .categories {
    list-style: outside none none;
    margin-left: -0.938em;
    margin-right: -0.938em;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0.15em;
}

.pro_normal_slide .owl-carousel {
    margin-bottom: 0px;
    position: relative;
}

.pro_normal_slide .owl-nav {
    text-align: center;
    line-height: 0;
    margin-bottom: 0px;
    position: absolute;
    height: 40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
}

.pro_normal_slide .owl-nav .owl-prev,
.pro_normal_slide .owl-nav .owl-next {
    background-color: transparent !important;
    color: #ffffff !important;
    margin-right: 0px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    font-size: 18px;
    position: absolute;
    border: 1px solid #ffffff !important;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.pro_normal_slide .owl-nav .owl-prev:after,
.pro_normal_slide .owl-nav .owl-next:after {
    border: 0 none;
    line-height: normal;
    vertical-align: middle;
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
}

.pro_normal_slide .owl-nav .owl-prev span,
.pro_normal_slide .owl-nav .owl-next span {
    display: none;
}

.pro_normal_slide .owl-nav .owl-prev,
.pro_normal_slide .owl-nav .owl-next {
    background-color: #0c9a69 !important;
    color: #ffffff !important;
    border: 1px solid #0c9a69 !important;
}

.pro_normal_slide .owl-nav .owl-prev {
    left: -30px;
}

.pro_normal_slide .owl-nav .owl-prev:after {
    content: "\f104";
}

.pro_normal_slide .owl-nav .owl-next {
    right: -30px;
}

.pro_normal_slide .owl-nav .owl-next:after {
    content: "\f105";
}

.pro_normal_slide .post-card-image {
    margin-top: 0px;
}

.social-icones .list li a {
    font-style: normal;
    display: block;
    text-align: left;
}

.widget-latest-posts-home {
    padding-top: 30px;
}

.btn_readmore {
    font-size: 16px;
    padding: 6px 0px;
    color: #0c9a69;
    float: right;
    font-weight: bold;
}

.btn_readmore:after {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 400;
    margin-left: 5px;
}

.section-title-top h2 {
    display: inline-block;
}

.theme-btn {
    -webkit-transition: all .8s linear;
    -moz-transition: all .8s linear;
    -ms-transition: all .8s linear;
    -o-transition: all .8s linear;
    transition: all .8s linear;
}

.theme-btn {
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 40px;
    bottom: 10px;
    color: #fff;
    display: table;
    height: 50px;
    min-width: 50px;
    position: fixed;
    text-align: center;
    z-index: 9999;
}

.theme-btn i {
    font-size: 22px;
    line-height: 50px;
}

.theme-btn.bt-support-now {
    background: #066e63;
    background: -moz-linear-gradient(45deg, #066e63 8%, #34b9b2 100%);
    background: -webkit-linear-gradient(45deg, #066e63 8%, #34b9b2 100%);
    background: linear-gradient(45deg, #066e63 8%, #34b9b2 100%);
    bottom: 130px;
    right: 5px;
}

.theme-btn:hover {
    color: #fff;
    padding: 0 20px;
}

.theme-btn span {
    display: table-cell;
    vertical-align: middle;
    font-size: 16px;
    letter-spacing: -15px;
    opacity: 0;
    line-height: 50px;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    text-transform: uppercase;
}

.theme-btn:hover span {
    opacity: 1;
    letter-spacing: 1px;
    padding-left: 10px;
}

.boxchat .theme-btn1 {
    bottom: 190px;
    background: #058cec;
}

.boxchat .theme-btn2 {
    bottom: 70px;
    right: 5px;
}

.boxchat .theme-btn2 i {
    font-weight: bold;
    color: #05a4e2;
    font-size: 20px;
    font-style: normal;
}

.boxchat .theme-btn2 {
    background: #fff;
    border: 1px solid #0593ca;
}

.boxchat .theme-btn2:hover span {
    color: #05a4e2;
}

.boxchat .d_pc {
    display: table;
}

.boxchat .d_mobi {
    display: none;
}

.theme-btn.bt-support-now {
    right: calc(50% - 1200px/2 - 28px);
}

.boxchat .theme-btn2 {
    right: calc(50% - 1200px/2 - 28px);
}

.product-categories-list .categories .category {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    position: relative;
    margin-bottom: 5.12em;
}

.pro_normal .post-card {
    padding: 10px;
}

.pro_normal .post-card-info li {
    width: 100%;
    margin-bottom: 10px;
}

.pro_normal .post-card-info ul {
    flex-wrap: wrap;
}

.bannerbottom a img {
    width: 100%;
}

.product-categories-list .categories .category {
    flex: 0 0 16%;
    max-width: 16%;
}

.tophead {
    display: block;
    text-align: center;
    z-index: 999;
    position: relative;
    background-color: #f491a5;
}

.product-categories-list .categories .category+.category:before {
    content: " ";
    width: 1px;
    height: 130px;
    background-color: #ebebeb;
    display: block;
    position: absolute;
    left: -3px;
    top: 50%;
    transform: translateY(-50%);
}

.product-categories-list .categories .category img {
    width: 188px;
    height: auto;
}

@media (max-width: 767px) {
    .product-categories-list .categories .category img {
        width: 140px;
    }
    .boxchat {
        bottom: 60px;
    }
    .boxchat .theme-btn2,
    .theme-btn.bt-support-now {
        right: 5px!important;
    }
    .boxchat .d_pc {
        display: none;
    }
    .boxchat .d_mobi {
        display: block;
    }
    .widget_custom .widget-latest-posts .last-post .content a {
        height: 57px;
    }
    .widget_custom .widget-latest-posts .last-post .content h3 {
        height: 40px;
    }
    .widget_custom .widget-latest-posts .last-post {
        margin-bottom: 10px;
    }
    .widget_custom ul li .ml-auto {
        right: 55px;
    }
}

.product-categories-list .categories .category .media>a {
    padding-right: 10px;
}

.product-categories-list .categories .category .media-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 768px) {
    @media (max-width: 1199px) {
        .product-categories-list .categories .category .media-body {
            min-height: 150px;
        }
    }
}

@media (min-width: 1590px) {
    .product-categories-list .categories .category .media-body {
        min-height: 150px;
    }
}

.product-categories-list .categories .category .media-body h4 {
    font-size: 1em;
    letter-spacing: -0.01em;
    font-weight: 500;
    margin: 0 0 0.4em;
}

.product-categories-list .categories .category .media-body h4 a {
    color: #444444;
    font-weight: bold;
    font-size: 16px;
}

.product-categories-list .categories .category .media-body h4 a:hover {
    color: #000;
}

.product-categories-list .categories .category .media-body .sub-categories {
    margin-left: 0;
    margin-bottom: 14px;
    height: 106px;
    overflow: hidden;
}

.product-categories-list .categories .category .media-body .sub-categories li a {
    font-size: 0.85em;
    line-height: 1.615em;
    color: #555353;
    display: block;
}

.product-categories-list .categories .category .media-body .sub-categories li a:hover {
    color: #000;
}

.product-categories-list .categories .view-all {
    display: block;
    font-size: 0.875em;
    font-weight: 700;
    color: #e60950;
    letter-spacing: -0.01em;
    bottom: 0;
}

.product-categories-list .categories .view-all:before {
    content: '+';
    display: inline-block;
    margin-right: 0.243em;
}

.product-categories-list .categories .view-all:hover {
    color: #2c2d33;
}

@media (min-width: 1000px) {
    @media (max-width: 1899px) {
        .product-categories-list .categories .category {
            margin-bottom: 2em;
        }
        .product-categories-list .categories .category .media {
            flex-direction: column;
            padding-right: 28px;
        }
        .product-categories-list .categories .category .media>a {
            margin-bottom: 20px;
        }
        .product-categories-list .categories .category+.category:before {
            height: 250px;
            left: -20px;
        }
        .product-categories-list .categories .category .media-body {
            -ms-flex: 1 1 auto;
        }
    }
}

@media only screen and (max-width: 800px) {
    .product-categories-list .categories .category {
        margin-bottom: 2em;
    }
    .product-categories-list .categories .category img {
        width: 100%;
    }
    .product-categories-list .categories .category .media>a {
        padding-right: 10px;
        width: 45%;
    }
    .product-categories-list .categories .category .media-body .sub-categories {
        height: auto;
    }
    .widget-latest-posts-home {
        padding: 17px;
    }
    .pro_normal_slide .owl-carousel {
        margin: 0 auto;
    }
    .pro_normal_slide .owl-nav .owl-next {
        right: -10px;
        background-color: rgb(12 154 105 / 77%) !important;
    }
    .pro_normal_slide .owl-nav .owl-prev {
        left: -10px;
        background-color: rgb(12 154 105 / 77%) !important;
    }
    .navbar .logo img {
        max-height: 80px;
    }
    .pro_normal .post-card-content p {
        height: 50px;
        -webkit-line-clamp: 2;
    }
    .post-card-content .categorie {
        font-size: 12px;
        white-space: nowrap;
    }
    .widget-latest-posts .last-post .image {
        width: 30%;
    }
    .widget-latest-posts .last-post .content {
        width: calc(100% - 120px);
    }
    .widget-latest-posts .last-post .image img {
        width: 100%;
        height: auto;
    }
    .widget-latest-posts .last-post .content a {
        display: block;
        height: 47px;
        overflow: hidden;
    }
}