/* ----------------------------------------------------------------------------------------
* Author        : Achraf Lafkiri
* Template Name : Luxury - Hotel Booking HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. State Counter css
08. Why Choose Us css
09. Our Employee css
10. Cta Box css
11. We Help css
12. Our Pricing css
13. Testimonials css
14. Our Blog css
15. Footer css
16. About us Page css
17. Services Page css
18. Service Single css
19. Blog Archive css
20. Blog Single css
21. Contact us Page css
22. Pricing Page css
23.	FAQs Page css
24. 404 Page css
25. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    transition: all .3 linear;
}

:root {
    --primary-color: #583101;
    --secondary-color: #FFEDD8;
    --text-color: #4A5567;
    --black-color: #000000;
    --white-color: #FFFFFF;
    --error-color: rgb(230, 87, 87);
    --default-font: "Plus Jakarta Sans", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    color: var(--text-color);
    background-color: var(--secondary-color);
}

.bg-primary,
.btn-primary {
    background-color: var(--primary-color) !important;
    border: none;
    outline: none;
}

p {
    line-height: 1.6em;
    margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 600;
    color: var(--black-color);
    line-height: 1.1em;
    letter-spacing: -0.03em;
}

figure {
    margin: 0;
}

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

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

html,
body {
    width: 100%;
    overflow-x: clip;
}

.container {
    max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row>* {
    padding-right: 15px;
    padding-left: 15px;
}

.row.no-gutters {
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters>* {
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2em;
    color: var(--white-color);
    background: var(--primary-color);
    text-transform: capitalize;
    padding: 15px 55px 15px 15px;
    border-radius: 8px;
    border: none;
    transition: 0.5s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-default::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background-color: var(--white-color);
    background-image: url(/images/arrow.svg);
    background-repeat: no-repeat;
    background-position: center center;
    transform: translate(-15px, -50%);
    transition: 0.4s ease-in-out;
}

.btn-default::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    height: 106%;
    border-radius: 8px;
    background: var(--primary-color);
    transition: 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover::after {
    width: 106%;
}

.btn-default:hover {
    background-color: transparent;
}

.btn-default.btn-highlighted {
    margin-left: 20px;
    background-color: var(--white-color);
    color: var(--primary-color);
}

.btn-default.btn-highlighted span {
    position: relative;
    z-index: 1;
}

.btn-default.btn-highlighted:hover span {
    color: #fff;
}



.btn-default.btn-highlighted::before {
    background-color: var(--primary-color);
    background-image: url(/images/arrow-white.svg);
}

.btn-default.btn-highlighted::after {
    background-color: var(--primary-color);
}

.btn-default.btn-highlighted:hover {
    background-color: transparent;
}

.btn-large {
    font-size: 20px;
    padding: 20px 65px 20px 20px;
}

.btn-default.btn-large::before {
    width: 40px;
    height: 40px;
    background-size: 15px;
}

.card {
    border: none;
    outline: none;
}

#magic-cursor {
    position: absolute;
    width: 10px !important;
    height: 10px !important;
    pointer-events: none;
    z-index: 1000000;
}

#ball {
    position: fixed;
    display: block;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    width: 24px !important;
    height: 24px !important;
    background: transparent;
    border: 1px solid var(--primary-color);
    margin: 0;
    border-radius: 50%;
    pointer-events: none;
    opacity: 1 !important;
}

#ball .circle {
    background: var(--primary-color);
    width: 8px;
    height: 8px;
    top: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto;
}

.loading {
    border: 1px solid transparent;
    border-color: transparent var(--white-color) transparent var(--white-color);
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 66px;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.light-bg-section {
    position: relative;
    width: 100%;
    max-width: 1600px;
    background: var(--secondary-color);
    border-radius: 40px;
    margin: 0 auto;
    padding: 100px 0;
}

.light-bg-section .container {
    position: relative;
    z-index: 1;
}

.section-row {
    margin-bottom: 60px;
}

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

.section-btn {
    text-align: end;
}

.section-btn .btn-default.btn-highlighted {
    margin: 0;
}

.section-title {
    padding-bottom: 30px;
}

.section-title h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 0.2em;
}

.section-title h1,
.section-title h2 {
    font-size: 50px;
    letter-spacing: -0.03em;
    font-weight: 600;
    margin-bottom: 0;
}

.section-title h1 span,
.section-title h2 span {
    color: var(--primary-color);
}

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


.shine {
    position: relative;
}

.shine::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.shine:hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}


/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
    background-color: var(--secondary-color);
    position: relative;
    z-index: 100;
}

header.main-header.active {
    position: fixed;
    width: 100%;
    box-shadow: 0 0 10px #1f273881;
}

.navbar {
    padding: 25px 0;
    align-items: center;
}

.navbar-brand {
    padding: 0;
    margin: 0;
    width: 120px;
}

.navbar-toggle-button {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-color);
    margin: 0 20px;
    cursor: pointer;
}

.navbar-toggle-button i {
    font-size: 20px;
    color: var(--primary-color);
}

.main-menu .nav-menu-wrapper {
    flex: 1;
    text-align: center;
}

.main-menu .nav-menu-wrapper>ul {
    align-items: center;
    display: inline-flex;
}

.main-menu ul li {
    margin: 0 5px;
    position: relative;
}

.main-menu ul li a {
    font-size: 16px;
    font-weight: 600;
    padding: 15px 15px !important;
    color: var(--primary-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
    color: var(--primary-color);
}

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 210px;
    border-radius: 15px;
    position: absolute;
    left: 0;
    top: 100%;
    overflow: hidden;
    background-color: var(--primary-color);
    transition: all 0.3s ease-in-out;
    text-align: left;
}

.main-menu ul ul ul {
    left: 100%;
    top: 0;
    text-align: left;
}

.main-menu ul ul li {
    margin: 0;
    padding: 0;
}

.main-menu ul ul li a {
    color: var(--white-color);
    padding: 8px 20px !important;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover {
    color: var(--primary-color);
    background-color: transparent;
}

.main-menu ul li.highlighted-menu {
    display: none;
}

.responsive-menu,
.navbar-toggle {
    display: none;
}

.responsive-menu {
    top: 0;
    position: relative;
}

.slicknav_btn {
    background: var(--primary-color);
    padding: 6px 0 0;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    width: 22px;
    background-color: var(--white-color);
    border-radius: 6px;
    margin: 4px auto !important;
    transition: all 0.1s ease-in-out;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
    position: absolute;
    width: 100%;
    padding: 0;
    background: var(--primary-color);
}

.slicknav_menu ul {
    margin: 5px 0;
}

.slicknav_menu ul ul {
    margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 10px 20px;
    color: var(--white-color);
    line-height: normal;
    margin: 0;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav .slicknav_row:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.slicknav_menu ul ul li a {
    padding: 10px 20px 10px 30px;
}

.slicknav_arrow {
    font-size: 0 !important;
}

.slicknav_arrow:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    color: var(--white-color);
    position: absolute;
    right: 15px;
    top: 15px;
    transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
    transform: rotate(-180deg);
}

/************************************/
/***        04. Sidebar css	      ***/
/************************************/

.sidebar-res {
    position: fixed;
    top: 0;
    left: -100%;
    width: 400px;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 9999;
    box-shadow: 0 0 10px #838383;
    transition: all .9s cubic-bezier(0.88, -0.08, 0, 1.01);
    overflow-y: scroll;
}

@media screen and (max-width: 780px) {
    .sidebar-res {
        width: 50%;
        overflow-y: scroll !important;
    }
}

@media screen and (max-width: 500px) {
    .sidebar-res {
        width: 80%;
    }
}

.sidebar-res.active {
    left: 0;
}

.sidebar-res .brand-logo {
    width: 240px;
    margin: 20px auto;
}

.sidebar-res ul li {
    list-style: none;
    margin-bottom: 20px;
}

.sidebar-res ul li a {
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 800;
    text-transform: capitalize;
}

.overlay-bg {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(88, 49, 1, 0.5);
    z-index: 999;
    transition: all 1.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.overlay-bg.active {
    left: 0
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
    background: url(../images/hero_bg.png) top center/cover no-repeat;
}

.google-rating {
    margin-bottom: 20px;
}

.google-rating ul {
    display: inline-flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
    background-color: var(--white-color);
    border-radius: 40px;
    padding: 6px 20px;
}

.google-rating ul li {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    margin-right: 10px;
}

.google-rating ul li:last-child {
    margin-right: 0;
}

.google-rating ul li span {
    color: var(--primary-color);
    margin-left: 5px;
}

.google-rating ul li i {
    font-size: 14px;
    color: var(--primary-color);
}

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

.hero-image {
    text-align: right;
}

/************************************/
/***       05. About Us css	      ***/
/************************************/

.about-us {
    padding: 100px 0 70px;
}

.about-video-image {
    position: relative;
    margin-bottom: 30px;
}

.about-image img {
    border-radius: 40px;
    aspect-ratio: 1/0.40;
    object-fit: cover;
}

.about-video-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    padding: 5px 20px 5px 5px;
    transition: all 0.3s ease-in-out;
}

.about-video-btn:hover {
    background-color: var(--primary-color);
}

.about-video-btn .icon-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--white-color);
}

.about-video-btn .icon-box i {
    background-color: var(--white-color);
    color: var(--primary-color);
    border-radius: 100%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease-in-out;
}

.about-video-btn:hover .icon-box i {
    color: var(--primary-color);
}

.about-company-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.about-company-item .icon-box {
    position: relative;
    background-color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.about-company-item .icon-box::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    top: 0;
    left: 0;
    transform: scale(0);
    transition: all 0.3s ease-in-out;
    border-radius: 50px;
}

.about-company-item:hover .icon-box:before {
    transform: scale(1);
}

.about-company-item .icon-box ion-icon {
    position: relative;
    z-index: 1;
    font-size: 20px;
    color: #fff;
}

.about-company-content p {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

/************************************/
/***       05. Portfolio css	  ***/
/************************************/

.portfolio {
    padding: 100px 0 70px;
}

.portfolio .card {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.portfolio .card .price {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    background-color: var(--white-color);
    position: absolute;
    left: 0;
    top: 0;
    padding: 10px 20px;
    z-index: 1;
}

.portfolio .card .shine img {
    width: 100%;
    height: 100%;
}

.portfolio .card .shine {
    width: 100%;
    height: 100%;
}

/************************************/
/***       05. Contact css	  *******/
/************************************/

.contact-section {
    padding: 100px 0 70px;
}

.contact-section .card-body {
    border: 1px solid var(--primary-color);
}

.contact-section .social_medias .icon {
    line-height: 3em;
    margin-bottom: 10px;
}

.contact-section .contact_info_title {
    line-height: 1.5em;
    font-size: 30px;
}

.contact-section .contact_info_subtitle {
    line-height: 1.5em;
    font-size: 15px;
}

.contact-section .contact_info_box {
    background-color: var(--secondary-color);
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100%;
}

.contact-section .contact_info_box::before {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -60px;
    width: 200px;
    height: 200px;
    background-color: #5831013f;
    z-index: -1;
    border-radius: 50%;
}

.contact-section .form-control {
    padding: 20px;
    border: 1px solid var(--secondary-color);
    outline: 1px solid var(--primary-color);
    text-indent: 10px;
    font-size: 14px;
    border-radius: 0;
}

.contact-section .form-control::placeholder {
    font-style: italic;
    font-size: 15px;
}

/************************************/
/***       05. Blogs css	  *******/
/************************************/

.blogs {
    padding: 100px 0 70px;
}

.blogs .card.blog_card {
    border-radius: 30px;
    box-shadow: 0;
    border: none;
    overflow: hidden;
}

.blogs .card.blog_card .card-body {
    padding: 20px 40px;
    min-height: 160px;
}

.blogs .card.blog_card .card-body .card-title {
    line-height: 1.6em;
    font-size: 20px;
    margin-bottom: 10px;
    min-height: 50px;
}

.blogs .card.blog_card .card-body .card-text {
    line-height: 1.3em;
    min-height: 50px;
}

.blogs .learn_more_btn {
    background-color: var(--black-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.blogs .learn_more_btn svg {
    color: #fff;
}

/************************************/
/***       05. Video css	  *******/
/************************************/

.video {
    padding: 100px 70px 200px;
}

.video .video_box {
    background: url('/images/video-bg.jpg') top/cover no-repeat;
    width: 100%;
    height: 600px;
    border-radius: 30px;
    box-shadow: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s linear;
    cursor: pointer;
    border: 1px solid #fff;
    backdrop-filter: blur(20px);
}

.video .video_box .video_icon {
    width: 100px;
    height: 100px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .3s linear;
    animation: mymove1 .8s infinite, mymove1 1s infinite;
}

.video .video_box:hover .video_icon {
    transform: scale(1.2);
}

@keyframes mymove1 {
    50% {
        box-shadow: 0 0 30px var(--secondary-color);
    }
}

@keyframes mymove2 {
    50% {
        box-shadow: 0 0 40px var(--secondary-color);
    }
}


/************************************/
/***       05. Footer css	  *******/
/************************************/

footer ul {
    margin: 0px;
    padding: 0px;
}

footer .ps-sp {
    padding-left: 60px;
}

footer.footer-section {
    background-color: #fafafa;
    position: relative;
}

footer .footer-cta {
    border-bottom: 1px solid #373636;
    background-color: var(--primary-color);
}

footer .single-cta {
    display: flex;
    align-items: center;
}

footer .cta-text {
    padding-left: 15px;
    display: inline-block;
}

footer .cta-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}

footer .cta-text span {
    color: #fff;
    font-size: 15px;
}

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

footer .footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
}

footer .footer-logo {
    margin-bottom: 30px;
}

footer .footer-logo img {
    max-width: 200px;
}

footer .footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: #7e7e7e;
    line-height: 28px;
}

footer .footer-social-icon span {
    color: var(--primary-color);
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    margin-bottom: 20px;
}

footer .footer-social-icon a {
    color: #fff;
    font-size: 16px;
    margin-right: 15px;
}

footer .footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
}

footer .footer-widget-heading h3 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

footer .footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: var(--primary-color);
}

footer .footer-widget ul li {
    width: 50%;
    margin-bottom: 12px;
    list-style: none;
}

footer .footer-widget ul li a:hover {
    color: #f26f30;
}

footer button.mb-1.tag {
    padding: 11px 17px;
    margin: 0 3px;
    background-color: var(--primary-color);
    color: #fff;
}

footer .footer-widget ul li a {
    color: #878787;
    text-transform: capitalize;
}

footer .subscribe-form {
    position: relative;
    overflow: hidden;
}

footer .subscribe-form input {
    width: 100%;
    padding: 14px 28px;
    background: #2e2e2e;
    border: 1px solid #2e2e2e;
    color: #fff;
}

footer .subscribe-form button {
    position: absolute;
    right: 0;
    background: #f26f30;
    padding: 13px 20px;
    border: 1px solid #f26f30;
    top: 0;
}

footer .subscribe-form button i {
    color: #fff;
    font-size: 22px;
    transform: rotate(-6deg);
}

footer .copyright-area {
    background: #fff;
    padding: 25px 0;
}

footer .copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #878787;
}

footer .copyright-text p a {
    color: #f26f30;
}

footer .footer-menu li {
    display: inline-block;
    margin-left: 20px;
}

footer .footer-menu li:hover a {
    color: #f26f30;
}

footer .footer-menu li a {
    font-size: 14px;
    color: #878787;
}

footer .footer-cta .icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #ffffff;
    justify-content: center;
    display: flex;
    align-items: center;
    position: relative;
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
    margin-right: 20px;
}

footer .footer-cta .icon ion-icon {
    font-size: 30px;
    color: var(--primary-color);
    font-weight: 800;
}

footer .footer-cta .icon svg {
    color: var(--primary-color);
    font-size: 1.5rem;
}

footer .footer-cta .icon::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    width: 72px;
    height: 72px;
    border: 1px solid #ffffff;
    background-color: transparent;
    border-radius: 50%;
}

footer .footer-social-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

footer .footer-social-links .icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/*  */


/***************************

Single Post

***************************/

/* Posts */

.blog-single-post .post-header {
    margin-bottom: 25px;
}

.blog-single-post .post-header .post-thumbnail img {
    border-radius: 5px;
}

.blog-single-post .post-categories .bac-post-category-item {
    background-color: rgba(247, 217, 127, 0.4);
    border: none;
    font-weight: 600;
    font-size: 0.8rem;
    min-width: 150px;
    text-align: center;
    outline: none;
    box-shadow: none;
    margin-right: 7px;
    position: relative;
}

.blog-single-post .post-categories .bac-post-category-item::before {
    content: "";
    position: relative;
    display: inline-block;
    border-radius: 50%;
    background-color: #f7d97f;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    left: -10px;
}

.blog-single-post h1.post-title {
    font-weight: 700;
    font-size: 1.75rem;
    margin: 15px 0 15px;
}

.blog-single-post .post-metatags {
    padding-bottom: 25px;
    margin-bottom: 35px;
    border-bottom: 1px solid #e9e9e9;
}

.blog-single-post .post-metatags .author .author-avatar {
    margin-right: 10px;
}

.blog-single-post .post-metatags .author .author-name {
    color: #717171;
}

.blog-single-post .post-metatags .post-publish-date {
    margin-left: 15px;
}

.blog-single-post .post-metatags .post-publish-date .icon-image {
    width: 20px;
    margin-left: 7px;
}

.blog-single-post .post-metatags .post-publish-date .post-date {
    font-size: 0.93rem;
    font-weight: 600;
    color: #717171;
}

.blog-single-post .post-content img {
    margin-top: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.blog-single-post .post-content h1,
.blog-single-post .post-content h2,
.blog-single-post .post-content h3,
.blog-single-post .post-content h4,
.blog-single-post .post-content h5,
.blog-single-post .post-content h6 {
    margin-bottom: 20px;
    font-weight: 700;
}

.blog-single-post .post-content h1 {
    font-size: 1.75rem;
}

.blog-single-post .post-content h2 {
    font-size: 1.5rem;
}

.blog-single-post .post-content h3 {
    font-size: 1.35rem;
}

.blog-single-post .post-content h4 {
    font-size: 1.2rem;
}

.blog-single-post .post-content h5 {
    font-size: 1.15rem;
}

.blog-single-post .post-content h6 {
    font-size: 1.05rem;
}

.blog-single-post .post-content p {
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 2;
    font-size: 1.03rem;
}

.blog-single-post .post-content p br {
    display: none;
}

.blog-single-post .post-content ul {
    margin-bottom: 25px;
    list-style: disc;
    margin-left: 20px;
}

.blog-single-post .post-content ul li:not(:last-of-type) {
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 2;
    font-size: 1.03rem;
}

.blog-single-post .bac-post_comments {
    margin: 35px 0;
}

.blog-single-post .bac-post_comments h2 {
    color: var(--primary-color);
    position: relative;
    margin-bottom: 25px;
}

.blog-single-post .bac-post_comments h2 span {
    background: #ffffff;
    z-index: 2;
    position: sticky;
    padding-right: 1rem;
    font-weight: 400;
    font-size: 1.35rem;
}

.blog-single-post .bac-post_comments h2::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    position: absolute;
    top: 50%;
    left: 0;
}

.blog-single-post .related-post-item:not(:last-of-type) {
    margin-bottom: 25px;
}

.blog-single-post .related-post-item .media .media-left .image {
    max-width: 200px;
}

.blog-single-post .related-post-item .media .media-left .image img {
    border-radius: 3px;
}

.blog-single-post .related-post-item .media .media-content h4 a {
    font-weight: 600;
    color: #1f2738;
    font-size: 1.05rem;
}

.related-post-item .img-blog {
    width: 200px;
}

.related-post-item a {
    display: flex;
    flex-direction: row;
}

.blog-single-post .bac-social-media a {
    border-radius: 4px;
    background-color: #e5f5ed;
    color: var(--primary-color);
    border: 1px solid #e5f5ed;
    font-size: 1.25rem;
    padding-bottom: calc(0.5em - 1px);
    padding-left: 1em;
    padding-right: 1em;
    padding-top: calc(0.5em - 1px);
    transition: background-color 0.3s ease-in-out;
}

.blog-single-post .bac-social-media a:hover {
    background-color: #e5f5ed !important;
    border: 1px solid #e5f5ed;
}

.blog-single-post .bac-social-media a:not(:last-of-type) {
    margin-right: 7px;
}

.blog-single-post.bg-light {
    background-color: #fff !important;
    padding: 6rem 5rem;
}

/* comments */

.comments {
    background: #fff;
    padding: 20px;
    border-radius: 13px;
    border: 1px dotted var(--primary-color);
}

.comments .reply a {
    color: var(--primary-color);
}

.comments li {
    list-style: none;
}

.comments .comment {
    margin-bottom: 10px;
}

.comments .comment .comment-body {
    border-radius: 5px;
    padding: 10px 20px;
    margin-bottom: 10px;

}

.comments .comment .comment-body .comment-meta .comment-metadata {
    display: none;
}

time {
    color: var(--primary-color);
    font-size: 13px;
}

.comments .comment .comment-body .comment-meta .comment-author {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.comments .comment .comment-body .comment-meta .comment-author a {
    pointer-events: none;
    color: var(--primary-color);
}

.comments .comment .comment-body .comment-meta .comment-author a:hover {
    color: var(--primary-color);
}

.comments .comment .comment-body .comment-meta .comment-author img {
    border-radius: 50%;
    margin-right: 15px;
    width: 60px;
    height: 60px;
}

.comments .comment .comment-body .comment-meta .comment-author .says {
    display: none;
}

.comments .comment .comment-body .comment-content {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #636469;
}

.comments .comment footer {}

.comments .comment.depth-2 .comment-body {
    max-width: 90%;
    margin-left: auto;
}

.comments .comment.depth-2 .comment-body .comment-author img {
    width: 50px;
    height: 50px;
}

.comments .comment-notes {
    margin-bottom: 15px;
}

.comments .logged-in-as {
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.comments .comment-respond {
    margin-top: 25px;
}

.comments .comment-respond .form-submit .submit {
    background-color: var(--primary-color);
    border: none;
    color: #ffffff;
    padding: 7px 15px;
    border-radius: 3px;
    cursor: pointer;
}

.comments #commentform .input,
.comments #commentform .textarea {
    box-shadow: none;
}

.comments #commentform .comment-form-cookies-consent {
    display: none;
}