/***********
 * GENERAL *
 ***********/
/******************************************************************************
 * --------------------------------- GLOBAL --------------------------------- *
 ******************************************************************************/
* {
  font-family: var(--primary-font);
  font-weight: var(--b-normal);
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

:root {
  /* FONTS */
  --primary-font: "georgia", sans-serif;
  --secondary-font: "verdana", sans-serif;
  --secondary-light-font: "verdana-pro", sans-serif;
  /* COLORS */
  --pr-color: #293B2E;
  --pr-color-md: #99B0C6;
  --pr-color-sm: #CCD8E2;
  --sc-color: #B18C6A;
  --sc-color-md: #CBB29B;
  --sc-color-sm: #E5D9CD;
  --tr-color: #314146;
  --tr-color-md: #020202;
  --tr-color-sm: #C0CDD1;
  --fr-color: #293B2E;
  --fr-color-md: #5D6D7A;
  --fr-color-sm: #AEB6BD;
  /* SIZES */
  --txt-xl: 6.66rem;
  --txt-lg: 3.75rem;
  --txt-md: 2.50rem;
  --txt-sm: 1.66rem;
  --txt-xs: 1.2rem;
  /* BOLD */
  --b-light: 300;
  --b-normal: 400;
  --b-bold: 600;
}

::selection {
  background: var(--tr-color);
  color: #DBDBD3;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(214, 214, 214);
  background-color: #DBDBD3;
}

::-webkit-scrollbar {
  width: 7px;
  background-color: var(--fr-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--fr-color);
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.big-title {
  font-size: var(--txt-lg);
  font-weight: var(--b-light);
  line-height: 1.1;
}

.md-title {
  font-size: var(--txt-md);
  font-weight: var(--b-light);
  line-height: 1.1;
}

.small-title {
  font-size: var(--txt-xs);
  font-weight: var(--b-bold);
  line-height: 1.1;
}

.parag {
  font-size: var(--txt-xs);
  font-weight: var(--b-light);
}

#breadcrumbs {
  font-size: var(--txt-xs);
  color: white;
  margin-bottom: 0.8rem;
}
#breadcrumbs a:hover {
  text-decoration: underline;
}

/* .btn{
    display: block;
    border: 1px solid;
    border-radius: 6rem;
    width: fit-content;
    padding: 0.4rem 1.5rem;
    transition: all .3s ease;
    &:hover{
        box-shadow: 0px 0px 5px currentColor;
    }
}
.btn.active {
    background-color: black;
    color: white;
}

.btn_download {
    font-size: var(--txt-sm);
    font-weight: var(--b-light);
    position: relative;
    &::after{
        content: '\e902';
        font-family: 'icomoon';
        font-size: var(--txt-sm);
        padding: 0 0 0 1rem;
    }
    &::before{
        content: "";
        height: 0px;
        width: 2px;
        background: black;
        position: absolute;
        bottom: 0px;
        left: 0px;
        border-radius: 0rem;
        transition: all .3s ease-out;
    }
    &:hover{
        &::before{
            height: 1.25px;
            border-radius: 1rem;
            width: 50px;
            left: 60%;
        }
    }
}

// COLORS
.bg-dark_1{
    background: var(--tr-color-md);
    color: white;
}
.bg-dark_2{
    background: var(--fr-color);
    color: white;
}
.bg-light_1{
    background: var(--pr-color-sm);
    color: black;
}
.bg-light_2{
    background: var(--fr-color-sm);
    color: black;
} */
.btn {
  display: block;
  border: 1px solid;
  color: #dbdbd3;
  width: fit-content;
  padding: 0.4rem 1.5rem;
  font-style: italic;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.btn:hover {
  background: transparent;
  color: currentColor;
}

.btn_green {
  background: var(--fr-color);
}

.btn_green_reverse {
  color: var(--fr-color);
}
.btn_green_reverse:hover {
  background: var(--fr-color);
  color: #dbdbd3;
}

/************
 * FANCYBOX *
 ************/
.fancybox__caption {
  text-align: center;
}

/*******************
 * GENERAL STYLING *
 *******************/
body {
  color: var(--fr-color) !important;
}

p {
  font-family: var(--secondary-font);
}

.big-title-styled {
  font-style: italic;
}
.big-title-styled strong {
  font-family: var(--secondary-font);
  font-weight: 200;
  font-style: normal;
  text-transform: uppercase;
}

/********************
 * CATEGORIES HOVER *
 ********************/
@font-face {
  font-family: "HV Fitzgerald";
  src: url("../images/HV_Fitzgerald_Italic.ttf") format("truetype");
  font-style: italic;
}
.category_title {
  font-family: "HV Fitzgerald", serif;
  font-weight: bold;
}

.hover_blue_white {
  transition: all 0.3s ease;
}

.hover_blue_white:hover {
  background: #2859A6;
  color: white;
  border-color: white;
}

.hover_red_white {
  transition: all 0.3s ease;
}

.hover_red_white:hover {
  background: #451A1A;
  color: white;
  border-color: white;
}

.hover_white_orange {
  transition: all 0.3s ease;
}

.hover_white_orange:hover {
  background: #DADAD2;
  color: #9F5736;
  border-color: #9F5736;
}

.hover_orange_white {
  transition: all 0.3s ease;
}

.hover_orange_white:hover {
  background: #BB5931;
  color: white;
  border-color: white;
}

/**********
 * HEADER *
 **********/
/********
 * LOGO *
 ********/
.Site-logo_header img {
  width: 100%;
  height: 50px;
  object-fit: contain;
}

/********
 * NAVS *
 ********/
.menu_styling {
  background: var(--fr-color);
  color: white;
}
.menu_styling a {
  color: white;
  font-weight: var(--b-light);
  font-size: var(--txt-xs);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  height: 100%;
  text-shadow: 0px 0px 0px white;
  transition: all 0.3s ease;
}
.menu_styling .current-menu-item a {
  font-weight: var(--b-bold);
}
.menu_styling a:hover {
  text-shadow: 0px 0px 5px white;
}
.menu_styling .sec_menu a {
  font-family: var(--secondary-font) !important;
  font-weight: 200;
  color: var(--fr-color);
  font-size: 0.85rem;
}
.menu_styling .nav_menu a {
  font-weight: 200;
  font-style: italic;
  letter-spacing: 1px;
}

/********
 * LANG *
 ********/
#language-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(41, 39, 38, 0.8);
  z-index: 99999;
  display: none;
  justify-content: center;
  align-items: center;
}
#language-popup ul .current-lang a {
  background-color: var(--fr-color);
  color: white;
}
#language-popup ul .current-lang a::after {
  transform: rotate(-90deg);
}
#language-popup ul li a {
  display: flex;
  align-items: center;
  background: #f4f4f4;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  border-radius: 5rem;
  font-size: var(--txt-xs);
  position: relative;
  transition: all 0.2s ease;
}
#language-popup ul li a img {
  width: 19px !important;
  height: 15px !important;
  border-radius: 0.2rem;
}
#language-popup ul li a span {
  padding-left: 0.5rem;
}
#language-popup ul li a::after {
  content: "\e920";
  font-family: "icomoon";
  transform: rotate(50deg);
  font-size: 1rem;
  position: absolute;
  right: 20px;
  transition: all 0.3s ease;
}
#language-popup ul li a:hover {
  background-color: var(--fr-color);
  color: white;
}
#language-popup ul li a:hover::after {
  transform: rotate(-90deg);
}

/******************
 * MENU DROPDOWNS *
 ****************** /
.sub-menu {
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 50;
    padding: 0.5rem 0;
    list-style: none;
    margin: 0;
}

.menu-item-has-children {
    position: relative;
}

.menu-item-has-children:hover > .sub-menu {
    display: block;
}

.sub-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    color: #374151;
    text-decoration: none;
}

.sub-menu li a:hover {
    background: #f3f4f6;
} */
@keyframes fadeSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.sub-menu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  background: white !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
  min-width: 200px !important;
  z-index: 999 !important;
  padding: 0.5rem 0 !important;
  list-style: none !important;
  margin: 0 !important;
  /* Start hidden */
  display: none !important;
}

.menu-item-has-children {
  position: relative !important;
  padding-right: 1.2rem;
}

/* Show and animate */
.menu-item-has-children:hover > .sub-menu {
  display: block !important;
  animation: fadeSlideDown 0.3s ease !important;
}

.menu-item-has-children > a {
  display: block;
}

.sub-menu li {
  margin: 0 !important;
}

.sub-menu li a {
  display: block !important;
  padding: 0.5rem 1rem !important;
  color: #374151 !important;
  text-decoration: none !important;
}

.sub-menu li a:hover {
  background: #f3f4f6 !important;
}

.menu-item-has-children:after {
  content: "\e951";
  font-family: "icomoon";
  color: var(--fr-color);
  position: absolute;
  right: 0;
  top: 1px;
}

/*********************
 * BUTTON TO THE TOP *
 *********************/
.tothe_top_btn {
  position: fixed;
  display: flex;
  color: var(--fr-color);
  border: 1px solid var(--fr-color);
  border-bottom: none;
  border-right: none;
  background: white;
  width: 40px;
  height: 40px;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  right: 0px;
  bottom: -100px;
  z-index: 9999;
}
.tothe_top_btn i {
  transition: all 0.4s ease;
}
.tothe_top_btn:hover {
  background: var(--fr-color);
  color: white;
  border-color: white;
}

.tothe_top_btn.up {
  bottom: 0px;
}

/**********
 * LOADER *
 **********/
.loader-box svg {
  animation: 2s ease infinite pulse;
}

@keyframes pulse {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/**************
 * SNOWFLAKES *
 ************** /
#snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -50px; /* start above viewport * /
    pointer-events: none;
    will-change: transform;
    transform-origin: center;
    }

/ * Optional: smooth fade-in effect for realism * /
.snowflake svg {
    display: block;
} */
#snow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

.snowflake {
  position: absolute;
  top: -50px; /* Parte sopra lo schermo */
  user-select: none;
}

/**********
 * FOOTER *
 **********/
/**********
 * FOOTER *
 **********/
footer {
  background: var(--fr-color);
}
footer a {
  text-shadow: 0px 0px 0px white;
  transition: all 0.3s ease;
  color: white;
  font-family: var(--secondary-light-font) !important;
  font-weight: 200;
}
footer a:hover {
  text-shadow: 0px 0px 5px white;
}
footer .primaryfooter_menu ul {
  text-transform: uppercase;
}
footer .primaryfooter_menu ul a {
  line-height: 0.7;
}
footer .primaryfooter_menu .custom-logo-link img {
  width: 100%;
  max-width: 25rem;
}
footer .primaryfooter_menu .menu-item a,
footer .primaryfooter_menu .follow_us_txt {
  font-size: 1.15rem;
  font-family: var(--secondary-light-font) !important;
  font-weight: 200;
}
footer .primaryfooter_menu .social-media-menu .menu-item a {
  font-family: var(--secondary-light-font) !important;
  font-weight: 200;
}
footer .menu-item.italic_nav_style a {
  font-family: var(--primary-font) !important;
  text-transform: uppercase;
  line-height: 1.2;
  font-style: italic;
}
footer .secondfooter_menu li {
  font-family: var(--secondary-light-font) !important;
  font-weight: 200;
}
footer .secondfooter_menu li a {
  font-family: var(--secondary-light-font) !important;
  font-weight: 200;
  text-transform: uppercase;
  line-height: 1.2;
}
footer .secondfooter_menu strong {
  font-size: var(--txt-xs);
  font-weight: var(--b-normal);
}
footer .secondfooter_menu p {
  font-size: var(--txt-xs);
  font-weight: var(--b-light);
}

/*********
 * PARTS *
 *********/
/*****************************
 * MODULE 0 - HEADING BANNER *
 *****************************/
.module_0 .module_0_swiper {
  position: relative;
  color: white !important;
}
.module_0 .module_0_swiper .big-title {
  font-style: italic;
}
.module_0 .module_0_swiper .big-title strong {
  font-family: var(--secondary-font);
  font-weight: 200;
  font-style: normal;
  text-transform: uppercase;
}
.module_0 .module_0_swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.module_0 .module_0_swiper iframe {
  height: 100%;
  width: 100%;
  min-width: 160rem;
  min-height: 90rem;
}
.module_0 .module_0_swiper .module_overlay {
  /* position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  max-width: 50rem;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 4rem; */
}
.module_0 .module_0_swiper .module_overlay .swiper-pagination {
  width: fit-content;
  position: static;
}
.module_0 .module_0_swiper .module_overlay .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: grey;
}
.module_0 .module_0_swiper .module_overlay .swiper-pagination .swiper-pagination-bullet-active {
  background-color: white;
}
.module_0 .module_0_swiper .categories_container p {
  font-family: var(--secondary-font) !important;
}
.module_0 {
  /********
  * POPUP *
  *********/
}
.module_0 .time_segment:first-child:before {
  display: none;
}
.module_0 .time_segment:before {
  content: ":";
  position: absolute;
  top: 15%;
  left: -17%;
}

/*****************************
 * MODULE 1 - CONTENT SECTION *
 *****************************/
.module_1 .imgvertical img {
  width: auto;
  margin: auto;
  height: 100%;
  object-fit: contain;
}
.module_1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*****************************
*     MODULE 2 - SLIDERS     *
*****************************/
.module_2 .swiper {
  overflow: unset !important;
}
.module_2 .swiper a img {
  transition: all 0.3s ease;
}
.module_2 .swiper a img:hover {
  transform: scale(1.1) !important;
}
.module_2 .swiper-scrollbar {
  left: 0 !important;
}

/*****************************
*   MODULE 3 - CONTACT FORM  *
*****************************/
.module_3 .wpcf7-spinner {
  background: black;
  opacity: 1;
  position: relative;
  top: -1.97rem;
  right: 14.5px;
}

/***********************************
* MODULE 4 - MIDDLE CONTENT BANNER *
***********************************/
.module_4 {
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
}
.module_4 .overlay {
  background: linear-gradient(90deg, var(--fr-color), transparent);
}

/****************************************
* MODULE 5 - CONTENT SECTION WITH VIDEO *
****************************************/
.module_5 {
  color: white;
}
.module_5 .bg_prima {
  background: var(--fr-color-sm);
}

/***********************************
* MODULE 6 - VIDEO OR MEDIA UPLOAD *
************************************/
.module_6 a img {
  transition: all 0.3s ease;
}
.module_6 a img:hover {
  transform: scale(1.1) !important;
}
.module_6 .swiper-slide img {
  height: 100%;
  transition: all 0.3s ease;
}
.module_6 .swiper-slide.swiper-slide-next img {
  height: 90%;
  transition: all 0.3s ease;
}
.module_6 .swiper-slide.swiper-slide-prev img {
  height: 90%;
  transition: all 0.3s ease;
}

/*************************
 * MODULE 7 - MAP EMBEDE *
 *************************/
.module_7 iframe {
  width: 100%;
  height: 100%;
}

/***********************************
 * MODULE 8 - PARAGRAPH AS COLUMNS *
 ***********************************/
.module_8 .sub-parag a {
  text-decoration: underline;
}

/*********************************
 * MODULE 9 - PRODUCT COMPONENTS *
 *********************************/
.module_9 .single_comp .comp_image.collection_icon::after {
  content: "\e905";
  font-family: "icomoon";
  font-size: 1.6rem;
  color: white;
  width: 50px;
  height: 50px;
  padding-top: 0.4rem;
  background: var(--fr-color);
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10rem;
  bottom: 10px;
  right: 10px;
}
.module_9 .single_comp .comp_image {
  overflow: hidden;
}
.module_9 .single_comp .comp_image img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}
.module_9 .single_comp .comp_image img:hover {
  transform: scale(1.1) !important;
}

/******************************
 * MODULE - COLLECTION HEADER *
 ******************************/
.module_collection_header {
  color: black;
}
.module_collection_header #breadcrumbs {
  color: black;
  margin-bottom: 2rem;
}
.module_collection_header .gallery .swiper-button-next:after, .module_collection_header .gallery .swiper-button-prev:after {
  color: white;
  border: 2px solid white;
  border-left: none;
  border-right: none;
  font-size: 1.5rem;
  padding: 0.8rem 1.4rem;
  visibility: hidden;
}
.module_collection_header .gallery:hover .swiper-button-next:after, .module_collection_header .gallery:hover .swiper-button-prev:after {
  visibility: visible;
}
.module_collection_header .gallery .gall_imageinview {
  padding-bottom: 0.25rem;
}
.module_collection_header .gallery .prod_gallery_thumbs {
  padding-top: 0.25rem;
}
.module_collection_header .gallery .prod_gallery_thumbs img {
  cursor: pointer;
}
.module_collection_header .gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.module_collection_header .content {
  background: rgba(192, 205, 209, 0.5215686275);
}
.module_collection_header .content p {
  font-size: 1.4rem;
}

/*******************************
 * MODULE - COLLECTION LISTING *
 *******************************/
.module_collection_list #myBtnContainer {
  position: relative;
}
.module_collection_list #myBtnContainer::-webkit-scrollbar {
  display: none;
}
.module_collection_list .collection_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.module_collection_list .collection_box img:hover {
  transform: scale(1.1) !important;
}

/******************
 * NUMBERS SWIPER *
 ******************/
.mySwipernum .legend-title {
  font-size: 48px;
  font-style: italic;
  color: #2c3e2c;
  margin-bottom: 20px;
}
.mySwipernum .legend-bar {
  height: 2px;
  background-color: #30673B;
  max-width: 320px;
}
.mySwipernum .legend-bar-bg {
  height: 1.9px;
  background-color: rgba(0, 0, 0, 0.1882352941);
  max-width: 320px;
}
.mySwipernum .legend-label {
  font-size: 24px;
  font-style: italic;
  color: #2c3e2c;
  white-space: nowrap;
}
.mySwipernum .swiper-button-next,
.mySwipernum .swiper-button-prev {
  color: #2c3e2c;
  width: 100px;
  height: 60px;
}
.mySwipernum .swiper-button-next:after,
.mySwipernum .swiper-button-prev:after {
  font-size: 32px;
  font-weight: 300;
}
.mySwipernum .swiper-pagination-bullet {
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: 2px solid #293B2E;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--primary-font);
  font-style: italic;
  font-size: 20px;
  color: #293B2E;
  border-radius: 0;
}
.mySwipernum .swiper-pagination-bullet-active {
  background-color: #293B2E;
  color: #d4d0c8;
}

/*********
 * PAGES *
 *********/
/********************
 * COLLECTIONS PAGE *
 ********************/
#components-collection h2 {
  padding-top: 2.5rem;
}

/************
 * 404 PAGE *
 ************/
.container404 {
  position: fixed;
  height: 100%;
  width: 100%;
  background: white;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

/*****************
 * RESPOPNSIVITY *
 *****************/
/**********************************************************************************
 * ----------------------------- RESPONSIVITY WIDTH ----------------------------- *
 **********************************************************************************/
@media screen and (max-width: 767px) {
  /*************
  * TEXT VARS *
  *************/
  :root {
    --txt-xl: 3.46rem;
    --txt-lg: 2.45rem;
    --txt-md: 1.65rem;
    --txt-sm: 1rem;
    --txt-xs: 0.9rem;
  }
  /******************
  * MODULS PADDING *
  ******************/
  .section-padding {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  /*******
  * BTN *
  *******/
  .btn {
    font-size: 0.9rem;
  }
  .btn_download .btn_txt {
    display: none;
  }
  .btn_download::before {
    display: none;
  }
  .btn_download::after {
    font-size: 1.4rem;
  }
  /********
  * MENU *
  ********/
  .Primary-header .burger_menu {
    font-size: 1.5rem;
  }
  .nav_menu {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch !important;
    background: var(--pr-color);
    justify-content: space-between !important;
    padding: 35% 0 10%;
  }
  .nav_menu ul li {
    margin-bottom: 1rem;
  }
  .nav_menu ul li a {
    font-size: 1.5rem;
  }
  /****************************
  * MODULE HEADER COLLECTION *
  ****************************/
  .module_collection_header .content p {
    font-size: 1rem;
  }
  /*************
  *  MODULE 0  *
  **************/
  .module_0 .module_0_swiper .module_overlay {
    max-width: 100%;
  }
  .module_0 .module_0_swiper .module_overlay .swiper-pagination {
    position: inherit;
    width: 100%;
    text-align: center;
  }
  /************
  * MODULE 2 *
  ************/
  .module_2 .swiper-scrollbar {
    transform: translate(20px, 0);
  }
  /**********
  * FOOTER *
  **********/
  .primaryfooter_menu .custom-logo-link img {
    max-width: 14rem !important;
  }
  .primaryfooter_menu .follow_us_txt {
    font-size: 1.3rem !important;
    margin-bottom: 1rem;
  }
}
/**********************************************************************************
 * ----------------------------- RESPONSIVITY HEIGHT ---------------------------- *
 **********************************************************************************/
