* {
  font-family: "Poppins", sans-serif;
}
.bg1 {
  background-color: #f3ccc0;
}
.bg2 {
  background-color: #d9d9d9;
}
.bx-wrapper {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.bx-wrapper .bx-pager {
  padding-bottom: 20px;
}
.bx-wrapper .bx-pager {
  background-color: #d9d9d9;
}
/*circle */
.circles {
  padding: 40px 0;
}

@media (min-width: 640px) {
  .circles {
    display: table;
    width: 100%;
    margin: 0;
  }
  .circles .circle-item {
    display: table-cell;
    width: auto;
    padding: 0;
    float: none;
    vertical-align: top;
  }
  .circles .circle-item:nth-child(even) {
    padding-top: 150px;
  }
  .circles .circle-item:nth-child(even) .line {
    top: 0;
    left: 40%;
    transform: rotate(-45deg);
  }
  .circles .circle-item:nth-child(odd) .line {
    top: 100%;
    left: 30%;
    transform: rotate(45deg);
  }
  .circles .circle-item .circle-holder .circle {
    margin: 0;
  }
}
@media (max-width: 640px) {
  .circle-item.first-row,
  .circle-item.second-row {
    margin: auto;
  }
}
.circles .circle-holder {
  position: relative;
  display: inline-block;
}
.circles .circle-holder.last .line {
  display: none;
}
.circles .circle-holder .circle {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #f1ccc1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
  z-index: 2;
}
.circles .circle-holder .circle .text {
  position: relative;
  line-height: 14px;
  padding: 4px;
}
.circles .circle-holder .line {
  position: absolute;
  top: 100%;
  left: -10%;
  width: 200px;
  height: 1px;
  background: black;
  transform: rotate(90deg);
  z-index: 1;
}
/*menu*/
.dropdown-content {
  position: absolute;
  display: inline-block;
  min-width: 160px;
  background-color: white;
  z-index: 999;
}
.dropdown-content ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.dropdown-content ul li {
  border-bottom: 1px solid #ccc;
}
.dropdown-content ul li:last-of-type {
  border-bottom: 0;
}
.dropdown-content ul li a {
  display: inline-block;
  width: 100%;
  padding: 20px;
  color: black;
}
.dropdown-content ul li a:hover {
  opacity: 0.7;
}

