@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@100;300;400;700;900&family=Roboto:wght@300;400;500;700&display=swap');

:root {
	--tone-color: #E7E1D8;
	--tone-dark: #796951;
	--tone-highlight: #71B6DA;
	--secondary: #BA6338;
	
	--white: #FFF;
	--dark: #242424;
	--dark-grey: #6C6C6C;
	--success: #7EB76B;
	--error: #DC4646;
	
	--border-grey: #EAEAEA;
	--light-grey: #f8f8f8;
	--border-radius: 0px;
	
	--container-width: 1040px;
}
  
*,
*::before,
*::after {
box-sizing: border-box;
}
html, body{
    scroll-behavior: smooth;
    margin: 0;
    font-family: 'Roboto', sans-serif !important;
    color: var(--dark-grey);
}
body.lock-scroll {
    overflow: hidden;
}
[v-cloak]{display: none;}

/*---------------------------------*/
/*------------UTILITIES------------*/
/*---------------------------------*/
.tone{color: var(--tone-color);}
.tone-light{color: var(--tone-highlight);}
.tone-dark{color: var(--tone-dark);}
.secondary{color: var(--secondary);}
.white{color: white;}
.dark{color: var(--dark);}
.dark-grey{color: var(--dark-grey);}
.light-grey{color: var(--text-light);}
.success{color: var(--success);}
.error{color: var(--error);}

.bg-tone{
    background-color: var(--tone-color);
}

.italic{font-style: italic}
.uppercase{text-transform: uppercase}
.normal{font-weight: normal !important;}
.bold{font-weight: 600;}
.medium{font-weight: 500;}
.light{font-weight: 300;}

.fs10{font-size:10px !important;}
.fs14{font-size:14px !important;}
.fs12{font-size:12px !important;}
.fs18{font-size:18px !important;}
.fs20{font-size:20px !important;}
.fs24{font-size:24px !important;}
.fs26{font-size:26px !important;}
.fs28{font-size:28px !important;}
.fs48{font-size:48px !important;}
.fs64{font-size:64px !important;}
.fs100{font-size:100px !important;}

h2{
    font-size: 100%;
    font-weight: 600 !important;
}

/*------------STRUCTURES---------------*/
.page-section{
    padding: 40px 0;
}
.container{
   max-width: var(--container-width) !important;
}
.section-title, .section-title-center{
    position: relative;
}
.section-title::after{
    position: absolute;
    border-bottom: solid 1px var(--dark);
    width: 20%;
    margin-top: 8px;
    content: '';
}
.section-title-center::after{
    position: absolute;
    border-bottom: solid 1px var(--dark);
    width: 20%;
    margin-top: 8px;
    content: '';
    left: 0; 
    right: 0; 
    margin-left: auto; 
    margin-right: auto; 
}
.section-title h2, .section-title-center h2{
    font-weight: 300 !important;
    margin-bottom: 6px;
    color: var(--dark-grey);
    font-size: 14px;
}
.section-title h1, .section-title-center h1{
    margin: 0;
    font-weight: 500 !important;
    color: var(--dark);
    font-size: 26px;
}
@media (min-width:992px){
    .row.large-gutter{
        --bs-gutter-x: 3.5rem !important;
    }
}

@media (max-width: 768px){
    .center-mobile {
        text-align: center;
    }
    .d-flex{
        justify-content: center !important;
    }
}

/*------------BUTTONS AND LINKS---------------*/
a {
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.btn{
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    padding: 10px 10px 10px 10px;
    border-radius: var(--border-radius);
    font-weight: 400;
    transition: all 0.3s;
    text-transform: uppercase;;
    font-size: 14px;
}
.btn-lg{
    font-size: 18px;
    padding: 12px 20px;
}
.btn.btn-tone{
    background-color: var(--tone-color);
    border: solid 2px var(--tone-color);
    color: white;
}
.btn.btn-tone:hover{
    background-color: var(--tone-dark);
    border: solid 2px var(--tone-dark);
    color: white;
}
.btn.btn-black{
    background-color: var(--dark);
    border: solid 2px var(--dark);
    color: white;
}
.btn.btn-black:hover{
    background-color: var(--dark-grey);
    border: solid 2px var(--dark-grey);
    color: white;
}
.btn.btn-white{
    background-color: var(--white);
    border: solid 2px var(--white);
    color: black;
}
.btn.btn-outline{
    background-color: transparent;
}
.btn.btn-outline.btn-tone{
    background-color: transparent;
    color: var(--tone-color) !important;
}
.btn.btn-outline.btn-tone:hover{
    background-color: var(--tone-color);
    border: solid 2px var(--tone-color);
    color: var(--white) !important;
}
.btn.btn-outline.btn-white{
    border: solid 2px var(--white);

    background-color: transparent;
    color: var(--white) !important;
}
.btn.btn-outline.btn-white:hover{
    background-color: var(--white);
    border: solid 2px var(--white);
    color: var(--tone-color) !important;
}
/*---------------------------------*/
/*------------WEB STYLES-----------*/
/*---------------------------------*/

/*------------NAV BAR---------------*/
.top-bar{
    position: fixed;
    color: white;
    background-color:#1D1D1D;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    line-height: 30px;
    z-index: 10;
    text-align: center;
    font-weight: 500;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bp-header{
    position: fixed;
    top: 30px;
    z-index: 10;
    width: 100%;
    left: 0;
    transition: all 200ms linear;
    font-family: 'Roboto', sans-serif;
    background: rgba(231, 225, 216, 0.38);
    backdrop-filter: blur(10px);    
    color: var(--tone-color);
    padding: 10px 0;
}
.bp-header.colored{
    background: rgba(231, 225, 216, 0.38);
    backdrop-filter: blur(10px);
    padding: 5px 0;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);

}
.bp-header .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 60px;
}
.bp-header .container .logos {
    margin-right: auto;
}
.bp-header .container .logos img {
    width: 100px
}
.bp-header .menu-main {
    display: none;
    color: var(--dark);
    letter-spacing: 0;
}
.bp-header  .menu-main ul {
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
}
.bp-header .menu-main ul li {
    height: inherit;
    margin: 0;
    padding: 0;
    list-style: none;
    
    position: relative;
}
.bp-header .menu-main ul li > a {
    height: inherit;
    font-weight: 500;
    text-transform: capitalize;
    display: block;
    padding: 10px 10px 10px 10px;
    text-decoration: none;
    color: inherit;
    font-size: 18px;
}
.bp-header .menu-main ul li > button {
    margin-left: 5px;
}
.bp-header .hamburger-trigger {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.hamburger {
    border: none;
    cursor: pointer;
    outline: none;
    position: relative;
    display: block;
    width: 30px;
    height: 18px;
    background: transparent;
    border-top: 2px solid;
    border-bottom: 2px solid;
    font-size: 0;
    transition: all 0.25s ease-in-out;
    color: var(--tone-dark);
}
.hamburger.is-active {
    border-color: transparent;
    color: var(--dark);
}
.hamburger::before, .hamburger::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    background: currentcolor;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease-in-out;
}
.hamburger.is-active::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger.is-active::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

@media (min-width: 992px){
    .menu-main {
        display: block !important;
    }
    .hamburger-trigger {
        display: none !important;
    }
    .bp-header{
        padding: 15px 0;
    }
    .bp-header.colored{
        padding: 10px 0;
    }
    .bp-header .container .logos img {
        width: 120px !important;
    }
}

@media (max-width: 992px){
    .top-bar{
        height: 30px;
        text-align: center;
        display: block;
        font-size: 11px;
    }
    .bp-header{
        top: 30px;
    }
}

/*------------MOBILE MENU-------------*/

.menu-main-mobile {
    position: fixed;
    background: var(--tone-color);
    width: 100%;
    height: 100%;
    top: 30px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 100;
    display: flex;
    overflow: hidden;
    justify-content: flex-start;
    flex-direction: column;
}
.menu-main-mobile.open {
    opacity: 1;
    visibility: visible;
}
.menu-main-mobile .menu-main-mobile-top {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    height: 78px;
}
.menu-main-mobile .menu-main-mobile-center {
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex: 1;
}
.menu-main-mobile ul {
    font-size: 22px;
    color: var(--dark);
    text-align: center;
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.menu-main-mobile ul li a {
    display: block;
    padding: 10px 30px;
    color: inherit;
}
.menu-main-mobile ul li.active > a {
    font-weight: bold;
}
.menu-main-mobile .menu-main-mobile-bottom {
    padding: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 992px){
    .menu-main-mobile {
        display: none !important;
    }
}

/**COOKIES AND AGE BANNERS**/
.cookies-banner{
	position: fixed;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	padding: 25px;
	border-radius: 10px;
	background-color: black;
	color: white;
	max-width: 50%;
	z-index: 9999;
}
@media (min-width: 575.98px) {
	.cookies-banner{
		width: 400px;
		left: unset;
		right: 25px;
		bottom: 25px;
	}
	
}


/*PAGE*/

.services-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    grid-gap: 10px;
    max-width: 100%;
}
.gallery-top{
    height: 550px;
}
.gallery-thumbs {
    height: 20%;
    box-sizing: border-box;
    padding: 15px 0;
}
.gallery-slide{
    width: fit-content !important;
}
.gallery-slide img{
    height: 100%;
    object-fit: cover;
}

.form-group{
    margin-bottom: 15px;
}
.form-group .input, .form-group .textarea{
    border: solid 1px var(--dark);
}
.form-group .input::placeholder, .form-group .textarea::placeholder{
    color: var(--dark-grey);
}

.form-group .input:hover, .form-group .textarea:hover{
    border: solid 1px var(--dark);
}



.bp-footer{
    padding: 60px 0;
    background-color: #1D1D1D;
    color: white;
    
}
.bp-footer .footer-title{
    color: #898683  !important;
    font-size: 16px;
    font-weight: 300;
    gap: 15px;
}
.bp-footer .footer-link {
    padding-bottom: 10px;
    color: white;
}
.bp-footer .footer-link a{
    color: inherit;
}
.bp-footer .footer-link a:hover{
    color: var(--tone-color) !important;
}