/* :: HEADER :: */
.header {
  padding: 30px 0 50px;
  background-color: #ffe05d;
  overflow: hidden;
}
@media only screen and (max-width: 767.98px) {
  .header {
    padding: 70px 0;
  }
}

/* navigator */
.header .navigator {
  margin-bottom: 100px;
  font-family: var(--secondary-font);
}

/* title */
.header .navigator .title {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  color: var(--darkBlue);
  margin-right: 45px;
}
.header .navigator .title::before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--darkBlue);
  right: -24px;
}

/* item */
.header .navigator .item {
  font-size: 15px;
  font-weight: 500;
  color: var(--darkBlue);
  border-bottom: 1px solid transparent;
}
.header .navigator .item.active {
  font-weight: 600;
  border-bottom-color: var(--darkBlue);
 }
.header .navigator .item:not(:last-child) {
  margin-right: 25px;
}
.header .navigator .item:hover {
  border-bottom-color: var(--darkBlue);
}

/* title-5 */
.header .title-5 {
  font-size: 17px;
  font-family: var(--secondary-font);
  color: var(--darkBlue);
  font-weight: 500;
  margin-bottom: 10px;
}

/* title-5 */
.header .title-1 {
  font-size: clamp(2.01rem,calc(.5rem + 2.9004vw),3.247rem);
  font-family: var(--primary-font);
  font-weight: 700;
  color: var(--darkBlue);
  line-height: 1.1;
  margin-bottom: 30px;
}

/* para-1 */
.header .para-1 {
  color: var(--darkBlue);
}

/* hero */
.header .hero {
  position: absolute;
  bottom: -50px;
  right: 12vw;
  width: 420px;
}
@media only screen and (max-width: 1199.98px) {
  .header .hero {
    width: 370px;
    right: 4vw
  }
}
@media only screen and (max-width: 991.98px) {
  .header .hero {
    display: none
  }
}
/* ----------------------------------- */

/* :: SECTION I :: */
.se-i {
  padding: 60px 0;
}

/* title-1 */
.se-i .title-1 {
  font-size: clamp(2.01rem,calc(.5rem + 1.9004vw),3.247rem);
  color: #fff;
  line-height: 1.1;
}
.light-theme .se-i .title-1 {
  color: var(--darkBlue);
}


/* circle */
.se-i .circle {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background-color: var(--semi-dark-2);
  border-radius: 50%;
}
.se-i .circle:hover {
  background-color: #aae6d6;
}
.light-theme .se-i .circle {
  background-color: var(--light);
}
.light-theme .se-i .circle:hover {
  background-color: #aae6d6;
}
@media only screen and (max-width: 1199.98px) {
  .se-i .circle {
    border-radius: 0;
    background-color: transparent;
    aspect-ratio: unset;
  }
  .light-theme .se-i .circle,
  .light-theme .se-i .circle:hover {
    background-color: transparent;
  }
}

/* icon */
.se-i .circle .icon {
  width: 80px;
}
@media only screen and (max-width: 1199.98px) {
  .se-i .circle .icon {
    width: 70px;
  }
}
@media only screen and (max-width: 767.98px) {
  .se-i .circle .icon {
    width: 50px;
  }
}

/* text */
.se-i .circle .text {
  position: absolute;
  left: 4px;
  top: 4px;
  right: 4px;
  bottom: 4px;
  background-color: var(--darkBlue);
  padding: 20px;
  border-radius: 50%;
  overflow: hidden;
  font-size: 16px;
  font-family: var(--third-font);
  font-weight: 700;
  color: #fff;
  opacity: 0;
  z-index: 2;
}
.light-theme .se-i .circle .text {
  background-color: #fff;
  color: var(--darkBlue);
}
.se-i .circle:hover .text {
  opacity: 1;
}
@media only screen and (max-width: 1199.98px) {
  .se-i .circle .text {
    position: unset;
    opacity: unset;
    background-color: unset;
    padding: 0;
    border-radius: 0;
    font-weight: 500;
    font-size: 14px;
  }
  .light-theme .se-i .circle .text {
    background-color: transparent;
  }
}
/* ----------------------------------- */

/* :: SECTION II :: */

/* filter-bar */
.se-ii  .filter-bar .buttons {
  background-color: var(--semi-dark);
  padding: 8px;
  border-radius: 50px;
}
.light-theme .se-ii  .filter-bar .buttons {
  background-color: #fff;
}
.se-ii  .filter-bar button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--semi-dark);
  border: 0;
  font-size: 14px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  transition: all .15s ease;
}
.light-theme .se-ii  .filter-bar button {
  background-color: #fff;
  color: var(--darkBlue);
}
.se-ii  .filter-bar button.active {
  background-color: var(--primary);
  color: #fff;
}

/* responsive-table */
.se-ii .responsive-table {
  display: none
}
.se-ii .responsive-table.show {
  display: block
}

/* custom-table */
.se-ii .custom-table {
  width: 100%;
  margin-top: 30px;
}

/* tbody */
.se-ii .custom-table .tbody {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.se-ii .custom-table .tbody .tr {
  width: calc(25% - 20px);
  border-radius: 4px !important;
  overflow: hidden;
  margin: 10px;
  background-color: var(--semi-dark);
  border: 1px solid rgba(255, 255, 255, .05);
}
.light-theme .se-ii .custom-table .tbody .tr {
  background-color: #fff;
  border-color: var(--border);
}
@media only screen and (max-width: 1199.98px) {
  .se-ii .custom-table .tbody .tr {
    width: calc(33.33% - 20px);
  }
}
@media only screen and (max-width: 991.98px) {
  .se-ii .custom-table .tbody .tr {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 767.98px) {
  .se-ii .custom-table .tbody .tr {
    width: calc(100% - 20px);
  }
}

/* td */
.se-ii .custom-table .tbody .td {
  width: 100% !important;
  display: flex !important;
}
.se-ii .custom-table .tbody .td:nth-child(2) {
  border-top: 1px solid rgba(255, 255, 255, .05) !important;
}
.light-theme .se-ii .custom-table .tbody .td:nth-child(2) {
  border-color: var(--border) !important;
}
.se-ii .custom-table .tbody .td:not(:first-of-type) {
  border-bottom: 1px solid rgba(255, 255, 255, .05) !important;
  padding: 0 !important;
}
.light-theme .se-ii .custom-table .tbody .td:not(:first-of-type) {
  border-color: var(--border) !important;
}

/* icon */
.se-ii .custom-table .tbody .td .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, .05);
  min-width: 40px;
  width: 40px;
}
.light-theme .se-ii .custom-table .tbody .td .icon {
  border-color: var(--border);
}
.se-ii .custom-table .tbody .td .icon img {
  width: 17px;
  opacity: .6;
}
.light-theme .se-ii .custom-table .tbody .td .icon img {
  filter: invert(1);
  opacity: .7;
}

/* text */
.se-ii .custom-table .tbody .td:not(.plan-td) .text {
  margin-left: 16px;
  padding: 6px;
}

/* plan-td */
.se-ii .custom-table .tbody .td.plan-td {
  min-width: 208px;
  width: 208px;
  padding: 20px 12px;
}

.se-ii .custom-table .tbody .td.plan-td .flag {
  position: relative;
}
.se-ii .custom-table .tbody .td.plan-td .flag:not(:last-child) {
  margin-bottom: 8px;
}
.se-ii .custom-table .tbody .td.plan-td .flag::before {
  position: absolute;
  content: attr(data-tooltip);
  left: calc(100% + 6px);
  top: 50%;
  transform: translateY(-50%);
  background: #1e5f74;
  color: #fff;
  border-radius: 4px;
  padding: 10px;
  font-size: 12px;
  min-width: 10px;
  white-space: nowrap;
  word-wrap: break-word;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all .25s ease;
}
.se-ii .custom-table .tbody .td.plan-td .flag::after {
  position: absolute;
  content: '';
  left: calc(100% - 6px);
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-right-color: #1e5f74;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all .25s ease;
}
.se-ii .custom-table .tbody .td.plan-td .flag:hover::before,
.se-ii .custom-table .tbody .td.plan-td .flag:hover::after {
  opacity: 1;
  visibility: visible;
}

.se-ii .custom-table .tbody .td.plan-td .flags img {
  display: block;
  width: 17px;
  margin: 0 8px;
}

.se-ii .custom-table .tbody .td.plan-td .text {
  margin-left: 8px;
}
.se-ii .custom-table .tbody .td.plan-td .text .name {
  font-size: 14px;
  font-family: var(--secondary-font);
  color: #ffffff;
  font-weight: 600;
  line-height: 1.6;
}
.light-theme .se-ii .custom-table .tbody .td.plan-td .text .name {
  color: var(--dark);
}
.se-ii .custom-table .tbody .td.plan-td .text .des {
  font-size: 14px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: var(--darkGray);
}

.se-ii .custom-table .tbody .td:not(.plan-td) {
  padding: 0 8px;
}
/* text */
.se-ii .custom-table .tbody .td:not(.plan-td) .name {
  font-size: 14px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: var(--darkGray);
  line-height: 1.6;
}
.se-ii .custom-table .tbody .td:not(.plan-td) .des {
  font-size: 14px;
  font-family: var(--secondary-font);
  font-weight: 400;
  color: var(--darkGray);
}

/* cpu-td */
.se-ii .custom-table .tbody .td.cpu-td {
  min-width: 176px;
  width: 176px;
}

/* ram-td */
.se-ii .custom-table .tbody .td.ram-td {
  min-width: 112px;
  width: 112px;
}

/* storage-td */
.se-ii .custom-table .tbody .td.storage-td {
  min-width: 144px;
  width: 144px;
}

/* bandwidth-td */
.se-ii .custom-table .tbody .td.bandwidth-td {
  min-width: 144px;
  width: 144px;
}

/* ip-td */
.se-ii .custom-table .tbody .td.ip-td {
  min-width: 130px;
  width: 130px;
  border-bottom-width: 0 !important;
}

/* price-td */
.se-ii .custom-table .tbody .td.price-td {
  min-width: 154px;
  width: 154px;
}
.se-ii .custom-table .tbody .td.price-td .price {
  font-size: 16px;
  font-family: var(--secondary-font);
  font-weight: 600;
  color: #ffffff;
  margin-left: 16px;
  padding: 10px 6px;
}
.se-ii .custom-table .tbody .td.price-td .price {
  color: var(--darkGray);
}
.se-ii .custom-table .tbody .td.price-td .price span {
  font-size: 12px;
  display: inline-flex;
  margin-left: 4px;
  font-weight: 300;
  color: var(--darkGray);
}

/* actions-td */
.se-ii .custom-table .tbody .td.actions-td {
  min-width: 160px;
  width: 160px;
  padding: 10px !important;
}
.se-ii .custom-table .tbody .td.actions-td .btn-fill-primary {
  width: 100%;
  min-width: unset;
  padding: 8px 20px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
}

/* se-footer */
.se-ii .se-footer .line {
  margin: 6px 12px;
}
.se-ii .se-footer .line .icon {
  min-width: 16px;
  width: 16px;
  margin-right: 10px;
}
.se-ii .se-footer .line .text {
  font-size: 14px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: var(--darkGray);
  line-height: 1;
}
/* ----------------------------------- */

/* :: SECTION III :: */

/* box */
.se-iii .box {
  background-color: var(--semi-dark);
  border-radius: 8px;
  padding: 35px 30px 10px;
  border: 1px solid var(--border);
  transition: all .20s ease;
}
.light-theme .se-iii .box {
  background-color: #fff;
}
.se-iii .box:hover {
  background-color: var(--semi-dark-2);
}
.light-theme .se-iii .box:hover {
  background-color: var(--light);
}

/* box-link */
.se-iii .box-link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}

/* icon */
.se-iii .box .icon {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  overflow: hidden;
}
.se-iii .box .icon::before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--primary);
  opacity: .1;
}
.se-iii .box.color-1 .icon::before {
  background-color: #26C6DA;
}
.se-iii .box.color-2 .icon::before {
  background-color: #FC573B;
}
.se-iii .box.color-3 .icon::before {
  background-color: #FFD200;
}
.se-iii .box.color-4 .icon::before {
  background-color: #BD63F9;
}
.se-iii .box.color-5 .icon::before {
  background-color: #00FFB7;
}
.se-iii .box.color-6 .icon::before {
  background-color: #FE9801;
}
.se-iii .box .icon img {
  width: 34px;
}

/* box-title */
.se-iii .box-title {
  color: #FFFFFF;
  font-size: 20px;
  font-family: var(--secondary-font);
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.2;
}
.light-theme .se-iii .box-title {
  color: var(--darkBlue);
}

/* box-para */
.se-iii .box-para {
  font-size: 14px;
  font-weight: 500;
  color: var(--darkGray);
  line-height: 1.7;
  max-height: 70px;
  height: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 25px;
}

/* arrow */
.se-iii .arrow {
  margin-top: 20px;
}
.se-iii .arrow img {
  width: 24px;
  filter: contrast(0);
  transition: all .15s ease;
}
.se-iii .box:hover .arrow img {
  filter: contrast(100%);
}
/* ----------------------------------- */