/* Header */
.header {
  padding: 30px 0 50px;
  background-color: var(--primary);
  overflow: hidden;
}
@media only screen and (max-width: 767.98px) {
  .header {
    padding: 70px 0;
  }
}

/* navigator */
.header .navigator {
  margin-bottom: 120px;
  font-family: var(--secondary-font);
}

/* title */
.header .navigator .title {
  position: relative;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin-right: 45px;
}
.header .navigator .title::before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #fff;
  right: -24px;
}

/* item */
.header .navigator .item {
  font-size: 18px;
  color: #fff;
  font-weight: 300;
  border-bottom: 1px solid transparent;
}
.header .navigator .item.active {
  font-weight: 500;
  border-bottom-color: #fff;
 }
.header .navigator .item:not(:last-child) {
  margin-right: 25px;
}
.header .navigator .item:hover {
  border-bottom-color: #fff;
}

/* title-5 */
.header .title-5 {
  font-size: 25px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 10px;
}

/* title-1 */
.header .title-1 {
  font-size: 55px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 30px;
}
/* para-1 */
.header .para-1 {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
}
/* hero */
.header .hero {
  position: absolute;
  bottom: -100px;
  left: 50%;
  width: 800px;
}
@media only screen and (max-width: 1199.98px) {
  .header .hero {
    display: none
  }
}
@media only screen and (max-width: 991.98px) {
  .header .hero {
    display: none
  }
}
/*------------------------------------------------------*/

/* Section I */

/* item */
.se-i .filter-bar .item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, .05);
  padding: 14px 28px;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 500;
  transition: all .2s ease;
}
.light-theme .se-i .filter-bar .item {
  background-color: var(--light);
}
.se-i .filter-bar .item:not(.active):hover {
  background-color: var(--semi-dark);
}
.light-theme .se-i .filter-bar .item:not(.active):hover {
  background-color: var(--border);
}
.se-i .filter-bar .item.active {
  background-color: var(--primary);
  color: #FFFFFF;
}

/* responsive-table */
.se-i .responsive-table {
  display: none
}
.se-i .responsive-table.show {
  display: block
}

/* custom-table */
.se-i .custom-table {
  width: 100%;
  margin-top: 30px;
}

/* tbody */
.se-i .custom-table .tbody {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.se-i .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-i .custom-table .tbody .tr {
  background-color: var(--light);
  border-color: var(--border);
}
.se-i .custom-table .tbody .tr:hover {
  background-color: rgba(255, 255, 255, .02);
}
.light-theme .se-i .custom-table .tbody .tr:hover {
  background-color: #fff;
}
@media only screen and (max-width: 1199.98px) {
  .se-i .custom-table .tbody .tr {
    width: calc(33.33% - 20px);
  }
}
@media only screen and (max-width: 991.98px) {
  .se-i .custom-table .tbody .tr {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 767.98px) {
  .se-i .custom-table .tbody .tr {
    width: calc(100% - 20px);
  }
}

/* td */
.se-i .custom-table .tbody .td {
  width: 100% !important;
  display: flex !important;
}
.se-i .custom-table .tbody .td:nth-child(2) {
  border-top: 1px solid rgba(255, 255, 255, .05) !important;
}
.light-theme .se-i .custom-table .tbody .td:nth-child(2) {
  border-color: var(--border) !important;
}
.se-i .custom-table .tbody .td:not(:first-of-type) {
  border-bottom: 1px solid rgba(255, 255, 255, .05) !important;
  padding: 0 !important;
}
.light-theme .se-i .custom-table .tbody .td:not(:first-of-type) {
  border-color: var(--border) !important;
}

/* icon */
.se-i .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-i .custom-table .tbody .td .icon {
  border-color: var(--border);
}
.se-i .custom-table .tbody .td .icon img {
  filter: invert(1);
  width: 17px;
  opacity: .6;
}
.light-theme .se-i .custom-table .tbody .td .icon img {
  filter: invert(0);
  opacity: .7;
}

/* text */
.se-i .custom-table .tbody .td:not(.plan-td) .text {
  margin-left: 16px;
  padding: 6px;
}

/* plan-td */
.se-i .custom-table .tbody .td.plan-td {
  min-width: 208px;
  width: 208px;
  padding: 20px 12px;
}

.se-i .custom-table .tbody .td.plan-td .flag {
  position: relative;
}
.se-i .custom-table .tbody .td.plan-td .flag:not(:last-child) {
  margin-bottom: 8px;
}
.se-i .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-i .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-i .custom-table .tbody .td.plan-td .flag:hover::before,
.se-i .custom-table .tbody .td.plan-td .flag:hover::after {
  opacity: 1;
  visibility: visible;
}

.se-i .custom-table .tbody .td.plan-td .flags img {
  display: block;
  width: 17px;
  margin: 0 8px;
}

.se-i .custom-table .tbody .td.plan-td .text {
  margin-left: 8px;
}
.se-i .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-i .custom-table .tbody .td.plan-td .text .name {
  color: var(--dark);
}
.se-i .custom-table .tbody .td.plan-td .text .des {
  font-size: 14px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: var(--text-gray);
}

.se-i .custom-table .tbody .td:not(.plan-td) {
  padding: 0 8px;
}
/* text */
.se-i .custom-table .tbody .td:not(.plan-td) .name {
  font-size: 14px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: var(--text-gray);
  line-height: 1.6;
}
.se-i .custom-table .tbody .td:not(.plan-td) .des {
  font-size: 14px;
  font-family: var(--secondary-font);
  font-weight: 400;
  color: var(--text-gray);
}

/* cpu-td */
.se-i .custom-table .tbody .td.cpu-td {
  min-width: 176px;
  width: 176px;
}

/* ram-td */
.se-i .custom-table .tbody .td.ram-td {
  min-width: 112px;
  width: 112px;
}

/* storage-td */
.se-i .custom-table .tbody .td.storage-td {
  min-width: 144px;
  width: 144px;
}

/* bandwidth-td */
.se-i .custom-table .tbody .td.bandwidth-td {
  min-width: 144px;
  width: 144px;
}

/* ip-td */
.se-i .custom-table .tbody .td.ip-td {
  min-width: 130px;
  width: 130px;
}

/* price-td */
.se-i .custom-table .tbody .td.price-td {
  min-width: 154px;
  width: 154px;
}
.se-i .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-i .custom-table .tbody .td.price-td .price {
  color: var(--text-gray);
}
.se-i .custom-table .tbody .td.price-td .price span {
  font-size: 12px;
  display: inline-flex;
  margin-left: 4px;
  font-weight: 300;
  color: var(--text-gray);
}

/* actions-td */
.se-i .custom-table .tbody .td.actions-td {
  min-width: 160px;
  width: 160px;
  padding: 10px !important;
}
.se-i .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-i .se-footer .line {
  margin: 6px 12px;
}
.se-i .se-footer .line .icon {
  min-width: 16px;
  width: 16px;
  margin-right: 10px;
}
.se-i .se-footer .line .text {
  font-size: 14px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: var(--text-gray);
  line-height: 1;
}

/* --------------------------------- */

/* Section II */
.se-ii {
  padding: 60px 0;
  
}

/* title-1 */
.se-ii .title-1 {
  font-size: 46px;
  font-family: var(--primary-font);
  font-weight: 700;
  color: #FFF;
  line-height: 1;
}
.light-theme .se-ii .title-1 {
  color: var(--dark);
}
.se-ii .title-1 span {
  line-height: 1;
  display: inline-block;
}

/* para-1 */
.se-ii .para-1 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
}

/* item */
.se-ii .item {
  background-color: var(--semi-dark-2);
  padding: 20px 15px 20px 15px;
  border-radius: 8px;
  transition: background-color .25s ease;
}
.light-theme .se-ii .item {
  background-color: var(--light);
  border: 1px solid var(--border);
}
.se-ii .item img {
  width: 50px;
  margin-bottom: 20px;
}
.se-ii .item .text {
  font-size: 14px;
  font-weight: 400;
  color: #9193a8;
}
.light-theme .se-ii .item .text {
  font-weight: 500;
  color: var(--text-gray);
}
@media only screen and (max-width: 1199.98px) {
  .se-ii {
      
    padding: 60px 0 30px;
  }
  .se-ii .title-1,
  .se-ii .title-1 span,
  .se-ii .title-1 span.primary-color {
    font-size: 36px;
    line-height: 1.4;
  }
  .se-ii .item {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .se-ii .title-1,
  .se-ii .title-1 span,
  .se-ii .title-1 span.primary-color {
    font-size: 26px;
    line-height: 1.2;
  }
}

/*------------------------------------------------------*/

/* Section III*/

/* box */
.se-iv .box {
  background-color: var(--semi-dark);
  border-radius: 8px;
  padding: 35px 30px 10px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
  transition: all .20s ease;
}
.light-theme .se-iv .box {
  background-color: #fff;
  border: 1px solid var(--border);
  box-shadow: none !important;
}
.se-iv .box:hover {
  box-shadow: 0 10px 45px 0 rgba(0,0,0,.2);
  background-color: var(--semi-dark-2);
}
.light-theme .se-iv .box:hover {
  background-color: var(--light);
}

/* box-link */
.se-iv .box-link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}

/* icon */
.se-iv .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-iv .box .icon::before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--primary);
  opacity: .1;
}
.se-iv .box.color-1 .icon::before {
  background-color: #26C6DA;
}
.se-iv .box.color-2 .icon::before {
  background-color: #FC573B;
}
.se-iv .box.color-3 .icon::before {
  background-color: #FFD200;
}
.se-iv .box.color-4 .icon::before {
  background-color: #BD63F9;
}
.se-iv .box.color-5 .icon::before {
  background-color: #00FFB7;
}
.se-iv .box.color-6 .icon::before {
  background-color: #FE9801;
}
.se-iv .box .icon img {
  width: 34px;
}
/* box-title */
.se-iv .box-title {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.light-theme .se-iv .box-title {
  color: var(--dark);
}

/* box-para */
.se-iv .box-para {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  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-iv .arrow {
  margin-top: 20px;
}
.se-iv .arrow img {
  width: 24px;
  filter: contrast(0);
  transition: all .15s ease;
}
.se-iv .box:hover .arrow img {
  filter: contrast(100%);
}

/*-------------------------------------*/

/* Section IV */

/* box */
.se-vi .box {
  background-color: var(--semi-dark);
  border-radius: 8px;
  padding: 30px 30px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
  margin-bottom: 30px;
  transition: all .20s ease;
}
.light-theme .se-vi .box {
  background-color: var(--light);
  border: 1px solid var(--border);
  box-shadow: none !important;
}

/* user-info */
.se-vi .box .user-info {
  margin-bottom: 25px;
}
.se-vi .box .user-info .avatar {
  min-width: 54px;
  width: 54px;
  min-height: 54px;
  height: 54px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.se-vi .box .user-info .name {
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 600;
}
.light-theme .se-vi .box .user-info .name {
  color: var(--dark);
}
.se-vi .box .user-info .job {
  font-family: var(--secondary-font);
  font-size: 13px;
  color: var(--text-gray);
}

/* quotes */
.se-vi .box .quotes {
  font-size: 17px;
  font-weight: 600;
  font-style: italic;
  font-family: var(--third-font);
  color: var(--text-gray);
}
.se-vi .box .quotes::before {
  position: relative;
  content: '"';
  left: 0;
  top: 0;
  margin-right: 2px;
}
.se-vi .box .quotes::after {
  position: relative;
  content: '"';
  right: 0;
  top: 0;
  margin-left: 2px;
}
/*-------------------------------------*/
/* Section V */
/* box */
.se-il .box {
  background-color: var(--semi-dark);
  border-radius: 8px;
  padding: 35px 30px 10px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
  transition: all .20s ease;
}
.light-theme .se-il .box {
  background-color: #fff;
  border: 1px solid var(--border);
  box-shadow: none !important;
}
.se-il .box:hover {
  box-shadow: 0 10px 45px 0 rgba(0,0,0,.2);
  background-color: var(--semi-dark-2);
}
.light-theme .se-il .box:hover {
  background-color: var(--light);
}

/* box-link */
.se-il .box-link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}

/* icon */
.se-il .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-il .box .icon::before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--primary);
  opacity: .1;
}
.se-il .box.color-1 .icon::before {
  background-color: #26C6DA;
}
.se-il .box.color-2 .icon::before {
  background-color: #FC573B;
}
.se-il .box.color-3 .icon::before {
  background-color: #FFD200;
}
.se-il .box.color-4 .icon::before {
  background-color: #BD63F9;
}
.se-il .box.color-5 .icon::before {
  background-color: #00FFB7;
}
.se-il .box.color-6 .icon::before {
  background-color: #FE9801;
}
.se-il .box .icon img {
  width: 34px;
}
/* box-title */
.se-il .box-title {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.light-theme .se-il .box-title {
  color: var(--dark);
}

/* box-para */
.se-il .box-para {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  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-il .arrow {
  margin-top: 20px;
}
.se-il .arrow img {
  width: 24px;
  filter: contrast(0);
  transition: all .15s ease;
}
.se-il .box:hover .arrow img {
  filter: contrast(100%);
}

/*------------------------------------------------------*/

/* Map Section */
.light-theme .map-se {
  background-color: #e2e9ee;
}

/* map */
.map-se .map {
  opacity: .7;
}

/* markers */
.map-se .markers {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

/* marker */
@media only screen and (min-width: 768px) {
  .map-se .marker {
    position: absolute;
    cursor: pointer;
    z-index: 2;
    transition: z-index 1s ease;
  }
  .map-se .marker:hover {
    z-index: 3;
    transition: z-index 0s ease;
  }
  .map-se .marker:nth-child(1) {
    left: 24%;
    top: 30%;
  }
  .map-se .marker:nth-child(2) {
    left: 55%;
    top: 35%;
  }
  .map-se .marker:nth-child(3) {
    left: 50%;
    top: 25%;
  }
  .map-se .marker:nth-child(4) {
    left: 77%;
    top: 45%;
  }
}

/* icon */
.map-se .marker .icon {
  position: relative;
  width: 50px;
  height: 50px;
  background-image: url("../../images/pages/game-servers/icons/marker.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.map-se .marker .icon::after {
  position: absolute;
  content: '';
  left: 20px;
  top: 17px;
  width: 10px;
  height: 10px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: all .15s ease-in-out;
  z-index: 2;
}
.map-se .marker:hover .icon::after {
  transform: scale(1.7);
}

/* m-body */
.map-se .marker .m-body {
  position: absolute;
  width: 240px;
  bottom: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 6px;
  box-shadow: -4px 5px 30px rgba(4, 61, 117, 0.1);
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease-in-out;
}
.map-se .marker .m-body::before {
  position: absolute;
  content: '';
  bottom: -6px;
  left: 47%;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background-color: #FFFFFF;
  transform: rotate(45deg);
}
.map-se .marker:hover .m-body {
  visibility: visible;
  opacity: 1;
}
.map-se .marker .flag {
  width: 26px;
  margin-right: 15px;
}
.map-se .marker .m-title {
  font-size: 16px;
  font-family: var(--pr-font);
  font-weight: 700;
  color: var(--dark);
}
.map-se .marker .m-para {
  font-size: 14px;
  font-family: var(--se-font);
  font-weight: 600;
  color: var(--gray);
}

/* open-left */
.map-se .marker.open-left .m-body {
  left: unset;
  right: calc(100% + 10px);
}
.map-se .marker.open-left .m-body::before {
  left: unset;
  right: -6px;
}

/* Media */
@media only screen and (max-width: 767.98px) {

  .map-se {
    padding-bottom: 70px;
  }
  
  /* map */
  .map-se .map {
    display: none !important;
  }

  /* markers */
  .map-se .markers {
    all: unset;
    box-sizing: border-box;
  }

  /* marker */
  .map-se .marker {
    all: unset;
    box-sizing: border-box;
    display: block;
    background-color: transparent;
    padding: 8px 15px;
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* icon */
  .map-se .marker .icon {
    display: none;
  }

  /* m-body */
  .map-se .marker .m-body,
  .map-se .marker .m-body::before {
    all: unset;
    box-sizing: border-box;
  }
  .map-se .marker .m-body {
    padding: 15px !important;
    display: block;
    background: var(--semi-dark);
    border-radius: 6px;
  }
  .light-theme .map-se .marker .m-body {
    background: var(--border);
  }
  .map-se .marker .flag {
    width: 26px;
    margin-right: 15px;
  }
  .map-se .marker .m-title {
   color: #fff;
  }
  .light-theme .map-se .marker .m-title {
    color: var(--dark);
  }
  .map-se .marker .m-para {
    color: var(--text-gray);
  }
}
/* ------------------------------- */
/*-------------------------------------*/
.se-iiil {
  padding: 80px 0 80px;
}
/* col */
.se-iiil .row > div {
  padding-top: 30px;
}

/* media */
.se-iiil .media {
  width: 140px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1199.98px) {
  .se-iiil .media {
    width: 100px;
  }
}
@media only screen and (max-width: 991.98px) {
  .se-iiil .media {
    width: 80px;
  }
}

/* title-11 */
.se-iiil .title-11 {
  font-size: 40px;
  font-family: var(--primary-font);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.light-theme .se-iiil .title-11 {
  color: var(--dark);
}
@media only screen and (max-width: 991.98px) {
  .se-iiil .title-11 {
    font-size: 18px;
  }  
}

/* title-111 */
.se-iiil .title-111 {
  font-size: 60px;
  font-family: var(--primary-font);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.light-theme .se-iiil .title-111 {
  color: var(--dark);
}
@media only screen and (max-width: 991.98px) {
  .se-iiil .title-111 {
    font-size: 18px;
  }  
}
/* para-11 */
.se-iiil .para-11 {
  font-size: 16px;
  color: var(--text-gray);
}
@media only screen and (max-width: 991.98px) {
  .se-iiil .para-11 {
    font-size: 14px;
  }
}
/* ------------------------------- */
.box-one {
    display: flex;
    flex-direction: row;
}
.box-two {
    background-color: rgb(255, 255, 255);
    border-radius: 24px;
    box-shadow: rgb(11 43 158 / 15%) 0px 6px 20px -6px;
    display: flex;
    flex-basis: 33%;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin-right: 32px;
    max-width: 416px;
    overflow: hidden;
    text-decoration: none;
    width: 100%;
}
.box-three {
    -webkit-box-align: baseline;
    align-items: baseline;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    justify-self: center;
    width: 100%;
}
.box-three img {
    max-width: 100%;
    width: 100%;
}
.box-four {
    margin: 32px 40px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.box-five {
    display: flex;
    width: 100%;
}
.box-six {
    display: flex;
    flex-direction: column;
}
.box-five h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    margin: 0px 0px 16px;
    text-align: left;
}
.box-seven {
    color: rgb(3, 27, 78);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 120%;
    margin: 0px;
}
.box-four p {
    line-height: 1.5;
}
.box-eight {
    color: rgb(77, 91, 124);
    margin: 0px;
}
.box-nine {
    margin-top: 16px;
    width: 100%;
}
.box-ten {
    -webkit-box-align: center;
    align-items: center;
    align-self: flex-start;
    color: rgb(0, 105, 255);
    display: inline-flex;
    font-family: "Poppins", monospace;
    font-weight: 600;
    position: relative;
    transition: all 0.2s ease 0s;
    margin-right: 12px;
}
.box-eleven {
    text-decoration: none;
}
a {
    background-color: transparent;
}

@media only screen and (max-width: 1024px){
.box-one {
    flex-wrap: wrap;
    -webkit-box-pack: center;
    justify-content: center;
}
}
@media only screen and (max-width: 1024px){
.box-two {
    flex-basis: auto;
    margin: 16px 8px;
    max-width: none;
}
}
/* Section se-iv */

/* box */
.se-iv .box {
  background-color: var(--semi-dark);
  border-radius: 8px;
  padding: 35px 30px 10px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
  transition: all .20s ease;
}
.light-theme .se-iv .box {
  background-color: #fff;
  border: 1px solid var(--border);
  box-shadow: none !important;
}
.se-iv .box:hover {
  box-shadow: 0 10px 45px 0 rgba(0,0,0,.2);
  background-color: var(--semi-dark-2);
}
.light-theme .se-iv .box:hover {
  background-color: var(--light);
}

/* box-link */
.se-iv .box-link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}

/* icon */
.se-iv .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-iv .box .icon::before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--primary);
  opacity: .1;
}
.se-iv .box.color-1 .icon::before {
  background-color: #26C6DA;
}
.se-iv .box.color-2 .icon::before {
  background-color: #FC573B;
}
.se-iv .box.color-3 .icon::before {
  background-color: #FFD200;
}
.se-iv .box.color-4 .icon::before {
  background-color: #BD63F9;
}
.se-iv .box.color-5 .icon::before {
  background-color: #00FFB7;
}
.se-iv .box.color-6 .icon::before {
  background-color: #FE9801;
}
.se-iv .box .icon img {
  width: 34px;
}

/* box-title */
.se-iv .box-title {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.light-theme .se-iv .box-title {
  color: var(--dark);
}

/* box-para */
.se-iv .box-para {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  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-iv .arrow {
  margin-top: 20px;
}
.se-iv .arrow img {
  width: 24px;
  filter: contrast(0);
  transition: all .15s ease;
}
.se-iv .box:hover .arrow img {
  filter: contrast(100%);
}
/*-------------------------------------*/
.dg-one {
    display: flex;
    margin: auto;
}
@media only screen and (max-width: 425px){
.dg-one {
    margin: 0px;
}
}
@media only screen and (max-width: 1440px){
.dg-one {
    flex-direction: column;
}
}
.dg-two {
    display: flex;
    flex-direction: column;
    margin-right: 32px;
    max-width: fit-content;
}
.dg-three {
    background-color: rgb(239, 242, 251);
    border-radius: 32px;
    height: 100%;
    padding: 32px 40px;
    width: 416px;
}
.dg-four {
    background-color: rgb(255, 255, 255);
    border-radius: 24px;
    box-shadow: rgb(11 43 158 / 15%) 0px 6px 20px -6px;
    display: block;
    margin-bottom: 32px;
    margin-right: 0px;
    max-width: 336px;
    padding: 32px 40px;
    position: relative;
    transition: box-shadow 0.2s ease 0s, transform 0.2s ease 0s;
    width: 100%;
    will-change: box-shadow, transform;
}
a {
    background-color: transparent;
}
.dg-five {
    -webkit-box-align: center;
    align-items: center;
    display: flex;
    margin-bottom: 16px;
}
.dg-five img {
    height: 56px;
    margin-right: 32px;
    width: 32px;
}
img {
    border-style: none;
}
.dg-four div h3 {
    font-family: Epilogue, sans-serif;
    font-size: 20px;
}
.dg-four h3 {
    color: rgb(0, 12, 43);
    margin: 0px;
}
.dg-six {
    color: rgb(3, 27, 78);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 120%;
    margin: 0px;
}
.dg-four div p {
    font-size: 16px;
}
.dg-seven {
    color: rgb(91, 105, 135);
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
    margin: 20px auto 80px;
    text-align: center;
}
.dg-eight {
    color: rgb(77, 91, 124);
    display: flex;
    flex-direction: column;
    list-style: none;
}
ol, ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.dg-eight li {
    display: flex;
    margin-bottom: 16px;
}
li {
    display: list-item;
    text-align: -webkit-match-parent;
}
.dg-eight {
    color: rgb(77, 91, 124);
    display: flex;
    flex-direction: column;
    list-style: none;
}
.dg-eight li img {
    align-self: flex-start;
    margin-right: 16px;
}
.dg-eight {
    color: rgb(77, 91, 124);
    display: flex;
    flex-direction: column;
    list-style: none;
}
.dg-eight li p {
    color: rgb(77, 91, 124);
    font-size: 16px;
    margin: 0px;
}
.dg-four p {
    color: rgb(77, 91, 124);
    margin: 8px;
}
.dg-eight {
    color: rgb(77, 91, 124);
    display: flex;
    flex-direction: column;
    list-style: none;
}
.dg-eight li:last-of-type {
    margin-bottom: 0px;
}
.dg-eight li {
    display: flex;
    margin-bottom: 16px;
}
.dg-nine {
    background-color: rgb(18, 83, 250);
    border-radius: 24px;
    margin-top: 44px;
    padding: 32px 40px;
    position: relative;
}
.dg-nine .hat {
    margin-top: 32px;
    position: absolute;
    right: 144px;
    top: -45px;
}
.dg-ten {
    -webkit-box-align: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    color: rgb(255, 255, 255);
    display: flex;
    flex-direction: row;
    font-family: "JetBrains Mono", monospace;
    height: 24px;
    padding: 4px 12px;
    position: absolute;
    right: 16px;
    top: 16px;
    width: 54px;
}

.dg-nine h3 {
    color: white;
    font-size: 20px;
    text-align: left;
}
.dg-six {
    color: rgb(3, 27, 78);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 120%;
    margin: 0px;
}
.dg-nine p {
    color: white;
}
.dg-five {
    -webkit-box-align: center;
    align-items: center;
    display: flex;
    margin-bottom: 16px;
}
.dg-five img {
    height: 56px;
    margin-right: 32px;
    width: 32px;
}
.dg-six {
    color: rgb(3, 27, 78);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 120%;
    margin: 0px;
}
.dg-seven {
    color: rgb(91, 105, 135);
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
    margin: 20px auto 80px;
    text-align: center;
}
.dg-five {
    -webkit-box-align: center;
    align-items: center;
    display: flex;
    margin-bottom: 16px;
}
.dg-five img {
    height: 56px;
    margin-right: 32px;
    width: 32px;
}
.dg-six {
    color: rgb(3, 27, 78);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 120%;
    margin: 0px;
}
.dg-seven {
    color: rgb(91, 105, 135);
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
    margin: 20px auto 80px;
    text-align: center;
}
.dg-eight {
    color: rgb(77, 91, 124);
    display: flex;
    flex-direction: column;
    list-style: none;
}
ol, ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.dg-eight li {
    display: flex;
    margin-bottom: 16px;
}
.dg-eight li img {
    align-self: flex-start;
    margin-right: 16px;
}
.dg-eight li p {
    color: rgb(77, 91, 124);
    font-size: 16px;
    margin: 0px;
}
.dg-five {
    -webkit-box-align: center;
    align-items: center;
    display: flex;
    margin-bottom: 16px;
}
.dg-five img {
    height: 56px;
    margin-right: 32px;
    width: 32px;
}
.dg-six {
    color: rgb(3, 27, 78);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 120%;
    margin: 0px;
}
.dg-seven {
    color: rgb(91, 105, 135);
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
    margin: 20px auto 80px;
    text-align: center;
}
.dg-five {
    -webkit-box-align: center;
    align-items: center;
    display: flex;
    margin-bottom: 16px;
}
.dg-five img {
    height: 56px;
    margin-right: 32px;
    width: 32px;
}
.dg-six {
    color: rgb(3, 27, 78);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 120%;
    margin: 0px;
}
.dg-five div p {
    font-weight: 400;
    margin: 0px;
    text-align: left;
}
.dg-seven {
    color: rgb(91, 105, 135);
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
    margin: 20px auto 80px;
    text-align: center;
}
@media only screen and (max-width: 1440px){
.dg-two {
    margin-right: 0px;
}
}
@media only screen and (max-width: 425px){
.dg-three {
    padding: 32px;
}
}
@media only screen and (max-width: 768px){
.dg-three {
    flex-direction: column;
}
}
@media only screen and (max-width: 1440px){
.dg-three {
    align-items: flex-start;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin-bottom: 32px;
    width: auto;
}
}
@media only screen and (max-width: 768px){
.dg-four {
    margin-right: 0px;
    max-width: none;
}
}
@media only screen and (max-width: 1024px){
.dg-four {
    margin-bottom: 32px;
}
}
@media only screen and (max-width: 768px){
.dg-nine {
    margin-left: 0px;
}
}
@media only screen and (max-width: 1440px){
.dg-nine {
    margin: 0px 0px 32px;
}
}

@media only screen and (max-width: 1440px){
.dg-nine .hat {
    display: none;
}
}
.dg-eleven {
    display: flex;
    flex-direction: column;
    margin-right: 32px;
    max-width: fit-content;
}
@media only screen and (max-width: 1440px){
.dg-eleven {
    margin-right: 0px;
}
}
/*------------------------------------------------------*/
@media only screen and (min-width: 1024px){
.bk-one {
    -webkit-box-pack: center;
    justify-content: center;
    margin-bottom: 0px;
    margin-top: 40px;
}
}
.bk-one {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    margin-top: 32px;
    width: 100%;
}
.bk-two {
    border-radius: 24px;
    box-shadow: rgb(11 43 158 / 15%) 0px 6px 20px -6px;
    padding: 32px 40px;
    width: 680px;
}
.bk-twowo{
    border-radius: 24px;
    box-shadow: rgb(11 43 158 / 15%) 0px 6px 20px -6px;
    padding: 32px 40px;
    width: 680px;
    margin-right: 40px;
}

@media only screen and (min-width: 1024px){
.bk-three {
    min-height: auto;
}
}
.bk-three {
    margin: 10px 10px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
@media only screen and (min-width: 1024px){
.bk-three {
    min-height: auto;
}
}
.bk-four {
    display: flex;
    width: 100%;
}
.bk-five {
    margin-right: 16px;
}
.bk-five img {
    height: 32px;
    max-width: 100%;
    min-width: 32px;
}
.bk-six {
    display: flex;
    flex-direction: column;
}
.bk-four h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    margin: 0px 0px 16px;
    text-align: left;
}
.bk-seven {
    color: rgb(3, 27, 78);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 120%;
    margin: 0px;
}
.bk-three p {
    line-height: 1.5;
}
.bk-eight {
    color: rgb(77, 91, 124);
    margin: 0px;
}
@media only screen and (max-width: 1024px){
.bk-one {
    flex-wrap: wrap;
    -webkit-box-pack: center;
    justify-content: center;
}
}
@media only screen and (max-width: 1024px){
.bk-two {
    flex-basis: auto;
    margin: 16px 8px;
    max-width: none;
}
}
@media only screen and (max-width: 1024px){
.bk-twowo{
    flex-basis: auto;
    margin: 16px 8px;
    max-width: none;
}
}
/*------------------------------------------------------*/
@media (min-width: 600px){
.new-head {
    margin-bottom: 10px;
}
}
.new-head {
    margin-bottom: 10px;
}
.new-head .title-pref {
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 0;
}
.title-pref {
    font-size: 16px;
    margin-bottom: 1.8rem;
    margin-top: 0;
}
@media (min-width: 600px){
.new-head h2 {
    font-size: 54.5455px;
    line-height: 71px;
    margin: 0 0 4rem;
}
}
@media (min-width: 600px){
.new-head h2:before {
    content: "";
    display: table;
    margin-bottom: -0.3028em;
}
}
@media (min-width: 600px){
.new-head h2:after {
    content: "";
    display: table;
    margin-top: -0.3388em;
}
}

.fot-cols {
    display: grid;
    gap: 4rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media(max-width:1200px) {
    .fot-cols {
    gap: 2rem;
}
}
@media(max-width:900px) {
    .fot-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media(max-width:700px) {
    .fot-cols {
    gap: 1.5rem;
    grid-template-columns: auto;
}
}
.fot-col {
    border: 1px solid;
    border-color: #000;
    border-radius: 12px;
    padding: 30px;
}
.fot-col .badge {
    border: 1px solid;
    border-color: #000;
    border-radius: 50px;
    color: #000;
    display: inline-block;
    font-size: 13px;
    margin: 0;
    padding: .2rem 1rem;
    transition: all .18s;
    margin-bottom: 30px;
}
.fot-col .badge:focus, .fot-col .badge:hover{
    background-color: #000;
    color: #fff;
}
.fot-col h3 {
    font-size: 22px;
    margin-bottom: 30px;
}
.fot-col p {
    margin-bottom: 30px;
}
.arrow-link {
    color: #000;
    font-size: 17px;
    text-decoration: none;
    transition: color .18s cubic-bezier(.25, .46, .45, .94);
}
.arrow-link .arrow-link-arrow {
    display: inline-block;
    padding-left: .5rem;
    white-space: nowrap;
    width: 25px;
}
.arrow-link .arrow-link-arrow:before {
    background-color: #000;
    bottom: 4px;
    height: 2px;
    width: 15px;
}
.arrow-link .arrow-link-arrow:after, .arrow-link .arrow-link-arrow:before {
    content: "";
    display: inline-block;
    position: relative;
    transition: all .18s cubic-bezier(.25, .46, .45, .94);
}
.arrow-link .arrow-link-arrow:after {
    border-bottom: 2px solid;
    border-bottom-color: #000;
    border-radius: 1px;
    border-right: 2px solid;
    border-right-color: #000;
    bottom: 1px;
    height: 8px;
    left: -7px;
    padding: 3px;
    transform: rotate(-45deg);
    width: 8px;
}
.arrow-link:focus .arrow-link-arrow:before, .arrow-link:hover .arrow-link-arrow:before {
    background-color: var(--primary);
    width: 22px;
}
.arrow-link:focus .arrow-link-arrow:after, .arrow-link:hover .arrow-link-arrow:after {
    border-color: var(--primary);
}
.arrow-link:focus, .arrow-link:hover {
    color: var(--primary);
}

/*------------------------------------------------------*/
/* Section*/

/* filter-nav */
.se-str .filter-nav {
  margin-bottom: 30px;
}

/* tab */
.se-str .filter-nav .tab {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  font-size: 17px;
  border: 1px solid rgba(255, 255, 255, .05);
  padding: 7px 7px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 400;
  transition: all .2s ease;
}
.light-theme .se-str .filter-nav .tab {
  background-color: var(--light);
  border-color: var(--border);
}
.se-str .filter-nav .tab:hover {
  background-color: var(--primary);
}
.light-theme .se-str .filter-nav .tab:not(.active):hover {
  background-color: var(--primary);
  border-color: var(--light);
  color: #fff;
}
.all-prices-link {
    margin: 0 0 0 auto;
    margin-right: 20px;
}
@media only screen and (max-width: 700px) {
  .all-prices-link {
      display: none;
  }
}
.se-str .filter-nav .tab.active {
  background-color: var(--primary);
  color: #FFFFFF;
}
.corner-img img {
    margin-right: 8px;
    width: 40px;
}
/* compare-table */
.se-str .compare-table {
  position: relative;
  width: 100%;
  border-collapse: collapse;
}
.se-str .compare-table::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 8px;
  z-index: -1;
}
.light-theme .se-str .compare-table::before {
  background-color: #fff;
  border-color: var(--border);  
}

/* custom-thead */
.se-str .custom-thead {
  background-color: var(--dark);
  position: sticky;
  top: 0;
  border: 1px solid rgba(255, 255, 255, .05);
  margin-bottom: 30px;
  z-index: 3;
}
.light-theme .se-str .custom-thead {
  background-color: #fff;
  border-color: var(--border);
}

/* tabs */
.se-str .custom-thead .tabs {
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}
.light-theme .se-str .custom-thead .tabs {
  border-color: var(--border);
}
.se-str .custom-thead .tabs .tab {
  padding: 15px 30px;
  color: var(--text-gray);
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: all .2s ease;
}
.se-str .custom-thead .tabs .tab:nth-child(1) {
  border-right: 1px solid rgba(255, 255, 255, .05);
}
.light-theme .se-str .custom-thead .tabs .tab:nth-child(1) {
  border-color: var(--border);
}
.se-str .custom-thead .tabs .tab.active {
  background-color: var(--semi-dark);
  color: #FFFFFF;
}
.light-theme .se-str .custom-thead .tabs .tab.active {
  background-color: var(--primary);
}
@media only screen and (min-width: 1200px) {
  .se-str .custom-thead {
    display: none;
  }
}

/* tab-content */
.se-str .custom-thead .tab-content {
  padding: 20px;
}
.se-str .custom-thead .tab-content.content-hide {
  display: none;
}

/* table-title-4 */
.se-str .custom-thead .tab-content .table-title-4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
}

/* table-title-1 */
.se-str .custom-thead .tab-content .table-title-1 {
  display: block;
  font-size: 32px;
  color: #FFFFFF;
  font-weight: bold;
  font-family: var(--secondary-font);
}
.light-theme .se-str .custom-thead .tab-content .table-title-1 {
  color: var(--dark);
}
.se-str .custom-thead .tab-content .table-title-1 .coin {
  position: relative;
  font-size: 24px;
  vertical-align: top;
  margin-right: 5px;
}
.se-str .custom-thead .tab-content .table-title-1 .sm-text {
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  margin-left: 5px;
  font-family: var(--primary-font);
  color: var(--text-gray);
}

/* thead */
.se-str .compare-table thead th {
  padding: 20px 20px 30px;
}
.se-str .compare-table thead tr:first-child th:first-child {
  border-top-left-radius: 25px;
}
.se-str .compare-table thead th:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, .05);
}
.light-theme .se-str .compare-table thead th:not(:last-child) {
  border-color: var(--border);
}
@media only screen and (max-width: 1199.98px) {
  .se-str .compare-table thead {
  }
}

/* top-left-corner */
.se-str .compare-table thead th.top-left-corner {
  min-width: 100px;
  width: 60px;
  text-align: center;
  vertical-align: top;
}
.left-corner img {
    width: 40px;
}
.se-str .compare-table thead th.top-left-corner .table-title-head {
  display: block;
  font-size: 32px;
  color: #FFFFFF;
  opacity: .2;
  line-height: 1.2;
}
.light-theme .se-str .compare-table thead th.top-left-corner .table-title-head {
  color: var(--dark);
}
.se-str .compare-table thead th.top-left-corner .table-title-head span {
  letter-spacing: -9px;
}

/* top-right-corner */
.se-str .compare-table thead th.top-right-corner {
  min-width: 100px;
  width: 80px;
}
.price-fiba {
    align-items: center;
    color: rgb(0, 105, 255);
    display: block;
    font-family: "JetBrains Mono", monospace;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
}
.price-other {
    align-items: center;
    color: rgb(255, 76, 108);
    display: block;
    font-family: "JetBrains Mono", monospace;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
}
.bandwidth-price {
    align-items: center;
    color: rgb(77, 91, 124);
    display: block;
    font-family: "JetBrains Mono", monospace;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin: 4px 0px 0px;
}
/* table-title-3 */
.se-str .compare-table thead th.top-right-corner .table-title-3 {
  display: block;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 35px;
}
.light-theme .se-str .compare-table thead th.top-right-corner .table-title-3 {
  color: var(--dark);
}

/* table-title-4 */
.se-str .compare-table thead th.top-right-corner .table-title-4 {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-gray);
}

/* table-title-1 */
.se-str .compare-table thead th.top-right-corner .table-title-1 {
  display: block;
  font-size: 50px;
  font-weight: 300;
  color: #FFFFFF;
  font-family: var(--primary-font);
  margin-bottom: 15px;
}
.light-theme .se-str .compare-table thead th.top-right-corner .table-title-1 {
  color: var(--dark);
}
.se-str .compare-table thead th.top-right-corner .table-title-1 .coin {
  position: relative;
  font-size: 24px;
  vertical-align: top;
  top: 10px;
  margin-right: 5px;
}
.se-str .compare-table thead th.top-right-corner .table-title-1 .sm-text {
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  margin-left: 5px;
  font-family: var(--primary-font);
  color: var(--text-gray);
}

/* hovered */
.se-str .compare-table tbody tr.hovered {
  background-color: var(--semi-dark);
}
.light-theme .se-str .compare-table tbody tr.hovered {
  background-color: var(--light);
}
.se-str .compare-table tbody tr.hovered td {
  border-bottom: 0;
  border-right: 1px solid rgba(255, 255, 255, .08) !important;
}
.light-theme .se-str .compare-table tbody tr.hovered td {
  border-color: var(--border) !important;
}
.se-str .compare-table tbody tr.hovered td:last-child {
  border-right: 0 !important;
}

/* t-space */
.se-str .compare-table tbody tr.t-space {
  border: 0 !important;
}
.se-str .compare-table tbody tr.t-space td {
  border: 0 !important;
}

/* tr-hide */
@media only screen and (min-width: 1200px) {
  .se-str .compare-table tbody tr.tr-hide {
    display: none;
  }
}
@media only screen and (max-width: 700px) {
  .se-str .compare-table tbody tr.tr-hide {
    display: none;
  }
}
/* tbody > tr */
.se-str .compare-table tbody tr:not(.hovered, .t-space):hover {
  background-color: rgba(255, 255, 255, .02);
}
.light-theme .se-str .compare-table tbody tr:not(.hovered, .t-space):hover {
  background-color: var(--light) !important;
}

/* tbody > tr > td */
.se-str .compare-table tbody tr td {
  position: relative;
  padding: 10px 20px;
  color: var(--text-gray);
  font-size: 15px;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, .03);
}
@media only screen and (max-width: 700px) {
.se-str .compare-table tbody tr td {
  padding: 5px 5px;
}
}
.light-theme .se-str .compare-table tbody tr td {
  border-color: var(--border);
}
.se-str .compare-table tbody tr td:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, .05);
}
.light-theme .se-str .compare-table tbody tr td:not(:last-child) {
  border-color: var(--border);
}
.se-str .compare-table tbody tr td.td-hide {
    display: none;
  }
/* hide td[data-for="full"] */
@media only screen and (max-width: 1199.98px) {
  .se-str .compare-table tbody tr td.td-hide {
    display: none;
  }
}

/* left-corner */
.se-str .compare-table tbody .left-corner {
  max-width: 100px;
  width: 80px;
  text-align: center;
  font-weight: 600;
}
@media only screen and (max-width: 1199.98px) {
  .se-str .compare-table tbody .left-corner {
    max-width: 20%;
    width: 20%;
  }
}

/* right-corner */
.se-str .compare-table tbody .right-corner {
  min-width: 100px;
  width: 100px;
  text-align: center;
}
@media only screen and (max-width: 1199.98px) {
  .se-str .compare-table tbody .right-corner {
    min-width: 20%;
    width: 20%;
  }
}
@media only screen and (max-width: 700px) {
  .se-str .compare-table tbody .right-corner {
    min-width: 10%;
    width: 10%;
  }
}

/* se-footer > line */
.se-str .se-footer .line {
  margin: 6px 12px;
}
.se-str .se-footer .line .icon {
  min-width: 16px;
  width: 16px;
  margin-right: 10px;
}
.se-str .se-footer .line .text {
  font-size: 14px;
  color: var(--text-gray);
  font-weight: 400;
  line-height: 1;
}
/*------------------------------------------------------*/

/* plan */
.se-i .plans .plan {
  position: relative;
  padding: 40px;
  background-color: var(--dark);
  border: 1px solid var(--dark);
  border-radius: 12px;
  height: 100%;
  z-index: 2
}
.light-theme .se-i .plans .plan {
  background-color: #fff;
  border-color: var(--border);
}

/* popular-box */
.se-i .plans .plan .popular-box {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #000000;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
}
.light-theme .se-i .plans .plan .popular-box {
  background-color: #fff;
}
.se-i .plans .plan .popular-box::before {
  position: absolute;
  content: '';
  left: -4px;
  top: -4px;
  width: 48px;
  height: 48px;
  background: conic-gradient(
    #fd004c,
    #fe9000,
    #fff020,
    #3edf4b,
    #3363ff,
    #b102b7,
    #fd004c
  );
  animation: spin 1.5s infinite linear;
  border-radius: 50%;
  z-index: -1;
}
.se-i .plans .plan .popular-box img {
  width: 17px;
  filter: invert(1);
}
.light-theme .se-i .plans .plan .popular-box img {
  filter: invert(0);
}

/* plan-icon */
.se-i .plans .plan-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin-bottom: 20px;
  margin-left: -4px
}

/* plan-head */
.se-i .plans .plan-head {
  margin-bottom: 45px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.light-theme .se-i .plans .plan-head {
  border-color: var(--border);
}
.se-i .plans .plan-name {
  font-size: 20px;
  font-family: var(--primary-font);
  font-weight: 600;
  color: #ffffff;
}
.light-theme .se-i .plans .plan-name {
  color: var(--dark);
}
.se-i .plans .plan-para {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  min-height: 50px
}

/* plan-price */
.se-i .plans .plan-price {
  margin-bottom: 20px
}
.se-i .plans .plan-price .price {
  font-size: 30px;
  font-family: var(--primary-font);
  font-weight: 700;
  color: #ffffff;
}
.light-theme .se-i .plans .plan-price .price {  
  color: var(--dark);
}
.se-i .plans .plan-price .price-comment {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
}

/* actions */
.se-i .plans .actions {
  padding-bottom: 10px
}

/* group */
.se-i .plans .group {
  margin-top: 45px;
}
.se-i .plans .group .title-4 {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 20px
}
.light-theme .se-i .plans .group .title-4 {
  color: var(--dark);
}
.se-i .plans .group .list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  padding-right: 26px;
}
.se-i .plans .group .list li:not(last-of-type) {
  margin-bottom: 10px
}
.se-i .plans .group .list li img {
  margin-right: 10px;
  width: 16px
}

/* float-box */
.se-i .plans .group .list li .float-box {
  position: absolute;
  top: 2px;
  right: 0;
  width: 18px;
  height: 18px;
}
.se-i .plans .group .list li .float-box::before {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  content: '?';
  right: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background-color: rgba(255, 255, 255, .1);  
  border-radius: 50%;
  font-size: 12px;
  font-family: var(--secondary-font);
  font-weight: 600;
  line-height: 1;
  transition: all .15s ease-in-out;
}
.light-theme .se-i .plans .group .list li .float-box::before {
  background-color: rgba(0, 0, 0, .1);
}
.se-i .plans .group .list li .float-box:hover::before {
  background-color: rgba(0, 0, 0, .2);
}
.se-i .plans .group .list li .float-box::after {
  position: absolute;
  content: attr(data-text);
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
  width: 280px;
  background-color: var(--semi-dark);
  white-space: normal;
  padding: 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-gray);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 4px;
  box-shadow: 0 10px 45px 0 rgba(0, 0, 0, .4);
  z-index: 3;
  visibility: hidden;
  opacity: 0;
  transition: all .15s ease-in-out;
}
.light-theme .se-i .plans .group .list li .float-box::after {
  background-color: #fff;
  border: 1px solid var(--border);
  background-color: #FFFFFF;
  box-shadow: 0 2px 15px #dde5eb;
}
.se-i .plans .group .list li .float-box:hover::after {
  visibility: visible;
  opacity: 1;
}
@media (min-width: 1200px) {
.se-i .col-xl-3 {
    -ms-flex: 0 0 33%;
    flex: 0 0 33%;
    max-width: 33%;
}
}
/*-------------------------------------*/

.bmhivC {
    margin-top: 2rem;
}
@media (min-width: 1068px){
.cYClTS {
    -webkit-box-pack: start;
    justify-content: flex-start;
}
}
@media (min-width: 1200px){
.cYClTS {
    gap: 24px;
}}
@media (min-width: 896px){
.cYClTS {
    column-gap: 12px;
}}
.cYClTS {
    margin-top: 1rem;
    display: grid;
    gap: 24px;
    -webkit-box-pack: center;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, 280px);
}

.eAuMWQ {
    grid-column: 1 / -1;
    width: 100%;
}
@media (min-width: 960px){
.cxgPFN {
    font-size: 38px;
    padding-top: 64px;
    padding-bottom: 45px;
}}
.cxgPFN {
    font-size: 28px;
    padding-top: 28px;
    padding-bottom: 28px;
}
.do-u-pb--remove {
    padding-bottom: 0!important;
}
.do-u-pt--remove, .do-u-pv--remove {
    padding-top: 0!important;
}
.do-u-mb--remove {
    margin-bottom: 0!important;
}
.gLNnwJ {
    width: 280px;
    height: 320px;
    border-radius: 3px;
    box-shadow: rgb(236 236 236) 0px 2px 4px 0px;
    border: 1px solid rgb(236, 236, 236);
    display: inline-block;
    position: relative;
    margin: 0px auto;
    background-color: white;
    cursor: pointer;
}
.YhNWv {
    padding: 1.5rem;
    height: 100%;
}
.csdHKq {
    position: relative;
    height: 100%;
    display: flex;
}
.eULvKZ {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-shrink: 0;
    width: 76px;
    height: 76px;
    transition: all 250ms ease-in-out 0s;
}
.hOLBeT {
    position: absolute;
    bottom: 0px;
    width: 100%;
    transition: all 250ms ease-in-out 0s;
}
.duBuDQ {
    font-size: 28px;
    font-weight: 600;
    color: rgb(0, 105, 255);
    margin-bottom: 5px;
    line-height: 1.25;
    word-break: break-word;
}
.iuMSOP {
    overflow: hidden;
    max-height: 2.5em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.brtbZM {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
}
.iYVbqr {
    margin-bottom: 0.5rem;
    overflow: hidden;
}
.iYVbqr p {
    color: rgb(3, 27, 78);
    background-color: rgb(255, 255, 255);
    min-height: 1.5rem;
    min-width: calc(280px - 1.5rem);
    margin: 0px;
}
.iYVbqr strong {
    margin-right: 0.25rem;
}
.bvSPhg {
    width: calc(100% - 1.5rem);
    min-height: 42px;
}
.bvSPhg p {
    margin-bottom: 0px;
    font-size: 14px;
    color: rgb(91, 105, 135);
}
.hwGgKJ {
    overflow: hidden;
    max-height: 3em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.ggXay {
    position: absolute;
    bottom: 0px;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all 250ms ease-in-out 0s;
}
.laFnmn {
    background: rgb(250, 250, 250);
    margin-bottom: 0.5rem;
}
.geVoox {
    appearance: none;
    margin: 0px;
    overflow: visible;
    font-style: inherit;
    font-variant: inherit;
    font-stretch: inherit;
    font-family: inherit;
    font-weight: 600;
    color: rgb(0, 97, 235);
    text-transform: none;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    padding: 0px 0.5rem;
    background: rgb(255, 255, 255);
    vertical-align: middle;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    line-height: 36px;
    height: 40px;
    min-width: 40px;
    max-width: none;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(0, 97, 235);
    width: 100%;
}
.kvxuOf {
    appearance: none;
    margin: 0px;
    overflow: visible;
    font-style: inherit;
    font-variant: inherit;
    font-stretch: inherit;
    font-family: inherit;
    font-weight: 600;
    color: rgb(255, 255, 255);
    text-transform: none;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    padding: 0px 0.5rem;
    background: rgb(0, 97, 235);
    vertical-align: middle;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    line-height: 36px;
    height: 40px;
    min-width: 40px;
    max-width: none;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
    width: 100%;
}
.laFnmn {
    background: rgb(250, 250, 250);
    margin-bottom: 0.5rem;
}
@media (min-width: 768px){
.YhNWv:hover .eULvKZ {
    visibility: hidden;
    opacity: 0;
}}
@media (min-width: 768px){
.YhNWv:hover .hOLBeT {
    transform: translateY(-50px);
}}
@media (min-width: 768px){
.YhNWv:hover .ggXay {
    visibility: visible;
    opacity: 1;
}}
@media (min-width: 768px){
.YhNWv:hover .hwGgKJ {
    visibility: hidden;
    opacity: 0;
}
}

.oneri-bg-1 {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin-right: 1rem;
    background-color: rgb(91, 105, 135);
}

.oneri-text-1 {
    background-color: rgb(91, 105, 135);
    color: white;
    border-radius: 2px;
    padding: 3px 9px 2px;
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    font-weight: bold;
    height: 26px;
    text-transform: uppercase;
}

.version-os p {
    color: rgb(3, 27, 78);
    background-color: rgb(255, 255, 255);
    margin: 0px;
}
@media (max-width: 1199px){
.create-btn {
    width: 100%;
}
}

.desc-app {
margin-left: -15px!important;
}


.comp-sec .tables-toggler .buttons {
  background-color: var(--semi-dark);
  padding: 8px;
  border-radius: 50px;
}
.light-theme .comp-sec .tables-toggler .buttons {
  background-color: #fff;
}
.comp-sec .tables-toggler 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 .comp-sec .tables-toggler button {
  background-color: #fff;
  color: var(--darkBlue);
}
.comp-sec .tables-toggler button.active {
  background-color: var(--primary);
  color: #fff;
}

@media only screen and (max-width: 1599.98px) {
  .comp-sec .t-container {
    overflow-x: auto;
  }
}

.comp-sec .t-head {
  display: flex;
  align-items: center;
  top: 0;
}

.comp-sec .t-head .t-col {
  background-color: var(--semi-dark);
  padding: 18px 30px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}
.light-theme .comp-sec .t-head .t-col {
  background-color: #fff;
  color: var(--darkBlue);
}
.comp-sec .t-head .t-col.t-col-1 {
  width: 50%!important;
  justify-content: flex-start;
  text-align: left;
}
.comp-sec .t-head .t-col.t-col-2 {
  width: 25%;
}
.comp-sec .t-head .t-col.t-col-3 {
  width: 25%;
}

.comp-sec .t-head .t-col:nth-child(1) {
  border-radius: 8px 0 0 0;
}
.comp-sec .t-head .t-col:last-child {
  border-radius: 0 8px 0 0;
}
.comp-sec .t-head .t-col:not(:nth-child(1)) {
  border-left: 0;
}
.comp-sec .t-head .t-col img {
  width: 20px;
  margin-right: 15px;
}
.light-theme .comp-sec .t-head .t-col img {
  filter: invert(1);
}
@media only screen and (max-width: 1599.98px) {
  .comp-sec .t-head .t-col.t-col-1 {
    width: 50%;
    justify-content: center;
  }
}

.comp-sec .t-body .t-row {
  display: flex;
  align-items: center;
}

.comp-sec .t-body .t-col {
  color: #fff;
  font-size: 16px;
  padding: 10px 30px;
  border: 1px solid var(--border);
  border-top: 0;
  height: 75px;
  text-align: center;
}
.light-theme .comp-sec .t-body .t-col {
  background-color: #fff;
  color: var(--darkBlue);
}
.comp-sec .t-body .t-row:last-child .t-col:first-child {
  border-bottom-left-radius: 8px;
}
.comp-sec .t-body .t-row:last-child .t-col:last-child {
  border-bottom-right-radius: 8px;
}
.comp-sec .t-body .t-col.t-col-1 {
  width: 50%!important;
  display: flex;
  align-items: center;
  text-align: left;
}
.comp-sec .t-body .t-col.t-col-1 img {
  max-height: 24px;
  margin-right: 15px;
}
.comp-sec .t-body .t-col:not(.t-col-1) {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.comp-sec .t-body .t-col.t-col-2 {
  width: 25%;
}
.comp-sec .t-body .t-col.t-col-3 {
  width: 25%;
}

.comp-sec .t-body .t-col:not(:first-child) {
  border-left: 0;
}
@media only screen and (max-width: 1599.98px) {
  .comp-sec .t-body .t-row {
    align-items: inherit;
  }
  .comp-sec .t-body .t-col {
    padding: 10px 20px;
    height: auto;
    font-size: 14px;
  }
  .comp-sec .t-body .t-col.t-col-1 {
    width: 50%;
    flex-direction: column;
    text-align: center;
  }
  .comp-sec .t-body .t-col.t-col-1 img {
    max-height: 24px;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

@media (min-width: 960px) {
.sticky-right {
    position: sticky;
    top: 200px;
    border: 0px none;
    padding-left: 3.5rem;
    padding-top: 1rem;
    margin-top: 0px;
}
}