/*
Theme Name: LIGHT
Theme URI:  https://example.com/minimal-elementor-plus
Author:      SUSANTA PAUL
Author URI:  https://example.com
Description: A minimal Elementor-ready theme with WooCommerce and widget support.
Version:     1.1
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: minimal-elementor-plus
Tags: minimal, blank, elementor, woocommerce, starter, widgets
*/
:root  {
--color-default:#222222;
--color-primary:#675146;
--color-secondary:#116054;
--color-white:#ffffff;
--color-light:#cfaa9b;
--color-gray:#ebebeb;
--color-dark:#0e0e0e;
--color-black:#000000;
--color-green:#58a54d;
--color-darkgreen:#124948;
--color-navyblue:#1a2450;
}
body{
    font-weight: 400;
	overflow-x:hidden;
}
a{
    color: var(--color-primary);
    text-decoration: none;
    transition: 300ms;
    outline: none;
}
.fw-100{ font-weight: 100;}
.fw-200{ font-weight: 200;}
.fw-300{ font-weight: 300;}
.fw-400{ font-weight: 400;}
.fw-500{ font-weight: 500;}
.fw-600{ font-weight: 600;}
.fw-700{ font-weight: 700;}
.fw-800{ font-weight: 800;}
.fw-900{ font-weight: 900;}

.lnht-1{
    line-height: 1 !important;
}
.lnht-1-1{
    line-height: 1.1 !important;
}
.lnht-1-3{
    line-height: 1.3 !important;
}
.lnht-1-5{
    line-height: 1.5 !important;
}
strong,b{
    font-weight: 600 !important;
}
.text-primary{
    color: var(--color-primary) !important;
}
p{
    line-height: 1.675;
}
h1{
    line-height: 1.2!important;
}
h2{
    line-height: 1.2!important;
}
h3{
    line-height: 1.2!important;
}


.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/************/
/*** MENU ***/
/************/
/* Desktop */
@media screen and (min-width: 992px)  {
    /* Top-level menu */
    ul.desktop-menu {
        margin: 0;
        padding: 0;
        list-style: none;
        text-align: center;
    }

    ul.desktop-menu > li {
        display: inline-block;
        margin: 0;
        padding: 0;
        position: relative;
        text-align: left;
    }

    /* Top-level links */
    ul.desktop-menu > li > a {
        font-weight: 500;
        padding: 13px 15px;
        line-height: 1.2;
        display: block;
        background-color: transparent;
        position: relative; /* Needed for ::before */
        transition: 0.3s ease;
    }

    /* Hover color */
    ul.desktop-menu > li > a:hover,
    ul.desktop-menu > li.current-menu-item > a {
    }

    /* Dropdown container */
    ul.desktop-menu ul {
        margin: 0;
        padding: 12px 22px;
        list-style: none;
        position: absolute;
        top: -9999em;
        left: 0;
        width: 230px;
        background: #f8f4f1;
        /*border: 1px solid var(--color-light);*/
		border-radius:12px;
        opacity: 0;
        z-index: 999;
        transform: scale(0.9);
        transform-origin: center top;
        transition: transform 0.3s ease, opacity 0.3s ease, top 0s 0.3s;
        font-size: 14px;
    }

    /* Show dropdown on hover */
    ul.desktop-menu li:hover > ul {
        top: 100%;
        opacity: 1;
        transform: scale(1);
        transition-delay: 0s;
        z-index: 1000;
    }

    /* Nested dropdowns */
    ul.desktop-menu ul li:hover > ul,
    ul.desktop-menu ul ul {
        top: -10px;
        left: calc(100% + 23px);
    }

    /* Dropdown list items */
    ul.desktop-menu ul li {
        display: block;
        margin: 0;
        padding: 0;
        position: relative;
    }

    /* Dropdown links */
    ul.desktop-menu ul li a {
        color: var(--color-navyblue);
        font-weight: 400;
        padding: 12px 0;
        line-height: 1.2;
        display: block;
        position: relative; /* For underline */
        background-color: transparent;
        left: 0;
        transition: color 0.3s ease, left 0.3s ease;
    }

    /* Dropdown underline */
    ul.desktop-menu ul li a::before {
        content: "";
        position: absolute;
        bottom: -1px;
        left: 0;
        height: 1px;
        width: 100%;
        background-color: #eae6e7;
        transition: width 0.4s ease;
    }

    ul.desktop-menu ul li a:hover::before {
        width: 100%;
    }

    ul.desktop-menu ul li a:hover,
    ul.desktop-menu ul li.current-menu-item a {
        color: var(--color-primary);
        left: 0;
    }

    .hamburgerholder{
        display: none;
    }
    #mobilemenubg{
        display: none;
    }
}

/*  MOBILE */
@media screen and (max-width: 991px)  {
    .hamburgerholder {
        width:  45px;
        height:  45px;
        line-height:  45px;
        background-color: var(--color-primary);
        text-align:  center;
        display:  block;
        border-radius:  50%;
        /*position: absolute;
        top: 28px;
        right: 15px;*/
    }
    .hamburger {
        font-size: 17px;
        padding: 0;
        border-radius: 0;
        width: 24px;
        height: 24px;
        position: relative;
        right:  0;
        top: 0;
        z-index:  5;
        cursor:  pointer;
        transition:  all 600ms linear;
        display:  inline-block;
        vertical-align:  middle;
    }
    .hamburger .menu-icon {
        height: 1px;
        width: 24px;
        display: block;
        background-color: #fff;
        position: absolute;
        left: 0;
        top: 45%;
    }
    .hamburger .menu-icon:after,  .hamburger .menu-icon:before {
        position: absolute;
        -webkit-transition:  all 600ms linear;
        transition:  all 300ms linear;
    }
    .hamburger .menu-icon:after {
        content: '';
        width: 24px;
        height: 1px;
        display: block;
        background-color: #fff;
        bottom: 8px;
    }
    .hamburger .menu-icon:before {
        content: '';
        width: 24px;
        height: 1px;
        display: block;
        background-color: #fff;
        top: 8px;
    }
    .hamburger.on .menu-icon  {
        background-color:  transparent;
    }
    .hamburger.on .menu-icon:before  {
        top:  0;
        transform:  rotate(45deg);
    }
    .hamburger.on .menu-icon:after  {
        top:  0;
        transform:  rotate(-45deg);
    }

    #mobilemenubg {
        display:  block;
        position: fixed;
        top: 0;
        left: -310px;
        width:  250px;
        height: 100%;
        padding: 0 15px;
        z-index: 98;
        overflow: hidden;
        background-color: #f8f4f1;
        transition:  all 300ms linear;
    }
    #mobilemenubg.open {
        overflow-y: auto;
        left: 0;
    }
    div.mobilemenulogo {
        text-align: center;
        margin-top: 25px;
        margin-bottom: 25px;
    }
    div.mobilemenulogo img {
        width:  auto;
        max-width:  150px;
        max-height:  62px;
    }
    /*******************/
    /* Mobile menu css */
    /*******************/
    ul.mobile-menu {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    ul.mobile-menu ul {
        margin: 0;
        padding: 0;
        list-style: none;
    } 
    ul.mobile-menu li {
        margin: 0;
        padding: 0;
        position: relative;
    }       
    ul.mobile-menu button.submenu-toggle {
        background: none;
        border: 1px solid var(--color-primary);
        background-color: var(--color-primary);
        font-size: 17px;
        font-weight: 500;
        cursor: pointer;
        color: #fff;
        line-height: 1;
        display: block;
        position: absolute;
        right: 0;
        top: 6px;
        width: 26px;
        height: 26px;
        text-align: center;
        margin: 0;
        padding: 0;
		border-radius:4px;
    }
    ul.mobile-menu button.submenu-toggle:focus,
    ul.mobile-menu button.submenu-toggle:hover {
        color: #fff;
        outline: none;
    }
    ul.mobile-menu .sub-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.6s ease;
    }
    ul.mobile-menu .menu-item-has-children.open > .sub-menu {
        max-height: 2500px;
    }    
    /**/
    ul.mobile-menu{
        border-bottom: 1px solid #eeeeee;
    }
    ul.mobile-menu li a{
        border-top: 1px solid #eeeeee;
        display: block;
        padding: 7px 0 9px 0;
        color:#000;
		font-size:14px;
		font-weight:500;
    }
    ul.mobile-menu li li a{
        padding-left: 10px;
    }
    ul.mobile-menu li li li a{
        padding-left: 20px;
    }
    ul.mobile-menu li li li li a{
        padding-left: 30px;
    }
    ul.mobile-menu li a:hover,
    ul.mobile-menu li a:focus,
    ul.mobile-menu li.current-menu-item a{
        color:var(--color-primary);
    }
    ul.mobile-menu li.menu-item-has-children a{
        padding-right: 24px;
    }
}
/****************/
/*** END MENU ***/
/****************/

/**************/
/*** HEADER ***/
/**************/
.header{
    background-color: #cfaa9b;
    padding:15px 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
}
.header-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media screen and (max-width: 991px)  {
    .header_mid{
        display: none;
    }
}
.header_start{
    width: 220px;
}
.white-logo{
	filter: brightness(0) invert(1);
}
.header_end{
    display: flex;
    align-items: center;
}
@media screen and (max-width: 768px)  {
    .header{
        padding:8px 20px;
    }
    .header_start{
        width: 180px;
    }
}
.front.header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1;
    box-shadow: none;
}


.home2 .header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1;
    box-shadow: none;
}
/******************/
/*** END HEADER ***/
/******************/


/**********************/
/*** FEATURED IMAGE ***/
/**********************/
.main-banner {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
}
.main-banner picture,
.main-banner picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image covers the area */
  object-position: center;
}
.main-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* dark transparent overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.main-banner .container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.main-banner .page-title {
  font-weight: 700;
  margin-bottom: 0.5em;
}
.main-banner .page-description {
  font-size: 1.125rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
.page-subtitle {
  color: #ffffff;
  margin-top: 0.5rem;
  font-size: 25px;
}
.main-banner h1,
.main-banner h2,
.main-banner h3,
.main-banner h4,
.main-banner h5,
.main-banner h6{
    color: #fff;
}

/**************************/
/*** END FEATURED IMAGE ***/
/**************************/

/*****************************/
/*** INDEX PAGE BLOG STYLE ***/
/*****************************/
.entry-title a{
    color:var(--color-primary);
}
.entry-title a:hover{
    color:var(--color-primary);
}
img.cover {
    width: 100%;
    height: 100%;
    object-fit: cover;     
    object-position: center;
    display: block;   
    transition: 600ms;    
}
.blog-post-item:hover img.cover {
    transform: scale(1.1);
}
.post-thumbnail-link{
    display: block;    
    overflow: hidden;
    height: 260px;
}
.blog-post-item .entry-meta{
    width: 75px;
    font-size: 15px;
    line-height: 1.5;
    color: #8893be;
}
.blog-post-item .entry-category{
    width: calc(100% - 75px);
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.5;
}
.blog-post-item .blog-entry-title,
.blog-post-item .blog-entry-title a{
    font-size: 24px;
    color: var(--color-navyblue);
    font-weight: 600;
}




















/*********************************/
/*** END INDEX PAGE BLOG STYLE ***/
/*********************************/

/*********************************/
/*** SINGULAR BLOG STYLE ***/
/*********************************/
.post_title{
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--color-default);
}
.sidebar .widget {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
}
h4.widget-title{
    margin-bottom: 25px;
}
.widget.widget_archive ul, .widget.widget_categories ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.widget.widget_archive ul li, .widget.widget_categories ul li {
    margin: 0;
    padding: 7px 0;
    border-top: 1px solid #ccc;
}
.widget.widget_archive ul li a, .widget.widget_categories ul li a {
    color:  var(--color-primary);
}
.widget.widget_archive ul li a:hover, .widget.widget_categories ul li a:hover {
    color: var(--color-primary);
}

/* AUTHOR BIO */
.author-info{
	display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 45px;
    margin-bottom: 45px;
	padding-top: 45px;
	padding-bottom: 45px;
	border-top: 1px solid hsla(0, 0%, 50%, .2);
	border-bottom: 1px solid hsla(0, 0%, 50%, .2);
}
.author-avatar{
	width: 120px;
	margin-bottom: 0;
}
.author-avatar img{
	border-radius: 50%;
    width: 100%;
    height: auto;
}
.author-description{
	width: calc(100% - 150px);
}
p.author-bio{
	font-size: 15px;
	margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
    .author-info{
        margin-top: 25px;
        margin-bottom: 25px;
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .author-avatar{
        width: 50px;
    }
    .author-description{
	    width: calc(100% - 70px);
    }
}
/* COMMENT LIST */
h3#comments{
	margin-bottom: 45px;
}
ol.commentlist{
	margin: 0 0 50px 0;
	padding: 0;
	list-style: none;
}
ol.commentlist li{
	margin: 0;
	padding: 0;
}
ol.commentlist ul{
	margin: 0 0 0 15px;
	padding: 0;
	list-style: none;
}

.comment-avatar{
	width: 80px;
}
.comment-content{
	width: calc(100% - 100px);
	font-size: 17px;
	position: relative;
}
.comment-avatar img{
	border-radius: 50%;
	width: 100%;
	height: auto;
}
.comment-date{
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.comment-author{
	text-transform: uppercase;
	margin-bottom: 5px;
	font-size: 20px;
}
.comment-awaiting-moderation{
	color: orange;
}
@media only screen and (max-width: 991px) {
	ul.comment-list ul{
		margin: 0 0 0 20px;
	}
	.comment-avatar{
		width: 50px;
	}
	.comment-content{
		width: calc(100% - 60px);
	}
	.comment-reply{
		position: relative;
	}
}
.comment-respond{
	padding: 50px;
	border: 1px solid #ccc;
}
.comment-reply-title{
	text-transform: uppercase;
	margin-bottom: 30px;
}
.comment-body{
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    line-height: 1.675;
}
.comment-content p{
    margin: 0;
}
#cancel-comment-reply-link{
    float: right;
}
@media only screen and (max-width: 991px) {
    .comment-respond{
        padding: 20px;
    }
}
/*********************************/
/*** END SINGULAR BLOG STYLE ***/
/*********************************/

/*********************************/
/*** BLOG PAGINATION ***/
/*********************************/
ul.page-numbers {
    margin: 0 0 25px 0;
    padding: 15px 0;
    list-style: none;
    text-align: center;
    font-size:  16px;
    border-bottom:  1px solid #ccc;
    border-top:  1px solid #ccc;
}
ul.page-numbers li {
    margin: 5px 2px!important;
    padding: 0;
    display: inline-block;
}
ul.page-numbers li a.page-numbers  {
    padding:  5px 10px;
    background-color:var(--color-primary);
    color: #fff;
    display: block;
    border-radius: 3px;
}
ul.page-numbers li span.page-numbers.current  {
    padding:  5px 10px;
    background-color:#ccc;
    color: #666;
    display: block;
    border-radius: 3px;
    font-weight: bold;
}
/*********************************/
/*** END BLOG PAGINATION ***/
/*********************************/

/*********************************/
/*** FORM ***/
/*********************************/
input[type="search"],
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="url"],
input[type="number"],
input[type="password"],
select,
textarea{
	width: 100%;
	outline: none;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
	transition: all 0.30s ease-in-out;
	padding: 10px;
	margin: 0;
	color: var(--color-default);
	border-radius:5px;
	border: 1px solid #dee2e6;
	background-color: white!important;
}
input[type="search"]:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="url"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus{
	outline: none;
}
input[type=search]:hover,
input[type="text"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
input[type="date"]:hover,
input[type="url"]:hover,
input[type="number"]:hover,
input[type="password"]:hover,
select:hover,
textarea:hover{
	outline: none;
}
textarea{
	max-height: 100px;
}
label{
	margin: 0;
	padding: 0;
}
.wpcf7-spinner{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url('assets/images/arrow-down.svg') no-repeat right 1rem center;
  background-size: 1em;
  padding-right: 2.5rem; /* space for custom arrow */
  border: 1px solid #dee2e6;
  border-radius: 4px;
}
.search-submit{
    outline: none;
    border: 0;
    background-color: var(--color-primary);
    color: #fff;
}
/*********************************/
/*** END FORM ***/
/*********************************/

/*********************************/
/*** WIDGET SEARCH FORM ***/
/*********************************/
form.search-form{
    display: flex;
}
form.search-form label{
    width:calc(100% - 100px);
    margin: 0;
    padding: 0;
    display: block;
}
form.search-form input[type="text"]{
    width:calc(100% - 100px);
}
form.search-form input[type="submit"]{
    width:100px;
    padding: 10px 0;
}
/*********************************/
/*** END WIDGET SEARCH FORM ***/
/*********************************/

/*********************************/
/*** FOOTER ***/
/*********************************/
footer.fdifooter{
    background-color: var(--color-light);
    padding-top: 80px;
    padding-bottom: 50px;
    color: var(--color-default);
    overflow: hidden;
	font-weight:600;
}
@media (max-width: 600px) {
    footer.fdifooter{
        padding-top: 30px;
        padding-bottom: 30px;
    }
}
.fdifooter a{
    color: var(--color-primary);
    transition: 300ms;
}
.fdifooter a:hover{
    color: var(--color-default);
}
.fdifooter ul.menu{
    margin: 0;
    padding: 0;
    list-style: none;
}
.fdifooter ul.menu ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: none;
}
.fdifooter ul.menu li{
    margin-bottom: 15px;
}
.fdifooter ul.contact {
    margin: 0;
    padding: 0;
    list-style: none;
}
.social-media {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
}
.social-media a{
    display: inline-block;
    margin: 5px;
}
.social-media svg {
    width: 24px;
    height: 24px;
    fill:var(--color-primary);
    transition: 300ms;
}
.social-media svg:hover {
    fill: rgba(0, 0, 0, .7);
}
.footer-icon {
    background-color: #fff;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 300ms;
    flex-shrink: 0;
}

.footer-icon svg{
    fill: var(--color-primary);
}

.footer-icon-text {
    margin-left: 10px;
    display: inline-block;
}

@media (max-width: 991px) {
    .fdifooter ul.menu,
    .fdifooter ul.menu li{
        text-align: center;
    }
  .fdifooter ul.contact {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the whole block */
    width: auto;
    margin: 0 auto;
  }

  .fdifooter ul.contact li {
    width: 100%;          /* Let it take full width of its content */
    text-align: left;     /* Align content inside li to the left */
    max-width: 300px;     /* Optional: set a max width if needed */
  }

  .fdifooter ul.contact a {
    flex-direction: row;
    justify-content: flex-start; /* Align icon + text to the left */
    
  }

  .footer-icon-text {
    margin-left: 10px;
  }
}

::placeholder {
  color: #000; 
  opacity: 1;
}
input::placeholder,
textarea::placeholder {
  color: #000;
  opacity: 1;
}
/*********************************/
/*** END FOOTER ***/
/*********************************/



ul.tick{
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.tick li{
    margin: 0 0 10px 0;
    padding: 0 0 0 30px;
    position: relative;
}
ul.tick li::before{
    content: "";
    background: url(assets/images/tick.png) no-repeat;
    background-size: 23px;
    width: 23px;
    height: 23px;
    display: block;
    position: absolute;
    left: 0;
    top:2px;
}
.two-col{
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    column-gap: 30px;
}
@media screen and (max-width: 767px){
    .two-col{
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
        column-gap: 0;
    }
}

blockquote, .blockquote {
padding: 0 0 0 20px;
margin: 0 0 25px 0;
border-left: 5px solid var(--color-primary);
font-size:15px;
font-weight:500;
font-style:italic;
}

.small, small{
    font-size: 14px;
}
ul li,  ol li {
text-align:  left;
}
ul.default  {
list-style-type:  disc;
list-style-position:  outside;
margin:  0 0 15px 0;
padding:  0;
}
ul.default li {
margin:  0 0 0 20px;
padding:  0;
}
ul.default li::marker  {
color:  var(--color-primary);
}
ol.default {
  list-style-type: decimal;
  list-style-position: outside;
  margin: 0 0 15px 0;
  padding: 0;
}

ol.default li {
  margin: 0 0 0 20px;
  padding: 0;
}

ol.default li::marker {
  color: var(--color-primary);
  font-weight: bold;
}
b, strong {
font-weight:  600!important;
}
.fs-0{
    font-size: 0px !important;
}

ul#address-list2 {
    margin: 0;
    padding: 0;
    list-style: none;    
    max-height: 200px;
    overflow: auto;
    color: #fff;
}
ul#address-list2 li {
    margin: 0;
    padding: 5px 0;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
    line-height: normal;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.popmake-content .wpcf7-not-valid-tip{
    text-align: center;
    color: yellow;
}
ul.partner {
    margin: 0 0 20px 0;
    padding: 0;
    list-style: none;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
.partner li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex: 1 1 200px;
    max-width: 25%;
    box-sizing: border-box;
    text-align: center;
}
.partner li img {
    max-height: 60px;
}

/* START */
.text-link{
	position:relative;
	color:var(--color-default);
	font-weight:600;
	transition:300ms;
}
.text-link:after{
	content:"";
	position:relative;
	width:10px;
	height:10px;
	display:inline-block;
	background:url(assets/images/right-down.webp) no-repeat center center;
	background-size:100%;
	margin-left:7px;
}
.text-link:hover{
	color:var(--color-primary);
}
.btn1 {
    background-color: var(--color-primary);
	color: #fff;
    padding: 12px 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
	border: none;
	border-radius:50px;
	outline-style:none;
	transition:300ms;
	white-space:nowrap;
	cursor:pointer;
}
@media screen and (max-width: 600px) {
    .btn1 {
        font-size: 13px;
    }
}
.btn1:hover {    
    color: #fff;
	background-color: var(--color-default);
}
.btn2 {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    position: relative;
    overflow: hidden; 
    z-index: 0; 
    white-space: nowrap;
}

.btn2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0%;
    width: 100%;
    background: #fff;
    transition: 0.3s ease-out;
    z-index: -1;
}

.btn2:hover {
    color: var(--color-primary);
}

.btn2:hover:after {
    height: 100%;
}
.btn3 {
    background-color: var(--color-light);
	color: #fff;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
	border: none;
	border-radius:50px;
	outline-style:none;
	transition:300ms;
	white-space:nowrap;
	cursor:pointer;
}
@media screen and (max-width: 600px) {
    .btn3 {
        font-size: 13px;
    }
}
.btn3:hover {    
    color: var(--color-light);
	background-color: var(--color-white);
}
.submit, .button, .woocommerce-Button.button {
    background-color: var(--color-primary) !important;
	color: #fff !important;
    padding: 12px 20px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    font-size: 15px !important;
	border: none !important;
	border-radius:7px !important;
	outline-style:none !important;
	transition:300ms !important;
	white-space:nowrap !important;
	cursor:pointer !important;
}

.submit:hover, .button:hover, .woocommerce-Button.button:hover {
    color: #fff !important;
	background-color: var(--color-default) !important;
}


.genesis-table .row{
    border-bottom: 1px solid #2c706c;
    color: #cdfffe;
}
.genesis-table .row .col{    
    padding: 10px 0;
}


/* START ************************************************************/
.blurry-white-bg {
  background: rgba(255, 255, 255, 0.2); /* semi-transparent white */
  backdrop-filter: blur(10px);           /* blur effect behind */
  -webkit-backdrop-filter: blur(10px);   /* Safari support */
  border-radius: 20px;                   /* optional: rounded corners */
  border: 1px solid rgba(255, 255, 255, 0.4); /* subtle border */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);  /* soft shadow */
  padding: 50px;                         /* optional spacing */
}
@media screen and (max-width: 767px) {
	.blurry-white-bg {
		padding: 20px; 
	}
}

/* My Account */
/* Wrapper */
.woocommerce-MyAccount-navigation {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 20px;
    width: 100%;
}

/* List styling */
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Menu items */
.woocommerce-MyAccount-navigation li {
    margin-bottom: 8px;
}

/* Links */
.woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 12px 16px;
    font-weight: 500;
    text-decoration: none;
    color: #333;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Hover & Active */
.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li a:hover {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 2px 6px rgba(0,115,170,0.2);
}

/* Log out button */
.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a {
    background: #f8d7da;
    color: #842029;
}

.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
    background: #dc3545;
    color: #fff;
}

/* Woocommerce */
.woocommerce-account .addresses .title .edit {
    float: left;
    display:block;
    margin:10px 0;
    padding:7px 15px;
    color:#fff;
    background:var(--color-primary);
    border-radius:5px;
}
.page-description{
    padding-top:15px;
    padding-bottom:15px;
}


@media screen and (min-width: 992px) {
   .home2 ul.desktop-menu > li > a {
        color:#fff;
    }
}