/* overview-card */
.overview-card {
  display: flex;
    justify-content: space-between;
    flex: 1;  
}
.anchor-with-arrow {
  align-items: center;
  justify-content: center;
  height: 100%;
  display: flex;
}
/* .overview-card-left {
  flex-basis: 75%;
} */
.overview-card-left p {
  font-size: 56px;
  line-height: 67px;
  color: #191919;
}
.overview-card-right {
  flex-basis: 16%;
}
.overview-card-right ul{
  margin-top: 10px;
}
.overview-card-right li a {
  font-size: 16px;
  line-height: 19px;
  color: #191919;
}
.overview-card-right li:not(:last-child) {
  margin-bottom: 16px;
}

/* Buyback & Feature */
.feature-card-section {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  padding: 60px 40px;
}
.feature-card {
  flex-basis: 100%;
  padding: 20px 0px;
}
.feature-card .anchor-with-arrow a label{
  float: right;
}
.feature-card p {
  font-size: 16px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.4);
  width: 240px;
}
/* iframe */
.iframe-container{
  position: relative;
}
.iframe-container iframe{
  width:100%;
  height: 100vh;
  border:none;
}
.iframe-container .iframe-close{
    position: absolute;
    top: 120px;
    right: 50px;
    background: #fff;
    border-radius: 50%;
    padding: 2px 10px;
    cursor: pointer;
    border:1px solid #191919;
}
.home-page-wrapper {
  display: flex;
  height: calc(100vh - 58px);
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .overview-card-left {
    flex-basis: unset;
  }
  .anchor-with-arrow a {
    font-size: 30px;
    line-height: 44px;
  }
  /* .overview-card {
    padding: 40px 0px 18px;
  } */
}