
.main_section .credit {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #000;
}
.main_section .options {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  min-width: 200px;
  max-width: 740px;
  width: calc(100% - 100px);
  height: 400px;
}
@media screen and (max-width: 718px) {
  .main_section .options {
    min-width: 520px;
  }
  .main_section .options .option:nth-child(5) {
    display: none;
  }
}
@media screen and (max-width: 638px) {
  .main_section .options {
    min-width: 440px;
  }
  .main_section .options .option:nth-child(4) {
    display: none;
  }
}
@media screen and (max-width: 558px) {
  .main_section .options {
    min-width: 360px;
  }
  .main_section .options .option:nth-child(3) {
    display: none;
  }
}
@media screen and (max-width: 478px) {
  .main_section .options {
    min-width: 280px;
  }
  .main_section .options .option:nth-child(2) {
    display: none;
  }
}
.main_section .options .option {
  position: relative;
  overflow: hidden;
  min-width: 60px;
  margin: 10px;
  background: var(--optionBackground, var(--defaultBackground, #E6E9ED));
  background-size: auto 120%;
  background-position: center;
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
.main_section .options .option:nth-child(1) {
  --defaultBackground:#ED5565;
}
.main_section .options .option:nth-child(2) {
  --defaultBackground:#FC6E51;
}
.main_section .options .option:nth-child(3) {
  --defaultBackground:#FFCE54;
}
.main_section .options .option:nth-child(4) {
  --defaultBackground:#2ECC71;
}
.main_section .options .option:nth-child(5) {
  --defaultBackground:#5D9CEC;
}
.main_section .options .option:nth-child(6) {
  --defaultBackground:#AC92EC;
}
.main_section .options .option.active {
  flex-grow: 10000;
  transform: scale(1);
  max-width: 600px;
  margin: 0px;
  border-radius: 40px;
  background-size: auto 100%;
  /*&:active {
     transform:scale(0.9);
  }*/
}
.main_section .options .option.active .shadow {
  box-shadow: inset 0 -120px 120px -120px black, inset 0 -120px 120px -100px black;
}
.main_section .options .option.active .label {
  bottom: 20px;
  left: 20px;
}
.main_section .options .option.active .label .info > div {
  left: 0px;
  opacity: 1;
}
.main_section .options .option:not(.active) {
  flex-grow: 1;
  border-radius: 30px;
}
.main_section .options .option:not(.active) .shadow {
  bottom: -40px;
  box-shadow: inset 0 -120px 0px -120px black, inset 0 -120px 0px -100px black;
}
.main_section .options .option:not(.active) .label {
  bottom: 15px;
  left: 5px;
}
.main_section .options .option:not(.active) .label .info > div {
  left: 20px;
  opacity: 0;
}
.main_section .options .option .shadow {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 120px;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
.main_section .options .option .label {
  display: flex;
  position: absolute;
  right: 0px;
  height: 40px;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
.main_section .options .option .label .icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-width: 50px;
  max-width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: white;
  color: var(--defaultBackground);
}
.icons_flat_1 {
  background-image: url(../images/idea.svg);
  height: 100px;
  width: 100px;
}
.icons_flat_2 {
  background-image: url(../images/laborers.svg);
  height: 100px;
  width: 100px;
}
.icons_flat_3 {
 background-image: url(../images/shield.svg);
 height: 100px;
 width: 100px;
}
.icons_flat_4 {
  background-image: url(../images/gears.svg);
  height: 100px;
  width: 100px;
}
.icons_flat_5 {
  background-image: url(../images/clipboard.svg);
  height: 100px;
  width: 100px;
}
.icon-mob i{
  display: block;
   margin-left: auto;
   margin-right: auto
}
.main_section .options .option .label .icon .icons_flat_1 {
  /* background-image: url(../images/green-energy.svg); */
  background-image: url(../images/idea.svg);
  height: 30px;
  width: 30px;
}
.main_section .options .option .label .icon .icons_flat_2 {
  background-image: url(../images/laborers.svg);
  height: 30px;
  width: 30px;
}
.main_section .options .option .label .icon .icons_flat_3 {
  background-image: url(../images/shield.svg);
  height: 30px;
  width: 30px;
}
.main_section .options .option .label .icon .icons_flat_4 {
  background-image: url(../images/gears.svg);
  height: 30px;
  width: 30px;
}
.main_section .options .option .label .icon .icons_flat_5 {
  background-image: url(../images/clipboard.svg);
  height: 30px;
  width: 30px;
}
.main_section .options .option .label .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 10px;
  color: white;
  white-space: pre;
}
.main_section .options .option .label .info > div {
  position: relative;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95), opacity 0.5s ease-out;
}
.main_section .options .option .label .info .main {
  font-weight: bold;
  font-size: 1.2rem;
}
.main_section .options .option .label .info .sub {
  transition-delay: 0.1s;
}

.main-ver{
  text-align: center;
}

.radius{
  padding: 30px;
    width: 80%;
    background-color: aliceblue;
    border-radius: 20px;
    margin: auto;
}
.mobile-ver{
      margin: 20px 0px 20px 0;

}
.mobile-ver:last-child{
  margin-bottom: 40px;
}
@media only screen and (max-width: 500px) {
.main_section{
  display: none;
}
.offBigDisp{
  display: block!important;
}
.divPar1{
  margin-top: 70px;
}
}
.clearfix li a img{
  padding:0 20px 0 20px;
}
@media only screen and (max-width: 1200px) and (max-height: 500px) {
  .offdisp{
    display: none;
  }
.podk{
  margin-top: 100px;

}
  /*.divPar1{*/
  /*  width: calc(100% - 10px)!important;*/
  /*}*/
  .contacti{
    margin-top: 600px;
  }
  #sek2{
    width: calc(100% - 100px);
    margin-top: 900px;
  }
  .formaz{
    width: 100%;

  }
  .krug{
    display: none;
  }
  .cont{
    max-width: 100%;
  }
  .divImg{
    zoom:50%;
  }
  .divT{
    width: 40%;
  }
  .divPar1{
    width: 100%;
  }
  .podkD1{
    max-width: 650px;
    margin-left: 10%;
    float: none;
  }
  .slick-dots{

      bottom: 10px!important;

    }
.section-video-promo{
display:none;
}
}
@media (max-width: 480px){
  .slick-dots{

    bottom: 10px!important;

  }
}
.main_section .options .option .label .info{
max-width: 200px;
white-space: pre-wrap;
}
/*# sourceMappingURL=style.css.map */
