/*-----------------FONTS-----------------*/
@font-face {
  font-family: "Work Sans";
  src: url("../asset/font/WorkSans-Light.woff2") format("woff2");
  font-weight: 300; }

@font-face {
  font-family: "Work Sans";
  src: url("../asset/font/WorkSans-LightItalic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic; }

@font-face {
  font-family: "Work Sans";
  src: url("../asset/font/WorkSans-Regular.woff2") format("woff2");
  font-weight: 400; }

@font-face {
  font-family: "Work Sans";
  src: url("../asset/font/WorkSans-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic; }

@font-face {
  font-family: "Work Sans";
  src: url("../asset/font/WorkSans-Medium.woff2") format("woff2");
  font-weight: 500; }

@font-face {
  font-family: "Work Sans";
  src: url("../asset/font/WorkSans-MediumItalic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic; }

@font-face {
  font-family: "Work Sans";
  src: url("../asset/font/WorkSans-SemiBold.woff2") format("woff2");
  font-weight: 600; }

@font-face {
  font-family: "Work Sans";
  src: url("../asset/font/WorkSans-SemiBoldItalic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic; }

/*-----------------GLOBAL VARIABLES-----------------*/
:root {
  font-size: 16px; }
  @media screen and (max-width: 980px) {
    :root {
      font-size: 12px; } }
  @media screen and (max-width: 480px) {
    :root {
      font-size: 10px; } }

::-moz-selection {
  background-color: #faf9f6;
  color: #000; }

::selection {
  background-color: #faf9f6;
  color: #000; }

/*-----------------MIXIN IMPORT-----------------*/
/*-----------------GLOBAL SETTINGS-----------------*/
html {
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  overflow-y: scroll;
  overflow-x: hidden; }

body {
  margin: 0;
  color: #000;
  font-family: "Work Sans", "arial", "helvetica", sans-serif;
  font-weight: 400;
  background-color: #faf9f6;
  -webkit-font-smoothing: antialiased; }

button {
  background-color: #fff;
  border-radius: 100px;
  border: none;
  color: #000;
  font-size: 1.2rem; }

a {
  -webkit-tap-highlight-color: transparent;
  color: inherit;
  text-decoration: none; }

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0; }

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0; }

h1 {
  font-size: 1.187rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.013em; }
  @media screen and (max-width: 980px) {
    h1 {
      font-size: 1.7rem;
      line-height: 1.1; } }

h2 {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  font-family: Georgia, "serif"; }
  @media screen and (max-width: 980px) {
    h2 {
      font-size: 2rem; } }

h3 {
  font-size: 1.8125rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-family: Georgia, "serif"; }
  @media screen and (max-width: 980px) {
    h3 {
      font-size: 2.4rem; } }
  h3 strong {
    font-weight: 600; }
  h3 a {
    text-decoration: underline; }

h4 {
  font-size: 1.65rem;
  font-weight: 400;
  font-family: Georgia, "serif"; }
  @media screen and (max-width: 980px) {
    h4 {
      font-size: 2.4rem; } }

h5 {
  font-size: 1rem;
  font-weight: 400; }
  @media screen and (max-width: 980px) {
    h5 {
      font-size: 1.5rem; } }

p {
  font-size: 1.187rem;
  font-weight: 400;
  letter-spacing: -0.025em; }
  @media screen and (max-width: 980px) {
    p {
      font-size: 1.7rem; } }

.showmobile {
  display: none; }
  @media screen and (max-width: 980px) {
    .showmobile {
      display: block; } }

@media screen and (max-width: 980px) {
  .hidemobile {
    display: none; } }

.smalltitle {
  position: relative; }
  .smalltitle div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #bdd4e5;
    padding: 0 10px;
    z-index: 2;
    position: relative; }
  .smalltitle span {
    position: relative;
    display: block;
    padding: 6px;
    border-radius: 5px; }
    @media screen and (max-width: 980px) {
      .smalltitle span {
        padding: 12px; } }
  .smalltitle hr {
    position: absolute;
    top: 18%;
    left: 0;
    width: 100%;
    margin: 0;
    z-index: 0; }
    @media screen and (max-width: 980px) {
      .smalltitle hr {
        top: 20%; } }
    @media screen and (max-width: 480px) {
      .smalltitle hr {
        top: 22%; } }

strong {
  font-weight: 600; }

/*-----------------OTHER IMPORTS-----------------*/
nav {
  position: fixed;
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 9; }
  nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    background-color: #e24634;
    border-radius: 5px;
    padding: 5px 10px; }
    nav ul li {
      text-transform: uppercase;
      color: #faf9f6;
      display: block;
      font-size: 1.187rem; }
      @media screen and (max-width: 980px) {
        nav ul li {
          font-size: 1.9rem;
          width: -webkit-max-content;
          width: -moz-max-content;
          width: max-content; } }
      nav ul li:nth-of-type(1) {
        padding-right: 20px;
        border-right: 1px solid #faf9f6; }
      nav ul li:nth-of-type(2) {
        padding-left: 20px; }

.footer {
  background-color: #37393f;
  padding: 90px 0 90px 0;
  color: #faf9f6; }
  .footer_wrap {
    width: 97.1vw;
    margin: 0 auto; }
    @media screen and (max-width: 980px) {
      .footer_wrap {
        width: 88.26vw; } }
    .footer_wrap_top {
      padding-bottom: 90px;
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
      grid-column-gap: 3.75rem; }
      @media screen and (max-width: 980px) {
        .footer_wrap_top {
          -ms-grid-columns: (1fr)[6];
          grid-template-columns: repeat(6, 1fr);
          grid-column-gap: 3.4rem; } }
      .footer_wrap_top .logowrap {
        -ms-grid-column: 2;
        -ms-grid-column-span: 2;
        grid-column: 2 / span 2; }
        @media screen and (max-width: 980px) {
          .footer_wrap_top .logowrap {
            -ms-grid-column: 2;
            -ms-grid-column-span: 4;
            grid-column: 2 / span 4; } }
        .footer_wrap_top .logowrap img {
          position: relative;
          width: 80%; }
    .footer_wrap .linewrap {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
      grid-column-gap: 3.75rem; }
      @media screen and (max-width: 980px) {
        .footer_wrap .linewrap {
          -ms-grid-columns: (1fr)[6];
          grid-template-columns: repeat(6, 1fr);
          grid-column-gap: 3.4rem; } }
      .footer_wrap .linewrap hr {
        -ms-grid-column: 2;
        -ms-grid-column-span: 10;
        grid-column: 2 / span 10;
        border-bottom: none !important;
        border-top: 0.2px solid #faf9f6;
        margin: 0; }
        @media screen and (max-width: 980px) {
          .footer_wrap .linewrap hr {
            -ms-grid-column: 1;
            -ms-grid-column-span: 6;
            grid-column: 1 / span 6; } }
    .footer_wrap_bot {
      padding-top: 90px;
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
      grid-column-gap: 3.75rem; }
      @media screen and (max-width: 980px) {
        .footer_wrap_bot {
          -ms-grid-columns: (1fr)[6];
          grid-template-columns: repeat(6, 1fr);
          grid-column-gap: 3.4rem; } }
      .footer_wrap_bot ul {
        -ms-grid-column: 2;
        -ms-grid-column-span: 2;
        grid-column: 2 / span 2; }
        @media screen and (max-width: 980px) {
          .footer_wrap_bot ul {
            -ms-grid-column-span: 3 !important;
            grid-column: span 3 !important; } }
        .footer_wrap_bot ul:nth-of-type(2) {
          -ms-grid-column: 5;
          -ms-grid-column-span: 2;
          grid-column: 5 / span 2; }
        .footer_wrap_bot ul:nth-of-type(3) {
          -ms-grid-column: 8;
          -ms-grid-column-span: 2;
          grid-column: 8 / span 2; }
          @media screen and (max-width: 980px) {
            .footer_wrap_bot ul:nth-of-type(3) {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-orient: horizontal;
              -webkit-box-direction: normal;
              -ms-flex-direction: row;
              flex-direction: row;
              -ms-grid-column: 1 !important;
              -ms-grid-column-span: 6 !important;
              grid-column: 1 / span 6 !important;
              gap: 3.4rem;
              -webkit-box-pack: justify;
              -ms-flex-pack: justify;
              justify-content: space-between; }
              .footer_wrap_bot ul:nth-of-type(3) li {
                width: 50%; } }
        .footer_wrap_bot ul li {
          color: #faf9f6;
          padding-bottom: 15px;
          font-size: 1rem;
          font-family: Georgia, "serif"; }
          @media screen and (max-width: 980px) {
            .footer_wrap_bot ul li {
              text-align: center;
              font-size: 1.6rem; } }
          .footer_wrap_bot ul li span.sans {
            font-family: "Work Sans", "arial", "helvetica", sans-serif; }

.homepage_intro {
  height: 100vh;
  width: 100%;
  background-color: #e24634;
  color: #faf9f6;
  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;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1; }
  .homepage_intro.hide-scroll {
    background-color: #37393f; }
    .homepage_intro.hide-scroll .homepage_intro_wrap {
      opacity: 0; }
    .homepage_intro.hide-scroll .logowrap {
      opacity: 0; }
  .homepage_intro_wrap {
    width: 97.1vw;
    margin: 0 auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[12];
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 3.75rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
    @media screen and (max-width: 980px) {
      .homepage_intro_wrap {
        width: 88.26vw; } }
    @media screen and (max-width: 980px) {
      .homepage_intro_wrap {
        -ms-grid-columns: (1fr)[6];
        grid-template-columns: repeat(6, 1fr);
        grid-column-gap: 3.4rem; } }
    @media screen and (max-width: 980px) {
      .homepage_intro_wrap {
        -webkit-transform: translateY(-30%);
        -ms-transform: translateY(-30%);
        transform: translateY(-30%); } }
    .homepage_intro_wrap .imgwrap {
      -ms-grid-column: 6;
      -ms-grid-column-span: 2;
      grid-column: 6 / span 2;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; }
      @media screen and (max-width: 980px) {
        .homepage_intro_wrap .imgwrap {
          -ms-grid-column: 3;
          -ms-grid-column-span: 2;
          grid-column: 3 / span 2; } }
      .homepage_intro_wrap .imgwrap img {
        position: relative;
        width: 80px;
        height: auto;
        display: block; }
        @media screen and (max-width: 980px) {
          .homepage_intro_wrap .imgwrap img {
            width: 50%; } }
    .homepage_intro_wrap h1 {
      -ms-grid-column: 5;
      -ms-grid-column-span: 4;
      grid-column: 5 / span 4;
      text-align: center;
      padding-top: 30px; }
      @media screen and (max-width: 980px) {
        .homepage_intro_wrap h1 {
          -ms-grid-column: 2;
          -ms-grid-column-span: 4;
          grid-column: 2 / span 4;
          padding-top: 60px; } }
  .homepage_intro .logowrap {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 97.1vw;
    margin: 0 auto; }
    @media screen and (max-width: 980px) {
      .homepage_intro .logowrap {
        width: 88.26vw; } }
    .homepage_intro .logowrap img {
      width: 100%;
      padding: 0 1.45vw;
      padding-bottom: 60px;
      position: relative; }
      @media screen and (max-width: 980px) {
        .homepage_intro .logowrap img {
          padding: 0 5.87vw;
          padding-bottom: 80px; } }

.homepage_approccio {
  background-color: #bdd4e5;
  padding-top: 60px;
  margin-top: 100vh; }
  .homepage_approccio_wrap {
    width: 97.1vw;
    margin: 0 auto; }
    @media screen and (max-width: 980px) {
      .homepage_approccio_wrap {
        width: 88.26vw; } }
    .homepage_approccio_wrap .smalltitle {
      padding-bottom: 60px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      color: #faf9f6; }
      .homepage_approccio_wrap .smalltitle hr {
        border-top: 0.5px solid #faf9f6;
        border-bottom: none; }
      .homepage_approccio_wrap .smalltitle span {
        background-color: rgba(55, 57, 63, 0.1); }
    .homepage_approccio_wrap .textwrap {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
      grid-column-gap: 3.75rem;
      padding: 210px 0;
      text-align: center;
      color: #e24634; }
      @media screen and (max-width: 980px) {
        .homepage_approccio_wrap .textwrap {
          -ms-grid-columns: (1fr)[6];
          grid-template-columns: repeat(6, 1fr);
          grid-column-gap: 3.4rem; } }
      @media screen and (max-width: 980px) {
        .homepage_approccio_wrap .textwrap {
          padding: 30px 0 90px 0; } }
      .homepage_approccio_wrap .textwrap h3 {
        -ms-grid-column: 3;
        -ms-grid-column-span: 8;
        grid-column: 3 / span 8;
        padding-bottom: 30px; }
        @media screen and (max-width: 980px) {
          .homepage_approccio_wrap .textwrap h3 {
            -ms-grid-column: 1;
            -ms-grid-column-span: 6;
            grid-column: 1 / span 6; } }
        .homepage_approccio_wrap .textwrap h3:nth-last-of-type(1) {
          padding-bottom: 0; }

.homepage_serv {
  padding-top: 60px;
  background-color: #faf9f6; }
  @media screen and (max-width: 980px) {
    .homepage_serv {
      padding-top: 30px; } }
  .homepage_serv_top {
    width: 97.1vw;
    margin: 0 auto; }
    @media screen and (max-width: 980px) {
      .homepage_serv_top {
        width: 88.26vw; } }
    .homepage_serv_top .smalltitle {
      padding-bottom: 60px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      color: #faf9f6;
      color: #e24634; }
      @media screen and (max-width: 980px) {
        .homepage_serv_top .smalltitle {
          padding-bottom: 0; } }
      .homepage_serv_top .smalltitle hr {
        border-top: 0.5px solid rgba(55, 57, 63, 0.2);
        border-bottom: none; }
      .homepage_serv_top .smalltitle div {
        background-color: #faf9f6; }
      .homepage_serv_top .smalltitle span {
        background-color: rgba(55, 57, 63, 0.1); }
  .homepage_serv_list {
    width: 97.1vw;
    margin: 0 auto;
    margin: 0;
    padding: 60px 0; }
    @media screen and (max-width: 980px) {
      .homepage_serv_list {
        width: 88.26vw; } }
    @media screen and (max-width: 980px) {
      .homepage_serv_list {
        margin: 0 auto;
        padding: 0; } }
    .homepage_serv_list li {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
      grid-column-gap: 3.75rem;
      padding: 60px; }
      @media screen and (max-width: 980px) {
        .homepage_serv_list li {
          -ms-grid-columns: (1fr)[6];
          grid-template-columns: repeat(6, 1fr);
          grid-column-gap: 3.4rem; } }
      @media screen and (max-width: 980px) {
        .homepage_serv_list li {
          display: -webkit-box !important;
          display: -ms-flexbox !important;
          display: flex !important;
          -webkit-box-orient: vertical !important;
          -webkit-box-direction: reverse !important;
          -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
          padding: 60px 0; } }
      .homepage_serv_list li .imgwrap {
        -ms-grid-column: 1;
        -ms-grid-column-span: 6;
        grid-column: 1 / span 6;
        padding: 0 30px; }
        @media screen and (max-width: 980px) {
          .homepage_serv_list li .imgwrap {
            padding: 30px 0 0 0; } }
        .homepage_serv_list li .imgwrap img {
          position: relative;
          width: 100%; }
      .homepage_serv_list li .content {
        -ms-grid-column-span: 6;
        grid-column: span 6;
        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;
        text-align: center;
        color: #e24634;
        height: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; }
        .homepage_serv_list li .content .num {
          width: 60px;
          height: 60px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          border: 1px solid #e24634;
          border-radius: 50px;
          font-family: Georgia, "serif";
          font-variant-numeric: oldstyle-nums !important; }
          @media screen and (max-width: 980px) {
            .homepage_serv_list li .content .num {
              font-size: 2.6rem; } }
        .homepage_serv_list li .content h3 {
          padding: 180px 0; }
          @media screen and (max-width: 980px) {
            .homepage_serv_list li .content h3 {
              padding: 90px 0; } }
        .homepage_serv_list li .content .textwrap {
          padding: 0 25%; }
          @media screen and (max-width: 980px) {
            .homepage_serv_list li .content .textwrap {
              padding: 0;
              min-height: 250px; } }
      .homepage_serv_list li:nth-of-type(2n) .content {
        -ms-grid-column: 1;
        -ms-grid-column-span: 6;
        grid-column: 1 / span 6;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        grid-row: 1 / span 1; }
      .homepage_serv_list li:nth-of-type(2n) .imgwrap {
        -ms-grid-column-span: 6;
        grid-column: span 6; }

@media screen and (max-width: 980px) {
  .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    position: absolute;
    top: 10%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    gap: 10px; }
    .slick-dots li {
      width: 8px;
      height: 8px !important;
      background-color: #e24634;
      border-radius: 10px;
      padding: 0;
      background-color: rgba(55, 57, 63, 0.2);
      -webkit-transition: background-color 0.4s ease;
      -o-transition: background-color 0.4s ease;
      transition: background-color 0.4s ease; }
      .slick-dots li.slick-active {
        background-color: #e24634; } }

@media screen and (max-width: 480px) {
  .slick-dots {
    top: 14%; } }

.slick-dots li button {
  text-indent: -9999px;
  font-size: 0;
  padding: 0; }

.chisiamo_intro {
  padding-top: 120px;
  height: 100vh;
  color: #faf9f6;
  background-color: #37393f;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  @media screen and (max-width: 980px) {
    .chisiamo_intro {
      height: auto; } }
  .chisiamo_intro_wrap {
    width: 97.1vw;
    margin: 0 auto; }
    @media screen and (max-width: 980px) {
      .chisiamo_intro_wrap {
        width: 88.26vw; } }
    .chisiamo_intro_wrap .smalltitle {
      padding-bottom: 60px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      color: #e24634; }
      .chisiamo_intro_wrap .smalltitle hr {
        border-bottom: none;
        border-top: 1px solid #e24634; }
      .chisiamo_intro_wrap .smalltitle span {
        background-color: rgba(226, 70, 52, 0.1); }
      .chisiamo_intro_wrap .smalltitle div {
        background-color: #37393f; }
    .chisiamo_intro_wrap .textwrap {
      position: absolute;
      top: 40%;
      left: 0;
      width: 100%;
      padding: 0 1.45vw;
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
      grid-column-gap: 3.75rem; }
      @media screen and (max-width: 980px) {
        .chisiamo_intro_wrap .textwrap {
          -ms-grid-columns: (1fr)[6];
          grid-template-columns: repeat(6, 1fr);
          grid-column-gap: 3.4rem; } }
      @media screen and (max-width: 980px) {
        .chisiamo_intro_wrap .textwrap {
          position: relative;
          padding: 0; } }
      .chisiamo_intro_wrap .textwrap h3 {
        -ms-grid-column: 3;
        -ms-grid-column-span: 8;
        grid-column: 3 / span 8;
        text-align: center;
        padding-bottom: 30px; }
        @media screen and (max-width: 980px) {
          .chisiamo_intro_wrap .textwrap h3 {
            -ms-grid-column: 1;
            -ms-grid-column-span: 6;
            grid-column: 1 / span 6;
            padding-bottom: 60px; } }

.chisiamo_team {
  padding: 120px 0;
  width: 97.1vw;
  margin: 0 auto; }
  @media screen and (max-width: 980px) {
    .chisiamo_team {
      width: 88.26vw; } }
  @media screen and (max-width: 980px) {
    .chisiamo_team {
      padding: 90px 0; } }
  .chisiamo_team_list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[12];
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 3.75rem;
    grid-row-gap: 30px; }
    @media screen and (max-width: 980px) {
      .chisiamo_team_list {
        -ms-grid-columns: (1fr)[6];
        grid-template-columns: repeat(6, 1fr);
        grid-column-gap: 3.4rem; } }
    @media screen and (max-width: 980px) {
      .chisiamo_team_list {
        grid-row-gap: 90px; } }
    .chisiamo_team_list li {
      -ms-grid-column-span: 6;
      grid-column: span 6;
      color: #e24634; }
      .chisiamo_team_list li .imgwrap {
        width: 100%; }
        .chisiamo_team_list li .imgwrap img {
          position: relative;
          width: 100%;
          display: block; }
      .chisiamo_team_list li h4 {
        padding: 25px 0; }
      .chisiamo_team_list li a {
        margin-top: 25px;
        display: inline-block;
        opacity: 0.5;
        -webkit-transition: opacity 0.4s ease;
        -o-transition: opacity 0.4s ease;
        transition: opacity 0.4s ease; }
        .chisiamo_team_list li a:hover {
          opacity: 1; }
