@charset "UTF-8";
/*-----------------------------------------------------------------------------------
    Template Name: Simpex
    Description: Directory & Listing HTML5 Template
    Author: Codezion 
    Author URI: https://www.templatemonster.com/authors/codezion/
    Version: 1.0
-----------------------------------------------------------------------------------
    
    >>> TABLE OF CONTENTS:
    =======================

    01. Common/Reusable CSS
        1.1 - Animations
        1.2 - General
        1.3 - Section Title
        1.4 - Video Button
        1.5 - Slick Arrows
        1.6 - Slick Dots
        1.7 - Typography
        1.8 - Tables
        1.9 - Modals
        1.10 - Forms
        1.11 - Buttons
        1.12 - Pagination
        1.13 - Colors
        1.14 - Accordion
    02. Homepage
        2.1 - Header
        2.2 - Single Banner
        2.3 - Explore
        2.4 - Service
        2.5 - Listing
        2.6 - How It Works
        2.7 - Testimonials
        2.8 - Blog
        2.9 - Newsletter
        2.10 - Footer
        2.11 - Copyright
        2.12 - Back To Top
    03. Explore
    04. Listings
    05. Blog
    06. Service
    07. Login
    08. SignUp
    09. Contact
    
-----------------------------------------------------------------------------------*/
/*Google Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

:root {
    --thm-font: 'Montserrat', sans-serif;
    /* Headings */
    --thm-b-font: 'Roboto', sans-serif;
    /* Body font */
    --thm-icon-font: "Font Awesome 5 Pro";
    --thm-bs-icon-font: 'bootstrap-icons';
    /*Icon Font*/
    --thm-color-one: #f74352;
    --thm-color-two: #000000;
    /*Light Color*/
    --thm-color-light: #f5f5f5;
    /*RGB Colors*/
    --thm-color-one-rgb: 247, 67, 82;
    --thm-color-two-rgb: 0, 0, 0;
    --thm-white-rgb: 255, 255, 255;
    /*Light Color*/
    --thm-color-light-rgb: 245, 245, 245;
    /*Theme Colors*/
    --thm-body-color: #9f9f9f;
    /*Body Colors*/
    --thm-white: #ffffff;
    /*White Color*/
    --thm-border: #d1d1d1;
    /*Border Color*/
}

/*Animations*/
@keyframes fadeHeaderInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/*General*/
::selection {
    background-color: var(--thm-color-two);
    color: var(--thm-white);
}

i[class^="flaticon-"],
i[class*=" flaticon-"] {
    display: flex;
    align-items: center;
    justify-content: center;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--thm-b-font);
    overflow-x: hidden;
    color: var(--thm-body-color);
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
}

.relative {
    position: relative;
}

.thm-font {
    font-family: var(--thm-font);
}

.section {
    position: relative;
    padding: 80px 0;
}

.section-padding {
    position: relative;
    padding: 80px 0 50px;
}

.image-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-fit-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.transform-center {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translate(0%, -50%);
    z-index: 1;
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before {
    font-size: inherit;
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

ul li {
    margin-bottom: 0;
    position: relative;
}

button:focus,
*:focus {
    outline: none;
}

button {
    background: transparent;
    border: none;
    padding: 0;
}

label {
    margin-bottom: 10px;
    font-weight: 500;
    line-height: normal;
}

label>a {
    font-size: 14px;
}

img {
    max-width: 100%;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.container-wide .row {
    flex-wrap: unset;
}

.z-1 {
    position: relative;
    z-index: 1;
}

.z-2 {
    position: relative;
    z-index: 2;
}


.section-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
}

.section-bg-fix {
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
}

.section-bg:before,
.section-bg-fix:before {
    content: '';
    background-color: rgb(var(--thm-color-two-rgb), 50%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.section-bg-fix.no-overlay:before,
.section-bg.no-overlay:before {
    display: none;
}

/*section-title*/
.section-header {
    max-width: 550px;
    padding-bottom: 30px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.section-header .title {
    font-weight: 800;
    text-transform: capitalize;
    justify-content: center;
    font-size: 40px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    position: relative;
}

.section-header .title:after {
    content: '';
    height: 2px;
    width: 70px;
    display: flex;
    background-color: var(--thm-color-one);
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
}

.section-header .title span {
    color: var(--thm-color-one);
    font-weight: 400;
}

.section-header .text {
    margin-bottom: 0;
}

.section-header.text-start .title {
    justify-content: flex-start;
}

.section-header.text-start,
.section-header.text-start .title:after {
    margin-left: 0;
}

.section-header.text-white .title {
    color: var(--thm-white);
}

.lh-normal {
    line-height: normal;
}

hr {
    margin: 30px 0;
    border-color: var(--thm-border);
}

/*blockquote*/
blockquote {
    position: relative;
    margin: 0 auto 20px;
    text-align: center;
    padding-top: 10px;
    max-width: 650px;
}

blockquote .quote_icon {
    position: relative;
    color: var(--thm-color-one);
    font-size: 20px;
    margin-top: 15px;
    display: block;
}

blockquote .quote_title {
    position: relative;
    color: var(--thm-color-two);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.6em;
    text-align: center;
}

/*Slick Arrows*/
.slick-arrow {
    font-size: 0;
    position: absolute;
    top: -70px;
    z-index: 100;
    width: 40px;
    height: 40px;
    color: var(--thm-border);
    background-color: var(--thm-white);
    border-radius: 50%;
    left: 0;
    transition: 0.3s all;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--thm-border);
}

.slick-arrow:hover {
    color: var(--thm-white);
    background-color: var(--thm-color-one);
    border-color: inherit;
}

.slick-arrow:before {
    content: "\f053";
    font-family: var(--thm-icon-font);
    font-weight: 400;
    font-size: 14px;
}

.slick-arrow.slick-next:before {
    content: "\f054";
}

.slick-arrow.slick-prev {
    left: auto;
    right: 65px;
}

.slick-arrow.slick-next {
    right: 15px;
    left: auto;
}

/*Slick Dots*/
.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.slick-dots li {
    padding: 0;
    line-height: 0;
}

.slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--thm-body-color);
    margin: 0 3px;
    transition: 0.6s all;
    border: 2px solid var(--thm-body-color);
}

.slick-dots li.slick-active button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--thm-color-one);
    border: 2px solid var(--thm-color-one);
}

/*pagination*/
.pagination {
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 15px;
    border-radius: 0;
    flex-wrap: wrap;
}

.pagination .page-item {
    margin: 0px 5px 15px;
}

.pagination .page-item .page-link {
    border: none;
    border-radius: 6px;
    background-color: var(--thm-color-two);
    color: var(--thm-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    padding: 8px 17px;
}

.pagination .page-item .page-link.active,
.pagination .page-item.active .page-link,
.pagination .page-item:focus .page-link,
.pagination .page-item:hover .page-link {
    background-color: var(--thm-color-one);
}


/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--thm-font);
    font-weight: bold;
    color: var(--thm-color-two);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 30px;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 48px;
}

h3 {
    font-size: 30px;
    line-height: 1.2;
}

h4 {
    font-size: 24px;
    line-height: 1.4;
}

h5 {
    font-size: 22px;
    line-height: 1.3;
}

h6 {
    font-size: 16px;
    line-height: 1.7;
}

p {
    margin-bottom: 30px;
}

a {
    color: var(--thm-color-one);
    transition: .3s all;
    display: inline-block;
    text-decoration: none;
}

a:hover,
a:focus {
    outline: none;
    box-shadow: none;
    text-decoration: none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
a:hover,
a:focus {
    color: var(--thm-color-one);
    text-decoration: none;
}

/*Tables*/
table {
    margin-bottom: 30px;
}

table th,
table td {
    padding: 15px;
    vertical-align: middle;
    background-color: var(--thm-white);
}

table th {
    font-weight: 500;
    color: var(--thm-color-two);
    font-size: 16px;
    border: 1px solid var(--thm-border);
}

table {
    width: 100%;
    margin-bottom: 30px;
}

table td {
    border: 1px solid var(--thm-border);
}

table img {
    width: 40px;
    border-radius: 0;
}

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

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

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

/*Modals*/
/*Forms*/
.form-control-custom {
    border-radius: 6px;
    border: 1px solid var(--thm-border);
    background-color: transparent;
    padding: 8px 20px;
    height: auto;
    transition: 0.3s all;
}

.form-control-custom,
.form-control-custom:focus,
.form-control-custom::placeholder {
    font-size: 14px;
    font-weight: 500;
    color: var(--thm-body-color);
    font-family: var(--thm-font);
}

.form-control:focus,
.form-control-custom:focus {
    box-shadow: none;
    background-color: transparent;
    border-color: var(--thm-color-one);
}

.form-control-custom+i {
    position: absolute;
    top: 50%;
    right: 3px;
    transform: translateY(-50%);
    color: var(--thm-color-two);
    pointer-events: none;
}

textarea.form-control-custom+i {
    top: 23px;
    transform: none;
}

.input-group .thm-btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/*Buttons*/
.thm-btn {
    font-size: 14px;
    color: var(--thm-white);
    display: inline-flex;
    align-items: center;
    padding: 8px 35px;
    transition: 0.5s all;
    font-weight: 500;
    background-color: var(--thm-color-one);
    text-align: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: 6px;
}

.thm-btn.btn-border {
    background-color: var(--thm-white);
}

.thm-btn:hover,
.thm-btn:focus {
    color: var(--thm-white);
    background-color: var(--thm-color-two);
}

.thm-btn i {
    font-size: 14px;
    line-height: normal;
    margin-right: 5px;
}

.thm-btn.btn-rounded {
    border-radius: 50px;
}

.thm-btn.btn-rectangle {
    border-radius: 8px;
}

.thm-btn.btn-small {
    padding: 4px 24px;
}

/*listing_btn*/
.listing_btn {
    display: flex;
    align-items: center;
    position: relative;
    transition: 0.3s all;
    font-weight: 500;
    color: var(--thm-color-two);
}

.listing_btn .icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-white);
    background-color: var(--thm-color-one);
    font-size: 16px;
    line-height: normal;
    border-radius: 50%;
    transition: 0.3s all;
}

.listing_btn:focus .icon,
.listing_btn:hover .icon {
    color: var(--thm-white);
    background-color: var(--thm-color-two);
}

/*Colors*/
.thm-color-one {
    color: var(--thm-color-one);
}

.thm-color-two {
    color: var(--thm-color-two);
}


.thm-bg-color-one {
    background-color: var(--thm-color-one);
}

.thm-bg-color-two {
    background-color: var(--thm-color-two);
}

.thm-bg-color-light {
    background-color: var(--thm-color-light);
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

/*Accordion*/
.custom-accordion .accordion-item {
    border: 1px solid var(--thm-border);
    margin-bottom: 10px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.custom-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.custom-accordion .accordion-button {
    font-size: 20px;
    font-weight: 500;
    padding: 15px 20px;
    color: var(--thm-white);
    background-color: var(--thm-color-one);
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
}

.custom-accordion .accordion-button::after {
    color: var(--thm-white);
    content: "\f078";
    font-family: var(--thm-icon-font);
    background-image: none;
}

.custom-accordion .accordion-button.collapsed {
    color: var(--thm-color-two);
    background-color: var(--thm-color-light);
}

.custom-accordion .accordion-button.collapsed::after {
    color: var(--thm-color-two);
}

.custom-accordion .accordion-body {
    padding-bottom: calc(1rem - 15px);
}

.custom-accordion .accordion-body p {
    margin-bottom: 15px;
}

/*Header*/
.header {
    border-bottom: 2px solid rgb(var(--thm-white-rgb), .3);
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    background-color: transparent;
}

.header.sticky {
    animation-name: fadeHeaderInDown;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 22;
    background: #fff;
    animation-duration: 1s;
    box-shadow: 0 0 8px rgb(var(--thm-color-two-rgb), 10%);
    animation-fill-mode: both;
}

.header .navigation,
.header .header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .logo {
    margin: 15px 0;
    width: 150px;
    height: 50px;
}

.header.sticky .logo img,
.header .logo img+img {
    display: none;
}

.header.sticky .logo img+img {
    display: block;
}

.header .header_actions ul,
.header .header_actions,
.header .nav_actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header .navigation .main-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.header .navigation .main-menu>.menu-item>a {
    color: var(--thm-white);
    font-size: 14px;
    padding: 27px 15px;
    display: flex;
    align-items: center;
    position: relative;
}

.header .navigation .main-menu>.menu-item>a.active,
.header .navigation .main-menu>.menu-item:hover>a {
    color: var(--thm-color-one);
}

.header .navigation .main-menu>.menu-item>a.active:before,
.header .navigation .main-menu>.menu-item:hover>a:before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--thm-color-one);
    bottom: -2px;
}

.header .navigation .menu-item-has-children {
    position: relative;
}

.header .navigation .menu-item-has-children>a:after {
    content: "\f078";
    font-family: var(--thm-icon-font);
    margin-left: 10px;
    font-size: 10px;
}

.header .navigation .menu-item-has-children .sub-menu {
    z-index: 10;
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    transition: 0.5s all;
    width: 180px;
    visibility: hidden;
    opacity: 0;
}

.header .navigation .menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
}

.header .navigation .menu-item-has-children .sub-menu .menu-item>a {
    background-color: var(--thm-color-two);
    color: var(--thm-white);
    width: 100%;
    display: flex;
    padding: 5px 15px;
    align-items: center;
    font-size: 14px;
}

.header .navigation .menu-item-has-children .sub-menu .menu-item:hover>a {
    background-color: var(--thm-color-one);
    color: var(--thm-white);
}

.header .navigation .menu-item-has-children .sub-menu .menu-item-has-children>a:after {
    position: absolute;
    right: 15px;
    transform: rotate(-90deg);
}

.header .navigation .menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
    left: 100%;
    top: 0;
}

.header.sticky .header_actions .login_btn,
.header.sticky .navigation .main-menu>.menu-item>a {
    color: var(--thm-color-two);
}

.header .hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--thm-color-one);
    cursor: pointer;
    border-radius: 6px;
}

.header .hamburger .hamburger_btn span {
    display: flex;
    width: 25px;
    height: 2px;
    margin-bottom: 5px;
    background-color: var(--thm-white);
    transition: 0.5s all;
    position: relative;
}

.header .hamburger .hamburger_btn span:last-child {
    margin-bottom: 0;
}

.header .hamburger .hamburger_btn.active span:first-child {
    transform: rotate(45deg);
    top: 4px;
}

.header .hamburger .hamburger_btn.active span:nth-child(2) {
    display: none;
}

.header .hamburger .hamburger_btn.active span:last-child {
    transform: rotate(-45deg);
    top: -3px;
}

.header .header_actions {
    margin-left: 35px;
}

.header .header_actions .login_btn {
    color: var(--thm-white);
    display: flex;
    align-items: center;
}

.header .header_actions .login_btn:hover {
    color: var(--thm-color-one);
}

.header .nav_actions .thm-btn {
    margin: 0 20px;
    padding: 5px 20px 5px 15px;
    font-weight: 400;
}

/*single_banner*/
.single_banner {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 230px 0 150px;
}

.single_banner:before {
    content: '';
    background-color: rgb(var(--thm-color-two-rgb), 29%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.single_banner .right_skew,
.single_banner .left_skew {
    background-color: var(--thm-white);
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    height: 120px;
    width: 50%;
    transform: skew(0deg, 10deg);
}

.single_banner .right_skew {
    left: 50%;
    transform: skew(0deg, -10deg);
}

.banner_text .title {
    color: var(--thm-white);
    font-weight: 600;
    margin-bottom: 10px;
}

.banner_text .subtitle {
    color: var(--thm-white);
}

.banner_form .form-control {
    border: none;
    border-radius: 6px;
    padding: 15px 20px;
    border-right: 2px solid var(--thm-border);
    margin-bottom: 30px;
}

.banner_form .input-group>:not(:first-child) {
    border-top-right-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
    border-right: 0;
}

.banner_form .form-control:focus {
    box-shadow: none;
    background-color: var(--thm-white);
}

.banner_form .form-control.custom-select {
    border-radius: 0 !important;
    border-right: 2px solid var(--thm-border);
}

.banner_form .form-control::placeholder,
.banner_form .form-control {
    font-size: 14px;
    color: var(--thm-body-color);
}

.banner_form .input-group .input-group-append .thm-btn {
    height: 100%;
    text-transform: uppercase;
    border-radius: 6px;
}

.banner_form .form-radio {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
}

.banner_form .form-radio .form-radio-input {
    display: none;
}

.banner_form .form-radio .form-radio-label {
    background-color: var(--thm-white);
    width: 100%;
    border-radius: 6px;
    padding: 10px 5px;
    width: 98px;
    height: 98px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-color-two);
}

.banner_form .form-radio .form-radio-label .icon {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 8px;
    display: inline-flex;
}

.banner_form .form-radio .form-radio-label p {
    font-weight: 500;
    font-size: 12px;
}

.banner_form .form-radio .form-radio-input:checked~.form-radio-label {
    background-color: var(--thm-color-one);
    color: var(--thm-white);
}

/*subheader*/
.subheader {
    padding: 202px 0 90px;
    text-align: center;
}

.subheader:before {
    background-color: rgb(var(--thm-color-two-rgb), 25%);
}

.subheader .page-title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--thm-white);
}

.subheader .breadcrumb {
    margin-bottom: 30px;
    justify-content: center;
}

.subheader .breadcrumb .breadcrumb-item:hover>a,
.subheader .breadcrumb .breadcrumb-item {
    font-size: 15px;
    font-weight: 500;
    color: var(--thm-white);
    display: flex;
    align-items: center;
}

.subheader .breadcrumb-item+.breadcrumb-item::before,
.subheader .breadcrumb .breadcrumb-item>a {
    color: var(--thm-color-one);
}

.subheader .breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    font-family: var(--thm-icon-font);
    font-size: 16px;
    color: var(--thm-white);
}

/*page_actions*/
.page_actions {
    margin-bottom: 30px;
    position: relative;
    border-radius: 6px;
    background-color: var(--thm-white);
    border: 1px solid var(--thm-border);
    padding: 20px;
    padding-bottom: 0;
}

.page_actions div.nice-select {
    margin-bottom: 20px;
}

.page_actions .box_layout {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.page_actions .box_layout li {
    margin-bottom: 20px;
}

.page_actions .box_layout li+li {
    margin-left: 18px;
}

.page_actions .box_layout li button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--thm-color-two);
    color: var(--thm-white);
    border-radius: 6px;
    font-size: 22px;
    transition: 0.3s all;
}

.page_actions .box_layout li.active button,
.page_actions .box_layout li button:hover {
    background-color: var(--thm-color-one);
    color: var(--thm-white);
}

/*explore*/
.explore_box {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 6px;
    padding-top: 16px;
    z-index: 1;
}

.slide_item .explore_box {
    margin-bottom: 0;
}

.explore_box .explore_image {
    position: relative;
    height: 340px;
}

.explore_box .explore_image:before {
    content: '';
    background-image: linear-gradient(90deg, rgb(var(--thm-color-two-rgb), 17%), transparent);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.explore_box .explore_text {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
}

.explore_box .explore_text .rating {
    color: var(--thm-white);
    justify-content: center;
}

.explore_box .explore_text .title {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--thm-white);
}

.rating {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.listing_badge {
    position: absolute;
    left: 15px;
    top: 0;
    cursor: pointer;
    z-index: 1;
}

.rating i {
    margin: 0 1px 10px;
    line-height: normal;
}

.rating .bi-star {
    color: var(--thm-color-light);
}

.rating .bi-star-fill {
    color: #ffc007;
}

/*style_two*/
.rating.style_two .bi-star {
    color: var(--thm-body-color);
}

.rating.style_two .bi-star-fill {
    color: var(--thm-color-one);
}

/*service*/
.service_box {
    position: relative;
    margin-bottom: 30px;
    background-color: var(--thm-white);
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0px 0px 10px 0px rgb(var(--thm-color-two-rgb), 15%);
}

.service_box .icon {
    color: var(--thm-color-one);
    font-size: 50px;
    line-height: 1;
    margin-bottom: 15px;
}

.service_box .title {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

/*listing*/
.listing_box {
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0px 0px 10px 0px rgb(var(--thm-color-two-rgb), 15%);
    overflow: hidden;
    border-radius: 6px;
}

.slide_item .listing_box {
    margin-bottom: 0;
}

.listing_box .listing_image {
    position: relative;
    height: 210px;
}

.listing_box .listing_caption {
    background-color: var(--thm-white);
    padding: 30px;
    padding-bottom: 20px;
}

.listing_box .listing_caption .title {
    margin-bottom: 15px;
    line-height: normal;
}

.listing_box .listing_caption .listing_meta li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-size: 12px;
}

.listing_box .listing_caption .listing_meta li i {
    color: var(--thm-color-one);
    margin-right: 8px;
    font-size: 14px;
}

.listing_box .listing_footer {
    border-top: 2px solid var(--thm-color-light);
    background-color: var(--thm-white);
    padding: 15px 30px 5px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.listing_box .listing_footer .listing_btn {
    margin-bottom: 10px;
    margin-right: 15px;
}

/*listing sidebar*/
.listing_sidebar .sidebar_inner {
    margin-bottom: 80px;
}

.listing_sidebar .sidebar_inner .sidebar_widget {
    position: relative;
    overflow: hidden;
    padding: 0px;
    background-color: var(--thm-white);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    box-shadow: 0px 0px 10px 0px rgb(var(--thm-color-two-rgb), 15%);
}

.listing_sidebar .sidebar_inner .sidebar_widget+.sidebar_widget {
    border-radius: 0;
}

.listing_sidebar .sidebar_inner .sidebar_widget:last-child {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.listing_sidebar .sidebar_inner .sidebar_widget .widget_inner {
    padding: 0px 30px;
}

.listing_sidebar .sidebar_inner .sidebar_widget .widget_title {
    line-height: normal;
    margin-bottom: 20px;
    font-family: var(--thm-b-font);
    font-size: 20px;
    color: var(--thm-color-two);
    padding: 20px 30px;
    position: relative;
    font-weight: 600;
    border-bottom: 2px solid var(--thm-color-light);
}

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

.listing_sidebar .form-group .input-group-prepend {
    display: flex;
    align-items: center;
    background-color: var(--thm-color-light);
    justify-content: center;
    border-radius: 6px;
    padding: 0 1px 0 20px;
}

.listing_sidebar .form-group .form-control {
    background-color: var(--thm-color-light);
    border: none;
    padding: 10px 15px;
}

.listing_sidebar .categories li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 400;
    color: var(--thm-body-color);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--thm-color-light);
}

.listing_sidebar .categories li a:hover {
    color: var(--thm-color-one);
}

.listing_sidebar .categories li:last-child a {
    border-bottom: 0;
}

/*style two*/
.listing_sidebar.style_two .sidebar_inner .sidebar_widget {
    border-radius: 6px;
    margin-bottom: 30px;
}

.listing_sidebar.style_two .sidebar_inner .sidebar_widget:last-child {
    margin-bottom: 0;
}

.listing_sidebar.style_two .sidebar_inner .sidebar_widget .widget_inner {
    padding: 0 20px;
}

.listing_sidebar.style_two .sidebar_inner .sidebar_widget .widget_title {
    padding: 20px;
}

.listing_sidebar .sidebar_inner .sidebar_widget .widget_title .icon {
    color: var(--thm-color-one);
    margin-right: 3px;
}

.listing_sidebar .quantity .btn:focus,
.listing_sidebar .quantity .btn:hover {
    color: var(--thm-white);
    background-color: var(--thm-color-two);
    box-shadow: none;
}

.listing_sidebar .quantity {
    display: flex;
    align-items: center;
    width: 100%;
}

.listing_sidebar .quantity .btn {
    width: 33px;
    text-align: center;
    font-size: 14px;
    color: var(--thm-white);
    background-color: var(--thm-color-one);
    position: relative;
    border-radius: 50%;
    transition: 0.5s all;
    padding: 8px 0;
    text-transform: uppercase;
    line-height: normal;
    border: none;
}

.listing_sidebar .quantity input {
    border: none;
    text-align: center;
    width: calc(100% - 66px);
    font-family: var(--thm-font);
    font-size: 18px;
}

.listing_sidebar .gallery {
    margin-bottom: 20px;
}

.listing_sidebar .gallery li img {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.listing_sidebar .recent_post li {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--thm-color-light);
}

.listing_sidebar .recent_post li:last-child {
    border-bottom: 0;
}

.listing_details_box .contact li a,
.listing_sidebar .contact li a {
    display: block;
    color: var(--thm-color-two);
    margin-bottom: 15px;
    line-height: normal;
}

.listing_details_box .contact li a i,

.listing_sidebar .contact li a i {
    margin-right: 5px;
}

.listing_details_box .contact li a:hover,
.listing_sidebar .contact li a:hover {
    color: var(--thm-color-one);
}

.listing_sidebar .social {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.listing_sidebar .social li+li {
    margin-left: 10px;
}

.listing_sidebar .social li a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--thm-color-one);
    color: var(--thm-white);
}

.listing_sidebar .social li a:hover {
    background-color: var(--thm-color-two);
    color: var(--thm-white);
}

/*listing_details*/
.listing_details_box {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0px 0px 10px 0px rgb(var(--thm-color-two-rgb), 15%);
    padding: 30px;
}

.listing_details_box .contact li a {
    color: var(--thm-body-color);
    font-weight: 500;
}

.listing_details_box .contact li a i {
    color: var(--thm-color-one);
}

.listing_details_box .rating i {
    margin-bottom: 0;
}

.listing_details_box .contact_info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: -10px;
}

.listing_details_box .contact_info a {
    color: var(--thm-body-color);
    font-weight: 500;
    border: 1px solid var(--thm-border);
    margin-right: 15px;
    margin-bottom: 10px;
    padding: 5px 20px;
    border-radius: 6px;
}

.listing_details_box .contact_info a:hover {
    color: var(--thm-white);
    background-color: var(--thm-color-one);
    border-color: var(--thm-color-one);
}

.listing_details_box .listing_map {
    height: 450px;
    border-radius: 6px;
}

/*hw_it_works_box*/
.hw_it_works_box {
    position: relative;
    margin-bottom: 30px;
    padding: 20px;
    background-color: rgb(var(--thm-white-rgb), 25%);
    border-radius: 6px;
    display: flex;
    align-items: center;
}

.hw_it_works_box .icon {
    background-color: var(--thm-white);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin-right: 20px;
    color: var(--thm-color-one);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.hw_it_works_box .text {
    width: calc(100% - 80px);
    font-size: 12px;
    color: var(--thm-white);
}

.hw_it_works_box .title {
    font-size: 18px;
    color: var(--thm-white);
    font-weight: 600;
}

/*testimonials*/
.testimonial_item {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 40px;
    position: relative;
}

.testimonial_item .author_image {
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    width: 100px;
    height: 100px;
    border: 5px solid var(--thm-color-one);
    margin-right: -50px;
    z-index: 2;
    margin-top: 30px;
}

.testimonial_item .testimonial_text {
    position: relative;
    padding: 30px;
    box-shadow: 0px 0px 10px 0px rgb(var(--thm-color-two-rgb), 15%);
    border-radius: 6px;
    width: calc(100% - 50px);
    background-color: var(--thm-white);
    padding-left: 80px;
    z-index: 1;
}

.testimonial_item .testimonial_text:before {
    content: "\f6b0";
    font-family: var(--thm-bs-icon-font);
    display: inline-flex;
    color: var(--thm-color-one);
    font-size: 100px;
    pointer-events: none;
    position: absolute;
    right: 30px;
    bottom: 30px;
    line-height: 0.7;
    z-index: -1;
}

.testimonial_item .testimonial_text:after {
    content: '';
    width: 0;
    height: 0;
    border-width: 20px;
    border-style: solid;
    border-top-color: var(--thm-white);
    border-left-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    position: absolute;
    bottom: 0;
    top: 100%;
    left: 80px;
}

.testimonial_item .testimonial_text .comment {
    font-size: 13px;
    margin-bottom: 15px;
    max-width: 80%;
}

.testimonial_item .testimonial_text .author_info p {
    margin-bottom: 0;
    color: var(--thm-color-one);
    font-size: 12px;
    font-weight: 500;
}

/*blog*/
.post .post_wrapper {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0px 0px 10px 0px rgb(var(--thm-color-two-rgb), 15%);
}

.post .post_wrapper .post_caption {
    position: relative;
    padding: 25px;
    padding-top: 0;
}

.post .post_wrapper .post_date {
    font-family: var(--thm-font);
    color: var(--thm-white);
    background-color: var(--thm-color-one);
    border-radius: 6px;
    text-align: center;
    position: absolute;
    right: 0;
    top: -17px;
    z-index: -1;
    line-height: normal;
    font-weight: 500;
    font-size: 16px;
    padding: 11px 12px 6px;
    max-width: 58px;
    width: 100%;
}

.post .post_wrapper .post_meta {
    display: flex;
    flex-wrap: wrap;
    margin-top: 12px;
    border-bottom: 1px solid var(--thm-color-light);
    width: calc(100% - 55px);
}

.post .post_wrapper .post_meta li {
    margin-right: 15px;
}

.post .post_wrapper .post_meta li:last-child {
    margin-right: 0;
}

.post .post_wrapper .post_meta li i {
    color: var(--thm-color-one);
    margin-right: 3px;
}

.post .post_wrapper .post_meta li a {
    color: var(--thm-body-color);
    font-size: 12px;
    display: inline-block;
    padding-bottom: 12px;
}

.post .post_wrapper .post_meta li a:hover {
    color: var(--thm-color-two);
}

.post .post_wrapper .post_title {
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0 12px;
    line-height: 1.4;
}

.post .post_wrapper .post_desc {
    font-size: 13px;
}

/*sidebar*/
.sidebar .sidebar_inner {
    margin-bottom: 80px;
}

.sidebar .sidebar_inner .sidebar_widget {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    padding: 20px;
    background-color: var(--thm-white);
    box-shadow: 0px 0px 10px 0px rgb(var(--thm-color-two-rgb), 15%);
    border-radius: 6px;
}

.sidebar .sidebar_inner .sidebar_widget:last-child {
    margin-bottom: 0;
}

.sidebar .sidebar_inner .sidebar_widget .widget_title {
    line-height: normal;
    margin-bottom: 20px;
    font-family: var(--thm-b-font);
    font-size: 20px;
    color: var(--thm-color-two);
    padding: 0px 0 15px;
    position: relative;
    font-weight: 500;
}

.sidebar .sidebar_inner .sidebar_widget .widget_title:after {
    content: '';
    width: 40px;
    height: 2px;
    background-color: var(--thm-color-one);
    position: absolute;
    display: flex;
    bottom: 0;
}

.sidebar .input-group .form-control {
    background-color: var(--thm-color-light);
    border: none;
    height: 50px;
}

.sidebar .input-group .thm-btn {
    width: 50px;
    height: 100%;
    padding: 0;
}

.sidebar .categories li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: var(--thm-body-color);
    font-weight: 500;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--thm-border);
}

.sidebar .categories li:hover a {
    color: var(--thm-color-one);
}

.sidebar .categories li:last-child>a {
    margin-bottom: 0;
    line-height: normal;
    border-bottom: 0;
    padding-bottom: 0;
}

.sidebar .tags_cloud {
    margin-bottom: -15px;
}

.post_details .post_tags_share .post_tags .tags a,
.sidebar .tags_cloud a {
    display: inline-flex;
    border: 1px solid var(--thm-body-color);
    color: var(--thm-body-color);
    background-color: transparent;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 22px;
    margin-right: 8px;
    margin-bottom: 12px;
    border-radius: 6px;
}

.post_details .post_tags_share .post_tags .tags a:hover,
.sidebar .tags_cloud a:hover {
    background-color: var(--thm-color-one);
    border-color: var(--thm-color-one);
    color: var(--thm-white);
}

.listing_sidebar .recent_post li,
.sidebar .recent_post li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.listing_sidebar .recent_post li .post_thumb,
.sidebar .recent_post li .post_thumb {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.listing_sidebar .recent_post li .post_thumb a,
.sidebar .recent_post li .post_thumb a {
    display: flex;
    height: 100%;
    width: 100%;
}

.listing_sidebar .recent_post li .post_caption,
.sidebar .recent_post li .post_caption {
    width: calc(100% - 95px);
}

.listing_sidebar .recent_post li .post_caption .post_title,
.sidebar .recent_post li .post_caption .post_title {
    margin-bottom: 0;
    font-size: 16px;
}

.listing_sidebar .recent_post li .post_caption .post_date,
.sidebar .recent_post li .post_caption .post_date {
    margin-bottom: 0;
    color: var(--thm-color-one);
    font-weight: 500;
    font-size: 14px;
}

.listing_sidebar .recent_post li:last-child,
.sidebar .recent_post li:last-child {
    margin-bottom: 0;
}

/*blog details*/
.post.post_details .post_image {
    height: 450px;
    position: relative;
    z-index: 1;
}

.post.post_details .post_meta {
    margin-bottom: 15px;
}

.post.post_details .post_date {
    z-index: 1;
    top: auto;
    bottom: 30px;
    left: 30px;
    right: auto;
}

.post.post_details .post_title {
    padding-bottom: 12px;
    position: relative;
}

.post.post_details .post_title:after {
    content: '';
    width: 60px;
    height: 2px;
    background-color: var(--thm-color-one);
    position: absolute;
    display: flex;
    bottom: 0;
}

.post .post_description p {
    margin-bottom: 25px;
}

.post_details .post_tags_share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 20px 0 0;
    padding: 20px 0 8px;
    border: 1px solid var(--thm-border);
    border-left: 0;
    border-right: 0;
}

.post_details .post_tags_share .title {
    margin-bottom: 10px;
    font-size: 18px;
    display: inline-flex;
    flex-wrap: wrap;
    margin-right: 15px;
    color: var(--thm-color-one);
}

.post_details .post_tags_share .post_tags,
.post_details .post_tags_share .post_share,
.post_details .post_tags_share .post_tags .tags,
.post_details .post_tags_share .post_share .social {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
}

.post_details .post_tags_share .post_tags .tags a {
    font-size: 12px;
    padding: 3px 15px
}

.post_details .post_tags_share .post_share .social li a {
    margin-bottom: 12px;
}

.post_details .post_tags_share .post_share .social li+li {
    margin-left: 15px;
}

.comments .children {
    padding-left: 120px;
}

.comments .comment article {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.comments .comment .comment_image {
    position: relative;
    overflow: hidden;
    margin-right: 20px;
    width: 100px;
    height: 100px;
    border-radius: 6px;
}

.comments .comment .reply_btn {
    position: absolute;
    bottom: 0;
    left: 0;
    color: var(--thm-white);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.comments .comment .reply_btn:hover {
    color: var(--thm-white);
    background-color: var(--thm-color-one);
}

.comments .comment .comment_text {
    width: calc(100% - 120px);
    position: relative;
}

.comments .comment .comment_text .title {
    font-size: 16px;
    margin-bottom: 0;
    display: inline-flex;
    margin-right: 15px;
}

.comments .comment .comment_text .comment_date {
    line-height: 1;
    background-color: var(--thm-color-one);
    width: fit-content;
    color: var(--thm-white);
    font-size: 14px;
    padding: 5px 15px;
    font-weight: 400;
    margin: 0px 0 10px;
    display: inline-flex;
    border-radius: 6px;
    margin-right: 15px;
}

.comments .comment .comment_text .rating {
    position: absolute;
    right: 0;
    top: 0;
    display: inline-flex;
    margin-bottom: 10px;
}

.comments .comment .comment_text p {
    font-size: 12px;
    font-family: var(--thm-font);
}

.comments .comment .comment_text p:last-child {
    margin-bottom: 0;
}

.comment_box>.comments>.comment:last-child>article {
    margin-bottom: 0;
}

.bar_title {
    padding-bottom: 10px;
    position: relative;
}

.bar_title:after {
    content: '';
    width: 60px;
    height: 2px;
    background-color: var(--thm-color-one);
    position: absolute;
    display: flex;
    bottom: 0;
}

.post.post_details .post_meta li a:after {
    content: ', ';
    margin-left: -1px;
    margin-right: 2px;
}

.post.post_details .post_meta li a:last-child:after {
    display: none;
}

/*newsletter_box*/
.newsletter_box .section {
    padding: 40px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0px 0px 10px 0px rgb(var(--thm-color-two-rgb), 15%);
}

.newsletter_box .input-group {
    padding: 0 15px;
}

.newsletter_box .input-group .thm-btn {
    text-transform: uppercase;
}

.newsletter_box .input-group .form-control {
    border: none;
    border-radius: 6px;
    padding: 15px 20px;
    background-color: var(--thm-color-light);
}

.newsletter_box .input-group .form-control::placeholder,
.newsletter_box .input-group .form-control {
    font-size: 14px;
    color: var(--thm-body-color);
}

/*sign_in_up_box*/
.sign_in_up_box {
    padding: 40px;
    border-radius: 6px;
}

.sign_in_up_box .divider_text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    white-space: nowrap;
    background-color: var(--thm-color-light);
    z-index: 1;
    margin-bottom: 30px;
}

.sign_in_up_box .divider_text:before,
.sign_in_up_box .divider_text:after {
    content: '';
    height: 1px;
    background-color: var(--thm-border);
    display: flex;
    position: absolute;
    width: calc(50% - 50px);
    z-index: -1;
}

.sign_in_up_box .divider_text:before {
    left: 0;
}

.sign_in_up_box .divider_text:after {
    right: 0;
}

.sign_in_up_box label {
    font-size: 18px;
    color: var(--thm-color-two);
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sign_in_up_box .form-control-custom+button {
    position: absolute;
    right: 15px;
    bottom: 13px;
    z-index: 10;
    color: var(--thm-body-color);
}

/*contact*/
.contact_info_box {
    padding: 40px 30px;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    text-align: center;
    margin-bottom: 30px;
}

.contact_info_box:before {
    background-color: rgb(var(--thm-color-two-rgb), 75%);
}

.contact_info_box .icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--thm-color-one);
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-white);
    font-size: 36px;
}

.contact_info_box .text {
    margin-bottom: 0;
    color: var(--thm-white);
    font-weight: 500;
    font-size: 18px;
}

.contact_info_box a.text:hover {
    color: var(--thm-color-one);
}

.contact_form {
    border: 1px solid var(--thm-border);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 6px;
    padding: 30px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    height: calc(100% - 30px);
    display: flex;
    align-items: center;
}

.contact_image {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-bottom: 30px;
    height: calc(100% - 30px);
}

/*footer*/
.newsletter_box.down {
    margin-bottom: -132px;
    position: relative;
    z-index: 2;
}

.newsletter_box.down+.footer {
    padding-top: 212px;
}

.footer.section-bg:before {
    background-color: #151b25;
    opacity: .88;
}

.footer .ft_widgets {
    position: relative;
    margin-bottom: 30px;
}

.footer .ft_widgets .ft_title {
    color: var(--thm-white);
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.footer .ft_widgets .ft_title:after {
    content: '';
    width: 40px;
    height: 2px;
    background-color: var(--thm-color-one);
    position: absolute;
    display: flex;
    bottom: 0;
}

.footer .ft_logo {
    margin: 0px 0 15px;
    width: 150px;
    height: 50px;
}

.footer p {
    color: var(--thm-white);
    margin-bottom: 15px;
}

.footer .ft_social {
    display: flex;
}

.footer .ft_social li {
    margin-right: 15px;
}

.footer .ft_social li a {
    color: var(--thm-white);
    font-size: 16px;
}

.footer .ft_social li a:hover {
    color: var(--thm-color-one);
}

.footer .ft_menu li {
    margin-bottom: 5px;
    line-height: 1.8;
}

.footer .ft_menu li>a {
    display: flex;
    align-items: center;
    color: var(--thm-white);
}

.footer .ft_menu li>a:before {
    content: "\f054";
    font-family: var(--thm-icon-font);
    font-size: 0px;
    margin-right: 0px;
    transition: 0.3s all;
}

.footer .ft_menu li>a:hover {
    color: var(--thm-color-one);
}

.footer .ft_menu li>a:hover:before {
    width: auto;
    font-size: 12px;
    margin-right: 8px;
}

.footer .ft_menu li:last-child {
    margin-bottom: 0;
}

.footer .ft_contact li>a i {
    color: var(--thm-color-one);
    margin-right: 8px;
}

.footer .ft_contact li>a:before {
    display: none;
}

/*copyright*/
.copyright p {
    color: var(--thm-white);
    padding: 12px 0;
    line-height: normal;
    font-size: 14px;
}

/*back to top*/
.back-to-top {
    width: 40px;
    height: 40px;
    border: 2px solid var(--thm-color-one);
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 0px;
    color: var(--thm-white);
    font-size: 22px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--thm-color-one);
    transition: 0.3s all;
    z-index: 100;
    border-radius: 6px;
}

.back-to-top:focus,
.back-to-top:hover {
    color: var(--thm-white);
    background-color: var(--thm-color-two);
    border-color: var(--thm-color-two);
}