html {
  font-size: 10px;
}

@media (max-width: 1550px) {
  html {
    font-size: 7px;
  }
}
.tabs_wrapper {
  align-items: flex-start;
  background-color: #EBF8FF;
  border-radius: 30px;
  display: flex;
  padding: 3rem;
  width: 100%;
}

ul.tabs {
  background-color: #fff;
  border-radius: 20px;
  list-style-type: none;
  margin: 0;
  padding: 3rem;
  position: relative;
  z-index: 10;
  min-width: 42rem;
  transition: all 0.3s ease;
}

ul.tabs li {
  cursor: pointer;
  background-color: #EBF8FF;
  border-bottom: none;
  border-radius: 10px;
  color: #777;
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: 400;
  padding: 1.8rem 3rem;
  text-decoration: none;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
}
ul.tabs li + li {
  margin-top: 2rem;
}

ul.tabs li:hover {
  background-color: #D64544;
  color: #fff;
}

ul.tabs li.active {
  background-color: #D64544;
  color: #fff;
}

.tab_container {
  margin-left: 2.4rem;
  width: calc(100% - 44.4rem);
}

.tab_content {
  height: 100%;
  display: none;
}
.tab_content .heading {
  align-items: center;
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  padding: 4rem;
}
.tab_content .heading .name {
  color: #000;
  font-size: 2.4rem;
  font-weight: 700;
}
.tab_content .heading .price {
  color: #D64544;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
}
.tab_content .card {
  background-color: #fff;
  border-radius: 20px;
  margin-top: 3rem;
  padding: 1.5rem 3rem;
}
.tab_content .card-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.5rem;
}
.tab_content .card-col {
  background-color: #EBF8FF;
  border-radius: 2rem;
  padding: 2.4rem;
  margin: 1.5rem;
  width: calc(33.3333333333% - 3rem);
}
.tab_content .card-title {
  color: #000;
  font-size: 2rem;
  font-weight: 700;
}
.tab_content .card-test {
  margin-top: 1rem;
}
.tab_content .card-test li {
  background-color: #fff;
  border: 1px dashed rgba(0, 0, 0, 0.4);
  border-radius: 50px;
  display: inline-block;
  font-size: 1.8rem;
  margin: 1rem 0.3rem;
  padding: 1rem 2rem;
}

.tab_drawer_heading {
  display: none;
}

@media screen and (max-width: 1199px) {
  .tab_content .card-col {
    width: calc(50% - 3rem);
  }
}
@media screen and (max-width: 991px) {
  ul.tabs {
    display: none;
  }
  .tab_container {
    display: block;
    margin: 0 auto;
    border-top: none;
    border-radius: 0;
    width: 100%;
  }
  .tab_drawer_heading {
    background-color: #4A8DB1;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 400;
    padding: 1.8rem 3rem;
    text-decoration: none;
    text-align: center;
    display: block;
    margin: 1rem 0;
    border-radius: 2rem;
  }
  .tab_content {
    padding: 2rem;
    border: 1px solid #D64544;
    border-radius: 0 0 2rem 2rem;
    margin-bottom: 2rem;
  }
  .tab_drawer_heading:hover {
    background-color: #D64544;
    color: #fff;
    font-weight: 700;
    border-radius: 2rem 2rem 0 0;
    margin: 0;
  }
  .d_active {
    background-color: #D64544;
    color: #fff;
    font-weight: 700;
    border-radius: 2rem 2rem 0 0;
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .tab_content .heading {
    flex-wrap: wrap;
  }
  .tab_content .heading .name {
    width: 100%;
  }
  .tab_content .heading .price {
    width: 100%;
  }
  .tab_content .card-col {
    width: calc(100% - 3rem);
  }
}/*# sourceMappingURL=tabs.css.map */