/*=============================================
=                Custom CSS            =
=============================================
-- MAIN SETTINGS
-- MENU
-- SLIDER
-- BUTTONS
-- CARD LIST
-- TITLES & TEXT
-- ICONS

----- SPHAERICA PAGE
-- ACCORDION
-- BROCHURE SPACE
-- GREEN BOX

----- COMPANY PAGE

----- HOME PAGE
-- HERO SECTION HOME

----- CONTACT PAGE
----- NEWS PAGE

----- FOOTER

----- COOKIE BANNER


=============================================*/

/* ANCHOR  MAIN SETTINGS  ----------*/

:root {
  /* Colors */
  --main_green: #1c4525;
  --light_green: #195633;
  --dark_green: #031a0d;
  --green_overlay: #195633d9;
  --green_overlay_light: #195633be;
  --green_hover: #2d8151;
  --white: #ffffff;
  --black: #000000;
  --text_gray: #555555;
  --light_gray: #b8b8b8;
  --btns_gray: #d5d5d5;

  /* Fonts */
  --open_sans: "Open-Sans", sans-serif;
  --poppins: "Poppins", sans-serif;
  --raleway: "Raleway", sans-serif;
  --lato: "Lato", sans-serif;
}

body {
  font-family: var(--poppins);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--light_green);
}

#content p {
  line-height: 1.6;
}

.fit {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.section .heading-block h3 {
  color: var(--light_green);
}

.section .heading-block::after {
  border-color: var(--light_green);
}

.heading-block {
  margin-bottom: -25px;
}

.pRow {
  padding: 3% 0;
}

.padR20 {
  padding-right: 1.25rem;
}

.spazio {
  padding: 5% 0;
}


.no_clickable {
  display: inline-block;
  pointer-events: none;
  cursor: default;
}

.mt-80 {
  margin-top: 80px;
}

/*=============================================
=         // SECTION UTILITIES            =
=============================================*/

/* ANCHOR Object fit */
.object-fit-cover {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.object-fit-contain {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.object-fit-fill {
  -o-object-fit: fill;
  object-fit: fill;
  -o-object-position: center;
  object-position: center;
}

.object-fit-scale {
  -o-object-fit: scale-down;
  object-fit: scale-down;
  -o-object-position: center;
  object-position: center;
}

.object-fit-none {
  -o-object-fit: none;
  object-fit: none;
  -o-object-position: center;
  object-position: center;
}

/* ANCHOR Overflow */
.overflow_visible {
  overflow: visible;
}

.overflow_hidden {
  overflow: hidden;
}

.overflow_scroll {
  overflow: scroll;
}

.overflow_auto {
  overflow: auto;
}

/* ANCHOR Position */
.position_static {
  position: static;
}

.position_relative {
  position: relative;
}

.position_absolute {
  position: absolute;
}

.position_fixed {
  position: fixed;
}

.position_sticky {
  position: -webkit-sticky;
  position: sticky;
}

/* ANCHOR Visibility */
.visibility_visible {
  visibility: visible;
}

.visibility_hidden {
  visibility: hidden;
}

/* ANCHOR Display */

.display_none {
  display: none;
}

.display_block {
  display: block;
}

.display_inline {
  display: inline;
}

.display_inline_block {
  display: inline-block;
}

/* ANCHOR Flexbox */

.display_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.display_inline_flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.flex_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/*https://gist.github.com/jonsuh/b2347347480105874cda110b2afc53f4
// ================================================== */
.d_f {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.d_if {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/* Flex direction */
.fd_r {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

/* Default */
.fd_rr {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.fd_c {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.fd_cr {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

/* Flex wrap */
.fw_n {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

/* Default */
.fw_w {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.fw_wr {
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

/* Justify content */
.jc_fe {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.jc_fs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

/* Default */
.jc_c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.jc_sa {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.jc_sb {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* Align items */
.ai_fs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.ai_c {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ai_fe {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.ai_s {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

/* Default */
.ai_b {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

/* Flex grow */
.fg_0 {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

/* Default */
.fg_1 {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

/* Flex shrink */
.fs_0 {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.fs_1 {
  -ms-flex-negative: 1;
  flex-shrink: 1;
}

/* Default */

/* Flex basis */
.fb_a {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

/* Default */
.fb_0 {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
}

/* Align self */
.as_a {
  -ms-flex-item-align: auto;
  -ms-grid-row-align: auto;
  align-self: auto;
}

/* Default */
.as_fs {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.as_c {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.as_fe {
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.as_s {
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

.as_b {
  -ms-flex-item-align: baseline;
  align-self: baseline
}

.gap1 {
  gap: 1rem;
}

/* ANCHOR Font Size - Rem with Base 16px */

.fsz_rem05 {
  font-size: 0.5rem; /* 8px */
}

.fsz_rem06 {
  font-size: 0.6rem; /* 10px */
}

.fsz_rem07 {
  font-size: 0.7rem; /* 11px */
}

.fsz_rem08 {
  font-size: 0.8rem; /* 13px */
}

.fsz_rem09 {
  font-size: 0.9rem; /* 14px */
}

.fsz_rem1 {
  font-size: 1rem; /* 16px */
}

.fsz_rem1-1 {
  font-size: 1.1rem; /* 18px */
}

.fsz_rem1-2 {
  font-size: 1.2rem; /* 19px */
}

.fsz_rem1-25 {
  font-size: 1.25rem; /* 20px */
}

.fsz_rem1-3 {
  font-size: 1.3rem; /* 21px */
}

.fsz_rem1-4 {
  font-size: 1.4rem; /* 22px */
}

.fsz_rem1-5 {
  font-size: 1.5rem; /* 24px */
}

.fsz_rem1-6 {
  font-size: 1.6rem; /* 26px */
}

.fsz_rem1-7 {
  font-size: 1.7rem; /* 27px */
}

.fsz_rem1-75 {
  font-size: 1.75rem; /* 28px */
}

.fsz_rem1-8 {
  font-size: 1.8rem; /* 29px */
} 

.fsz_rem1-9 {
  font-size: 1.9rem; /* 30px */
}

.fsz_rem2 {
  font-size: 2rem; /* 32px */
}

.fsz_rem2-1 {
  font-size: 2.1rem; /* 34px */
}

.fsz_rem2-2 { 
  font-size: 2.2rem; /* 35px */
}

.fsz_rem2-25 {
  font-size: 2.25rem; /* 36px */
}

.fsz_rem2-3 {
  font-size: 2.3rem; /* 37px */
}

.fsz_rem2-4 {
  font-size: 2.4rem; /* 38px */
}

.fsz_rem2-5 {
  font-size: 2.5rem; /* 40px */
}

.fsz_rem2-6 {
  font-size: 2.6rem; /* 42px */
}

.fsz_rem2-7 {
  font-size: 2.7rem; /* 43px */
}

.fsz_rem2-75 {
  font-size: 2.75rem; /* 44px */
}

.fsz_rem2-8 {
  font-size: 2.8rem; /* 45px */
}

.fsz_rem2-9 {
  font-size: 2.9rem; /* 46px */
}

.fsz_rem3 {
  font-size: 3rem; /* 48px */
}

.fsz_rem3-1 {
  font-size: 3.1rem; /* 50px */
}

.fsz_rem3-2 {
  font-size: 3.2rem; /* 51px */
}

.fsz_rem3-3 {
  font-size: 3.3rem; /* 53px */
}

.fsz_rem3-4 {
  font-size: 3.4rem; /* 54px */
}

.fsz_rem3-5 {
  font-size: 3.5rem; /* 56px */
}

.fsz_rem3-6 {
  font-size: 3.6rem; /* 58px */
}

.fsz_rem3-7 {
  font-size: 3.7rem; /* 59px */
}

.fsz_rem3-8 {
  font-size: 3.8rem; /* 61px */
}

.fsz_rem3-9 {
  font-size: 3.9rem; /* 62px */
}

.fsz_rem4 {
  font-size: 4rem; /* 64px */
}

.fsz_rem4-1 {
  font-size: 4.1rem; /* 66px */
}

.fsz_rem4-2 {
  font-size: 4.2rem; /* 67px */
}

.fsz_rem4-3 {
  font-size: 4.3rem; /* 69px */
}

.fsz_rem4-4 {
  font-size: 4.4rem; /* 70px */
}

.fsz_rem4-5 {
  font-size: 4.5rem; /* 72px */
}

.fsz_rem4-6 {
  font-size: 4.6rem; /* 74px */
}

.fsz_rem4-7 {
  font-size: 4.7rem; /* 75px */
}

.fsz_rem4-8 {
  font-size: 4.8rem; /* 77px */
}

.fsz_rem4-9 {
  font-size: 4.9rem; /* 78px */
}

.fsz_rem5 {
  font-size: 5rem; /* 80px */
}

.fsz_rem5-1 {
  font-size: 5.1rem; /* 82px */
}

.fsz_rem5-2 {
  font-size: 5.2rem; /* 83px */
}

.fsz_rem5-3 {
  font-size: 5.3rem; /* 85px */
}

.fsz_rem5-4 {
  font-size: 5.4rem; /* 86px */
}

.fsz_rem5-5 {
  font-size: 5.5rem; /* 88px */
}

.fsz_rem5-6 {
  font-size: 5.6rem; /* 90px */
}

.fsz_rem5-7 {
  font-size: 5.7rem; /* 91px */
}

.fsz_rem5-8 {
  font-size: 5.8rem; /* 93px */
}

.fsz_rem5-9 {
  font-size: 5.9rem; /* 94px */
}

.fsz_rem6 {
  font-size: 6rem; /* 96px */
}

.fsz_rem6-1 {
  font-size: 6.1rem; /* 98px */
}

.fsz_rem6-2 {
  font-size: 6.2rem; /* 99px */
}

.fsz_rem6-3 {
  font-size: 6.3rem; /* 101px */
}

.fsz_rem6-4 {
  font-size: 6.4rem; /* 102px */
}

.fsz_rem6-5 {
  font-size: 6.5rem; /* 104px */
}

.fsz_rem6-6 {
  font-size: 6.6rem; /* 106px */
}

.fsz_rem6-7 {
  font-size: 6.7rem; /* 107px */
}

.fsz_rem6-8 {
  font-size: 6.8rem; /* 109px */
}

.fsz_rem6-9 {
  font-size: 6.9rem; /* 110px */
}

.fsz_rem7 {
  font-size: 7rem; /* 112px */
}

.fsz_rem7-1 {
  font-size: 7.1rem; /* 114px */ 
}

.fsz_rem7-2 {
  font-size: 7.2rem; /* 115px */ 
}

.fsz_rem7-3 {
  font-size: 7.3rem; /* 117px */
}

.fsz_rem7-4 {
  font-size: 7.4rem; /* 118px */
}

.fsz_rem7-5 {
  font-size: 7.5rem; /* 120px */
}

.fsz_rem7-6 {
  font-size: 7.6rem; /* 122px */
}

.fsz_rem7-7 {
  font-size: 7.7rem; /* 123px */
}

.fsz_rem7-8 {
  font-size: 7.8rem; /* 125px */
}

.fsz_rem7-9 {
  font-size: 7.9rem; /* 126px */ 
}

.fsz_rem8 {
  font-size: 8rem; /* 128px */
}

.fsz_rem8-1 {
  font-size: 8.1rem; /* 130px */
}

.fsz_rem8-2 {
  font-size: 8.2rem; /* 131px */
}

.fsz_rem8-3 {
  font-size: 8.3rem; /* 133px */
}

.fsz_rem8-4 {
  font-size: 8.4rem; /* 134px */
}

.fsz_rem8-5 {
  font-size: 8.5rem; /* 136px */
}

.fsz_rem8-6 {
  font-size: 8.6rem; /* 138px */
}

.fsz_rem8-7 {
  font-size: 8.7rem; /* 139px */
}

.fsz_rem8-8 {
  font-size: 8.8rem; /* 141px */
}

.fsz_rem8-9 {
  font-size: 8.9rem; /* 142px */
}

.fsz_rem9 {
  font-size: 9rem; /* 144px */
}

.fsz_rem9-1 {
  font-size: 9.1rem; /* 146px */
}

.fsz_rem9-2 {
  font-size: 9.2rem; /* 147px */
}

.fsz_rem9-3 {
  font-size: 9.3rem; /* 149px */
}

.fsz_rem9-4 {
  font-size: 9.4rem; /* 150px */
}

.fsz_rem9-5 {
  font-size: 9.5rem; /* 152px */
}

.fsz_rem9-6 {
  font-size: 9.6rem; /* 154px */
}

.fsz_rem9-7 {
  font-size: 9.7rem; /* 155px */
}

.fsz_rem9-8 {
  font-size: 9.8rem; /* 157px */
}

.fsz_rem9-9 {
  font-size: 9.9rem; /* 158px */
}

.fsz_rem10 {
  font-size: 10rem; /* 160px */
}

/* ANCHOR Font Weight */

.fw100 {
  font-weight: 100;
}

.fw200 {
  font-weight: 200;
}

.fw300 {
  font-weight: 300;
}

.fw400 {
  font-weight: 400;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.fw700 {
  font-weight: 700;
}

.fw800 {
  font-weight: 800;
}

.fw900 {
  font-weight: 900;
}
/*=============================================
=          //  SECTION Sizing            =
=============================================*/

/* ANCHOR Heights (10px interval | h_10 - h_1000 + h_auto) */
.h_auto {
  height: auto;
}

.h_10 {
  height: 10px;
}

.h_20 {
  height: 20px;
}

.h_30 {
  height: 30px;
}

.h_40 {
  height: 40px;
}

.h_50 {
  height: 50px;
}

.h_60 {
  height: 60px;
}

.h_70 {
  height: 70px;
}

.h_80 {
  height: 80px;
}

.h_90 {
  height: 90px;
}

.h_100 {
  height: 100px;
}

.h_110 {
  height: 110px;
}

.h_120 {
  height: 120px;
}

.h_130 {
  height: 130px;
}

.h_140 {
  height: 140px;
}

.h_150 {
  height: 150px;
}

.h_160 {
  height: 160px;
}

.h_170 {
  height: 170px;
}

.h_180 {
  height: 180px;
}

.h_190 {
  height: 190px;
}

.h_200 {
  height: 200px;
}

.h_210 {
  height: 210px;
}

.h_220 {
  height: 220px;
}

.h_230 {
  height: 230px;
}

.h_240 {
  height: 240px;
}

.h_250 {
  height: 250px;
}

.h_260 {
  height: 260px;
}

.h270 {
  height: 270px;
}

.h_280 {
  height: 280px;
}

.h_290 {
  height: 290px;
}

.h_300 {
  height: 300px;
}

.h_310 {
  height: 310px;
}

.h_320 {
  height: 320px;
}

.h_330 {
  height: 330px;
}

.h_340 {
  height: 340px;
}

.h_350 {
  height: 350px;
}

.h_360 {
  height: 360px;
}

.h_370 {
  height: 370px;
}

.h_380 {
  height: 380px;
}

.h_390 {
  height: 390px;
}

.h_400 {
  height: 400px;
}

.h_410 {
  height: 410px;
}

.h_420 {
  height: 420px;
}

.h_430 {
  height: 430px;
}

.h_440 {
  height: 440px;
}

.h_450 {
  height: 450px;
}

.h_460 {
  height: 460px;
}

.h_470 {
  height: 470px;
}

.h_480 {
  height: 480px;
}

.h_490 {
  height: 490px;
}

.h_500 {
  height: 500px;
}

.h_510 {
  height: 510px;
}

.h_520 {
  height: 520px;
}

.h_530 {
  height: 530px;
}

.h_540 {
  height: 540px;
}

.h_550 {
  height: 550px;
}

.h_560 {
  height: 560px;
}

.h_570 {
  height: 570px;
}

.h_580 {
  height: 580px;
}

.h_590 {
  height: 590px;
}

.h_600 {
  height: 600px;
}

.h_610 {
  height: 610px;
}

.h_620 {
  height: 620px;
}

.h_630 {
  height: 630px;
}

.h_640 {
  height: 640px;
}

.h_650 {
  height: 650px;
}

.h_660 {
  height: 660px;
}

.h_670 {
  height: 670px;
}

.h_680 {
  height: 680px;
}

.h_690 {
  height: 690px;
}

.h_700 {
  height: 700px;
}

.h_710 {
  height: 710px;
}

.h_720 {
  height: 720px;
}

.h_730 {
  height: 730px;
}

.h_740 {
  height: 740px;
}

.h_750 {
  height: 750px;
}

.h_760 {
  height: 760px;
}

.h_770 {
  height: 770px;
}

.h_780 {
  height: 780px;
}

.h_790 {
  height: 790px;
}

.h_800 {
  height: 800px;
}

.h_810 {
  height: 810px;
}

.h_820 {
  height: 820px;
}

.h_830 {
  height: 830px;
}

.h_840 {
  height: 840px;
}

.h_850 {
  height: 850px;
}

.h_860 {
  height: 860px;
}

.h_870 {
  height: 870px;
}

.h_880 {
  height: 880px;
}

.h_890 {
  height: 890px;
}

.h_900 {
  height: 900px;
}

.h_910 {
  height: 910px;
}

.h_920 {
  height: 920px;
}

.h_930 {
  height: 930px;
}

.h_940 {
  height: 940px;
}

.h_950 {
  height: 950px;
}

.h_960 {
  height: 960px;
}

.h_970 {
  height: 970px;
}

.h_980 {
  height: 980px;
}

.h_990 {
  height: 990px;
}

.h_1000 {
  height: 1000px;
}

/* ANCHOR Min Heights (10px interval | min_h_100 - min_h_1000 + min_h_100vh) */

.min_h_100 {
  min-height: 100px;
}

.min_h_110 {
  min-height: 110px;
}

.min_h_120 {
  min-height: 120px;
}

.min_h_130 {
  min-height: 130px;
}

.min_h_140 {
  min-height: 140px;
}

.min_h_150 {
  min-height: 150px;
}

.min_h_160 {
  min-height: 160px;
}

.min_h_170 {
  min-height: 170px;
}

.min_h_180 {
  min-height: 180px;
}

.min_h_190 {
  min-height: 190px;
}

.min_h_200 {
  min-height: 200px;
}

.min_h_210 {
  min-height: 210px;
}

.min_h_220 {
  min-height: 220px;
}

.min_h_230 {
  min-height: 230px;
}

.min_h_240 {
  min-height: 240px;
}

.min_h_250 {
  min-height: 250px;
}

.min_h_260 {
  min-height: 260px;
}

.min_h_270 {
  min-height: 270px;
}

.min_h_280 {
  min-height: 280px;
}

.min_h_290 {
  min-height: 290px;
}

.min_h_300 {
  min-height: 300px;
}

.min_h_310 {
  min-height: 310px;
}

.min_h_320 {
  min-height: 320px;
}

.min_h_330 {
  min-height: 330px;
}

.min_h_340 {
  min-height: 340px;
}

.min_h_350 {
  min-height: 350px;
}

.min_h_360 {
  min-height: 360px;
}

.min_h_370 {
  min-height: 370px;
}

.min_h_380 {
  min-height: 380px;
}

.min_h_390 {
  min-height: 390px;
}

.min_h_400 {
  min-height: 400px;
}

.min_h_410 {
  min-height: 410px;
}

.min_h_420 {
  min-height: 420px;
}

.min_h_430 {
  min-height: 430px;
}

.min_h_440 {
  min-height: 440px;
}

.min_h_450 {
  min-height: 450px;
}

.min_h_460 {
  min-height: 460px;
}

.min_h_470 {
  min-height: 470px;
}

.min_h_480 {
  min-height: 480px;
}

.min_h_490 {
  min-height: 490px;
}

.min_h_500 {
  min-height: 500px;
}

.min_h_510 {
  min-height: 510px;
}

.min_h_520 {
  min-height: 520px;
}

.min_h_530 {
  min-height: 530px;
}

.min_h_540 {
  min-height: 540px;
}

.min_h_550 {
  min-height: 550px;
}

.min_h_560 {
  min-height: 560px;
}

.min_h_570 {
  min-height: 570px;
}

.min_h_580 {
  min-height: 580px;
}

.min_h_590 {
  min-height: 590px;
}

.min_h_600 {
  min-height: 600px;
}

.min_h_610 {
  min-height: 610px;
}

.min_h_620 {
  min-height: 620px;
}

.min_h_630 {
  min-height: 630px;
}

.min_h_640 {
  min-height: 640px;
}

.min_h_650 {
  min-height: 650px;
}

.min_h_660 {
  min-height: 660px;
}

.min_h_670 {
  min-height: 670px;
}

.min_h_680 {
  min-height: 680px;
}

.min_h_690 {
  min-height: 690px;
}

.min_h_700 {
  min-height: 700px;
}

.min_h_710 {
  min-height: 710px;
}

.min_h_720 {
  min-height: 720px;
}

.min_h_730 {
  min-height: 730px;
}

.min_h_740 {
  min-height: 740px;
}

.min_h_750 {
  min-height: 750px;
}

.min_h_760 {
  min-height: 760px;
}

.min_h_770 {
  min-height: 770px;
}

.min_h_780 {
  min-height: 780px;
}

.min_h_790 {
  min-height: 790px;
}

.min_h_800 {
  min-height: 800px;
}

.min_h_810 {
  min-height: 810px;
}

.min_h_820 {
  min-height: 820px;
}

.min_h_830 {
  min-height: 830px;
}

.min_h_840 {
  min-height: 840px;
}

.min_h_850 {
  min-height: 850px;
}

.min_h_860 {
  min-height: 860px;
}

.min_h_880 {
  min-height: 880px;
}

.min_h_880 {
  min-height: 880px;
}

.min_h_890 {
  min-height: 890px;
}

.min_h_900 {
  min-height: 900px;
}

.min_h_910 {
  min-height: 910px;
}

.min_h_920 {
  min-height: 920px;
}

.min_h_930 {
  min-height: 930px;
}

.min_h_940 {
  min-height: 940px;
}

.min_h_950 {
  min-height: 950px;
}

.min_h_960 {
  min-height: 960px;
}

.min_h_990 {
  min-height: 990px;
}

.min_h_980 {
  min-height: 980px;
}

.min_h_990 {
  min-height: 990px;
}

.min_h_1000 {
  min-height: 1000px;
}

.min_h_100vh {
  min-height: 100vh;
}

.min_h_100pc {
  min-height: 100%;
}

/* ANCHOR Max Heights (10px interval | max_h_100 - max_h_1000 + max_h_100vh) */

.max_h_100 {
  max-height: 100px;
}

.max_h_110 {
  max-height: 110px;
}

.max_h_120 {
  max-height: 120px;
}

.max_h_130 {
  max-height: 130px;
}

.max_h_140 {
  max-height: 140px;
}

.max_h_150 {
  max-height: 150px;
}

.max_h_160 {
  max-height: 160px;
}

.max_h_170 {
  max-height: 170px;
}

.max_h_180 {
  max-height: 180px;
}

.max_h_190 {
  max-height: 190px;
}

.max_h_200 {
  max-height: 200px;
}

.max_h_210 {
  max-height: 210px;
}

.max_h_220 {
  max-height: 220px;
}

.max_h_230 {
  max-height: 230px;
}

.max_h_240 {
  max-height: 240px;
}

.max_h_250 {
  max-height: 250px;
}

.max_h_260 {
  max-height: 260px;
}

.max_h_270 {
  max-height: 270px;
}

.max_h_280 {
  max-height: 280px;
}

.max_h_290 {
  max-height: 290px;
}

.max_h_300 {
  max-height: 300px;
}

.max_h_310 {
  max-height: 310px;
}

.max_h_320 {
  max-height: 320px;
}

.max_h_330 {
  max-height: 330px;
}

.max_h_340 {
  max-height: 340px;
}

.max_h_350 {
  max-height: 350px;
}

.max_h_360 {
  max-height: 360px;
}

.max_h_370 {
  max-height: 370px;
}

.max_h_380 {
  max-height: 380px;
}

.max_h_390 {
  max-height: 390px;
}

.max_h_400 {
  max-height: 400px;
}

.max_h_410 {
  max-height: 410px;
}

.max_h_420 {
  max-height: 420px;
}

.max_h_430 {
  max-height: 430px;
}

.max_h_440 {
  max-height: 440px;
}

.max_h_450 {
  max-height: 450px;
}

.max_h_460 {
  max-height: 460px;
}

.max_h_470 {
  max-height: 470px;
}

.max_h_480 {
  max-height: 480px;
}

.max_h_490 {
  max-height: 490px;
}

.max_h_500 {
  max-height: 500px;
}

.max_h_510 {
  max-height: 510px;
}

.max_h_520 {
  max-height: 520px;
}

.max_h_530 {
  max-height: 530px;
}

.max_h_540 {
  max-height: 540px;
}

.max_h_550 {
  max-height: 550px;
}

.max_h_560 {
  max-height: 560px;
}

.max_h_570 {
  max-height: 570px;
}

.max_h_580 {
  max-height: 580px;
}

.max_h_590 {
  max-height: 590px;
}

.max_h_600 {
  max-height: 600px;
}

.max_h_610 {
  max-height: 610px;
}

.max_h_620 {
  max-height: 620px;
}

.max_h_630 {
  max-height: 630px;
}

.max_h_640 {
  max-height: 640px;
}

.max_h_650 {
  max-height: 650px;
}

.max_h_660 {
  max-height: 660px;
}

.max_h_670 {
  max-height: 670px;
}

.max_h_680 {
  max-height: 680px;
}

.max_h_690 {
  max-height: 690px;
}

.max_h_700 {
  max-height: 700px;
}

.max_h_710 {
  max-height: 710px;
}

.max_h_720 {
  max-height: 720px;
}

.max_h_730 {
  max-height: 730px;
}

.max_h_740 {
  max-height: 740px;
}

.max_h_750 {
  max-height: 750px;
}

.max_h_760 {
  max-height: 760px;
}

.max_h_770 {
  max-height: 770px;
}

.max_h_780 {
  max-height: 780px;
}

.max_h_790 {
  max-height: 790px;
}

.max_h_800 {
  max-height: 800px;
}

.max_h_810 {
  max-height: 810px;
}

.max_h_820 {
  max-height: 820px;
}

.max_h_830 {
  max-height: 830px;
}

.max_h_840 {
  max-height: 840px;
}

.max_h_850 {
  max-height: 850px;
}

.max_h_860 {
  max-height: 860px;
}

.max_h_880 {
  max-height: 880px;
}

.max_h_880 {
  max-height: 880px;
}

.max_h_890 {
  max-height: 890px;
}

.max_h_900 {
  max-height: 900px;
}

.max_h_910 {
  max-height: 910px;
}

.max_h_920 {
  max-height: 920px;
}

.max_h_930 {
  max-height: 930px;
}

.max_h_940 {
  max-height: 940px;
}

.max_h_950 {
  max-height: 950px;
}

.max_h_960 {
  max-height: 960px;
}

.max_h_970 {
  max-height: 970px;
}

.max_h_980 {
  max-height: 980px;
}

.max_h_990 {
  max-height: 990px;
}

.max_h_1000 {
  max-height: 1000px;
}

.max_h_100vh {
  max-height: 100vh;
}

.max_h_100pc {
  max-height: 100%;
}

/* ANCHOR Width (10px interval | w_10 - w_1000 + w_auto) */
.w_auto {
  width: auto;
}

.w_10 {
  width: 10px;
}

.w_20 {
  width: 20px;
}

.w_30 {
  width: 30px;
}

.w_40 {
  width: 40px;
}

.w_50 {
  width: 50px;
}

.w_60 {
  width: 60px;
}

.w_70 {
  width: 70px;
}

.w_80 {
  width: 80px;
}

.w_90 {
  width: 90px;
}

.w_100 {
  width: 100px;
}

.w_110 {
  width: 110px;
}

.w_120 {
  width: 120px;
}

.w_130 {
  width: 130px;
}

.w_140 {
  width: 140px;
}

.w_150 {
  width: 150px;
}

.w_160 {
  width: 160px;
}

.w_170 {
  width: 170px;
}

.w_180 {
  width: 180px;
}

.w_190 {
  width: 190px;
}

.w_200 {
  width: 200px;
}

.w_210 {
  width: 210px;
}

.w_220 {
  width: 220px;
}

.w_230 {
  width: 230px;
}

.w_240 {
  width: 240px;
}

.w_250 {
  width: 250px;
}

.w_260 {
  width: 260px;
}

.w_270 {
  width: 270px;
}

.w_280 {
  width: 280px;
}

.w_290 {
  width: 290px;
}

.w_300 {
  width: 300px;
}

.w_310 {
  width: 310px;
}

.w_320 {
  width: 320px;
}

.w_330 {
  width: 330px;
}

.w_340 {
  width: 340px;
}

.w_350 {
  width: 350px;
}

.w_360 {
  width: 360px;
}

.w_370 {
  width: 370px;
}

.w_380 {
  width: 380px;
}

.w_390 {
  width: 390px;
}

.w_400 {
  width: 400px;
}

.w_410 {
  width: 410px;
}

.w_420 {
  width: 420px;
}

.w_430 {
  width: 430px;
}

.w_440 {
  width: 440px;
}

.w_450 {
  width: 450px;
}

.w_460 {
  width: 460px;
}

.w_470 {
  width: 470px;
}

.w_480 {
  width: 480px;
}

.w_490 {
  width: 490px;
}

.w_500 {
  width: 500px;
}

.w_510 {
  width: 510px;
}

.w_520 {
  width: 520px;
}

.w_530 {
  width: 530px;
}

.w_540 {
  width: 540px;
}

.w_550 {
  width: 550px;
}

.w_560 {
  width: 560px;
}

.w_570 {
  width: 570px;
}

.w_580 {
  width: 580px;
}

.w_590 {
  width: 590px;
}

.w_600 {
  width: 600px;
}

.w_610 {
  width: 610px;
}

.w_620 {
  width: 620px;
}

.w_630 {
  width: 630px;
}

.w_640 {
  width: 640px;
}

.w_650 {
  width: 650px;
}

.w_660 {
  width: 660px;
}

.w_670 {
  width: 670px;
}

.w_680 {
  width: 680px;
}

.w_690 {
  width: 690px;
}

.w_700 {
  width: 700px;
}

.w_710 {
  width: 710px;
}

.w_720 {
  width: 720px;
}

.w_730 {
  width: 730px;
}

.w_740 {
  width: 740px;
}

.w_750 {
  width: 750px;
}

.w_760 {
  width: 760px;
}

.w_770 {
  width: 770px;
}

.w_780 {
  width: 780px;
}

.w_790 {
  width: 790px;
}

.w_800 {
  width: 800px;
}

.w_810 {
  width: 810px;
}

.w_820 {
  width: 820px;
}

.w_830 {
  width: 830px;
}

.w_840 {
  width: 840px;
}

.w_850 {
  width: 850px;
}

.w_860 {
  width: 860px;
}

.w_870 {
  width: 870px;
}

.w_880 {
  width: 880px;
}

.w_890 {
  width: 890px;
}

.w_900 {
  width: 900px;
}

.w_910 {
  width: 910px;
}

.w_920 {
  width: 920px;
}

.w_930 {
  width: 930px;
}

.w_940 {
  width: 940px;
}

.w_950 {
  width: 950px;
}

.w_960 {
  width: 960px;
}

.w_970 {
  width: 970px;
}

.w_980 {
  width: 980px;
}

.w_990 {
  width: 990px;
}

.w_1000 {
  width: 1000px;
}

.w_60prc {
  width: 60%;
}

/* ANCHOR Min Width (10px interval | min_w_100 - min_w_1000 + min_w_100vw) */

.min_w_100 {
  min-width: 100px;
}

.min_w_110 {
  min-width: 110px;
}

.min_w_120 {
  min-width: 120px;
}

.min_w_130 {
  min-width: 130px;
}

.min_w_140 {
  min-width: 140px;
}

.min_w_150 {
  min-width: 150px;
}

.min_w_160 {
  min-width: 160px;
}

.min_w_170 {
  min-width: 170px;
}

.min_w_180 {
  min-width: 180px;
}

.min_w_190 {
  min-width: 190px;
}

.min_w_200 {
  min-width: 200px;
}

.min_w_210 {
  min-width: 210px;
}

.min_w_220 {
  min-width: 220px;
}

.min_w_230 {
  min-width: 230px;
}

.min_w_240 {
  min-width: 240px;
}

.min_w_250 {
  min-width: 250px;
}

.min_w_260 {
  min-width: 260px;
}

.min_w_270 {
  min-width: 270px;
}

.min_w_280 {
  min-width: 280px;
}

.min_w_290 {
  min-width: 290px;
}

.min_w_300 {
  min-width: 300px;
}

.min_w_310 {
  min-width: 310px;
}

.min_w_320 {
  min-width: 320px;
}

.min_w_330 {
  min-width: 330px;
}

.min_w_340 {
  min-width: 340px;
}

.min_w_350 {
  min-width: 350px;
}

.min_w_360 {
  min-width: 360px;
}

.min_w_370 {
  min-width: 370px;
}

.min_w_380 {
  min-width: 380px;
}

.min_w_390 {
  min-width: 390px;
}

.min_w_400 {
  min-width: 400px;
}

.min_w_410 {
  min-width: 410px;
}

.min_w_420 {
  min-width: 420px;
}

.min_w_430 {
  min-width: 430px;
}

.min_w_440 {
  min-width: 440px;
}

.min_w_450 {
  min-width: 450px;
}

.min_w_460 {
  min-width: 460px;
}

.min_w_470 {
  min-width: 470px;
}

.min_w_480 {
  min-width: 480px;
}

.min_w_490 {
  min-width: 490px;
}

.min_w_500 {
  min-width: 500px;
}

.min_w_510 {
  min-width: 510px;
}

.min_w_520 {
  min-width: 520px;
}

.min_w_530 {
  min-width: 530px;
}

.min_w_540 {
  min-width: 540px;
}

.min_w_550 {
  min-width: 550px;
}

.min_w_560 {
  min-width: 560px;
}

.min_w_570 {
  min-width: 570px;
}

.min_w_580 {
  min-width: 580px;
}

.min_w_590 {
  min-width: 590px;
}

.min_w_600 {
  min-width: 600px;
}

.min_w_610 {
  min-width: 610px;
}

.min_w_620 {
  min-width: 620px;
}

.min_w_630 {
  min-width: 630px;
}

.min_w_640 {
  min-width: 640px;
}

.min_w_650 {
  min-width: 650px;
}

.min_w_660 {
  min-width: 660px;
}

.min_w_670 {
  min-width: 670px;
}

.min_w_680 {
  min-width: 680px;
}

.min_w_690 {
  min-width: 690px;
}

.min_w_700 {
  min-width: 700px;
}

.min_w_710 {
  min-width: 710px;
}

.min_w_720 {
  min-width: 720px;
}

.min_w_730 {
  min-width: 730px;
}

.min_w_740 {
  min-width: 740px;
}

.min_w_750 {
  min-width: 750px;
}

.min_w_760 {
  min-width: 760px;
}

.min_w_770 {
  min-width: 770px;
}

.min_w_780 {
  min-width: 780px;
}

.min_w_790 {
  min-width: 790px;
}

.min_w_800 {
  min-width: 800px;
}

.min_w_810 {
  min-width: 810px;
}

.min_w_820 {
  min-width: 820px;
}

.min_w_830 {
  min-width: 830px;
}

.min_w_840 {
  min-width: 840px;
}

.min_w_850 {
  min-width: 850px;
}

.min_w_860 {
  min-width: 860px;
}

.min_w_880 {
  min-width: 880px;
}

.min_w_880 {
  min-width: 880px;
}

.min_w_890 {
  min-width: 890px;
}

.min_w_900 {
  min-width: 900px;
}

.min_w_910 {
  min-width: 910px;
}

.min_w_920 {
  min-width: 920px;
}

.min_w_930 {
  min-width: 930px;
}

.min_w_940 {
  min-width: 940px;
}

.min_w_950 {
  min-width: 950px;
}

.min_w_960 {
  min-width: 960px;
}

.min_w_970 {
  min-width: 970px;
}

.min_w_980 {
  min-width: 980px;
}

.min_w_990 {
  min-width: 990px;
}

.min_w_1000 {
  min-width: 1000px;
}

.min_w_100vw {
  min-width: 100vw;
}

.min_w_100pc {
  min-width: 100%;
}

/* ANCHOR Max Width (10px interval | max_w_100 - max_w_100 + max_w_100vw) */

.max_w_100 {
  max-width: 100px;
}

.max_w_110 {
  max-width: 110px;
}

.max_w_120 {
  max-width: 120px;
}

.max_w_130 {
  max-width: 130px;
}

.max_w_140 {
  max-width: 140px;
}

.max_w_150 {
  max-width: 150px;
}

.max_w_160 {
  max-width: 160px;
}

.max_w_170 {
  max-width: 170px;
}

.max_w_180 {
  max-width: 180px;
}

.max_w_190 {
  max-width: 190px;
}

.max_w_200 {
  max-width: 200px;
}

.max_w_210 {
  max-width: 210px;
}

.max_w_220 {
  max-width: 220px;
}

.max_w_230 {
  max-width: 230px;
}

.max_w_240 {
  max-width: 240px;
}

.max_w_250 {
  max-width: 250px;
}

.max_w_260 {
  max-width: 260px;
}

.max_w_270 {
  max-width: 270px;
}

.max_w_280 {
  max-width: 280px;
}

.max_w_290 {
  max-width: 290px;
}

.max_w_300 {
  max-width: 300px;
}

.max_w_310 {
  max-width: 310px;
}

.max_w_320 {
  max-width: 320px;
}

.max_w_330 {
  max-width: 330px;
}

.max_w_340 {
  max-width: 340px;
}

.max_w_350 {
  max-width: 350px;
}

.max_w_360 {
  max-width: 360px;
}

.max_w_370 {
  max-width: 370px;
}

.max_w_380 {
  max-width: 380px;
}

.max_w_390 {
  max-width: 390px;
}

.max_w_400 {
  max-width: 400px;
}

.max_w_410 {
  max-width: 410px;
}

.max_w_420 {
  max-width: 420px;
}

.max_w_430 {
  max-width: 430px;
}

.max_w_440 {
  max-width: 440px;
}

.max_w_450 {
  max-width: 450px;
}

.max_w_460 {
  max-width: 460px;
}

.max_w_470 {
  max-width: 470px;
}

.max_w_480 {
  max-width: 480px;
}

.max_w_490 {
  max-width: 490px;
}

.max_w_500 {
  max-width: 500px;
}

.max_w_510 {
  max-width: 510px;
}

.max_w_520 {
  max-width: 520px;
}

.max_w_530 {
  max-width: 530px;
}

.max_w_540 {
  max-width: 540px;
}

.max_w_550 {
  max-width: 550px;
}

.max_w_560 {
  max-width: 560px;
}

.max_w_570 {
  max-width: 570px;
}

.max_w_580 {
  max-width: 580px;
}

.max_w_590 {
  max-width: 590px;
}

.max_w_600 {
  max-width: 600px;
}

.max_w_610 {
  max-width: 610px;
}

.max_w_620 {
  max-width: 620px;
}

.max_w_630 {
  max-width: 630px;
}

.max_w_640 {
  max-width: 640px;
}

.max_w_650 {
  max-width: 650px;
}

.max_w_660 {
  max-width: 660px;
}

.max_w_670 {
  max-width: 670px;
}

.max_w_680 {
  max-width: 680px;
}

.max_w_690 {
  max-width: 690px;
}

.max_w_700 {
  max-width: 700px;
}

.max_w_710 {
  max-width: 710px;
}

.max_w_720 {
  max-width: 720px;
}

.max_w_730 {
  max-width: 730px;
}

.max_w_740 {
  max-width: 740px;
}

.max_w_750 {
  max-width: 750px;
}

.max_w_760 {
  max-width: 760px;
}

.max_w_770 {
  max-width: 770px;
}

.max_w_780 {
  max-width: 780px;
}

.max_w_790 {
  max-width: 790px;
}

.max_w_800 {
  max-width: 800px;
}

.max_w_810 {
  max-width: 810px;
}

.max_w_820 {
  max-width: 820px;
}

.max_w_830 {
  max-width: 830px;
}

.max_w_840 {
  max-width: 840px;
}

.max_w_850 {
  max-width: 850px;
}

.max_w_860 {
  max-width: 860px;
}

.max_w_880 {
  max-width: 880px;
}

.max_w_880 {
  max-width: 880px;
}

.max_w_890 {
  max-width: 890px;
}

.max_w_900 {
  max-width: 900px;
}

.max_w_910 {
  max-width: 910px;
}

.max_w_920 {
  max-width: 920px;
}

.max_w_930 {
  max-width: 930px;
}

.max_w_940 {
  max-width: 940px;
}

.max_w_950 {
  max-width: 950px;
}

.max_w_960 {
  max-width: 960px;
}

.max_w_970 {
  max-width: 970px;
}

.max_w_980 {
  max-width: 980px;
}

.max_w_990 {
  max-width: 990px;
}

.max_w_1000 {
  max-width: 1000px;
}

.max_w_100vw {
  max-width: 100vw;
}

.max_w_100pc {
  max-width: 100%;
}

/* !SECTION SIZING  ----------*/

/* !SECTION UTILITIES  ====*/


/* ANCHOR  MENU  ----------*/

#logo img {
  padding: 0.8rem;
  height: 90px;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

#switch_lang {
  width: 3.12rem !important;
}

/* ANCHOR  SLIDER  ----------*/

#slider .col-md-6 {
  float: left;
  height: 100%;
}

#slider .bold {
  font-size: 2.18rem;
  font-weight: bold;
}

#slider .col-md-6 img#slider-main-hero-logo-sphaerica-dark {
  width: 85% !important;
}

#slider .swiper-slide[data-slider-slide="1"] .col-md-6:nth-child(2) {
  background-color: var(--light_green);
  opacity: 0.9;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 35% 100%);
}

#slider .swiper-slide[data-slider-slide="1"] .col-md-6:nth-child(2) ul {
  list-style-type: none;
  margin-left: 40%;
}

#slider .swiper-slide[data-slider-slide="1"] .col-md-6:nth-child(2) .separator {
  max-width: 12.5rem;
  height: 2px;
  background-color: var(--white);
  margin-left: 37%;
}

#slider-main-hero-logo-sphaerica-dark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(25%, -50%);
}

/* ANCHOR  BUTTONS  ----------*/

body:not(.device-touch) .button {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.button-rounded {
  -webkit-border-radius: 1.87rem !important;
  -moz-border-radius: 1.87rem !important;
  -ms-border-radius: 1.87rem !important;
  -o-border-radius: 1.87rem !important;
  border-radius: 1.87rem !important;
}

#discover-button-sphaera {
  position: absolute;
  top: 70%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.testoBottone {
  margin-top: 3.12rem;
  margin-left: 4%;
  text-transform: capitalize;
  color: var(--light_green);
}

.testoBottone strong {
  font-weight: 900 !important;
}

.btn_green_bar {
  text-transform: none;
  color: var(--light_green);
}

.buttonProduct {
  left: 0% !important;
  margin-top: 5%;
  margin-left: 22%;
  text-transform: none;
  color: var(--light_green);
}

.buttonProduct .bold {
  font-weight: bold;
}

.button-sphaera {
  position: absolute;
  background-color: var(--light_green);
  color: var(--white);
  transform: translate(-50%, -50%);
}

.button-verde {
  background-color: var(--light_green);
  text-transform: uppercase;
}

.button-3d.button-dirtygreen:hover {
  background-color: var(--green_hover) !important;
}

.button-sphaera2 {
  background-color: var(--light_green);
  color: var(--white);
  text-transform: none;
}

/* ANCHOR  CARD LIST  ----------*/

.card-list-container {
  height: 100vw;
  width: 700px;
  overflow-y: auto;
  overflow-x: hidden;
  transform: rotate(-90deg) translateY(-700px);
  transform-origin: right top;
  padding-top: 200px;
}

.card-list-container .card:first-child {
  margin-top: 700px;
}

.card-list-container .card:last-child {
  margin-bottom: -700px;
}

.card-list-container .card {
  height: 730px;
  width: 700px;
  transform: rotate(90deg);
  transform-origin: right top;
  background-color: transparent;
  margin: 0 2.18rem;
  float: left;
  border: none;
  margin-left: -1.25rem;
}

.card-list-container .card .image-container {
  height: 300px;
  width: 100%;
  background-color: var(--white);
}

.card-list-container .card .card-title-container {
  background-color: var(--white);
}

.card-list-container .card .card-description-container {
  width: 100%;
  background-color: var(--white);
  height: calc(100% - 32.5rem);
  color: var(--black);
  text-align: left;
}

/* ANCHOR  TITLES & TEXT  ----------*/
h1,
h2,
h3,
h4,
h5,
h6,
#primary-menu ul li > a {
  font-family: var(--raleway);
}

.text_green {
  color: var(--main_green);
}

.titolo_prd {
  font-size: 3.75rem;
  font-weight: 900;
  color: var(--light_green);
  text-transform: uppercase;
}

.testoPrd {
  font-size: 0.93rem;
}

.testoPrd20 {
  font-size: 1.25rem;
}

.testoPrd18 {
  font-size: 1.12rem;
}

.testoPrd .bold {
  font-size: 1.12rem;
  color: var(--main_green);
  text-transform: uppercase;
  margin-bottom: 1%;
  font-weight: 900;
}

.testoPrd2 .bold2 {
  font-size: 1.12rem;
  color: var(--main_green);
  text-transform: none;
  margin-bottom: 1%;
  font-weight: bold;
}

.titolo_prd_mobile {
  font-size: 2.5rem;
  color: var(--light_green);
  text-transform: uppercase;
  font-weight: 900;
}

.title-mobile {
  color: var(--white);
}

.text_bg_green {
  font-size: 0.93rem;
  font-weight: 200;
  text-align: justify;
}

.text_bg_green strong {
  font-weight: 500;
}

.title_tech {
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--main_green);
}

.text_desc {
  color: var(--white);
}

/* ANCHOR  ICONS  ----------*/

.frecciaDx {
  padding-right: 3%;
}

.arrow_green {
  float: right;
}

.arrow_green_mobile {
  float: right;
}

/*=============================================
=            SPHAERICA PAGE            =
=============================================*/

/* Main Settings */
.mob_container {
  width: 100% !important;
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}

/* Banner Cut */
.banner_cut {
  padding: 0;
}

.banner_cut:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--green_overlay_light);
  /* clip-path: polygon(0 0, 100% 0, 100% 100%, 22% 100%); */
  /* clip-path: polygon(45% 0, 100% 0, 100% 100%, 99% 100%); */
  clip-path: polygon(28% 1%, 100% 0, 100% 100%, 67% 100%);
}

/* Titles */
.sph_title_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.sph_title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--main_green);
  font-family: var(--open_sans);
  text-transform: uppercase;
  margin-bottom: 0;
}

.sph_title_line {
  height: 4px;
  width: 120px;
  background-color: var(--main_green);
  margin: 1rem 0;
}

.sph_sub_title {
  font-size: 2.18rem;
  font-weight: 400;
  color: var(--text_gray);
  font-family: var(--open_sans);
}

/* Product Section */
.sph_mach_img {
  height: 104%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.sph_logo_img {
  width: 90%;
}

.sph_ul_title {
  font-family: var(--poppins);
  color: var(--main_green);
  font-size: 1.56rem;
  font-weight: 700;
  text-transform: uppercase;
}

.sph_ul_wrapper {
  width: 100%;
  margin-bottom: 1.5rem;
}

.sph_prod_ul {
  list-style-position: inside;
}

.sph_prod_ul ::marker {
  color: var(--main_green);
}

.sph_prod_ul strong {
  color: var(--black);
  font-weight: 700;
}

.sph_list_overlay {
  height: auto;
  width: 100%;
  background-image: url("../img/company/company_list_overlay_bg.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 2rem;
  margin: 2rem 0;
  z-index: 2;
}

.sph_list_overlay :after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--green_overlay);
}

.sph_list_overlay p {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0;
}

.sph_list_overlay_list_line {
  width: 100%;
  height: 1px;
  background-color: var(--white);
  margin: 0.2rem 0;
}

.sph_green_bar {
  height: 10vh;
  width: 100vw;
  background-image: url("../img/banda_verde_marmi.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sph_green_bar_wrapper,
.sph_green_bar_wrapper .row,
.sph_green_bar_col_left,
.sph_green_bar_col_right {
  height: 100%;
}

.sph_green_bar_col_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sph_green_bar_col_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Main Description Section */

/* Pointer Description */
.sph_descr_col {
  width: 100%;
  display: flex;
}

.sph_descr_col p {
  margin-left: 20px;
  font-size: 1.2rem;
}

.sph_pointer {
  height: 25px;
  width: 25px;
  margin-top: 3px;
}

/* Green Description */

.sph_green_descr {
  text-align: justify;
  color: var(--light_green);
  font-weight: 700;
  margin-bottom: 0;
}

/* buttons download Data sheet - Technical Movie */

.sph_btns_column {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sph_btn_gray {
  background-color: var(--btns_gray);
  padding: 1rem 2rem;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.6rem;
  text-align: center;
  color: var(--black);
  border: none;
  cursor: pointer;

  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.sph_btn_gray:hover {
  background-color: #8b8b8b;
  color: var(--white);
}

.sph_btn_gray:first-of-type {
  margin-bottom: 1rem;
}

/* ANCHOR  ACCORDION  ----------*/

.accordion {
  background-color: var(--white);
  color: #444;
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 0.93rem;
  display: inline;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.arrow_sphaerica {
  max-width: none !important;
  width: 1.25rem !important;
}

button.accordion {
  display: flex;
  align-items: center;
}

.accordion .iconaPlus {
  padding: 2% 1% 2% 0.1em;
  padding-right: 1%;
  float: left;
  height: 80px;
  width: 80px;
  object-fit: contain;
}

.active,
.accordion:hover {
  background-color: var(--white);
}

.accordion:after {
  content: "\002B";
  color: var(--white);
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel {
  padding: 0 1.12rem;
  background-color: var(--white);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.acc_img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

figcaption,
figcaption small,
figcaption strong {
  font-family: var(--poppins) !important;
}

figcaption small,
figcaption strong {
  color: var(--black);
}

/* Desktop */

.accordionTitolo {
  font-size: 1.56rem;
  color: var(--black) !important;
  text-transform: uppercase;
  font-weight: 700;
}

.subTitleAccordion {
  /* green subtitle */
  font-size: 1.25rem;
  color: var(--light_green);
  font-weight: 600;
  text-transform: uppercase;
  padding: 0 0 1.5rem 0;
}

.pAccordion {
  font-size: 1.12rem;
  text-align: justify;
}

.pAccordion .lista {
  font-size: 1.12rem;
  list-style-position: outside;
  padding-left: 2%;
}

.pAccordion .lista ::marker {
  color: var(--main_green);
}

.img_metro {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.img_metro img {
  height: 83%;
  width: 100%;
}

.big_gallery {
  height: auto;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/* Accordion Pointers*/

.acc_sph_descr_col {
  width: 100%;
  display: flex;
}

.acc_sph_descr_col p {
  margin-left: 20px;
  font-size: 1.1rem;
  line-height: 1.5 !important;
  text-align: justify;
}

.acc_sph_pointer img {
  max-width: 18px;
  margin-top: 6px;
}

/* Mobile */

.accordionTitoloMobile {
  font-size: 1.2rem !important;
  color: var(--black) !important;
  text-transform: uppercase;
  font-weight: 700;
}

.subTitleAccordionMobile {
  font-size: 1.18rem;
  color: var(--light_green);
  font-weight: 600;
  text-transform: uppercase;
  padding: 1.3rem 0;
}

/* ANCHOR  GREEN BOX  ----------*/

.green_box_text {
  background-color: var(--light_green);
  color: var(--white);
  font-size: 1.56rem;
  height: 24%;
  margin-top: 5%;
  padding: 5%;
}

.green_box_text2 {
  background-color: var(--light_green);
  color: var(--white);
  font-size: 1.12rem;
  padding: 3%;
  text-align: justify;
}

.green_box_text3 {
  background-color: var(--light_green);
  color: var(--white);
  font-size: 1.12rem;
  height: 100%;
  padding: 4%;
}

/* ANCHOR  BROCHURE SPACE  ----------*/

.broch_col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2rem 0;
}

.broch_col .button-verde {
  margin-right: 0 !important;
}

.broch_img {
  width: 1.3rem;
}

/* Video Embeed */

.videoWrapper {
  height: 15vh;
  max-width: 400px;
}

/*=============================================
=            COMPANY PAGE            =
=============================================*/

.logo_company {
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.logo_company img {
  width: 45%;
  margin-top: 100px;
}

.green_box_wrapper {
  z-index: 2;
  overflow-x: visible;
  /* height: 210px; */
  width: 110%;
  background-image: url("../img/company/green_box_company_bg.webp");
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2rem;
}

.green_box_wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--green_overlay);
}

.green_box_text_wrapper p {
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0;
}

.overlap_img {
  margin-top: -200px;
}

.company_text_wrapper {
  margin: 2.5rem 0;
}

.company_p {
  font-size: 1.12rem;
  text-align: justify;
  line-height: 1.6;
}

.company_list_overlay {
  height: auto;
  width: 50%;
  background-image: url("../img/company/company_list_overlay_bg.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 2rem;
  margin: 2rem 0;
  z-index: 2;
}

.company_list_overlay:after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--green_overlay);
}

.company_list_overlay p {
  color: var(--white);
  font-size: 1.12rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.company_list_line {
  width: 100%;
  height: 1px;
  background-color: var(--white);
  margin: 0.2rem 0;
}

.company_banner_bottom_img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  max-height: 500px;
}

/*=============================================
=            HOME PAGE            =
=============================================*/

/* ANCHOR  HERO SECTION HOME  ----------*/

.hero_bg {
  background-image: url("../img/home/bg_hero_home.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 0;
  /*  height: 700px;   */
}

/* Clip Background */
.clip_bg {
  clip-path: polygon(0 53%, 100% 0%, 100% 100%, 0% 100%);
  background-color: var(--green_overlay);
  width: 100%;
  height: 250px;
  position: absolute;
  bottom: 0;
  z-index: 1;
}

/* Content Row -Col */

.hero .row,
.hero [class*="col-"] {
  z-index: 2;
}

/* Logo Sphaerica text  */
.col_hero_logo_wrapper {
  position: relative;
  overflow-x: visible;
}

.hero_logo_wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(4rem, -50%);
  -moz-transform: translate(4rem, -50%);
  -ms-transform: translate(4rem, -50%);
  -o-transform: translate(4rem, -50%);
  transform: translate(4rem, -50%);
}

.hero_logo_wrapper img {
  max-width: 115%;
  min-width: 115%;
}

/* Text Promo */
.hero_text_wrapper {
  font-family: var(--open_sans);
  height: 92%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.hero_text_wrapper .hero_text_line {
  width: 160px;
  height: 3px;
  background-color: #a1a0a0;
  margin: 0.6rem 0;
}

.hero_text_wrapper h1,
.hero_text_wrapper h2,
.hero_text_wrapper h3 {
  line-height: 1;
  font-family: var(--open_sans);
  margin-bottom: 0.8rem;
}

.hero_text_wrapper h1 {
  text-transform: uppercase;
  color: var(--main_green);
  font-size: 2rem;
  font-weight: 900;
}

.hero_text_wrapper h2 {
  color: var(--black);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
}

.hero_text_wrapper h3 {
  color: var(--main_green);
  font-size: 1.8rem;
  font-weight: 700;
}

.hero_text_wrapper .hero_ul {
  margin: 0 0 0 1rem;
  padding: 0;
}

.hero_text_wrapper ::marker {
  color: var(--black);
}

.hero_text_wrapper .hero_ul li p {
  margin-bottom: 0;
  color: var(--black);
  font-family: var(--open_sans);
  font-weight: 900;
}

.hero_text_wrapper h4 {
  color: var(--black);
  font-weight: 500;
}

.hero_text_wrapper .hero_link {
  color: var(--dark_green);
  font-weight: 800;
}

.hero_text_wrapper a.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #dbdbdb;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hero_text_wrapper a.button:hover {
  background-color: #383838;
}

.hero_text_wrapper a.button strong {
  margin: 0 5px 0 10px;
}

.hero_text_wrapper .hero_caret {
  fill: none;
  stroke: #195633;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero_text_wrapper .button:hover .hero_caret {
  stroke: var(--white) !important;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

/* END Hero Section */

/* Product with green bar Section Home */

.container_product_home_green_bg {
  height: 450px;
  width: 100%;
  background-image: url("../one-page/assets/images/sfondo_slider_1.png");
  background-position: center;
  background-size: cover;
}

.container_product_home_overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--green_overlay);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.product_home_logo_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem 0 2rem 0;
}

/* Caratteristiche tecniche + Vantaggi Econimici Section home */

.ul_home_ast {
  margin-bottom: 1rem;
}

.ul_home_ast li,
.ul_home li {
  color: var(--black);
}

.ul_home_ast ::marker,
.ul_home ::marker {
  color: var(--main_green);
}

.no_shape {
  padding: 2rem;
}

.bg_shaped {
  background-color: #f4f4f4;
  padding: 2rem;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 86%, 0% 100%);
}

/* company home block */
.img_company_block {
  width: 80%;
  margin-top: -1rem;
}

/*=============================================
=            CONTACT/CONTATTI PAGE            =
=============================================*/

abbr[title],
abbr[data-original-title] {
  text-decoration: none;
}

/*=============================================
=            NEWS PAGE            =
=============================================*/

.post-masonry .entry-image,
.post-masonry .entry-image img {
  height: 250px !important;
  object-fit: cover;
  object-position: center;
}

.gallery-item {
  pointer-events: none;
  cursor: default;
}

.entry-image,
.entry-image > a,
.entry-image .slide a,
.entry-image img {
  max-height: 200px;
  object-fit: cover;
  object-position: center;
}

/*=============================================
=            FOOTER            =
=============================================*/

#footer2 {
  background: var(--white);
  border-top: 5px solid rgba(0, 0, 0, 0.2);
  position: relative;
  font-size: 0.75rem;
}

#footer2 .bg_gray {
  background-color: #e1e1e1;
}

#footer2 .container {
  padding: 3rem 0 0 0;
}

#footer2 .container .row:nth-child(3) {
  padding: 2rem 0;
  margin-bottom: 0 !important;
}

#footer2 .footer_links {
  padding: 2rem 0;
}

#footer2 strong {
  font-weight: 600;
}

#footer2 .gray_bar {
  height: 2.5rem;
}

#footer2 .container-fluid {
  border-top: 5px solid var(--main_green);
}

/*=============================================
=    COOKIE BOT Css for banner SWIFT         =
=============================================*/

/* main banner */

#CybotCookiebotDialogNav
  .CybotCookiebotDialogNavItemLink.CybotCookiebotDialogActive {
  border-bottom: 1px solid var(--main_green) !important;
  color: var(--main_green) !important;
}

#CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton {
  border: 2px solid var(--main_green) !important;
}

#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtonAccept,
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonAccept,
#CybotCookiebotDialogFooter
  #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll {
  background-color: var(--main_green) !important;
  border-color: var(--main_green) !important;
}

#CybotCookiebotDialogNav .CybotCookiebotDialogNavItemLink:hover {
  color: var(--main_green) !important;
}

#CybotCookiebotDialogTabContent
  input:checked
  + .CybotCookiebotDialogBodyLevelButtonSlider {
  background-color: var(--main_green) !important;
}

#CybotCookiebotDialog
  .CookieCard
  .CybotCookiebotDialogDetailBodyContentCookieContainerButton:hover,
#CybotCookiebotDialog
  .CookieCard
  .CybotCookiebotDialogDetailBodyContentIABv2Tab:hover,
#CybotCookiebotDialogDetailBodyContentCookieContainerTypes
  .CybotCookiebotDialogDetailBodyContentCookieProvider:not(.CybotCookiebotDialogDetailBodyContentCookieInfoCount):hover {
  color: var(--main_green) !important;
}

#CybotCookiebotDialog #CybotCookiebotDialogBodyContentText a,
#CybotCookiebotDialog
  #CybotCookiebotDialogBodyLevelButtonIABHeaderViewPartnersLink,
#CybotCookiebotDialog #CybotCookiebotDialogDetailBulkConsentList dt a,
#CybotCookiebotDialog #CybotCookiebotDialogDetailFooter a,
#CybotCookiebotDialog .CybotCookiebotDialogBodyLevelButtonIABDescription a,
#CybotCookiebotDialog .CybotCookiebotDialogDetailBodyContentCookieLink,
#CybotCookiebotDialogDetailBodyContentTextAbout a {
  color: var(--main_green) !important;
}

/* widget banner */

#CookiebotWidget
  .CookiebotWidget-body
  .CookiebotWidget-consents-list
  li.CookiebotWidget-approved
  svg {
  fill: var(--main_green) !important;
}

#CookiebotWidget .CookiebotWidget-consent-details button {
  color: var(--main_green) !important;
}

#CookiebotWidget #CookiebotWidget-buttons #CookiebotWidget-btn-change {
  background-color: var(--main_green) !important;
  border-color: var(--main_green) !important;
}

#CookiebotWidget #CookiebotWidget-buttons #CookiebotWidget-btn-withdraw {
  border-color: var(--main_green) !important;
}

/*=============================================
=            MEDIA QUERY            =
=============================================*/

@media screen and (max-width: 1350px) {
  /* Hero Home */
  .hero_text_wrapper h1 {
    font-size: 1.6rem;
  }

  .hero_text_wrapper h2,
  .hero_text_wrapper h3 {
    font-size: 1.3rem;
  }

  .hero_text_wrapper .hero_ul li p {
    font-size: 0.73rem;
  }

  .hero_text_wrapper h4 {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }

  .button.button-xlarge {
    font-size: 0.85rem;
  }

  /* End hero home */
}

@media screen and (max-width: 1160px) {
  /* Hero home */
  .hero_text_wrapper h1 {
    font-size: 1.3rem;
  }

  .hero_text_wrapper h2 {
    font-size: 1.2rem;
  }

  .hero_text_wrapper h3 {
    font-size: 1.1rem;
  }

  .hero_text_wrapper .hero_ul li p {
    font-size: 0.7rem;
  }

  .hero_text_wrapper h4 {
    font-size: 0.7rem;
  }

  .button.button-xlarge {
    font-size: 0.8rem;
    padding: 0 20px;
  }

  .hero_logo_wrapper img {
    max-width: 100%;
    min-width: 100%;
  }

  /* End hero home */
}

@media screen and (max-width: 1150px) {
  /* Hero Home */
  .hero_text_wrapper h1 {
    font-size: 1.28rem;
  }

  .hero_text_wrapper h2 {
    font-size: 1.18rem;
  }

  .hero_text_wrapper h3 {
    font-size: 1.08rem;
  }

  .hero_text_wrapper .hero_ul li p {
    font-size: 0.65rem;
  }

  .hero_text_wrapper h4 {
    font-size: 0.65rem;
  }

  .button.button-xlarge {
    font-size: 0.75rem;
    padding: 0 20px;
    height: 32px;
    line-height: 32px;
  }

  /* Hero Home */
}

@media screen and (max-width: 1024px) {
  .pAccordion .lista,
  .pAccordion,
  .green_box_text,
  .green_box_text2,
  .green_box_text3,
  .acc_sph_descr_col p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 992px) {
  /* Hero home */
  .hero_text_wrapper h1 {
    font-size: 2.3rem;
  }

  .hero_text_wrapper h2 {
    font-size: 2.2rem;
  }

  .hero_text_wrapper h3 {
    font-size: 2.1rem;
  }

  .hero_text_wrapper .hero_ul li p {
    font-size: 1.1rem;
  }

  .hero_text_wrapper h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero_text_wrapper .hero_ul {
    margin-bottom: 1rem;
  }

  .button.button-xlarge {
    font-size: 1rem;
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
  }

  .hero_text_line {
    display: none;
  }

  .hero_logo_wrapper {
    position: static;
    transform: none;
    width: 100%;
    height: 100%;
    padding: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .hero_text_wrapper {
    width: fit-content;
    margin: auto;
    padding: 2rem 0;
  }

  /* end hero home */

  .text_company_block {
    margin-top: 2rem;
  }

  .accordionTitolo {
    font-size: 1.12rem;
  }

  .accordion .iconaPlus {
    height: 70px;
    width: 70px;
    object-fit: contain;
  }

  .button-dirtygreen img {
    display: none;
  }

  .broch_col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .green_box_wrapper {
    width: 100%;
  }

  .green_box_wrapper p {
    font-size: 1.6rem !important;
  }

  .logo_company {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 0 2.5rem;
  }

  .logo_company img {
    width: 92%;
  }

  .company_list_overlay {
    width: 100%;
  }

  .overlap_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
  }

  .overlap_img {
    margin-top: 80px;
    width: 100%;
  }

  .overlap_img img {
    width: 100%;
  }

  /* Sphaerica page*/

  .sph_title {
    font-size: 3.2rem;
  }

  .sph_mach_img {
    width: 80%;
  }

  .sph_sub_title {
    font-size: 1.8rem;
  }

  .sph_ul_title {
    white-space: nowrap;
    font-size: 1.35rem;
  }

  .sph_descr_col p {
    font-size: 1.12rem;
  }

  .green_box_text2 {
    padding: 4%;
  }

  figure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .img_metro img {
    height: auto;
  }

  /* green bar */
  .sph_green_bar {
    height: 16vh;
  }

  .sph_green_bar_wrapper .row {
    height: auto;
    padding-top: 2%;
  }

  .sph_green_bar_col_left,
  .sph_green_bar_col_right {
    justify-content: center;
  }

  .sph_btn_gray {
    font-size: 1.3rem;
    padding: 1rem;
  }

  /* cookie banner */
  #cookie > div {
    font-size: 0.85rem !important;
    line-height: 3 !important;
  }
}

@media screen and (max-width: 768px) {
  .arrow_green {
    float: left;
    width: 1.87rem;
  }

  .button.button-xlarge {
    padding: 0px 20x;
    font-size: 0.87rem;
  }

  #footer2 h4 {
    font-size: 1.25rem;
  }

  #footer2 .container {
    padding: 3rem 1.5rem 0 1.5rem;
  }

  .col_sphaerica_descr {
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 576px) {
  /* Hero home */

  .hero_text_wrapper h1 {
    font-size: 2rem;
  }

  .hero_text_wrapper h2,
  .hero_text_wrapper h3 {
    font-size: 1.7rem;
  }

  .hero_text_wrapper .hero_ul li p {
    font-size: 0.8rem;
  }

  .hero_text_wrapper h4 {
    font-size: 0.85rem;
  }

  /* End hero home */

  .titolo_prd {
    font-size: 3.12rem;
  }

  .accordion .iconaPlus {
    height: 3.12rem;
    width: 3.12rem;
    object-fit: contain;
  }

  .green_box_wrapper p {
    font-size: 1.3rem !important;
  }
}

@media screen and (max-width: 575px) {
  .mob_container {
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
  }
}

@media screen and (max-width: 375px) {
  .accordion .iconaPlus {
    height: 2.5rem;
    width: 2.5rem;
    object-fit: contain;
  }
}
/*==================================================================
= INFORMATIVA MARKETING IN CONTATTI =
====================================================================*/

.box_consent_container {
  /* border: 1px solid #c7c1c1; */
  padding: 1.5rem;
  background: #fff;
  margin: 2.5rem 0;
}

.box_consent_container p:first-child {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.3rem;
}

.box_consent_container a {
  color: #1b5630;
}

.box_consent {
  /*margin: 2.5rem 0;*/
  border-bottom: 1px solid #c7c1c1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  /* background-color: #f3f3f3;*/
}

.box_consent label {
  font-weight: 700;
  cursor: pointer;
  text-transform: none;
}

.box_consent__radio {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.5rem;
}

.box_consent__radio .custom-radio:first-of-type {
  padding-right: 1.5rem;
}

.box_consent__text p {
  text-transform: none !important;
  font-weight: 400 !important;
  color: #444444;
  font-family: "Raleway", sans-serif;
}
.box_consent_container p:first-child {
  font-size: 13px;
}
/* end */
.spazi {
  margin: 5% 0;
}
