/* *{*/
/*    box-shadow: 0 0 1px red;*/
/*} */
@font-face {
    font-family: Asda;
    src: url(../Asda-Bold.woff) format(woff2),
        url(../Asda-Regular.woff) format(woff2);
}
* {
    font-family: "Asda", Sans-serif !important;
}
:root {
    --primary: #413a30;
    --secondary: #e8d7c3;
    --white: #fff;
    --black: #000;
    --accent: #83bec2;
    --other:#EEF6F7;
}

.navbar-toggler:focus {
    box-shadow: unset !important;
}
.logo {
    width: 80px;
    max-width: 50px;
}
@media(max-width:992px){
    .logo {
    width: 75px;
    max-width: 75px;
}
    .logo-container {
  left: 50%;
  padding: 0 !important;
  right: auto !important;
  transform: translateX(-50%);
}
}
@media(min-width:1124px) {
    .logo {
        width: 150px;
        max-width: unset;
    }
}

@media(max-width:992px) {
    .navbar-toggler-icon {
        filter: invert(1);
    }
}
.g-recaptcha > div{
    margin:auto;
}
.text-prime * {
    color: var(--primary);
}

.bg-prime {
    background-color: var(--primary);
}

.btn.bg-prime:hover {
    background-color: var(--accent);
}

.text-second * {
    color: var(--secondary);
}

.bg-second {
    background-color: var(--secondary);
}

.text-white * {
    color: var(--white);
}

.bg-white {
    background-color: var(--white);
}

.text-black * {
    color: var(--black);
}

.bg-black {
    background-color: var(--black);
}

.text-accent * {
    color: var(--accent);
}

.bg-accent {
    background-color: var(--accent);
}

.btn.bg-accent:hover {
    background-color: var(--primary);
    color: var(--white)
}
.bg-other{
    background-color: var(--other);
}
section {
    background-size: cover;
    background-position: center;
}

input[type="tel"] {
    text-align: end;
}

.divider {
    width:20vw !important;
    max-width: 10rem;
    margin: auto;
    height: 10px;
    aspect-ratio: 90/1;
}

.border-prime {
    border: 3px solid var(--primary);
}

.dotted-borders {
    width: 3px;
    border-width: 0 3px 0 0;
    border-style: dotted;
    border-color: var(--primary);
    max-height: 15vh;
    flex-grow: 1;
}
.nav-divider{
    height: 25px;
}
:is(#navigation,#navigation .logo){
    transition: all 1s ease;
}
.fixed{
    position: fixed;
    top:0;
    left:0;
    right: 0;
    z-index: 99999;
}
@media(max-width:992px) {
    .border-middle {
        position: relative !important;
        display: flex;
        align-items: center !important;
        flex-direction: row !important;
        max-width: 100% !important;
    }

    .border-middle .dotted-borders {
        width: 100% !important;
        border-width: 0 0 3px 0;
        height: 3px !important;
        max-height: 3px !important;
    }
}

.home.gallery .overlay {
    position: absolute;
    background: var(--accent);
    opacity: 0.8;
    inset: 0 0 0 0;
    height: 100%;
    z-index: 1;
    background-blend-mode: multiply;
}

.home.gallery :is(.section-title, img) {
    position: relative;
    z-index: 99;
}
.home.gallery .row figure{
    overflow: hidden;
}
.home.gallery figure img{
    aspect-ratio: 4/3;
    object-fit: cover;
}
.home.gallery figure:hover img{
    overflow: hidden;
    transform: scale(1.1);
    transition: all 0.2s linear !important;
}
.nav-link.active{
    color:#47ada2 !important;
}
.nav-link:hover{
    color:#47ada2 !important;
}
/* Slider */

.slide-image {
    /*aspect-ratio: 16/9;*/
    object-fit: cover;
    object-position: center;
}

.swiper {
    width: 100%;
    height: auto;
    /*max-height: 70vh;*/
}
.btn:hover{
    background-color: var(--primary) !important;
    color:white !important;
}
#cookie-consent {
	position: fixed;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--primary);
	padding: 15px;
	z-index: 1000;
	box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
	font-family: "Heebo", Sans-serif;
}

.cookie-container {
	max-width: 1080px;
	margin: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-align: center;
}

.cookie-buttons button {
	margin: 5px;
	padding: 8px 16px;
	border: none;
	background-color: #2c3e50;
	color: white;
	cursor: pointer;
	border-radius: 4px;
	font-size: 14px;
}

.cookie-buttons button:hover {
	background-color: #34495e;
}

@media (min-width: 600px) {
	.cookie-container {
		flex-direction: row;
		justify-content: space-between;
		text-align: right;
	}
}
@media(min-width:768px){
    .footer-border::after {
        content: '';
        background-color: white;
        height: 40%;
        width: 1px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(0, -50%);
    }
    .footerLogos > div{
        flex: 0 1 50%;
    }
}