<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/******** breadcrumbs ********/
.breadcrumbs {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding: 1.2rem 4rem;
  border-bottom: 1px solid #f1f1f1;
}

.breadcrumbs &gt; * {
  align-self: center;
  font-size: 1.2rem;
  line-height: 2.2rem;
  letter-spacing: 0;
}
.breadcrumbs &gt; a {
  display: flex;
  cursor: pointer;
}
.breadcrumbs &gt; a:first-child:after {
  content: "";
  width: 1px;
  height: 1.2rem;
  align-self: center;
  margin: 0 1.4rem;
}
.breadcrumbs &gt; a:nth-child(n + 2):after {
  content: "";
  width: 4px;
  height: 1px;
  align-self: center;
  margin: 0 1rem;
}

@media only screen and (max-width: 767px) {
  .breadcrumbs {
    padding: 1.2rem 2rem;
  }
}

/******** innerPage ********/
.wrapperPage {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
}

.wrapperPage .w40 {
  flex-basis: 40%;
  max-width: 40%;
  position: relative;
}

.wrapperPage .w60 {
  flex-basis: 60%;
  max-width: 60%;
  position: relative;
}

.wrapperPage.withSide .w40 {
  flex-basis: 44.444444%;
  max-width: 44.444444%;
}

.wrapperPage.withSide .w60 {
  flex-basis: 55.5555555%;
  max-width: 55.55555%;
}

@media only screen and (max-width: 1250px) {
  /*
	.wrapperPage .w60,.wrapperPage .w40{
		width:50%;
		max-width:50%;
		flex-basis:50%;
	}
*/
  .wrapperPage .w60 .padding {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media only screen and (max-width: 992px) {
  .wrapperPage .w40,
  .wrapperPage .w60,
  .wrapperPage.withSide .w40,
  .wrapperPage.withSide .w60 {
    width: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .wrapperPage .w60 .padding {
    padding: 4rem;
  }
}

@media only screen and (max-width: 767px) {
  .wrapperPage .w60 .padding {
    padding: 2rem;
  }
}

/******** notify **********/
._notify {
  position: fixed;
  bottom: 4rem;
  width: 33.33%;
  left: 50%;
  z-index: 999;
  transform: translateX(-50%);
  transition: all 2s !important;
  padding: 4rem;
}

._notify.error {
  background: #ff5e62;
  background: -webkit-linear-gradient(to right, #ff9966, #ff5e66);
  background: linear-gradient(to right, #ff9966, #ff5e66);
  color: white;
}
._notify.success {
  background: #9ec41a;
  background: -moz-linear-gradient(45deg, #4caf50 0%, #9ec41a 100%);
  background: -webkit-linear-gradient(45deg, #4caf50 0%, #9ec41a 100%);
  background: linear-gradient(45deg, #4caf50 0%, #9ec41a 100%);
  color: white;
}

/******** numeric wizard ********/
.numericWizard ol {
  list-style: none;
  padding-left: 0;
  counter-reset: olItems;
}

.numericWizard ol &gt; li &gt; strong {
  margin-bottom: 1rem;
  display: block;
}

.numericWizard ol &gt; li {
  position: relative;
  padding-left: 6rem;
  margin-bottom: 4rem;
}

.numericWizard ol &gt; li:before {
  position: absolute;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  left: 0;
  text-align: center;
  line-height: 3.6rem;
  top: -0.6rem;
  font-family: "Barlow";
  font-weight: bold;
  counter-increment: olItems;
  content: counter(olItems);
  display: block;
  font-size: 1.6rem;
  color: #0090d2;
  border: 1px solid #0090d2;
}

/******** page detail **********/
.pageDetail .w40 {
  margin-top: 13rem;
  z-index: 1;
}
.pageDetailHeader {
  padding: 6rem 0 4rem;
  margin-bottom: 4rem;
  position: relative;
}

.pageDetailHeader:after {
  content: "";
  width: 90vw;
  position: absolute;
  left: -46vw;
  top: 0;
  height: 100%;
}

.pageDetailHeader &gt; * {
  position: relative;
  z-index: 1;
}

.pageDetailHeader &gt; h1 {
  margin-bottom: 2rem;
}

.pageDetailList {
  margin-bottom: 2rem;
  padding-top: 2rem;
}

.pageDetailList ul {
  margin-top: 1.5rem;
}

.product-detail-slideshow .slideshow,
.product-detail-slideshow .slideshow .slide,
.product-detail-slideshow .slideshow .slide &gt; div {
  height: 70vh;
}
.product-detail-slideshow .slide img {
  max-height: 100%;
}

.product-detail-slideshow .slick-dots {
  display: none !important;
}

.lifecycle-box {
  background: #f3f8fe;
  text-align: center;
  padding: 2rem;
  width: 40rem;
}
.lifecycle-box span {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  overflow: hidden;
  border-radius: 50%;
  background: #89bf5c;
  vertical-align: middle;
  margin-top: -0.3rem;
  margin-left: 0.8rem;
}
.lifecycle-box.active_mature span {
  background: #3d8500;
}
.lifecycle-box.end_of_life span {
  background: #f0c144;
}
.lifecycle-box.discontinued span {
  background: #b82f3f;
}
.lifecycle-box a strong {
  color: #47545c;
}

.lifecycle-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #f5f5f5;
  padding: 5px 10px 5px 10px;
}
.lifecycle-label i {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  margin-right: 1rem;
  margin-top: -4px;
}
.lifecycle-label.active i {
  background: #89bf5c;
}
.lifecycle-label.active_mature i {
  background: #3d8500;
}
.lifecycle-label.end_of_life i {
  background: #f0c144;
}
.lifecycle-label.discontinued i {
  background: #b82f3f;
}

.product-detail-slideshow &gt; div.relative {
  max-height: 100%;
}
.product-detail-slideshow .slideshow, .product-detail-slideshow .slideshow .slide, .product-detail-slideshow .slideshow .slide &gt; div {
  height: 50rem;
}

@media only screen and (max-width: 1680px) {
  .productDetailPage .mainTitle {
    font-size: 8rem;
  }
}

@media only screen and (max-width: 1400px) {
  .product-detail-slideshow {
    max-height: 55rem;
  }
  .productDetailPage .mainTitle {
    font-size: 7rem;
  }
}

@media only screen and (max-width: 1250px) {
  .pageDetailHeader:after {
    width: 95vw;
    left: -45vw;
  }
  .productDetailPage .mainTitle {
    font-size: 6rem;
    line-height: 6.4rem;
  }
  .product-detail-slideshow .slideshow, .product-detail-slideshow .slideshow .slide, .product-detail-slideshow .slideshow .slide &gt; div {
    height: 40rem;
  }
}

@media only screen and (max-width: 992px) {
  .pageDetailHeader:after {
    width: 100vw;
    left: -4rem;
  }
  .pageDetail .w40 {
    margin-top: 0;
  }
  .pageDetailHeader:after {
    display: none;
  }
  .product-detail-slideshow .mainTitle {
    font-size: 6.4rem;
    line-height: 6.8rem;
  }
  .product-detail-slideshow .mainSubtitle {
    font-size: 3rem;
  }
  .product-detail-slideshow {
    height: 60rem;
  }
}

@media only screen and (max-width: 767px) {
  .pageDetailHeader {
    padding: 2rem 0 2rem;
  }
  .product-detail-slideshow .slideshow,
  .product-detail-slideshow .slideshow .slide,
  .product-detail-slideshow .slideshow .slide &gt; div {
    height: 17rem;
  }
  .product-detail-slideshow .mainTitle {
    font-size: 4rem;
    line-height: 4rem;
  }
  .product-detail-slideshow .mainSubtitle {
    font-size: 3rem;
  }

  .product-detail-slideshow {
    max-height: 65rem;
    height: 65rem;
  }

  .lifecycle-box {
    position: relative;
    bottom: auto;
    width: 100%;
    margin-top: 5rem;
  }
}

/********** pagination **********/
.paginationNav {
  display: flex;
  padding: 4rem 6rem;
  justify-content: center;
}

.paginationNav &gt; * {
  width: 3.6rem;
  height: 3.6rem;
  text-align: center;
  border-radius: 50%;
  line-height: 3.6rem;
}

.paginationNav .disabled {
  opacity: 0.2;
  pointer-events: none;
}

.paginationNav &gt; .selected {
  border: 2px solid #0090d2;
}

.pagination {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.pagination &gt; * {
  display: flex;
  padding: 3rem 0;
  justify-content: space-between;
  border-bottom: 1px solid #e7e7e7;
  align-items: center;
}

.pagination &gt; * &gt; *:first-child {
  flex-grow: 1;
}

.pagination &gt; * &gt; * {
  padding: 0 5rem;
}

@media only screen and (max-width: 767px) {
  .pagination &gt; * &gt; * {
    padding: 0 1rem;
  }
}

/***** tabulation *******/
.tabulationContent {
  margin-top: 2rem;
}
.tabulationContent ul.contextmenu.visible {
  display: none;
}

.tabulation-select {
  color: #0090d2;
  display: block;
  width: 100%;
  box-shadow: 0 0 0 1px #0090d2 inset;
  font-weight: bold;
}

.tabulation-select-wrapper &gt; span {
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  color: #0090d2;
}

/***** tooltip ********/
.qtip {
  display: inline-block;
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.25s ease-in-out;
}
/*the tip*/
.qtip:before {
  content: attr(data-tip);
  font-size: 14px;
  position: absolute;
  background: white;
  color: #46535c;
  font-family: "Barlow";
  font-size: 1.3rem;
  line-height: 1.6rem;
  padding: 2rem;
  box-shadow: 0 2rem 4rem rgba(28, 38, 104, 0.4);
  min-width: 33vw;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 99;
}
.qtip:after {
  width: 0;
  height: 0;
  border-style: solid;
  content: "";
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.qtip:hover:before,
.qtip:hover:after {
  visibility: visible;
  opacity: 1;
}
/*top*/
.qtip.tip-top:before {
  top: 0;
  left: 50%;
  transform: translate(-50%, calc(-100% - 8px));
  box-sizing: border-box;
}
.qtip.tip-top:after {
  border-width: 8px 8px 0 8px;
  border-color: white transparent transparent transparent;
  top: -8px;
  left: 50%;
  transform: translate(-50%, 0);
}
/*bottom*/
.qtip.tip-bottom:before {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, calc(100% + 8px));
  box-sizing: border-box;
}
.qtip.tip-bottom:after {
  border-width: 0 8px 8px 8px;
  border-color: transparent transparent white transparent;
  bottom: -8px;
  left: 50%;
  transform: translate(-50%, 0);
}
/*left*/
.qtip.tip-left:before {
  left: 0;
  top: 50%;
  transform: translate(calc(-100% - 8px), -50%);
  box-sizing: border-box;
}
.qtip.tip-left:after {
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent white;
  left: -8px;
  top: 50%;
  transform: translate(0, -50%);
}
/*right*/
.qtip.tip-right:before {
  right: 0;
  top: 50%;
  transform: translate(calc(100% + 8px), -50%);
  box-sizing: border-box;
}
.qtip.tip-right:after {
  border-width: 8px 8px 8px 0;
  border-color: transparent white transparent transparent;
  right: -8px;
  top: 50%;
  transform: translate(0, -50%);
}

@media only screen and (max-width: 992px) {
  .qtip:before {
    min-width: 66vw;
  }
  .qtip.tip-bottom:before {
    left: 0;
    transform: translate(0, calc(100% + 8px));
  }
}

/************* modal ***********/
.modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 18;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.modal &gt; span {
  background: rgba(51, 60, 68, 0.8);
  top: 0;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.modal .innerModal {
  background: white;
}

.modal &gt; div {
  width: auto;
  height: auto;
  max-width: 50vw;
  max-height: 100vh;
  overflow-y: auto;
  padding: 8rem 11.5rem;
  z-index: 11;
  position: relative;
}

.modal &gt; div .closeButton {
  color: white;
  font-size: 1rem;
  position: absolute;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
  height: 3.6rem;
  width: 3.6rem;
  border-radius: 50%;
  text-align: center;
  line-height: 3.6rem;
  background: #0090d2;
}

.modal &gt; div h2 {
  text-align: center;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 992px) {
  .modal &gt; div {
    padding: 8rem 4rem;
    min-width: 50vw;
  }
}

@media only screen and (max-width: 767px) {
  .modal &gt; div {
    min-width: 80vw;
  }
}

/********** sidenav ************/
.sideNav {
  position: relative;
  top: 0;
  right: 0 !important;
  left: auto !important;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: width 0.5s 0s, height 0.5s 0s;
  z-index: 2;
}

.sideNav:hover {
  width: 30vw !important;
  transition: width 0.5s 0s;
}

.sideNav.noHover:hover {
  width: 100% !important;
}

.sideNav a {
  display: flex;
  width: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.sideNav a._current &gt; i::before {
  border: 1px solid white;
}

.sideNav a &gt; i {
  width: 3.6rem;
  height: 3.6rem;
  position: relative;
}

.sideNav a &gt; i:before {
  content: "â€¢";
  display: inline-block;
  font-size: 1.4rem;
  line-height: 3.6rem;
  text-align: center;
  font-style: normal;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  color: white;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0);
  transition: border 0.2s ease;
  -moz-transition: border 0.2s ease;
  -webkit-transition: border 0.2s ease;
  -o-transition: border 0.2s ease;
  -ms-transition: border 0.2s ease;
}

.sideNav a strong {
  opacity: 0;
  visibility: hidden;
  width: 0;
  white-space: nowrap;
  margin-left: 0rem;
  transition: all 0.6s 0s;
  margin-left: 0;
}

.sideNav:hover a i {
  flex-basis: 30%;
  text-align: right;
  padding-right: 1rem;
}

.sideNav:hover a strong {
  width: auto;
  flex-basis: 70%;
  padding-left: 1rem;
  text-align: left;
  opacity: 1;
  visibility: visible;
  transition: all 0.6s 0.3s;
}

.sideNav a.active &gt; i:before {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media only screen and (max-width: 1600px) {
  .sideNav:hover {
    width: 50vw !important;
  }
}

@media only screen and (max-width: 992px) {
  .sideNav {
    background: #47545c;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
  }

  .sideNav .trigger {
    color: #ffffff;
    position: relative;
    left: 0;
    text-align: center;
    font-family: "Barlow";
    font-weight: bold;
    padding: 0;
    line-height: 3.6rem;
    padding: 1rem 4rem;
    display: block;
    width: 100%;
  }

  .sideNav a {
    flex-direction: column;
    justify-content: center;
    display: none !important;
    color: white;
  }

  .sideNav a &gt; i {
    display: none;
  }

  .sideNav:hover {
    width: 100% !important;
  }

  .sideNav:hover a strong {
    width: auto;
    flex-basis: 100%;
    padding-left: 0;
  }

  .sideNav._open .trigger {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .sideNav._open a {
    display: block !important;
    padding: 0.5rem 0;
  }

  .sideNav._open {
    padding-bottom: 2rem;
  }

  .sideNav &gt; span {
    cursor: pointer;
    transition: margin 0.5s;
  }

  .sideNav._open &gt; span {
    margin-bottom: 2rem;
  }

  .sideNav a strong {
    opacity: 1;
    visibility: visible;
  }
}

/********** login download **********/
.loginDownload {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.loginDownload form {
  display: flex;
  flex-direction: column;
}
.loginDownload form button {
  align-self: flex-end;
}
.loginDownload &gt; div:first-child {
  padding-right: 2.5vw;
}
.loginDownload &gt; div:last-child {
  padding-left: 2.5vw;
}
.loginDownload h3 {
  padding-bottom: 2rem;
}
.loginDownload .formControlSmall {
  position: relative;
}
.loginDownload .formControlSmall:before {
  color: white;
  position: absolute;
  top: 0.5rem;
  left: 0;
  font-family: "icomoon";
}
.loginDownload .formControlSmall.username:before {
  content: "\e904";
}
.loginDownload .formControlSmall.password:before {
  content: "\e913";
  font-size: 2rem;
}
.loginDownload .formControlSmall input {
  padding-left: 3rem;
}
.loginDownload .formControlSmall#inputOTPSmall input {
  padding-left: 0;
}
.loginDownload ::-webkit-input-placeholder {
  color: #ffffff;
  font-family: "Barlow";
}
.loginDownload :-moz-placeholder {
  color: #ffffff;
  font-family: "Barlow";
  opacity: 1;
}
.loginDownload ::-moz-placeholder {
  color: #ffffff;
  font-family: "Barlow";
  opacity: 1;
}
.loginDownload :-ms-input-placeholder {
  color: #ffffff;
  font-family: "Barlow";
}

@media only screen and (max-width: 992px) {
  .loginDownload &gt; div:first-child {
    padding-right: 0;
  }
  .loginDownload &gt; div:last-child {
    padding-left: 0;
  }
  .loginDownload form {
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 4rem;
    justify-content: flex-end;
  }
  .loginDownload .formControlSmall.username {
    padding-right: 3rem;
  }
  .loginDownload .formControlSmall.password {
    padding-left: 3rem;
  }
  .loginDownload .formControlSmall.password::before {
    left: 3rem;
  }
}

@media only screen and (max-width: 767px) {
  .loginDownload form {
    justify-content: center;
  }
  .loginDownload .formControlSmall.username {
    padding-right: 0;
  }
  .loginDownload .formControlSmall.password {
    padding-left: 0;
  }
  .loginDownload .formControlSmall.password::before {
    left: 0;
  }
}

/********** page navigation ***********/
#page-navigation {
  position: fixed;
  width: 10vw;
  height: 100vh;
  padding-top: 70px;
  right: 0;
  top: 0;
  z-index: 1;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
}

#page-navigation.active {
  width: 30vw;
}

#page-navigation &gt; div {
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
}

#page-navigation ul {
  width: 100%;
}

#page-navigation ul li a {
  position: relative;
  text-align: left;
  display: block;
  margin: 0 auto;
  padding-left: 3.8rem;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  line-height: 3.8rem;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
}

#page-navigation ul li a:before {
  content: "â€¢";
  font-size: 1.6rem;
  line-height: 3.6rem;
  width: 3.6rem;
  height: 3.6rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0);
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

#page-navigation ul li a:hover:before,
#page-navigation ul li a.active:before {
  border: 1px solid rgba(255, 255, 255, 0.25);
}

#page-navigation.active ul {
  text-align: left;
}

#page-navigation.active ul li a {
  width: 50%;
  padding-left: 5.6rem;
}

@media only screen and (max-width: 1600px) {
  #page-navigation.active {
    width: 50vw;
  }
  #page-navigation.active ul li a {
    width: 40%;
  }
}
@media only screen and (max-width: 992px) {
  #page-navigation {
    position: fixed;
    width: 11.8rem;
    padding-top: 7.6rem;
  }
  #page-navigation.active ul li a {
    width: 60%;
  }
}
@media only screen and (max-width: 767px) {
  #page-navigation {
    display: none;
  }
}

/*********** single page ***********/
.singlePage {
  display: flex;
  flex-direction: row-reverse;
}

.singlePage .side {
  width: 10%;
  z-index: 12;
  flex-basis: 10%;
}

.singlePage .main {
  width: 90%;
  max-width: 90%;
  flex-basis: 90%;
  background: #f5f5f5;
  background: -moz-linear-gradient(top, #f5f5f5 0%, #ffffff 100vh);
  background: -webkit-linear-gradient(top, #f5f5f5 0%, #ffffff 100vh);
  background: linear-gradient(to bottom, #f5f5f5 0%, #ffffff 100vh);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#ffffff',GradientType=0 );
}

.singlePage .side .innerSide {
  height: 100%;
  width: 100%;
  display: flex;
  position: relative;
}

.singlePageSection {
  display: flex;
  padding: 10rem 0;
  width: 100%;
}

/* VALUTARE CHE NON COMPROMETTA LA GRAFICA IN ALTRE PAGINE */

.singlePageSection .mainTitle {
  margin-bottom: 2rem;
  padding-right: 2rem;
}

.singlePageSection .occhielloTitle {
  margin-bottom: 2rem;
  margin-top: 2rem;
  font-weight: normal;
}

.singlePageSection .title,
.singlePageSection .payoffTitle {
  margin-bottom: 3rem;
  padding-right: 2rem;
}

.singlePageSection:first-of-type {
  padding-top: 0;
}

.singlePageSection article {
  position: relative;
}

@media only screen and (max-width: 992px) {
  .singlePage,
  .singlePageSection {
    flex-direction: column;
  }
  .singlePageSection {
    padding: 8rem 0;
    min-height: auto;
  }
  .singlePage .side,
  .singlePage .main {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
  .singlePage .side {
    position: fixed;
    z-index: 2;
    bottom: 0;
  }
}

/********** select *********/
.select {
  width: 100%;
  padding: 1rem 0;
  display: block;
  transition: border 0.5s;
  resize: none;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.select._selectOpen {
  border-bottom: 1px solid rgba(255, 255, 255, 1);
}

.select ul {
  position: absolute;
  background: white;
  width: 100%;
  z-index: 1;
  cursor: pointer;
  margin-top: 2rem;
}

.select ul &gt; li {
  padding: 0.5rem 2rem;
}

.select ul &gt; li:hover,
.select ul &gt; li._select {
  background-color: #008fd2;
  color: white;
}

.select &gt; span {
  color: white;
  display: block;
  width: 100%;
  cursor: pointer;
  font-family: "Barlow";
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .select._selectOpen ul {
    position: fixed;
    width: 80%;
    left: 10%;
    top: 2rem;
    z-index: 20;
  }
  .select._selectOpen:after {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    content: "";
    z-index: 19;
  }
}

/******* form control **********/
.formControl:nth-child(2n) {
  padding-left: 3rem;
}
.formControl:nth-child(2n + 1) {
  padding-right: 3rem;
}
.formControl.textarea,
.formControl.upload {
  padding-left: 0;
  padding-right: 0;
}
.formControl.withLateralPadding {
  padding-left: 0.5rem;
}
.formControl.withoutPaddingRight {
  padding-right: 0.5rem;
}
.formControl.fullWidth {
  width: 100%;
}
.formControl,
.formControlSmall {
  margin-bottom: 3rem;
}
.formControl.upload {
  margin-bottom: 5rem;
}
.formControl input,
.formControl textarea,
.formControlSmall input {
  width: 100%;
  padding: 1rem 0;
  display: block;
  transition: border 0.5s;
  resize: none;
}
.formControl._blur input,
.formControl._blur textarea,
.formControlSmall._blur input {
  border-color: rgba(255, 255, 255, 0.1);
}
.formControl._focus input,
.formControl._focus textarea,
.formControlSmall._focus input {
  border-color: white;
}
.formControlWrapper {
  margin-top: 6rem;
}
.formControlWrapper .checkbox {
  margin-bottom: 3rem;
}
.formSubmit {
  flex-direction: row-reverse;
  display: flex;
  margin-top: 2rem;
}

@media only screen and (max-width: 1250px) {
  .formControl:nth-child(2n + 1),
  .formControl:nth-child(2n) {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 992px) {
  .formControl:nth-child(2n) {
    padding-left: 3rem;
  }
  .formControl:nth-child(2n + 1) {
    padding-right: 3rem;
  }
  .formControl.textarea {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .formControl:nth-child(2n + 1),
  .formControl:nth-child(2n) {
    padding-left: 0;
    padding-right: 0;
  }
  .formSubmit {
    justify-content: center;
  }
}

/******* accordion *********/
.accordion {
  margin-top: 3rem;
  border-bottom: 1px solid #e7e7e7;
}
.accordion-header {
  cursor: pointer;
  position: relative;
  border-top: 1px solid #e7e7e7;
  padding: 3rem 6rem;
  line-height: 3.6rem;
  transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
}
.accordion .accordion-header:first-of-type {
  border-top: none;
}
.accordion-header:before {
  content: "\e912";
  font-family: "icomoon";
  position: absolute;
  top: 3rem;
  left: 0;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background-color: #0090d2;
  border: 1px solid transparent;
  color: white;
  text-align: center;
  line-height: 3.6rem;
  transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
}
.accordion-header:hover:before {
  background-color: white;
  color: #0090d2;
  border: 1px solid #0090d2;
}
.active.accordion-header:before {
  content: "\e911";
  background-color: white;
  color: #0090d2;
  border: 1px solid #0090d2;
}
.accordion-content {
  display: none;
  padding-left: 6rem;
  padding-bottom: 8rem;
}
.accordion-content &gt; div {
  display: flex;
  flex-direction: row-reverse;
}
.accordion-content &gt; div:last-child {
  padding-right: 2.5vw;
}
.accordion-content .images {
  max-width: 33.333333333333336%;
  padding-left: 2.5vw;
}
.accordion-content .images img {
  margin-bottom: 7rem;
}

@media only screen and (max-width: 992px) {
  .accordion-content &gt; div {
    display: flex;
    flex-direction: column;
  }
  .accordion-content .images {
    min-width: 100%;
    max-width: 100%;
    padding-top: 4rem;
    padding-left: 0;
    /* 	    display: flex; */
    order: 2;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
  }
  .accordion-content .images img {
    margin-bottom: 4rem;
    min-width: 33.333333333333336%;
    max-width: 33.333333333333336%;
  }
}

@media only screen and (max-width: 767px) {
  .accordion-header {
    line-height: 2.4rem;
    padding: 2.5rem 0 2.5rem 3rem;
  }
  .accordion-header:before {
    top: 2.6rem;
    width: 1.8rem;
    height: 1.8rem;
    line-height: 1.8rem;
    font-size: 1.4rem;
  }
  .accordion-content {
    padding-left: 3rem;
    padding-bottom: 6rem;
  }
}
</pre></body></html>