/* Header */
.header {
  padding: 30px 0 50px;
  background: #ffffff;
  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: 500;
  color: var(--dark);
  margin-right: 45px;
}
.header .navigator .title::before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--dark);
  right: -24px;
}

/* item */
.header .navigator .item {
  font-size: 15px;
  font-weight: 300;
  color: var(--dark);
  border-bottom: 1px solid transparent;
}
.header .navigator .item.active {
  font-weight: 500;
  border-bottom-color: var(--dark);
 }
.header .navigator .item:not(:last-child) {
  margin-right: 25px;
}
.header .navigator .item:hover {
  border-bottom-color: var(--dark);
}

/* title-5 */
.header .title-5 {
  font-size: 17px;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 10px;
}

/* title-1 */
.header .title-1 {
  font-size: clamp(2.01rem,calc(.5rem + 2.9004vw),3.247rem);
  font-family: var(--third-font);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 30px;
}

/* hero */
.header .hero {
  position: absolute;
  bottom: 0px;
  left: 55%;
  width: 40%;
}
@media only screen and (max-width: 1199.98px) {
  .header .hero {
    left: 60%;
    width: 700px;
    visibility: hidden;
  }
}
@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 III */
.se-ii {
  padding: 5px 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;
  }
}
/*-------------------------------------*/
/*page padding */
.p-80 {
    padding: 80px 0;
    background-color: #ffffff;
}
.about .i-c img {
    width: 400px;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
/* -- :: About */
.about .row:not(:last-child) {
  margin-bottom: 60px;
}
/* text contain */
.about .t-c h3 {
  font-size: 32px;
  font-weight: bold;
  color: var(--typeColor);
  text-transform: capitalize;
}
.about .t-c p {
  font-size: 17px;
  color: var(--pColor);
}
/* image contain */
.about .i-c img {
  width: 400px;
}
/* ------------------------------- */

/* -- :: Features */
/* text contain */
.features .t-c h4 {
  font-size: 22px;
  color: var(--typeColor);
  font-weight: 600;
}
.features .t-c p {
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.5 !important;
  color: var(--pColor);
  font-weight: 400;
}
/* ------------------------------- */

/* -- :: Compare */

/* table contain */
.compare .table-contain {
  box-shadow: 0 0 0 1px rgba(255,255,255,.1), 0 2px 4px 0 rgba(14,30,37,.12);
  border-radius: 8px;
  overflow: hidden;
}
.compare table {
  background: #fff;
}
/* table head */
.compare table thead {
  background: #e3ebed;
}
.compare table thead tr th {
  padding: 17px 20px;
}
.compare table thead tr th:nth-child(3) {
  border: 2px solid var(--thBlue);
  border-bottom: 0;
}
.compare table thead tr th img {
  min-width: 130px;
  width: 130px;
}
.compare table thead tr th span.header {
  font-size: 24px;
  color: var(--typeColor);
}
.compare table thead tr th span.th-title {
  font-size: 24px;
}
/* table body */
.compare table tbody tr:nth-child(odd) {
  background: rgba(14,30,37,.02);
}
.compare table tbody tr td:nth-child(even) {
  background: rgba(14,30,37,.02);
}
.compare table tbody tr th,
.compare table tbody tr td {
  position: relative;
  padding: 17px 20px;
  font-size: 17px;
  font-weight: 500;
  color: var(--typeColor);
  min-width: 200px;
}
.compare table tbody tr td:nth-child(3) {
  border-right: 2px solid var(--thBlue);
  border-left: 2px solid var(--thBlue);
}
.compare table tbody tr:last-child td:nth-child(3) {
  border-bottom: 2px solid var(--thBlue);
}
.compare table tbody tr td span.text {
  z-index: 1;
  position: relative;
}
.compare table tbody tr td span.text i.fa-check {
  color: var(--thGreen);
}
.compare table tbody tr td span.text i.fa-times {
  color: var(--hotColor);
}
/* ------------------------------- */

/* -- :: Wrapper 2 */
.wrapper-2 img {
  width: 400px;
}
/* text contain */
.wrapper-2 .t-c h3 {
  font-size: 32px;
  font-weight: bold;
  color: var(--typeColor);
  text-transform: capitalize;
}
.wrapper-2 .t-c p {
  font-size: 17px;
  color: var(--pColor);
}
/* ------------------------------- */

/* -- :: Media Query */

/* Extra Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  /* -- :: Wrapper */
  .wrapper .boxes .row > div:nth-child(1) .box,
  .wrapper .boxes .row > div:nth-child(2) .box,
  .wrapper .boxes .row > div:nth-child(3) .box {
    border-bottom-width: 0;
  }
  .wrapper .boxes .row > div:nth-child(4) .box {
    border-left-width: 0;
  }
}
/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  /* -- :: Header */
  header {
    padding: 120px 0 70px;
  }
  header h1 {
    font-size: 36px;
  }
  /* -- :: Wrapper */
  .wrapper .boxes .row > div:nth-child(3) .box {
    border-left-width: 0;
  }
  .wrapper .boxes .row > div:nth-child(4) .box {
    border-left-width: 1px;
    border-bottom-width: 0;
  }
}
/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  /* -- :: About */
  .about .t-c h3 {
    font-size: 28px;
  }
  .about .t-c p {
    font-size: 17px;
  }
  /* -- :: Compare */
  .compare table thead tr th span.header {
    font-size: 18px;
  }
  .compare table tbody tr th, .compare table tbody tr td {
    font-size: 14px;
  }
}
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  /* -- :: Header */
  header {
    padding: 120px 0 60px;
  }
  header h1 {
    font-size: 28px;
  }
  header p {
    font-size: 18px;
  }
  /* -- :: About */
  .about .t-c h3 {
    font-size: 24px;
  }
  .about .t-c p {
    font-size: 16px;
  }
  .about .i-c img {
    width: 240px;
  }
  /* -- :: Wrapper 2 */
  .wrapper-2 img {
    width: 240px;
  }
  .wrapper-2 .t-c h3 {
    font-size: 24px;
  }
  .wrapper-2 .t-c p {
    font-size: 16px;
  }
}
/* ------------------------------- */
/*------------------Trustpilot-------------------*/

.p-80t {
  padding: 20px 0;
  background-color: #ffffff;
}

.col-md-2t {
    padding-top:50px;
}
.col-md-3t {
    padding: 20px;
    background-color: #ecf4fa;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 30%;
}
.row1 {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}
.trustpilot-widget {
  max-width: 1350px;
  background: transparent;
  color: #333;
  padding: 30px 0 25px 0;
  overflow: hidden;
}
.trustpilot-widget .wrapper-left a {
  color: #333;
  font-weight: 600;
  text-decoration: underline;
}
.trustpilot-widget .wrapper-left {
  text-align: center;
}
.trustpilot-widget .wrapper-left .title {
  color: #333;
  font-size: 24px;
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
}
.trustpilot-widget .wrapper-left .rating img {
  max-width: 160px;
  margin: auto;
}
.trustpilot-widget .wrapper-left .info {
  color: #333;
  font-size: 13px;
  line-height: 45px;
}
.trustpilot-widget .wrapper-left .brand-logo img {
  max-width: 25px;
  margin: auto;
  margin-top: -10px;
  display: inline-block;
}
.trustpilot-widget .wrapper-left .brand-logo p {
  font-size: 18px;
  line-height: 35px;
  color: #333;
  text-align: center;
  display: inline-block;
}
.trustpilot-widget .reviews {
  margin-left: 2%
}
/* The controlsy */
.trustpilot-widget .carousel-control {
    height: 25px;
    width: 25px;
    border: 1px solid #9E9E9E;
    border-radius: 50%;
    margin-top: 60px;
    font-size: 25px;
    background: transparent;
    line-height: 18px;
}
.trustpilot-widget .carousel-control.right {
  margin-right: -50px;
  color: #333;
  text-shadow: none;
}
.trustpilot-widget .carousel-control.left {
  left: -70px;
  color: #333;
  text-shadow: none;
}
.trustpilot-widget .carousel-control.right:hover, .trustpilot-widget .carousel-control.left:hover {
    color: #333;
}
.trustpilot-widget .carousel-inner .rating img {
  max-width: 110px
}
.trustpilot-widget .carousel-inner {
    overflow: hidden
}
.trustpilot-widget .carousel-inner .date, .trustpilot-widget .carousel-inner .name {
  color: rgba(0,0,0,0.6);
  font-size: 13px;
}
.trustpilot-widget .carousel-inner .title {
  margin: 15px 0 10px 0;
  font-weight: 700;
  text-overflow: ellipsis;
  overflow: hidden; 
  width: 100%; 
  white-space: nowrap; 
}
.trustpilot-widget .carousel-inner .descriptions {
    min-height: 42px;
}
.trustpilot-widget .carousel-inner .name {
  margin-top: 25px
}
@media (max-width: 575.98px) {
  .col-md-2t {
     display: none;
    padding-top:50px;
}
.col-md-3t {
    display: none;
}
.row1 {
    display: none;
}
.trustpilot-widget {
  display: none;
}
.trustpilot-widget .wrapper-left a {
  display: none;
}
.trustpilot-widget .wrapper-left {
  display: none;
}
.trustpilot-widget .wrapper-left .title {
  display: none;
}
.trustpilot-widget .wrapper-left .rating img {
  display: none;
}
.trustpilot-widget .wrapper-left .info {
  display: none;
}
.trustpilot-widget .wrapper-left .brand-logo img {
  display: none;
}
.trustpilot-widget .wrapper-left .brand-logo p {
  display: none;
}
.trustpilot-widget .reviews {
  display: none;
}

}
.trustpilot-widget .carousel-inner .name {
  margin-top: 25px
}

