/* html, body {*/
/*   cursor: url('../images/cursor.png') 0 0, url('../images/cursor.svg') 0 0, pointer;*/
/* }*/
/* a {*/
/*   cursor: url('../images/cursor.png') 0 0, url('../images/cursor.svg') 0 0, pointer !important;*/
/* }*/
/* .swiper,*/
/* .swiper-wrapper,*/
/* .swiper-slide,*/
/* .flickity-enabled,*/
/* .flickity-viewport,*/
/* .carousel-cell {*/
/*   cursor: url('../images/cursor.png') 0 0, url('../images/cursor.svg') 0 0, pointer !important;*/
/* }*/
/* .swiper-scrollbar-drag,*/
/* .flickity-slider:active {*/
/*   cursor: grab !important;*/
/*   &:active {*/
/*     cursor: grabbing !important;*/
/*   }*/
/* }*/
/* Hamburger Menu Styles*/
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 37px;
  height: 25px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  
  span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #0000FF;
    transition: transform 0.3s ease;
  }
}
.dark .hamburger {
  span {
    background-color: #fff;
  }
}
/* Hamburger animation when menu is open*/
.open .hamburger {
  span {
    background-color: #fff; /* Change color to white when open*/
    
    &:first-child {
      transform: translateY(11.5px) rotate(45deg);
    }
    
    &:nth-child(2) {
      opacity: 0;
    }
    
    &:last-child {
      transform: translateY(-11.5px) rotate(-45deg);
    }
  }
}
/* Mobile menu container*/
.mobile-menu-container {
  &.open {
    transform: translateX(0);
  }
  
  .inner {
    padding: 20px;
  }
  
  .menu-logo {
    margin-bottom: 30px;
    text-align: center;
    
    img {
      max-width: 120px;
    }
  }
  
  .menu-items {
    ul {
      list-style: none;
      padding: 0;
      margin: 0;
      
      li {
        margin-bottom: 15px;
        
        a {
          color: #0000FF;
          text-decoration: none;
          font-size: 18px;
          font-family: var(--mono-font);
          text-transform: uppercase;
          letter-spacing: 0.1em;
          transition: color 0.3s ease;
          
          &:hover {
            color: darken(#0000FF, 10%);
          }
        }
      }
    }
  }
}
@media only screen and (max-width : 960px) {
   
}
.content-wrapper {
    position: relative;
    z-index: 3;
    background: var(--background);
    min-height: 100vh;
    
  }
.slide-in-block {
    position: relative;
    width: 100%;
   
   /* background: $brown;*/
    z-index: 3;
   
  }
.main_logo{
    width: 100%;
    height: 55vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background:#FCF6ED;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    .st0, .st1, .st2, .st3, .st4, .st5, .b-st0 {
        fill: #0000FF;
    }
    .logo_text{
        text-align: center;
        color: #0000FF;
        padding:60px 30px 20px 30px;
        opacity: 0;
        font-size: 20px;
        line-height: 1.2em;
       
    }
}
.dark .main_logo{
    background:#000;
    .st0, .st1, .st2, .st3, .st4, .st5, .b-st0 {
        fill: #fff;
    }
    .logo_text{
        
        color: #fff;
    }
}
.featured-image{
    position: relative;
    top: 35vh;
    width: 100%;
    z-index: 1;
    height: 120vh;
    background:#B27C4B;
    .featured-caption{
        position: absolute;
        z-index: 2;
        top:85vh;
        left:50%;
        transform: translateX(-50%);
        color:#0000FF;
        font-size: 25px;
        text-align: center;
        display: flex; 
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap:20px;
    }
    .main-carousel{
        height: 100vh;
      .carousel-cell{
        height: 100vh;
        img{
          width: 100%;
          height: 100%;
          -o-object-fit: cover;
             object-fit: cover;
          -o-object-position: center;
             object-position: center;
        }
      }
    }
  }
.locations_heading{
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.6rem;
    line-height: 1;
    font-weight: 600;
    padding-left:4vw;
    padding-top:4vw;
    h2{
        margin-bottom:0px;
    }
    
    img{
        width: 50px;
        height: 50px;
    }
  }
.locations_content{
    display: flex;
    align-items: center;
    color: #fff;
    gap: 10px;
    
    
  }
.view-more-wrapper{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
    position: relative;
    padding-top:30px;
    img{
        width: 50px;
        height: 50px;
    }
    &:before{
        content:"";
        position: absolute;
        top:0;
        left:0;
        width:100%;
        height:1px;
        background: repeating-linear-gradient(
          to right,
          #FCF6ED 0 8px,
          transparent 8px 15px
        ); /* Dash length */
      }
      button{
        background: transparent;
        color: #FCF6ED;
        font-family: var(--mono-font);
        text-transform: uppercase;
        font-size: 14px;
        letter-spacing: 0.20em;
        line-height: 1.0em;
        padding: 7px 30px;
        border-radius: 30px;
        margin-top: 20px;
        display: inline-block;
        font-weight: 600;
        border:2px solid #FCF6ED;
      }
      .more_icon{
        transition: transform 0.3s ease;
      }
      .is-cross{
        rotate: 180deg;
        transform-origin: center;
      }
  }
.slide-in-block {
    position: relative;
    overflow: hidden; /* Contain children*/
  min-height:100vh;
  width:100%;
  display: flex; 
  flex-direction: column;
  justify-content: space-between;
align-items: start;
    .slide-in-block-inner {
      position: relative;
      width: 100%;
    }
  
    .locations_content {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      min-height: 100%;
      align-items: stretch;
      .left_info {
        position: relative;
        width: 30%; 
        color:#FCF6ED;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding:2vw 7vw;
        /*border-right:1px dashed $pale;*/
        text-align: center;
        font-size: 28px;
        line-height: 1.2em;
        &::after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 1px; /* Border width */
            height: 100%;
            background: repeating-linear-gradient(
              to bottom,
              #FCF6ED 0 8px,
              transparent 8px 15px
            ); /* Dash length */
          }
        h3{
            font-family: var(--zagma-font);
            font-size: 28px;
        line-height: 1.2em;
            font-weight: 600;
            margin-bottom: 0px;
        }
        .slider_nav{
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            border-radius: 30px;
            border:2px solid #FCF6ED;
            padding:10px 10px;
            margin-top: 40px;
            .arrow_left_img{
          /*      cursor: url('../images/cursor_2.png') 0 0, url('../images/cursor_2.svg') 0 0, pointer !important;*/
            }
            .arrow_right_img{
        /*        cursor: url('../images/cursor_2.png') 0 0, url('../images/cursor_2.svg') 0 0, pointer !important;*/
            }
        }
       
      }
      
      .right_info {
        width: 70%;
        position: relative;
        padding-top:2vh;
        padding-bottom: 8vh; /* Increased padding for scrollbar visibility*/
        padding-left:10px;
        overflow: hidden;
        .slider {
          width: 100%;
          overflow: visible;
          position: relative;
          cursor: inherit;
          * { cursor: inherit; }
        }

        .swiper-wrapper {
          display: flex;
          width: 100%;
        }

        .custom-scrollbar.swiper-scrollbar {
            background: rgba(255,255,255, 0.2);
            height: 4px;
            position: absolute;
            bottom: -25px;
            left: 0;
            width: 100%;
            z-index: 1;
            border:none;

            .swiper-scrollbar-drag {
                background: #FCF6ED;
                height: 100%;
                position: relative;
            }
        }
        .custom-scrollbar-line{
            background:#FCF6ED;
            height:0.5px;
            width:100%;
            position: absolute;
            bottom:-23px;
            left:0;
            opacity: 0.5;
        }
      }
      .location-slide {
        width: 30vw; /* Adjust as needed */
        /* Or you can set it to a fixed width */
        /* width: 400px; */
        margin-right: 30px; /* Add some space between slides */
        .footer_location{
            font-size: 14px;
            line-height: 1.3em;
            font-family: var(--mono-font);
            text-transform: uppercase;
            margin-top: 10px;
            letter-spacing: 0.20em;

        }
        .location-info-inner{
            height:20vw;
            overflow: hidden;
            position: relative;
            border-radius: 20px;
            border:2px solid transparent;
            .image{
                position: absolute;
                top:0;
                left:0;
                width:100%;
                height:100%;
                -o-object-fit: cover;
                   object-fit: cover;
                -o-object-position: center;
                   object-position: center;
            }
            .overlay{
                position: absolute;
                top:0;
                left:0;
                width:100%;
                height:100%;
                background:rgba(252,246,237,0.8);
                z-index: 1;
                opacity: 0;
                transition: all 0.3s ease;
                color:#0000FF;
                display: flex; 
                align-items: center;
                justify-content: center;
                flex-direction: column;
                font-family: var(--rader-font);
                text-transform: uppercase;
                font-size: 30px;
                line-height: 1.0em;
                h4{
                    font-size: 67px;
                    line-height: 1.0em;
                    
                    
                    
                    font-weight: 600;
                }
                .button{
                    border:2px solid #0000FF;
                    border-radius: 30px;
                    font-family: var(--mono-font);
                    text-transform: uppercase;
                    font-size: 14px;
                    letter-spacing: 0.20em;
                    line-height: 1.0em;
                    padding:7px 30px;
                    margin-top: 20px;
                    transition: all 0.3s ease;
                    &:hover{
                        background:#0000FF;
                        color:#FCF6ED;
                    }
                }
            }
            &:hover{
                transition: all 0.3s ease;
                border-color:#0000FF;
                
                .overlay{
                    opacity: 1;
                }
            }
        }
        .location-info-inner-soon{
            height:20vw;
            overflow: hidden;
            position: relative;
            border-radius: 20px;
            border:2px solid #0000FF;
            background:#FCF6ED;
            color:#0000FF;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            font-family: var(--rader-font);
            text-transform: uppercase;
            h4{
                font-size: 40px;
                line-height: 1.0em;
                font-weight: 600;
            }
            .coming_soon{
                font-size: 14px;
                line-height: 1.0em;
                color:#fff;
                background:#0000FF;
                padding:7px 30px;
                margin-top: 20px;
                border-radius: 30px;
                    font-family: var(--mono-font);
                    text-transform: uppercase;
            }
        }
       
      }
    }
  }
.brand_slider_block{
   
    padding:4vw 0px;
    background:#FCF6ED;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    .brand_heading{
        position: absolute;
        top:4vw;
        left:4vw;
        display: flex;
        align-items: center;
        gap: 20px;
        color: #3B3B3B;
        text-transform: uppercase;
        font-size: 0.6rem;
        line-height: 1;
        font-weight: 600;
        h2{
            color:#0000FF;
            margin-bottom:0px;
            font-family: var(--mono-font);
        }
        
        .icon{
            width: 50px;
            height: auto;
        }
        .i1{
            fill:#0000FF;
          }
        
    }
    .brand_logo{
        width: 227px;
    }
    h3.h3_heading{
        font-size: 28px;
        line-height: 1.2em;
        font-weight: 400;
        font-family: var(--rader-font);
        text-transform: uppercase;
        color:#0000FF;
        margin-top:15px;
    }

    .brand_slider_wrapper{
        padding:0px 4vw;
        position: relative;
        width: 100%;
        margin-top:40px;
        .b_arrow_left_img{
            position: absolute;
            left:calc(4vw + 40px);
            top:50%;
            transform: translateY(-50%);
            z-index: 10;
          /*  cursor: url('../images/cursor_2.png') 0 0, url('../images/cursor_2.svg') 0 0, pointer !important;*/
            border:1px solid #0000FF;
            border-radius: 30px;
            padding:10px;
        }
        .b_arrow_right_img{ 
            position: absolute;
            right:calc(4vw + 40px);
            top:50%;
            transform: translateY(-50%);
            z-index: 10;
          /*  cursor: url('../images/cursor_2.png') 0 0, url('../images/cursor_2.svg') 0 0, pointer !important;*/
            border:1px solid #0000FF;
            border-radius: 30px;
            padding:10px;
        }
    }

    .brand_slider{
        width: 100%;
        border-radius: 20px;
        overflow: hidden;
        .carousel-cell{
            width: 100%;
           
            padding:50px 150px;
            background:#F3EBDF;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            .brand-slide{
                height: 100%;
                width: 100%;
                padding:20px;
                border-radius: 20px;
                h3{
                    font-size: 14px;
                    line-height: 1.2em;
                    font-weight: 500;
                    font-family: var(--mono-font);
                    text-transform: uppercase;
                   letter-spacing: 0.20em;
                    
                }
                .number{
                    font-size: 14px;
                    line-height: 1.2em;
                    font-weight: 500;
                    font-family: var(--mono-font);
                    text-transform: uppercase;
                   letter-spacing: 0.20em;
                }
            }
            &.slide_1 .brand-content{
                background:#fff;
                color:#0000FF;
                display: flex;
                /*align-items: center;*/
                /*justify-content: center;*/
                flex-direction: row;
                .left_content{
                    align-items: stretch;
                    width: 50%;
                    padding:0px 8vw;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    flex-direction: column;
                    font-size: 22px;
                    line-height: 1.4em;
                   
                }
                .right_content{
                    align-items: stretch;
                    width: 50%;
                    .image{
                        border-radius: 18px;
                    }
                }
            }
            &.slide_2 .brand-content{
                background:#3B3B3B;  
                color:#FCF6ED;
                display: flex;
                align-items: center;
                justify-content: space-between;
                flex-direction: column;
                font-size: 54px;
                line-height: 1.1em;
                padding-left:5vw;
                padding-right:5vw;
                span{
                    border-bottom:2px solid #FCF6ED;
                }
            }
            &.slide_3 .brand-content{
                background:#fff;
                color:#3B3B3B;
                display: flex;
                align-items: center;
                justify-content: space-between;
                flex-direction: column;
                font-size: 54px;
                line-height: 1.1em;
                padding-left:5vw;
                padding-right:5vw;
                span{
                    border-bottom:2px solid #3B3B3B;
                }
            }
            &.slide_4 .brand-content{
                background:#fff;
                color:#0000FF;
                display: flex;
                align-items: center;
                justify-content: space-between;
                flex-direction: column;
                font-size: 34px;
                line-height: 1.1em;
                padding-left:8vw;
                padding-right:8vw;
                span{
                    border-bottom:2px solid #0000FF;
                }
            }
            &.slide_5 .brand-content{
                background:#B27C4B;
                color:#FCF6ED;
                display: flex;
                align-items: center;
                justify-content: space-between;
                flex-direction: column;
                padding-left:5vw;
                padding-right:5vw;
            }

            .cards{
                width:100%;
                .card-row {
                    width:100%;
                    display: grid;
                    grid-template-columns: repeat(4, 1fr);
                    gap: 20px;
                    .card_block{
                        font-family: var(--mono-font);
                        font-size: 12px;
                        line-height: 1.4em;
                        h4{
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            font-weight: 400;
                            font-size: 24px;
                            line-height: 1.2em;
                            font-family: var(--zagma-font);
                            margin-bottom:20px;
                        }
                        background:#FCF6ED;
                        color:#0000FF;
                        padding:19px;
                        border-radius: 18px;
                        border:1px solid #0000FF;
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        flex-direction: column;
                        .icon{
                            margin-top:20px;
                            width: 60px;
                        }
                    }
                }
            }
                
            .brand-content{
                height: 100%;
                width: 100%;
                padding:20px;
                border-radius: 20px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
            }
        }
    }
  }
.dark .brand_slider_block{
    background:#000;
    .brand_heading{
        color:#fff;
        .i1{
            fill:#fff;
          }
          h2{
            color:#fff;
          }
    }
    h3.h3_heading{
        color:#fff;
    }
    .brand_logo{
        .i1{
            fill:#fff;
          }
    }
    .brand_slider{
        .carousel-cell{
            background:#3B3B3B;
        }
    }
    .arrow{
        fill:#fff;
    }
    .border{
        fill:#fff;
    }
    .b_arrow_left_img{
        border-color:#fff;
    }
    .b_arrow_right_img{
        border-color:#fff;
    }
  }
.dark .brand_circles{
    h3{
        color:#fff;
    }
  }
.careers_heading{
    
       margin-bottom:6vw;
        margin-left:4vw;
        display: flex;
        align-items: center;
        gap: 20px;
        color: #3B3B3B;
        text-transform: uppercase;
        font-size: 0.6rem;
        line-height: 1;
        font-weight: 600;
        h2{
            color:#0000FF;
            margin-bottom:0px;
            font-family: var(--mono-font);
        }
        
        .icon{
            width: 50px;
            height: auto;
        }
        .i1{
            fill:#0000FF;
          }
  }
.dark .careers_heading{
    color:#fff;
    h2{
        color:#fff;
    }
    .i1{
        fill:#fff;
      }
  }
.brand_circles{
    padding-top:4vw;
    margin-top:6vw;
    text-align:left;
    width:100%;
    h3{
        font-size: 1.0rem;
line-height: 1.0em;
margin-bottom: 2.8rem;
font-family: 'F37 Zagma Mono';
font-weight: 500;
letter-spacing: 0.20em;
color:#0000FF;
text-transform: uppercase;
        
    }
    .circles_wrap{
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap:20px;
        z-index: 1;
        img{
            width:14vw;
            height:14vw;
        }
    }
    
  }
.lines{
   /* border-top:1px dashed $blue;*/
   /* border-bottom:1px dashed $blue;*/
    
    height:20px;
    width:100%;
    position: relative;
    top: -10px;
    margin-bottom:10vw;
    &:after{
        content:"";
        position: absolute;
        bottom:0;
        left:0;
        width:100%;
        height:1px;
        background: repeating-linear-gradient(
        to right,
        #0000FF 0 8px,
        transparent 8px 15px
    );
      }
    &:before{
        content:"";
        position: absolute;
        top:0;
        left:0;
        width:100%;
        height:1px;
        background: repeating-linear-gradient(
          to right,
          #0000FF 0 8px,
          transparent 8px 15px
        ); /* Dash length */
      }

}
.dark .lines {
    /*border-top: 1px dashed $white;*/
    /*border-bottom: 1px dashed $white;*/
    &:after{
        content:"";
        position: absolute;
        bottom:0;
        left:0;
        width:100%;
        height:1px;
        background: repeating-linear-gradient(
        to right,
        #fff 0 8px,
        transparent 8px 15px
    );
      }
    &:before{
        content:"";
        position: absolute;
        top:0;
        left:0;
        width:100%;
        height:1px;
        background: repeating-linear-gradient(
          to right,
          #fff 0 8px,
          transparent 8px 15px
        ); /* Dash length */
      }
    }
.the_team_block{
    position: relative;
    .the_team_heading{
        position: absolute;
        top:-74px;
        left:0vw;
        z-index: 5;
        display: flex;
        align-items: center;
        gap: 20px;
        color: #0000FF;
        text-transform: uppercase;
        font-size: 0.6rem;
        line-height: 1;
        font-weight: 600;
        background:#F0F8FF;
        border-top:1px solid #0000FF;
        border-left:1px solid #0000FF;
        border-right:1px solid #0000FF;
        border-radius: 20px;
        padding:20px 4vw;
            
        h2{
            margin-bottom:0px;
            font-family: var(--mono-font);
        }
        
        .icon{
            width: 50px;
            height: auto;
        }
        .i1{
            fill:#0000FF;
          }

        .spacer{
            position: absolute;
            bottom:0;
            left:0;
            width:102%;
            height:16px;
            background:#F0F8FF;
        }
    }
    .the_team_content{
        
        padding:10vw;
        background:#F0F8FF;
        border-top:1px solid #0000FF;
        border-left:1px solid #0000FF;
        border-right:1px solid #0000FF;
        .team_details{
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            .team_detail{
                .image_block{
                    img{
                        scale: 1.05;
                        z-index: 0;
                    }
                    position: relative;
                    border-radius: 18px;
                    overflow: hidden;
                    border:1px solid #0000FF;
                    .placeholder{
                        position: absolute;
                        top:0;
                        left:0;
                        width:100%;
                        height:100%;
                        -o-object-fit: cover;
                           object-fit: cover;
                        -o-object-position: center;
                           object-position: center;
                        opacity: 1;
                        z-index: 2;
                        scale: 1.05;
                        transition: all 0.3s ease;
                    }
                }
                &:hover{
                    .placeholder{
                        opacity: 0;
                    }
                }
                .team_detail_content{
                    margin-top:20px;
                    font-family: var(--mono-font);
                    font-size: 14px;
                    line-height: 1.2em;
                    letter-spacing: 0.20em;
                    text-transform: uppercase;
                    color:#0000FF;
                    h4{
                        font-family: var(--mono-font);
                        font-size: 14px;
                        line-height: 1.2em;
                        font-weight: 700;
                        letter-spacing: 0.20em;
                    }
                }
            }
        }
    }
 }
.dark .the_team_block{
    .the_team_heading{
        color:#fff;
        background:#3B3B3B;
        .spacer{
            background:#3B3B3B;
        }
        .i1{
            fill:#fff;
          }
    }
    .the_team_content{
        background:#3B3B3B;
        .team_details{
            .team_detail{
                .team_detail_content{
                    color:#fff;
                }
            }
        }
    }
 }
.contact_block{
    padding:4vw 0px 8vw 0px;
    background:#B27C4B;
    .contact_heading{
        display: flex;
        padding-left:4vw;
        align-items: center;
        gap: 20px;
        color: #fff;
        text-transform: uppercase;
        font-size: 0.6rem;
        line-height: 1;
        font-weight: 600;
        h2{
            margin-bottom:0px;
            font-family: var(--mono-font);
        }
        img{
            width: 50px;
            height: 50px;
        }
    }
    .contact_wrapper{
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1;

        &:before{
            content:"";
            position: absolute;
            top:4vw;
            left:0;
            width:100%;
            height:1px;
            background: repeating-linear-gradient(
                to right,
                #FCF6ED 0 8px,
                transparent 8px 15px
            );
          }
       
          &:after{
            content:"";
            position: absolute;
            bottom:4vw;
            left:0;
            width:100%;
            height:1px;
            background: repeating-linear-gradient(
                to right,
                #FCF6ED 0 8px,
                transparent 8px 15px
            );
          }
       
        
        
    }
    .contact_content{
        position: relative;
        z-index: 1;
        padding:25px;
        background:#FCF6ED;
        border:1px solid #0000FF;
        border-radius: 20px;
        width:40vw;
        font-family: var(--mono-font);
        font-size: 12px;
        line-height: 18px;
        
        color:#0000FF;
        h3{
            font-size: 30px;
            line-height: 1.2em;
            font-family: var(--rader-font);
            text-transform: uppercase;
            color:#0000FF;
            font-weight: 600;
            margin-bottom: 30px;
        }
        .button{
            background:#0000FF;
            color:#FCF6ED;
            font-family: var(--mono-font);
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 0.20em;
            line-height: 1.0em;
            padding:7px 30px;
            border-radius: 30px;
            margin-top: 20px;
            display: inline-block;
            font-weight: 600;
            border:1px solid #0000FF;
            &:hover{
                background:#0909d0 ;
                
                border:1px solid #0909d0 ;
            }
        }
        .initial{
            display: flex;
            align-items: stretch;
            justify-content: space-between;
            gap: 20px;
            .image{
                height:100%;
                width:100%;
                -o-object-fit: cover;
                   object-fit: cover;
                -o-object-position: center;
                   object-position: center;
                border:2px solid #0000FF;
                border-radius: 18px;
            }
            .left_content{
                width: 65%;
                padding-right:30px;
            }
            .right_content{
                width: 35%;
                
            }
        }
        .form_wrapper {
           /* display: none;*/
           /* opacity: 0;*/
           .form_heading{
            display:flex;
            align-items: center;
            justify-content: space-between;
            gap:20px; 
            h3{
               /* margin-bottom:80px;*/
               line-height: 1.0em;
               margin-bottom: 0px;
            }
            margin-bottom: 80px;
           }
           label{
            font-family: var(--mono-font);
            text-transform: uppercase;
            font-size: 14px;
            line-height: 1.2em;
            letter-spacing: 0.20em;
            color:#0000FF;
            font-weight: 600;
            
           }
           input[type=text], input[type=email], textarea{
            width:100%;
            padding:10px;
            border:none;
            border-bottom:1px solid #0000FF;
            border-radius: 0px;
            font-family: var(--mono-font);
            font-size: 14px;
            line-height: 1.2em;
            letter-spacing: 0.20em;
            color:#0000FF;
            background:none;
            -webkit-appearance:none;
               -moz-appearance:none;
                    appearance:none;
            box-shadow: none;
           }
           .gfield--input-type-html{
            display: flex;
            align-items: center;
            justify-content: flex-start;
           }
           .gform-button, input[type=submit]{
            background:#0000FF !important;
            color:#FCF6ED !important;
            font-family: var(--mono-font) !important;
            text-transform: uppercase !important;
            font-size: 14px !important;
            letter-spacing: 0.20em !important;
            line-height: 1.0em !important;
            border-radius: 30px !important;
            width:100% !important;
            border:1px solid #0000FF !important;
           /* cursor: url('../images/cursor_2.png') 0 0, url('../images/cursor_2.svg') 0 0, pointer !important;*/
            &:hover{
                background:#0909d0 !important;
                
                border:1px solid #0909d0 !important;
            }
           }
           .cancel{
            background:#e0dcee;
            color:#0000FF;
            font-family: var(--mono-font) !important;
            text-transform: uppercase !important;
            font-size: 14px !important;
            letter-spacing: 0.20em !important;
            line-height: 1.0em ;
            border-radius: 30px ;
            width:100% ;
            border:1px solid #e0dcee;
           /* cursor: url('../images/cursor_2.png') 0 0, url('../images/cursor_2.svg') 0 0, pointer !important;*/
            height:36px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            &:hover{
                border:1px solid #0000FF;
            }
           }
        }
    }
 }
.social_block{
    transition: all 0.3s ease;
    padding:4vw 13vw;
    background:#FCF6ED;
    color:#0000FF;
    .social_links{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        li{
            a{
                &:hover{
                    text-decoration: none;
                    border-bottom:1px solid #0000FF;
                }
            }
        }
    }
    .social_heading {
        width: 100%;
        position: relative;
        font-family: var(--mono-font);
        font-size: 14px;
        line-height: 1.0em;
        text-transform: uppercase;
        letter-spacing: 0.20em;
    }
    
    .social_heading .center {
        position: absolute;
        left: 50%;
        text-align: center;
        transform: translateX(-50%);
    }
    .social_content {
    .grid_item {
        opacity: 0;
        transform: translateY(20px);
    }

        display: flex;
        gap: 1vw;
        margin-top: 2vw;
        
        .left, .right {
            flex: none;
            display: flex;
            flex-direction: column;
            gap: 1vw;
            width: 50%;
        }

        .left {
            .top_group {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: 2fr 1fr;
                gap: 1vw;
                flex: none;
                height: 30vw;
                > div {
                    height: 100%;
                    img {
                        height: 100%;
                        -o-object-fit: cover;
                           object-fit: cover;
                    }
                } 
               /* height: 400px; *//* You can adjust this value to get the exact height you want *//**/

                .phone { 
                    grid-column: 1; 
                    grid-row: 1;
                }
                .plant { 
                    grid-column: 1; 
                    grid-row: 2;
                }
                .robe { 
                    grid-column: 2; 
                    grid-row: 1 / span 2;
                    height: 100%;
                }
            }

            .bottom_group {
                display: flex;
                gap: 1vw;
                flex: none;
                height: 18vw;
                /*margin-top: 1vw;*/

                .grid_item {
                    height: 100%;
                    &.vintage {
                        flex: 1.6;
                    }
                    &.join {
                        flex: 1;
                    }
                }
                .vintage {
                    position: relative;
                    
                    .overlay_text {
                        position: absolute;
                        top: 0;
                        left: 0;
                        width:100%;
                        height:100%;
                        padding:20px;
                        text-align: center;
                        color: #0000FF;
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        flex-direction: column;
                        background:rgba(255, 255, 255, 0.5);
                        h3 {
                            font-family: var(--rader-font);
                            font-size: 40px;
                            line-height: 1.0em;
                            font-weight: 600;
                            margin:0px;
                        }
                    }
                }
            }
        }

        .right {
            .top_row {
                display: flex;
                gap: 1vw;
                height: 27vw;
                
                .grid_item {
                    height: 100%;
                    
                    &:first-child {
                        flex: 1.6;
                    }
                    &:last-child {
                        flex: 1;
                    }
                }
            }

            .bottom_image {
                height: 21vw;
                .grid_item {
                    height: 100%;
                }
            }
        }

        .grid_item {
            position: relative;
            border: 2px solid #0000FF;
            border-radius: 8px;
            overflow: hidden;

            img {
                width: 100%;
                height: 100%;
                -o-object-fit: cover;
                   object-fit: cover;
            }
        }
    }

    .social_bottom{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding:60px;
        .icon{
            width: 60px;
            height: auto;
            transition: all 0.8s ease;
        /*    cursor: url('../images/cursor_2.png') 0 0, url('../images/cursor_2.svg') 0 0, pointer !important;*/
           
&:hover {
    transform: rotate(360deg);
}
        }
        .i1{
            fill:#0000FF;
          }
    }
    
 }
.dark .social_block{
    transition: all 0.3s ease;
    background:#000;
    color:#fff;
    .social_links{
        a{
            &:hover{
                border-bottom:1px solid #fff;
            }
        }
    }
    .social_bottom{
        .i1{
            fill:#fff;
          }
    }
 }
.footer{
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap:20px;
    color:#0000FF;
    font-family: var(--mono-font);
    padding:20px 40px;
    .accessibility{
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: row;
        
    }
    .size{
        .small{
            a{
                font-size: 12px;
                line-height: 1.0em;
            }
        }
        .medium{
            a{
                font-size: 14px;
                line-height: 1.0em;
            }
        }
        .large{
            a{
                font-size: 18px;
                line-height: 1.0em;
            }
        }
    }
    .type{
        .title{
            font-size: 12px;
            line-height: 1.0em;
            margin-bottom: 10px;
        }
        ul{
            display: flex;
            gap:10px;
           align-items: flex-end;
           li{
            padding-bottom:10px;
            border-bottom:2px solid transparent;
           }
           li.active{
            border-bottom:2px solid #0000FF;
           }
        }
    }
 }
.dark .footer{
    transition: all 0.3s ease;
    color:#fff;
    background:#000;
    a{
        color:#fff;
    }
    
            .i1{
                fill:#fff;
            }
            .i1s{
                stroke:#fff;
            }
            li.active{
                border-bottom:2px solid #fff !important;
               }
    
 }
.footer_bottom{
    background:#0000FF;
    color:#fff;
    padding:20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    
    .message {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        font-weight: 600;
    }
 }
@media (max-width: 960px) {
    
    .contact_block{
        .contact_content{
            .initial{
                .image{
                    width:100%;
                    height:auto; 
                }
            }
        }
    }
    .contact_wrapper{
        &::before{
            display:none;
        }
        &::after{
            display:none;
        }
    }
}
@media (max-width: 640px) {
   
}
/* Add custom styling for Flickity scrollbar*/
.flickity-viewport {
  overflow: visible; /* Make sure overflow is visible*/
}
.flickity-scrollbar {
  background: rgba(255, 255, 255, 0.5); /* Brighter background*/
  height: 8px; /* Taller scrollbar*/
  bottom: -20px !important; /* Position further down*/
  left: 0 !important; /* Ensure it starts from the left*/
  right: 0 !important; /* Ensure it extends to the right*/
  opacity: 1 !important; /* Always visible*/
  
  .flickity-scrollbar-drag {
    background: #0000FF;
    border-radius: 8px;
    cursor: grab;
  }
}
/* Make sure the container has room for the scrollbar*/
.right_info {
  padding-bottom: 30px; /* Add space for the scrollbar*/
}
@media only screen and (max-width : 960px) {


    .brand_slider_block{
        padding:50px 0px;
        .brand_heading{
            display: none;
            
        }
        .brand_slider{
            .carousel-cell{
                padding:0px;
                .brand-slide{
                padding:0px;
                }
                &.slide_1 .brand-content {
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    .left_content{
                        width:100%;
                        padding:0px 60px 60px 60px;
                        h3{
                            padding-bottom:60px;
                        }
                    }
                    .right_content{
                        width:100%;
                        padding:0px 0px 20px 0px;
                    }
                }
                &.slide_2 .brand-content{
                    font-size: 34px;
                    line-height: 1.2em;
                    padding-left:40px;
                    padding-right:40px;
                }
                &.slide_3 .brand-content{
                    font-size: 34px;
                    line-height: 1.2em;
                    padding-left:40px;
                    padding-right:40px;
                }
                &.slide_4 .brand-content{
                    font-size: 34px;
                    line-height: 1.2em;
                    padding-left:40px;
                    padding-right:40px;
                }
                
            }
            .cards{
                .card-row {
                grid-template-columns: repeat(2, 1fr) !important;
                grid-template-rows: 1fr 1fr;
                padding-top:20px;
                padding-bottom:20px;
                }
            }
        }
        .b_arrow_left_img{
           /* display: none;*/
           top:10px !important;
           left:40px !important;
           transform: translateY(0px) !important;
           svg{
            width:20px;
            height:20px;
           }
        }
        .b_arrow_right_img{
            /*display: none;*/
            top:10px !important;
            right:40px !important;
           transform: translateY(0px) !important;
            svg{
                width:20px;
                height:20px;
            }
        }
    }

    .main_logo{
        .logo{
            padding-left:10%;
            padding-right:10%;
            #Layer_1{
                width:100%;
            }
            
        }
    }

    .the_team_block{
        .the_team_content{
            padding: 50px 4vw;  
            .team_details {
                align-items: center;
                justify-content: center;
                gap: 20px;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: 1fr 1fr;
                .team_detail{
                    .placeholder{
                        display:none;
                    }
                }
            }
        }
    }

    .contact_block{
        .contact_content{
            .initial{
                .left_content {
                    width: 100%;
                    padding-right: 0px;
                }
                .right_content{
                    display: none;
                }
            }
        }
        .contact_heading{
            h2{
                position: absolute;
                left:50%;
                transform: translateX(-50%);
                
                
            }
        }
        .contact_content{
            width:90%;
            margin:30px auto;
            .button{
                width:100%;
                text-align: center; 
            }
            .wereall_ears{
                /*text-align: center;*/
                padding-top:20px;
            }
        }
    }
    

    .social_block{
        padding:50px 4vw;
        .social_heading{
                flex-direction: column-reverse;
                align-items: center;
                justify-content: center;
               .left{
                width:100%;
               padding-bottom:20px;
               }
               .center{
                position: relative;
                left:0;
                transform: translateX(0);
                width:100%;
                text-align: center;
                padding:0px 10vw 40px 10vw;
               }
        }
        .social_content{
            .left{
                width:100%;
                .top_group{
                    height:55vw;
                }
                .bottom_group{
                    height:45vw;
                }
            }
            .right{
                display: none;
            }
            
        }
    }

    .footer{
        align-items: center;
        justify-content: center;
        gap:40px;
        
    }
    .footer_mobile{
        transition: all 0.3s ease;
        padding:30px 4vw;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap:10px;
        a{
            color:#0000FF;
            font-family: var(--mono-font);
            font-size: 14px;
            line-height: 1.0em;
            letter-spacing: 0.20em;
            text-transform: uppercase;
        }
        .i1{
            fill:#0000FF;
        }
        .i1s{
            stroke:#0000FF;
        }
        #back-to-top-mobile{
            margin-top:20px;
        }
        
    }
    .footer_mobile_bottom{
        text-align: center;
        background:#0000FF;
        padding:40px;
        color:#fff;
        font-size: 14px;
        line-height: 1.3em;
        a{
            color:#fff;
        }
        .message{
            margin-bottom: 10px;
            font-size: 14px;
            font-weight: 600;
        }
        .line{
            height:1px;
            background:#fff;
            width:50px;
            margin:30px auto;
        }
        .credits{
            margin-bottom: 20px;
        }
    }
    .dark .footer_mobile{
        background:#000;
        a{
            color:#fff;
        }
        .i1{
            fill:#fff;
        }
    }
    .featured-image {
        height: 100vh;
        
        }
        .slide-in-block{
            min-height: 60vh;
            background:#B27C4B;
            .locations_heading{
               width:100%;
               h2{
                position: absolute;
                left:50%;
                transform: translateX(-50%);
               }
            }
            .slide-in-block-inner{
                .locations_content{
                    display: block;
                    
                    .left_info{
                        display:none;
                    }
                    .right_info{
                        /*display: none;*/
                        width:100%;
                        padding:0px;
                    }
                    .slider{
                        padding:4vw;
                        margin-top:40px;
                    }
                    .location-slide{
                        width:100%;
                        margin-bottom:40px;
                        .location-info-inner{
                            height:50vw;
                        }
                        .location-info-inner-soon{
                            height:50vw;
                        }
                        @media (max-width: 960px) {
                            &.mobile-hidden {
                                display: none;
                            }
                            &.show {
                                display: block;
                            }
                        }
                    }
                }
            }
        }

        .brand_circles_mobile{
            padding-top:4vw;
            margin-top:6vw;
            padding-bottom:55vw;
            width:100%;
            overflow: hidden;
            h3{
                font-size: 1.0rem;
                line-height: 1.0em;
                margin-bottom: 2.8rem;
                font-family: 'F37 Zagma Mono';
                font-weight: 500;
                letter-spacing: 0.20em;
                color:#0000FF;
                text-transform: uppercase;
                text-align: center;
                
            }
            .circles_mobile_wrapper{
                position: relative;
                width:100%;
                /*overflow-y: hidden;*/
                .line_1{
                    position: absolute;
                    top:60%;
                    left:-25%;
                    width:150%;
                    height:20px;
                    border-top:1px dashed #0000FF;
                    border-bottom:1px dashed #0000FF;
                    rotate: -28deg;
                }
                .line_2{
                    position: absolute;
                    bottom:-15%;
                    left:-25%;
                    width:150%;
                    height:20px;
                    border-top:1px dashed #0000FF;
                    border-bottom:1px dashed #0000FF;
                    rotate: -28deg;
                }
            }
            .circles_wrap_mobile{
                
                position: relative;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(2, 1fr);
                gap:2vw;
                justify-content: center;     /* Centers grid horizontally*/
                align-content: center; 
                width: -moz-fit-content; 
                width: fit-content;         /* Make grid container only as wide as needed*/
    margin: 0 auto;   
                img{
                    width:40vw;
                    height:40vw;
                    -o-object-fit: cover;
                       object-fit: cover;
                    display: block;
                }
                .down{
                    transform: translateY(50%) translateX(10%);
                }
                
            }
        }


        .b_arrow_right_img{
            &.slide-1, &.slide-4{
                .arrow{
                    fill:#fff;
                }
                border-color:#fff !important;
            }
            &.slide-2{
                .arrow{
                    fill:#000;
                }
                border-color:#000 !important;
            }
        }
        .b_arrow_left_img{
            &.slide-1, &.slide-4{
                .arrow{
                    fill:#fff;
                }
                border-color:#fff !important;
            }
            &.slide-2{
                .arrow{
                    fill:#000;
                }
                border-color:#000 !important;
            }
        }
    
}
/* ! tailwindcss v3.4.11 | MIT License | https://tailwindcss.com*/
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}
.visible {
  visibility: visible;
}
.collapse {
  visibility: collapse;
}
.fixed {
  position: fixed;
}
.relative {
  position: relative;
}
.left-0 {
  left: 0px;
}
.top-0 {
  top: 0px;
}
.z-50 {
  z-index: 50;
}
.mr-auto {
  margin-right: auto;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.h-full {
  height: 100%;
}
.w-full {
  width: 100%;
}
.-translate-x-full {
  --tw-translate-x: -100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.resize {
  resize: both;
}
.justify-center {
  justify-content: center;
}
.overflow-y-auto {
  overflow-y: auto;
}
.border {
  border-width: 1px;
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.text-left {
  text-align: left;
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-300 {
  transition-duration: 300ms;
}
@font-face {
  font-family: 'F37 Zagma Mono';
  src: url('../fonts/F37ZagmaMonoTrial-Regular.woff2') format('woff2'),
      url('../fonts/F37ZagmaMonoTrial-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'F37 Zagma Mono';
  src: url('../fonts/F37ZagmaMonoTrial-Bold.woff2') format('woff2'),
      url('../fonts/F37ZagmaMonoTrial-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'F37 Zagma';
  src: url('../fonts/F37ZagmaTrial-Bold.woff2') format('woff2'),
      url('../fonts/F37ZagmaTrial-Bold.woff') format('woff');
  font-weight: bold;
  font-style: 700;
  font-display: swap;
}
@font-face {
  font-family: 'F37 Zagma';
  src: url('../fonts/F37ZagmaTrial-Regular.woff2') format('woff2'),
      url('../fonts/F37ZagmaTrial-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PP Rader';
  src: url('../fonts/PPRader-Regular.woff2') format('woff2'),
      url('../fonts/PPRader-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PP Rader';
  src: url('../fonts/PPRader-Bold.woff2') format('woff2'),
      url('../fonts/PPRader-Bold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --background: #FCF6ED;
  --foreground: #000;
  --mono-font: 'F37 Zagma Mono';
  --rader-font: 'PP Rader';
  --zagma-font: 'F37 Zagma';  
}
@media (prefers-color-scheme: dark) {
  :root {
  
  }
}
html {
  scroll-behavior: smooth;
}
body {
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  min-height: 300vh;
  overflow-x: hidden;
  font-family: 'F37 Zagma';
}
h1,h2,h3,h4{
   
}
h2{
  font-size: 14px;
  line-height: 1.0em;
  margin-bottom: 0.8rem;
  font-family: 'F37 Zagma Mono';
  font-weight: 500;
  letter-spacing: 0.2em;
}
h3{
  font-size: 2rem;
  line-height: 1.2em;
  margin-bottom: 0.8rem;
  font-family: 'F37 Zagma Mono';
  font-weight: 500;
}
html.lenis, html.lenis body {
    height: auto;
  }
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
.lenis.lenis-stopped {
    overflow: hidden;
  }
.lenis.lenis-smooth iframe {
    pointer-events: none;
  }
.main_logo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 20px;
  height: 100vh;
  background: var(--background);

  svg {
    opacity: 0;
    visibility: hidden;
    overflow: visible;
  }
}
.menu-container-static {
  opacity: 0;
  transform: translateY(-20px);
  position: relative;
  background: #FCF6ED;
  padding: 30px;
  z-index: 1000;
  .menu_row{
    border-bottom:1px solid #0000FF;
    padding-bottom:8px;
    ul{
      display: flex;
      align-items: center;
      justify-content: space-between;
      a{
        color:#0000FF;
        font-size: 14px;
        font-family: var(--mono-font);
        text-transform: uppercase;
        line-height: 1;
        letter-spacing: 0.20em;
        span {
          display: inline-block;
          transform-origin: bottom;
          backface-visibility: hidden;
          will-change: transform;
      }
      }
    } 
  }
}
.page-template-page{
  .menu-container-static{
    opacity: 1;
    transform: translateY(0);
  }
}
body.page-template-page{
  min-height: 100vh;
  h1{
    font-size: 3rem;
    line-height: 1.2em;
    margin-bottom: 0.8rem;
    font-family: var(--rader-font);
    color:#0000FF;
    text-transform: uppercase;
  }
  h2{
    font-size: 2rem;
    line-height: 1.2em;
    margin-bottom: 0.8rem;
    font-family: var(--rader-font);
    letter-spacing: 0.0em;
  }

}
.open.menu-container{
  background:#B27C4B;
  .i1{
    fill:#fff;
  }
  .menu_row{
    border-bottom:1px solid #fff;
  }
}
.dark .menu-container-static{
  background:#000;
  .menu_row{
    border-bottom:1px solid #fff;
    ul{
      a{
        color:#fff;
      }
    }
  }
}
.menu-container{
  background: #FCF6ED;
  padding: 20px 30px 20px 30px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  .icon{
    width:50px;
    height:auto;
  }
  .menu_row{
    border-bottom:1px solid #0000FF;
    display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom:8px;
    ul{
     width:80vw;
      display: flex;
      align-items: center;
      justify-content: space-between;
      a{
        color:#0000FF;
        font-size: 14px;
        font-family: var(--mono-font);
        text-transform: uppercase;
        line-height: 1;
        letter-spacing: 0.20em;
        span {
          display: inline-block;
          transform-origin: bottom;
          backface-visibility: hidden;
          will-change: transform;
      }
      }
    } 
  }

    
    .i1{
      fill:#0000FF;
    }
}
.dark .menu-container{
  background:#000;
  .menu_row{
    border-bottom:1px solid #fff;
    ul{
      a{
        color:#fff;
      }
    }
    
    .nav_lines{
      display: none;
    }
  }
  .i1{
    fill:#fff;
  }
}
.dark .open.menu-container{
  background:#B27C4B;
  .i1{
    fill:#fff;
  }
  .menu_row{
    border-bottom:1px solid #fff;
  }
  
}
.mobile-menu-container{
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  z-index: 10;
  background: #B27C4B;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content:center;
  flex-direction: column;
  
  &.open {
    transform: translateY(0);
  }
  
  .mobile-menu-toggle{
    cursor: pointer;
  }

  .inner {
    padding: 20px;
    .menu-items{
      a{
        color:#fff;
        letter-spacing: 0.20em;
        font-size: 16px;
        font-family: var(--mono-font);
        text-transform: uppercase;
        line-height: 1;
      }
      li{
        padding:15px;
      }
    }
  }
  .nav_bottom{
   
    width:100%;
    padding:20px;
    position: absolute;
    bottom: 0px;
    
    text-align: center;
    font-family: var(--mono-font);
    color:#fff;
    .nav_bottom_inner{
      padding-top:20px;
      border-top:1px solid #fff;
      width:100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap:20vw;
    }
    .type{
      .i1{
        fill:#fff;
      }
      .title {
        font-size: 12px;
        line-height: 1.0em;
        margin-bottom: 10px;
        }
      ul {
        display: flex;
        gap: 10px;
        align-items: flex-end;
        justify-content: center;
        }
        li{
          padding-bottom:10px;
          border-bottom:2px solid transparent;
        }
        li.active{
          border-bottom:2px solid #fff;
         }
        .size{
          .small{
              a{
                  font-size: 12px;
                  line-height: 1.0em;
              }
          }
          .medium{
              a{
                  font-size: 16px;
                  line-height: 1.0em;
              }
          }
          .large{
              a{
                  font-size: 20px;
                  line-height: 1.0em;
              }
          }
      }
    } 
  }
}
.inner_page{
  padding:5vw;
}
@media only screen and (max-width : 960px) {
   
    .menu-container-static{
      display: none;
    }

    .menu-container{
      transform: translateY(0);
      padding-left:24px;
      padding-right:24px;
      .menu_row{
        align-items: center;
        padding-bottom:12px;
        ul{
          display: none; 
        }
      } 
      .nav_lines{
        display: block;
      }
    }
}
.textmedium{

  .brand_slider_block{
    .brand_slider{
      .carousel-cell{
        &.slide_1 .brand-content
        .left_content {
          font-size: 24px;
          line-height: 1.4em;
        }
        .cards{
          .card-row{  
            .card_block {
              font-size: 14px;
              line-height: 1.4em;
            }
          }
        }
      }
    }
  }

  .contact_block{
    .contact_content {
      font-size: 14px;
      line-height: 20px;
    }
  }

  h2{
    font-size: 16px;
    line-height: 1.0em;
  }
  .menu-container{
    .menu_row{
      ul{
        a{
          font-size: 16px;
          line-height: 1.0em;
        }
      }
    }
  }
  .social_block{  
    .social_heading {
      font-size: 16px;
      line-height: 1.0em;
    }
  }
  footer{
    font-size: 17px;
      line-height: 1.0em;
  }

  .brand_slider_block{
    .brand_slider{
      .carousel-cell{
        &.slide_1 .brand-content
        .left_content {
          font-size: 24px;
          line-height: 1.4em;
        }
      }
    }
  }

  .brand_slider_block{
    .brand_slider{
      .carousel-cell{
        .cards{
          .card-row{
            .card_block {
              font-size: 14px;
              line-height: 1.4em;
            }
          }
        }
      }
    }
  }
  
  .main_logo{
    .logo_text {
      font-size: 22px;
      line-height: 1.2em;
    }
  }


}
.textlarge{
    .brand_slider_block{
      .brand_slider{
    .brand_slider_block{
      .brand_slider{
        .carousel-cell{
          &.slide_1 .brand-content
          .left_content {
            font-size: 26px;
            line-height: 1.4em;
          }
          .cards{
            .card-row{  
              .card_block {
                font-size: 16px;
                line-height: 1.4em;
              }
            }
          }
        }
      }
      }
      }
    }

    .contact_block{
      .contact_content {
        font-size: 16px;
        line-height: 22px;
      }
    }

    h2{
      font-size: 18px;
      line-height: 1.0em;
    }
    .menu-container{
      .menu_row{
        ul{
          a{
            font-size: 18px;
            line-height: 1.0em;
          }
        }
      }
    }
    .social_block{  
      .social_heading {
        font-size: 18px;
        line-height: 1.0em;
      }
    }
    footer{
      font-size: 18px;
        line-height: 1.0em;
    }

    .brand_slider_block{
      .brand_slider{
        .carousel-cell{
          &.slide_1 .brand-content
          .left_content {
            font-size: 26px;
            line-height: 1.4em;
          }
        }
      }
    }

    .brand_slider_block{
      .brand_slider{
        .carousel-cell{
          .cards{
            .card-row{
              .card_block {
                font-size: 16px;
                line-height: 1.4em;
              }
            }
          }
        }
      }
    }

    .main_logo{
      .logo_text {
        font-size: 24px;
        line-height: 1.2em;
      }
    }
}
@media (min-width: 1024px) {
  .lg\:block {
    display: block;
  }
  .lg\:hidden {
    display: none;
  }
}