@font-face {
    font-family: 'Quicksand';
    src: url('../fonts/Quicksand-Light.woff2') format('woff2'),
        url('../fonts/Quicksand-Light.woff') format('woff'),
        url('../fonts/Quicksand-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Quicksand';
    src: url('../fonts/Quicksand-Medium.woff2') format('woff2'),
        url('../fonts/Quicksand-Medium.woff') format('woff'),
        url('../fonts/Quicksand-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Quicksand';
    src: url('../fonts/Quicksand-Bold.woff2') format('woff2'),
        url('../fonts/Quicksand-Bold.woff') format('woff'),
        url('../fonts/Quicksand-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Quicksand';
    src: url('../fonts/Quicksand-SemiBold.woff2') format('woff2'),
        url('../fonts/Quicksand-SemiBold.woff') format('woff'),
        url('../fonts/Quicksand-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Quicksand';
    src: url('../fonts/Quicksand-Regular.woff2') format('woff2'),
        url('../fonts/Quicksand-Regular.woff') format('woff'),
        url('../fonts/Quicksand-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

  /* root vars */
  :root {
    --primary-color: #BB3E03;
    --secondary-color: #D8E2DC;
    --tertiary-color: #250902; 
    --quaternary-color: #F9F9F9;
    --quinary-color: #B1DCFE;
    --font-family: 'Quicksand';
    --transition-speed: 0.3s;
    --transition-ease: ease-in-out;
  }

  .debug {
    outline: 1px solid red !important;
  }

  /* setting everything to basic */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family), sans-serif;
  }
  
  ::selection {
    background-color: var(--primary-color);
    color: white;
  }
  
  html,
  body {
    font-size: 16px;
  }
  
  @media (min-width: 1440px) {
    html,
    body {
      font-size: 17px !important;
    }
  }
  
  @media (max-width: 934px) {
    html,
    body {
      font-size: 15px !important;
    }
  }
  
  body {
    width: 100%;
    min-height: 100vh;
    --webkit-font-smoothing: antialiased;
    --moz-osx-font-smoothing: grayscale;
    position: relative;
    background-color: white;
  }

  /* elements */
  input, textarea, select, button {
    font-family: inherit;
    font-size: 1rem;
    color: inherit;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: .9rem;
    width: 100%;
  }

  textarea {
    resize: none;
  }
  
  button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    transition: background-color var(--transition-speed);
  }
  
  button:hover {
    background-color: #862B00;
  }

  a,
  button {
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    font-size: 1rem;
  }
  
  select,
  input {
    font-size: 1rem;
  }

  a:focus,
  button:focus,
  input:focus,
  textarea:focus {
    outline: none;
    outline-offset: 0px;
  }

  /* img/video */
  img,
  video {
    max-width: 100%;
    height: auto;
    display: block;
  }


    .main {
        display: grid;
        grid-template-columns: 33% 1fr;
        width: 100%;
        min-height: 100vh;
    }

    .main .header-wrapper {
        position: relative;
    }

    .main header {
        background-color: var(--secondary-color);
        height: 100%;
        min-height: 600px;
        width: 33%;
        position: fixed;
        padding: 1rem;
        box-sizing: border-box;
        display: grid;
        justify-content: end;
        grid-template-rows: 1fr;
		z-index: 998;
    }

    .main header .desktop-logo img {
        object-fit: contain;
        width: auto;
        height: 194px;
    }
    
    /* main menu */
    .main header #main-menu {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-flow: column;
        gap: .44rem;
        margin-top: 1rem;
    }

    .main header #main-menu a {
        font-size: 1rem;
        font-weight: 550;
        color: #1a1311;
        text-decoration: none;
    }

    .main header #main-menu a:hover {
        color: var(--tertiary-color)!important;
    }

    /* main menu > sub menu */
    .main header #main-menu li:has(.sub-menu) > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .main header #main-menu li:has(.sub-menu) > a::after {
        content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%231a1311' viewBox='0 -960 960 960'%3E%3Cpath d='M504-480 320-664l56-56 240 240-240 240-56-56 184-184Z'/%3E%3C/svg%3E");
        width: auto;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        rotate: 0deg;
        transition: 0.2s;
    }

    .main header #main-menu li:has(.sub-menu) > a.open::after {
        rotate: 90deg;
    }

    .main header #main-menu .sub-menu {
        display: grid;
        gap: 0.24rem;
        list-style: none;
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s;
        padding-left: .44rem;
    }

    .main header #main-menu .sub-menu.open {
        max-height: 500px;
    }

    .main header #main-menu .sub-menu a {
        color: #1a1311;
    }

    .main header #main-menu li.current-menu-item  a {
        color: var(--tertiary-color);
    }

    /* main content */
    .main .content {
        padding: 1rem 2.68rem;
        padding-bottom: 4rem;
    }

    .main .content p {
        color: var(--tertiary-color);
        line-height: 1.34;
        word-wrap: break-word;
        font-size: 1rem;
        margin-bottom: .88rem;
    }

    .main .content strong {
        font-weight: 600;
    }

    .main .content li {
        color: var(--tertiary-color);
        line-height: 1.34;
        word-wrap: break-word;
        font-size: 1rem;
        margin-bottom: .24rem;
        list-style-position: inside;
    }

    .main .content a {
        text-decoration: underline;
        color: var(--tertiary-color);
        font-weight: 600;
    }

    .main .content h1,
    .main .content h2,
    .main .content h3,
    .main .content h4,
    .main .content h5 {
        color: var(--tertiary-color);
        font-weight: 600;
        font-size: 1.34rem;
        margin-bottom: .44rem;
        line-height: 1.34;
        letter-spacing: -.005rem;
    }

    /* compatibility */
    @media (max-width: 900px) {
        .main {
            grid-template-columns: 1fr !important;
        }

        /* header */
        .main header {
            justify-content: normal !important;
            width: 100%;
            top: 0;
            left: -100%;
            transition: 0.5s;
            pointer-events: none;
            padding-top: 48%;
            grid-template-rows: 1fr;
            padding-bottom: 30%;
        }

        .header-wrapper .quote {
            text-align: center;
            max-width: 100%;
            align-items: start;
        }

        .main header.show {
            left: 0;
            pointer-events: all;
        }

        .main header .desktop-logo {
            display: none;
        }


        /* mobile header */
        .main .mobile-logo img {
            object-fit: contain;
            width: auto;
            max-height: 104px;
        }

        .mobile-header {
            display: flex !important;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: .24rem .9rem;
            box-sizing: border-box;
            background-color: var(--secondary-color);
            position: relative;
            z-index: 99999;
        }

        /* content */
        .main .content {
            padding: 1rem .9rem;
            padding-bottom: 7.44rem;
        }

        /* menu button phone */
        #menu_checkbox {
        right: 0;
        left: 0;
        display: block;
        width: 60px;
        height: 60px;
        cursor: pointer;
        scale: .65;
        }

        #menu_checkbox div {
        position: relative;
        top: 0;
        height: 12px;
        background-color: var(--tertiary-color);
        margin-bottom: 12px;
        transition: 0.3s ease transform, 0.3s ease top, 0.3s ease width,
            0.3s ease right;
        border-radius: 2px;
        }

        #menu_checkbox div:first-child {
        transform-origin: 0;
        }

        #menu_checkbox div:last-child {
        margin-bottom: 0;
        transform-origin: 60px;
        }

        #menu_checkbox div:nth-child(2) {
        right: 0;
        width: 60px;
        }

        #menu_checkbox.open div:first-child {
        top: -6px;
        transform: rotateZ(45deg);
        }

        #menu_checkbox.open div:last-child {
        top: 6px;
        transform: rotateZ(45deg);
        }

        #menu_checkbox.open div:nth-child(2) {
        width: 85px;
        top: 0;
        right: 13px;
        transform: rotateZ(-45deg);
        }
        .two-inputs {
            gap: 0 !important;
        }
        .two-inputs p {
            width: 100% !important;
        }
        .reverse-order {
            display: flex;
            flex-direction: column-reverse;
        }
    }

/* contact */
.wpcf7-submit {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: white;
  cursor: pointer;
  transition: all var(--transition-speed) var(--transition-ease);
}

.wpcf7-submit:hover {
  background-color: #862B00;
  border-color: #862B00;
}

.two-inputs {
    display:flex;
    flex-wrap:wrap;
    gap:.9rem;
}

.two-inputs p {
    width: calc(50% - (.9rem / 2));
}

/* CTA btn */
.cta-btns {
    position: fixed;
    right: 0;
    bottom: 0;
    display: flex;
    z-index: 999;
    flex-wrap: wrap;
}

.cta {
  padding: 1rem .68rem;
  background-color: var(--primary-color);
  color: white;
}

.cta.secondary {
  padding: 1rem .68rem;
  background-color: var(--secondary-color);
  color: #1a1311;
}

@media (max-width: 500px) {
    .cta {
        width: 100%;
        text-align: center;
    }
}


.gt_float_switcher {
    font-family: inherit !important;
    font-size: 1rem !important;
    border-radius: 0px !important;
    color: #1a1311 !important;
    display: block !important;
    line-height: 20px;
    box-shadow: none !important;
    background: transparent !important;
    overflow: hidden !important;
}

.gt_float_switcher .gt-selected {
    background-color: transparent !important;
}

.gt_float_switcher .gt-selected .gt-current-lang {
    color: #1a1311 !important;
}

.gt_float_switcher .gt_options a {
    color: #1a1311 !important;
}

.gt_float_switcher .gt_options a:hover {
  background: var(--primary-color) !important;
  color: white !important;
}

.grecaptcha-badge {
	display: none !important;
	visibility: hidden !important;
}