﻿body.business-accidente-colectiv {
  padding-top: 50px;
  background-color: #fff;
}

.business-accidente-colectiv--cards {
  padding: 100px 0 120px 0;
  display: flex;
  justify-content: space-between;
}

.business-accidente-colectiv--cards > * {
  width: calc(50% - 30px);
}

.business-accidente-colectiv--cards p:not(:last-child) {
  margin-bottom: 30px;
}

.business-accidente-colectiv--cards
  .business-list-cards--card:not(:last-child) {
  margin-bottom: 60px;
}

.business-accidente-colectiv--cards .business-list-cards--card--transparent h4 {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #374957;
}

.business-accidente-colectiv--cards .business-list-cards--card--transparent ul {
  padding-right: 0;
}

.business-accidente-colectiv--dropdown {
  background-color: #edecf4;
  padding: 100px 0;
}

.business-accidente-colectiv--dropdown > h4 {
  text-align: center;
  font-weight: 400;
  font-size: 50px;
  line-height: 1;
  color: #374957;
  margin-bottom: 40px;
}

.business-accidente-colectiv .business-benefits-block {
  padding: 120px 0 60px 0;
}

.business-accidente-colectiv .business-companies {
  padding: 60px 0 90px 0;
}

.business-accidente-colectiv--gradient-cards {
  padding-top: 100px;
}

.business-accidente-colectiv--gradient-cards > h4 {
  text-align: center;
  margin-bottom: 60px;
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
}

.business-accidente-colectiv--gradient-cards--wrapper {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.business-accidente-colectiv--gradient-cards--item {
  height: auto;
  position: relative;
  padding: 30px;
  border: 2px dashed #e0d9e0;
  transition: border 0.3s ease-in-out;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: height 0.3s ease-in-out;
  box-sizing: border-box;
}

.business-accidente-colectiv--gradient-cards--item svg {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  transition: 0.3s ease-in-out;
  transition-property: opacity, height;
}

.business-accidente-colectiv--gradient-cards--item > * {
  position: relative;
  z-index: 1;
}

.business-accidente-colectiv--gradient-cards--item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(103.52deg, #f6f5ff 8.98%, #eafaf2 96.63%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

.business-accidente-colectiv--gradient-cards--item > h4 {
  padding-top: 45px;
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 25px;
  line-height: 1;
  transition: padding 0.3s ease-in-out;
}

.business-accidente-colectiv--gradient-cards--item ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.business-accidente-colectiv--gradient-cards--item li {
  max-width: 275px;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  gap: 10px;
  box-sizing: border-box;
  font-size: 18px;
  line-height: 20px;
}

.business-accidente-colectiv--gradient-cards--item li svg {
  height: 20px;
  width: 20px;
  flex-shrink: 0;
}

.business-accidente-colectiv--gradient-cards--item--content {
  opacity: 0;
  transform: translateY(20%);
  transition: 0.3s ease-in-out;
  transition-property: opacity, transform;
}

.business-accidente-colectiv--gradient-cards--item--content:not(ul) {
  margin-top: -15px;
}

.business-accidente-colectiv--gradient-cards--item--content span {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: rgba(55, 73, 87, 0.7);
  display: block;
  margin-bottom: 10px;
}

.business-accidente-colectiv--gradient-cards--item--content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
}

@media only screen and (min-width: 1300px) {
  body.business-accidente-colectiv {
    padding-top: 70px;
  }
}

@media only screen and (min-width: 1100px) {
  .business-accidente-colectiv--gradient-cards--item {
    height: var(--height, 370px);
  }

  .business-accidente-colectiv--gradient-cards--item:hover {
    border-color: transparent;
    padding-bottom: 25px;
  }

  .business-accidente-colectiv--gradient-cards--item:hover > svg {
    opacity: 0;
    height: 0;
  }

  .business-accidente-colectiv--gradient-cards--item:hover:before {
    opacity: 1;
  }

  .business-accidente-colectiv--gradient-cards--item:hover > h4 {
    padding: 0;
  }

  .business-accidente-colectiv--gradient-cards--item:hover
    .business-accidente-colectiv--gradient-cards--item--content {
    opacity: 1;
    transform: translateX(0);
  }
}

@media only screen and (max-width: 1100px) {
  .business-accidente-colectiv--gradient-cards {
    padding: 35px 0;
  }

  .business-accidente-colectiv--gradient-cards > h4 {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 35px;
  }

  .business-accidente-colectiv--gradient-cards--wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }

  .business-accidente-colectiv--gradient-cards--item {
    padding: 15px;
  }

  .business-accidente-colectiv--gradient-cards--item svg {
    width: 50px;
    height: 50px;
  }

  .business-accidente-colectiv--gradient-cards--item > h4 {
    padding-top: 15px;
    margin-bottom: 15px;
    font-size: 18px;
  }

  .business-accidente-colectiv--gradient-cards--item--content {
    transform: translateY(0);
    opacity: 1;
  }

  .business-accidente-colectiv--gradient-cards--item li {
    font-size: 16px;
    line-height: 18px;
  }

  .business-accidente-colectiv--cards {
    width: 675px;
    flex-direction: column;
    padding: 30px 0;
  }

  .business-accidente-colectiv--cards > div {
    width: 100%;
  }

  .business-accidente-colectiv--cards > div:first-child {
    margin-bottom: 30px;
  }

  .business-accidente-colectiv--cards
    .business-list-cards--card--transparent
    h4 {
    font-size: 19px;
    line-height: 22px;
  }

  .business-accidente-colectiv--cards
    .business-list-cards--card:not(:last-child) {
    margin-bottom: 30px;
  }

  .business-accidente-colectiv--dropdown {
    padding: 35px 0;
  }

  .business-accidente-colectiv--dropdown > h4 {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 35px;
  }

  .business-accidente-colectiv .business-benefits-block {
    padding: 60px 0;
  }
}

@media only screen and (max-width: 600px) {
  .business-accidente-colectiv--gradient-cards--wrapper {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 15px;
  }

  .business-accidente-colectiv--gradient-cards--item--content p {
    font-size: 16px;
    line-height: 18px;
  }
}
