/*
Theme Name: TandoStone
Author: TandoStone
Description: TandoStone Child Theme
Version: 1.0
Template: bootstrap-component-blox
*/

:root {
	--ts-cyan: #2E97BF;
	--ts-gold: #C2A261;
	--ts-cream: #F3F1EA;
	--ts-light: #F7F7F7;
	--ts-grey: #495965;
	--ts-dark: #000;
	--ts-font: "Manrope", sans-serif;
	--ts-font-header: "area-normal", sans-serif;
}

/* ===== Global ===== */

html,
body { 
	overflow-x: hidden;
	font-family: var(--ts-font);
	color: var(--ts-dark);
}

a,
a:hover {
	text-decoration: none;
}

h1, h2, h3, h4, h5,
.ts-font-header {
	font-family: var(--ts-font-header);
}

.ts-font-body { 
	font-family: var(--ts-font);
}

/* ===== Custom Classes ===== */

.z-front {
	z-index: 5;
}

.z-back {
	z-index: 1;
}

.fw-600 {
	font-weight: 600;
}

.fw-900 {
	font-weight: 900;
}

.fs-sm {
	font-size: 13px;
}

.ts-line {
	height: 2px;
	width: 30px;
	background: var(--ts-gold);
}

/* Collections with only a couple of swatches (ProBrick) render as a compact
   centered pair per the homepage mockup, not full container width. */
.ts-collection-compact {
	max-width: 660px;
	margin-inline: auto;
}

.ts-vertical {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-orientation: mixed;
    border-left: 1px solid var(--ts-gold);
    text-align: center;
}

#ts-contact .ts-vertical {
    position: relative;
    right: 40px;
}

/* ===== Text Colors ===== */

.ts-text-cyan {
	color: var(--ts-cyan);
}

.ts-text-gold {
	color: var(--ts-gold);
}

.ts-text-dark {
	color: var(--ts-dark);
}

.ts-text-light {
	color: var(--ts-light);
}

/* ===== Background Colors ===== */

.ts-bg-cyan {
	background-color: var(--ts-cyan);
}

.ts-bg-gold {
	background-color: var(--ts-gold);
}

.ts-bg-dark {
	background-color: var(--ts-dark);
}

.ts-bg-light {
	background-color: var(--ts-light);
}

.ts-bg-cream {
	background-color: var(--ts-cream);
}

/* ===== Buttons ===== */

.btn {
	border-radius: 0;
	padding: 10px 25px;
	text-transform: uppercase;
	cursor: pointer;
}

.ts-btn-cyan {
	background-color: var(--ts-cyan);
	color: #fff;
}

.ts-btn-cyan:hover {
	background-color: var(--ts-cyan);
	color: #fff;
	opacity: .8
}

.ts-btn-gold {
	background-color: var(--ts-gold);
	color: #fff;
}

.ts-btn-gold:hover {
	background-color: var(--ts-gold);
	color: #fff;
	opacity: .8
}

.ts-btn-dark {
	background-color: var(--ts-dark);
	color: #fff;
}

.ts-btn-dark:hover {
	background-color: var(--ts-dark);
	color: #fff;
	opacity: .8
}

.ts-btn-light-outline {
	border: 1px solid #fff;
	color: var(--ts-light);
	transition: all 0.3s;
}

.ts-btn-light-outline:hover {
	border: 1px solid var(--ts-cream);
	background: #ffffff39;
	color: #fff;
	border: 1px solid white;
}

.ts-btn-dark-outline {
	border: 1px solid #ffffff39;
	color: #ffffff39;
	background: #fff;
}

/* ===== Navbar ===== */

#navbar-main-menu .nav-link {
	color: var(--ts-light);
	text-transform: uppercase;
	margin-left: 10px;
	margin-right: 10px;
	font-size: 14px;
	letter-spacing: 2px;
	position: relative;
}

.scrolled #navbar-main-menu .nav-link {
    color: var(--ts-grey);
}

.scrolled .ts-switcher .text-white {
    color: var(--ts-grey)!important;
}


.scrolled #bcb-main-navbar .ts-btn-light-outline {
    border: 1px solid var(--ts-grey)!important;
    color: var(--ts-grey)!important;
}

#navbar-main-menu .current-menu-item .nav-link:before {
	content: '';
	position: absolute;
	bottom: 0;
	background: var(--ts-cyan);
	left: 10px;
	height: 2px;
	width: 20%;
	transition: all .3s;
}

#navbar-main-menu .nav-link:before {
	content: '';
	position: absolute;
	bottom: 0;
	background: var(--ts-cyan);
	left: 10px;
	height: 2px;
	width: 0%;
	transition: all .3s;
}

#navbar-main-menu .nav-link:hover:before {
	content: '';
	position: absolute;
	bottom: 0;
	background: var(--ts-cyan);
	left: 10px;
	height: 2px;
	width: 50px!important;
	transition: all .3s;
}

#bcb-main-navbar {
	 transition: transform 0.4s ease, background 0.4s ease;
	 box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.scrolled #bcb-main-navbar {
	background: rgba(255, 255, 255, 0.8);
	-webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.sticky-wrapper {
	height: 0!important;
}

.sub-menu {
	background: transparent!important;
	border: none;
	border-radius: 0;
}


.scrolled .sub-menu {
	background: #fff!important;
}


.ts-switcher a {
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	line-height: 1;
}

.ts-switcher a:hover {
	color: var(--ts-cyan);
}

.scrolled .ts-switcher a,
.ts-static-nav .ts-switcher a {
	color: var(--ts-grey);
}

#ts-logo {
	width: 360px;
	padding-top: 10px;
}

/* ===== Toggler ===== */

#toggler:focus, 
#toggler:active {
    outline: 0;
}

.scrolled #toggler span {
    width: 30px;
    height: 3px;
    display: block;
    background-color: var(--ts-grey);
    margin: 7px 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

#toggler span {
    width: 30px;
    height: 3px;
    display: block;
    background-color: #fff;
    margin: 7px 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

#toggler span:nth-child(1) {
    -webkit-transform: translatey(10px) rotate(-45deg);
        -ms-transform: translatey(10px) rotate(-45deg);
            transform: translatey(10px) rotate(-45deg);
}

#toggler span:nth-child(2) {
    opacity: 1;
    width: 0;
}

#toggler span:nth-child(3) {
    -webkit-transform: translatey(-10px) rotate(45deg);
        -ms-transform: translatey(-10px) rotate(45deg);
            transform: translatey(-10px) rotate(45deg);  
}

#toggler.collapsed span {
    -webkit-transform: translatey(0) rotate(0deg);
        -ms-transform: translatey(0) rotate(0deg);
            transform: translatey(0) rotate(0deg);
    opacity: 1;
    width: 30px;   
}

/* ===== Common Header ===== */

#ts-common-header .row {
	padding-top: 250px;
	padding-bottom: 250px;
}

#ts-common-header h2 {
	text-shadow: 2px 2px 20px var(--ts-dark);
}

#ts-common-header .overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
    background: linear-gradient(180deg, rgba(34, 34, 34, 1) 0%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0) 25%, rgb(34 34 34 / 0%) 100%);
}

/* ===== Hubspot Form ===== */

.hs-form-field {
	width: 100%!important;
	float: none!important;
}

.hs-form-field input {
	width: 100%;
	padding: 10px;
	border: 2px solid var(--ts-gold);
}

fieldset,
.input {
	max-width: 100%!important;
	width: 100%!important;
	margin-right: 0;
}

.inputs-list {
	list-style: none;
	padding-left: 0;
	margin-top: 30px
}

.hs-form-booleancheckbox input {
	margin-right: 10px!important;
}

.hs_submit input {
	background: #fff!important;
	margin-top: 30px!important;
	color: var(--ts-cyan)!important;
	border: 2px solid var(--ts-cyan)!important;
	padding: 10px!important;
}

/* ===== Footer ===== */

.footer-section-v2 .top-content-v2 form .hs-button {
    background: var(--ts-cyan)!important;
}

#ts-footer-widgets h5 {
	font-family: var(--ts-font);
	margin-bottom: 30px;
}

#ts-footer-widgets ul {
	 list-style-type: none;
	 padding-left: 0;
}

#ts-footer-widgets ul li {
	margin-bottom: 8px;
	font-size: 14px;
}

#ts-footer-widgets ul li:last-child {
	margin-bottom: 0px;
}

#ts-footer-widgets ul li a {
	color: var(--ts-dark);
}

.ts-icons i {
	display: inline-flex;
	height: 45px;
	width: 45px;
	border-radius: 50px;
	color: #fff;
	align-items: center;
	justify-content: center;
	background: var(--ts-cyan);
	font-size: 24px;
	border: 2px solid var(--ts-cyan);
}

.ts-icons i:hover {
    border: 2px solid var(--ts-cyan);
    background: #fff;
    color: var(--ts-cyan);
}

footer {	
	background: var(--ts-dark);
	color: #fff;
}

footer a {
	color: rgba(255,255,255,0.8);
}

footer a:hover {
	color: rgba(255,255,255,0.6);
}


/* ===== Common Swiper Reviews ===== */

.ts-reviews-swiper .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: transparent;
	border: 2px solid var(--ts-gold);
	opacity: 1;
}

.ts-reviews-swiper .swiper-pagination-bullet-active {
	background: var(--ts-gold);
}

@media (max-width: 1200px) {}

@media (max-width: 992px) {
	
	.w-75 {
		width: 100%!important;
	}
	
	#ts-logo {
	    max-width: 250px;
	}
	
	#navbar-main-menu .nav-link {
        color: var(--ts-grey);
        margin-left: 0;
    }
    
    #navbar-main-menu .nav-link:before,
	#navbar-main-menu .current-menu-item .nav-link:before {
        left: 0!important;
    }
    
    #navbar-main-menu .sub-menu .nav-link:before {
        display: none!important;
    }
    
    .ts-switcher .text-white {
        color: var(--ts-grey)!important;
    }
    
    #bcb-main-navbar .ts-btn-light-outline {
        border: 1px solid var(--ts-grey)!important;
        color: var(--ts-grey)!important;
    }
    
    #bcb-main-navbar {
    	background: rgba(255, 255, 255, 0.8);
    	-webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
    }
    
    #toggler span {
        background-color: var(--ts-grey);
    }
    
    .ts-switcher a {
	    color: var(--ts-grey);
    }
    
    #ts-common-header h2 {
        margin-bottom: 0!important
    }
    
    #ts-common-header .row {
        padding-top: 160px;
        padding-bottom: 100px;
    }
    
    .ts-horizontal {
        border-bottom: 1px solid var(--ts-gold);
        margin-bottom: 20px;
    }

}

@media (max-width: 768px) {}

@media (max-width: 576px) {}