/* ------------------------ *
- Page: Index.html
--------------i------------- */

/* Header HERO OFFER SECTIOMN */
.header {
  padding: 70px 0 20px;
  background: rgb(152,221,202);
  background: linear-gradient(0deg, rgba(152,221,202,1) -20%, rgba(173,232,216,1) 15%, rgba(173,232,216,1) 54%, rgba(152,221,202,1) 100%);
  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
  }
}


/* ========== Plans Container CSS ========== */

.plan_outer_container{
    margin:0 auto !important;
}

.plan_container_pointers{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:20px;
}

.outer_plan_features{
    display: block;
    padding-left: 25px;
    font-size: 14px;
    line-height: 1.2;
    position: relative;
    white-space: nowrap;
}

.outer_plan_features:before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 1px;
    width: 15px;
    height: 15px;
    color: #13b763;
    font-weight: bold;
    font-size: 16px;
}

.plan_container {
    width: 100%;
    /*margin: 84px auto 0;*/
    /*padding: 0 10px;*/
    /* padding-top: 60px;  */
    position: relative;
}

.slider-controls {
    position: absolute;
    bottom: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-50%);
    /*padding: 0 20px;*/
    z-index: 1000;
}

.slider-button {
    align-items: center;
    background: #fff;
    border-radius: 50%;
    color:#673DE6;
    box-shadow: 0 4px 16px #00000029;
    cursor: pointer;
    height: 45px;
    justify-content: center;
    width: 45px;
    z-index: 2;
    font-size: 22px;
    line-height: 22;
    border: 0;
    outline: 0;
}

.slider-prev{
    transform:rotate(180deg);
}

.slider-button:disabled {
    background-color: #fff;
    opacity:0;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
    padding: 80px 0px 20px;
}

.plan_column {
    background: #fff;
    border: 1px solid #D4D4D8;
    border-radius: 15px;
    margin: 10px;
    padding: 44px 17px 14px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    transition: all .3s ease-in-out;
    position: relative;
    min-height: 600px;
}

/*.plan_column:hover {
    transform: scale(1.02);
    z-index: 100;
    
}*/

.plan_column:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 48px;
    background: #fff;
    border-radius: 16px 16px 0 0;
}

#plan2{
    border-color:#673DE6;
}

#plan3{
    border-color:#673DE6;
    background-color: #f5f3fe;
}
#plan3:before{
    background-color: #f5f3fe;
}

#plan1:hover,#plan4:hover{
    border-color:#673DE6;
}


.plan-badge {
    position: absolute;
    display: block;
    width: 100%;
    top: -46px;
    z-index: -1;
    left: 0;
    text-align: center;
    padding: 7px 0 44px;
    padding-top: 8px;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
}

.plan-badge:before {
    position: absolute;
    background: #673DE6;
    content: "";
    left: -4px;
    top: -2px;
    right: 0;
    bottom: -43px;
    z-index: -2;
    border-radius: 14px 14px 0 0;
}

.plan-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shinePlanBadge 2s infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes shinePlanBadge {
  100% {
    left: 125%;
  }
}

/* Pricing plan Start */

.plan-badge-img {
    filter: brightness(15.5);
}

.plan-badge-text{
    color: #fff;
    font-size: 15px;
    padding-top: 4px;
    text-transform: uppercase;
    font-weight: bolder;
}

.plan_title {
    font-weight: 500;
    color: var(--dark);
    font-size: 20px;
}

.plan_para {
    font-size: 14px;
    font-weight: 500;
    padding-top: 8px;
    color:var(--text-gray);
}

.plan_content {
    border-radius: 20px;
    transition: all .3s ease-in-out;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content:space-between;
}

.plan_header_box {
    position: relative;
    z-index: 10;
}

.plan_header_padding {
    padding-top: 16px;
}

.plan_price_strikethrough {
    font-size: 14px;
    line-height: 1;
    display: inline-block;
    position: relative;
    font-weight: 400;
}

.plan_price_strikethrough:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -4px;
    width: calc(100% + 8px);
    height: 1px;
    background: #61646e;
}

.plan_currency_icon {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-weight: 400;
}

.plan_old_price {
    /*padding-left: 2px;*/
}

.plan_save {
    color: #ED7E07;
    background: #FFF0E3;
    padding: 8px 16px;
    font-size: 18px;
    font-weight: 600;
    margin-left: 10px;
    border-radius: 8px;
    display: inline-block;
}

.plan_price {
    width: 100%;
    line-height: 1;
    margin-top: 15px;
    display: flex;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-gray);
}

.plan_price_discounted {
    font-size: 48px;
    margin: 0 3px;
    line-height: 1.2;
    font-weight: 600;
}

.plan_price_unit {
    font-size: 16px;
    transform: translate(0,-4px);
    font-weight: 400;
    align-self: flex-end;
}

.plan_month_free {
    color: #673DE6;
    font-size: 18px;
    font-weight: 600;
    margin-top: 14px;
    display: inline-block;
}

.plan_button_box {
    margin: 24px 0 22px;
    text-align: center;
}

.plan_button {
    display:flex;
    justify-content:center;
    align-items:center;
    color: #673DE6;
    background: #fff;
    border-radius: 10px;
    padding: 17px 14px;
    font-size: 18px;
    border: 1px solid #673DE6;
    width: 100%;
    cursor: pointer;
    transition: all .3s ease-in-out;
    font-weight:500;
}

.plan_button:hover {
    background: #673DE6;
    color: #fff;
}

.plan_button {
  position: relative;
  overflow: hidden;
}

.plan_button:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shineMove 2s forwards;
  pointer-events: none;
  z-index: 1;
}

@keyframes shineMove {
  100% {
    left: 125%;
  }
}


.btn_active_plan{
    background: #673DE6;
    color: #fff;
}

.btn_active_plan {
  position: relative;
  overflow: hidden;
}

.btn_active_plan::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shineMove 2s infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes shineMove {
  100% {
    left: 125%;
  }
}


.plan_renew_note {
    padding: 2px 0 30px;
    font-size: 12px;
}

.plan_divider {
    margin-bottom: 34px;
    width: 100%;
    border: none;
    border-top: 1px solid var(--border);
}

.plan_feature_list {
    padding: 0;
    list-style: none;
}

.plan_feature, .plan_feature_crossed {
    display: block;
    margin-bottom: 18px;
    padding-left: 25px;
    font-size: 13px;
    line-height: 1.2;
    position: relative;
}

.plan_feature:before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 1px;
    width: 15px;
    height: 15px;
    color: #13b763;
    font-weight: bold;
    font-size: 16px;
}

.plan_feature_crossed {
    color: #9baab8 !important;
}

.plan_feature_crossed:before {
    content: "✗";
    position: absolute;
    top: 0;
    left: 1px;
    width: 15px;
    height: 15px;
    color: #ef4444;
    font-weight: bold;
    font-size: 16px;
}

.plan_feature_bold {
    font-weight: 800;
}

.plan_feature_highlight {
    color: var(--text-gray);
    text-decoration: underline;
    text-decoration-color: #B7C3D1;
    text-decoration-style: dashed;
    text-underline-position: under;
    padding-bottom: 2px;
    position: relative;
    cursor: help;
}

.plan_feature_highlight[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #673DE6;
    color: white;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    min-width: 150px;
    max-width: 300px;
    max-height: 120px;
    overflow-y: auto;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
    transform: translateX(-50%) translateY(-8px) scale(0.98);
}

.plan_feature_highlight[data-tooltip]::after {
    content: '';
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #673DE6;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    pointer-events: none;
    transform: translateX(-50%) scale(0.98);
}

.plan_feature_highlight[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(0.98);
}

.plan_feature_highlight[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(0.98);
}

.plan_feature_list_title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.plan_toggle_features {
    text-align: left;
    padding-bottom: 28px;
    margin-top: auto;
}

.plan_toggle_button {
    cursor: pointer;
    transition: all .3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 8px 5px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: var(--dark);
    position: relative;
    width:100%;
    margin-bottom:20px;
}

.plan_toggle_button:after {
    background:#673DE6;
    width: 70px;
    height: 2px;
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all .3s ease-in-out;
}

.plan_toggle_button:hover:after {
    width: 138px;
}

.plan_hidden_features {
    /*display: none;*/
}

.plan_hidden_features.show {
    display: block;
    animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 2000px;
    }
}

.month_free {
    color: #673DE6;
    font-size: 18px;
    font-weight: 600;
    margin-top: 14px;
    display: inline-block;
}

.domain_span{
    background: #13b763;
    color: #ffffff;
    padding: 7px 12px;
    border-radius: 100px;
    font-size: 13px;
    display: inline-block;
    margin-top: -7px;
    margin-left:3px;
}

.rupee_icon{
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    margin-right:2px;
}

/* ========== RESPONSIVE RULES ========== */

/* Mobile - Show 1 plan */
@media (max-width: 480px) {
    .plan_column {
        width: calc(100% - 20px);
        min-width: calc(100% - 20px);
        max-width: calc(100% - 20px);
    }
    
    .slider-controls {
        display: flex;
    }
    
    .carousel-track {
        width: 100%;
    }
}

/* Tablet - Show 2 plans */
@media (min-width: 481px) and (max-width: 768px) {
    .plan_column {
        width: calc(50% - 20px);
        min-width: calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
    
    .slider-controls {
        display: flex;
    }
}

/* Laptop Medium - Show 3 plans */
@media (min-width: 769px) and (max-width: 1024px) {
    .plan_column {
        width: calc(33.333% - 20px);
        min-width: calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
    
    .slider-controls {
        display: flex;
    }
}

/* Laptop Large - Show 4 plans */
@media (min-width: 1025px) and (max-width: 1200px) {
    .plan_column {
        width: calc(25% - 20px);
        min-width: calc(25% - 20px);
        max-width: calc(25% - 20px);
    }
    
    .slider-controls {
        display: none;
    }
}

/* Desktop - Show 4 plans */
@media (min-width: 1200px) {
    .plan_column {
        width: calc(25% - 20px);
        min-width: calc(25% - 20px);
        max-width: calc(25% - 20px);
    }

    .slider-controls {
        display: none;
    }
}

/* Additional responsive adjustments */
@media (max-width: 768px) {
    .plan_container {
        /* padding-top: 80px; */
    }
    
    .plan_save {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .plan_price_discounted {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .plan_container {
        /* padding: 80px 5px 0; */
    }
    
    .plan_column {
        /*margin: 5px;*/
    }
    
    .plan_save {
        display: block;
        margin: 8px 0;
        margin-left: 0;
        text-align: center;
    }
}

.plan_hidden_features {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translateY(-20px);
  transition: max-height 0.6s ease, opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

.plan_hidden_features.expanded {
  max-height: 2000px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  overflow: visible;
}

/*.plan_toggle_button {*/
/*  display: inline-block;*/
/*  cursor: pointer;*/
/*  margin-top: 10px;*/
/*  color: #0073e6;*/
/*  font-weight: bold;*/
/*}*/

/*BLOG SECTION CSS START*/

.section-blog-container {
  width:100%;
  background-color: #ffffff;
}

.div-container {
  /*max-width: 1600px;*/
  /*margin: 0 auto;*/
}

.div-heading-wrapper {
  margin-bottom: 40px;
}

.div-heading-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.h2-main-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000000;
}

.a-view-all-btn {
  font-size: 16px;
  background-color: #673DE6;
  font-weight: 500;
  color: #ffffff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

/* CSS-only slider container */
.blog-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}

.blog-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 18px;
  padding: 10px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.blog-slider::-webkit-scrollbar {
  display: none;
}

/* Navigation hint styling */
.desktop-hint {
  display: inline !important;
}

/* Blog Card Styles */
.blog-card {
  background-color: #f9f9f9;
  border-radius: 8px 8px 0px 0px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: auto;
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 100%;
  min-width: 280px;
}

.blog-image-wrapper {
  overflow: hidden;
  height: 200px;
  position: relative;
  background-color: #f0f0f0;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.4) rotate(5deg);
}

.blog-card:hover {
  cursor: pointer;
}

.blog-card:hover .blog-title {
  color: #673DE6;
}

.blog-content {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}

.blog-author {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.blog-author a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #673DE6;
  transition: color 0.3s ease;
}

.blog-author a:hover {
  color: #5429c7;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  margin-right: 10px;
  background-color: #673DE6;
  flex-shrink: 0;
}

.author-name {
  font-size: 13px;
  font-weight: 600;
  color: #333333;
  margin: 0;
}

.blog-title {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin: 8px 0 12px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-tag {
  margin-top: auto;
  padding-top: 8px;
}

.tag-label {
  display: inline-block;
  background-color: rgba(103, 61, 230, 0.1);
  color: #673DE6;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

/* Responsive breakpoints */
@media (max-width: 480px) {
  .blog-card {
    width: calc(100% - 20px);
    max-width: 320px;
  }
  
  .blog-image-wrapper {
    height: 180px;
  }
  
  .blog-content {
    padding: 16px;
  }
  
  .blog-title {
    font-size: 16px;
  }

  .desktop-hint {
    display: none !important;
  }
  


  .nav-controls {
    display: none;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .blog-card {
    width: calc(50% - 10px);
    min-width: 280px;
  }
  
  .blog-image-wrapper {
    height: 160px;
  }
}

@media (min-width: 769px) and (max-width: 1199px) {
  .blog-card {
    width: calc(33.333% - 14px);
    min-width: 280px;
  }
  
  .blog-image-wrapper {
    height: 150px;
  }
  
  .blog-title {
    font-size: 15px;
  }
}

@media (min-width: 1200px) {
  .blog-card {
    width: calc(25% - 15px);
    min-width: 270px;
  }
  
}

a, a:hover {
  text-decoration: none;
}

/* Smooth scrolling enhancement */
.blog-slider {
  scroll-padding-left: 20px;
}

/* Hide scrollbar but keep functionality */
.blog-slider {
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 769px) and (max-width: 1199px) {
  .blog-image-wrapper {
    height: 140px;
  }
  
  .blog-title {
    font-size: 15px;
  }
}

@media (min-width: 1200px) {
  .blog-image-wrapper {
    height: 150px;
  }
}

a, a:hover {
  text-decoration: none;
}

/* Pricing plan Ends */

/* 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: #ffffff;*/
/*  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: 25px;*/
/*  padding-bottom: 10px;*/
/*  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;*/
/*}*/

/* 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;
}
/*------------------------HERO OFFFER CSS------------------------------*/

/* Header */
/*.main-header {*/
/*  position: relative;*/
/*  padding: 30px 0;*/
/*  overflow: hidden;*/
/*}*/
/*.light-theme .main-header {*/
/*  background-color: #e6f4f8;*/
/*  background-image: url(../images/theme/bghxh.webp);*/
/*  background-size: cover;*/
/*  background-repeat: no-repeat;*/
/*  background-position: center bottom;*/
/*}*/

/* title-1 & para-1 */
/*.main-header .title-1 {*/
/*  font-size: 60px;*/
/*  font-family: var(--primary-font);*/
/*  font-weight: 900;*/
/*  color: #000000;*/
/*  line-height: 1.2;*/
/*  max-width: 600px;*/
/*}*/
/*.light-theme .main-header .title-1 {*/
/*  color: #000000;*/
/*}*/
/*.main-header .para-1 {*/
/*  font-size: 16px;*/
/*  font-family: var(--secondary-font);*/
/*  line-height: 1.6;*/
/*  color: var(--text-gray);*/
/*  opacity: 0.8;*/
/*  max-width: 600px;*/
/*}*/
/*@media only screen and (max-width: 767px) {*/
/*  .main-header {*/
/*    padding: 100px 0 60px;*/
/*  }*/
/*  .main-header .title-1 {*/
/*    font-size: 44px;*/
/*  }*/
/*  .main-header .para-1 {*/
/*    font-size: 14px;*/
/*  }*/
/*}*/

/* notify */
/*.main-header .notify {*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  justify-content: flex-start;*/
/*  border: 1px solid rgba(255, 255, 255, 0.1);*/
/*  background-color: var(--semi-dark);*/
/*  border-radius: 50px;*/
/*  cursor: default;*/
/*}*/
/*.light-theme .main-header .notify {*/
/*  border: 1px solid var(--border);*/
/*  background-color: #ffffff;*/
/*}*/
/*.main-header .notify .icon {*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  background-color: #ffffff;*/
/*  border-radius: 50px;*/
/*  width: 54px;*/
/*  min-width: 54px;*/
/*  height: 54px;*/
/*}*/
/*.main-header .notify .icon img {*/
/*  width: 16px;*/
/*}*/
/*.light-theme .main-header .notify .icon {*/
/*  background-color: var(--light);*/
/*}*/
/*.main-header .notify .text {*/
/*  padding: 0 25px 0 20px;*/
/*  font-size: 14px;*/
/*  color: #ffffff;*/
/*  font-weight: 400;*/
/*}*/
/*.light-theme .main-header .notify .text {*/
/*  color: var(--text-gray);*/
/*}*/
/*@media only screen and (max-width: 767px) {*/
/*  .main-header .notify .icon {*/
/*    display: none;*/
/*  }*/
/*  .main-header .notify .text {*/
/*    padding: 15px 30px;*/
/*    font-size: 14px;*/
/*  }*/
/*}*/

/* header-form */
/*.main-header .header-form {*/
/*  position: relative;*/
/*  background-color: var(--semi-dark);*/
/*  border: 1px solid rgba(255, 255, 255, 0.1);*/
/*  padding: 60px 40px 40px;*/
/*  text-align: center;*/
/*  border-radius: 16px;*/
/*  max-width: 380px;*/
/*}*/
/*.light-theme .main-header .header-form {*/
/*  background-color: #fff;*/
/*  border: 1px solid var(--border);*/
/*  background-color: #ffffff;*/
/*}*/

/* form-title */
/*.main-header .form-title {*/
/*  font-size: 22px;*/
/*  line-height: 1.4;*/
/*  color: #ffffff;*/
/*  font-weight: 700;*/
/*}*/
/*.light-theme .main-header .form-title {*/
/*  color: var(--dark);*/
/*}*/

/* form-label */
/*.main-header .form-label {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: flex-start;*/
/*}*/
/*.main-header .form-label:not(:last-child) {*/
/*  margin-bottom: 15px;*/
/*}*/
/*.main-header .form-label input {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: flex-start;*/
/*  height: 54px;*/
/*  padding: 0 20px;*/
/*  background-color: #282a3f;*/
/*  border: 1px solid rgba(255, 255, 255, 0.1);*/
/*  overflow: hidden;*/
/*  width: 100%;*/
/*  border-radius: 4px;*/
/*  font-size: 14px;*/
/*  color: #ffffff;*/
/*  font-family: var(--primary-font);*/
/*  font-weight: 500;*/
/*  outline: none;*/
/*  transition: background-color 0.2s ease;*/
/*}*/
/*.light-theme .main-header .form-label input {*/
/*  color: var(--dark);*/
/*  background-color: var(--light);*/
/*  border-color: var(--border);*/
/*}*/
/*.main-header .form-label input:hover {*/
/*  background-color: #2f3146;*/
/*}*/
/*.light-theme .main-header .form-label input:hover {*/
/*  background-color: #eaedef;*/
/*  border-color: var(--border);*/
/*}*/
/*.main-header .form-label input::placeholder {*/
/*  color: rgba(255, 255, 255, 0.3);*/
/*  font-weight: 400;*/
/*}*/
/*.light-theme .main-header .form-label input::placeholder {*/
/*  color: rgba(0, 0, 0, 0.3);*/
/*}*/

/* hr */
/*.main-header .hr {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*}*/
/*.main-header .hr::before,*/
/*.main-header .hr::after {*/
/*  position: absolute;*/
/*  content: "";*/
/*  left: 0;*/
/*  height: 1px;*/
/*  width: 100px;*/
/*  background-color: rgba(255, 255, 255, 0.2);*/
/*  z-index: 1;*/
/*  margin-top: 1px;*/
/*}*/
/*.light-theme .main-header .hr::before,*/
/*.light-theme .main-header .hr::after {*/
/*  background-color: rgba(0, 0, 0, 0.2);*/
/*}*/
/*.main-header .hr::after {*/
/*  left: unset;*/
/*  right: 0;*/
/*}*/
/*.main-header .hr span {*/
/*  position: relative;*/
/*  font-size: 14px;*/
/*  font-weight: 500;*/
/*  color: var(--text-gray);*/
/*  z-index: 2;*/
/*}*/

/* form-comment */
/*.main-header .form-comment {*/
/*  font-size: 12px;*/
/*  font-weight: 500;*/
/*  color: var(--text-gray);*/
/*}*/
/*.main-header .form-comment a {*/
/*  color: var(--primary);*/
/*}*/
/*.main-header .form-comment a:hover {*/
/*  text-decoration: underline;*/
/*}*/

/* review and rating */

/*^^^^^^^^^^^^^^^ rating-and-reviews ^^^^^^^^^^^^^^^^^^*/

.counter-section-one .rating-and-reviews p {
  font-size: 15px;
  font-weight: bold !important;
}
.counter-section-one .child-container {
  margin-top: 1rem;
}
.counter-section-one .rating-and-reviews p strong {
  font-weight: 900 !important;
  color: #04b928;
}
.counter-section-one .forbs {
  font-size: 12px !important;
  max-width: 13rem;
}
.counter-section-one .forbs span {
  font-weight: 900 !important;
  color: black;
}
.counter-section-one {
  padding-top: 5rem;
  padding-bottom: 5rem;
  margin-top: 1rem;
  margin-bottom: 5rem;
  background-color: white;
}
.counter-section-one h6 {
  font-size: 20px;
  font-weight: 700 !important;
}

/*-------------------------------------*/

/* Section I */
.se-i {
  padding-bottom: 80px;
}
/*.light-theme .se-i {
  background-color: #cbe2ec;
}
*/
/* box */
.se-i .box {
  padding: 35px 30px;
  background-color: var(--semi-dark);
  border-radius: 8px;
}
.light-theme .se-i .box {
  background-color: #fff;
}
.se-i .box-icon {
  width: 48px;
  margin-bottom: 20px;
}
.light-theme .se-i .box-icon {
  filter: invert(1);
}
.se-i .box-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}
.light-theme .se-i .box-title {
  color: var(--dark);
}
@media only screen and (max-width: 767px) {
  .se-i .box-icon {
    width: 38px;
  }
  .se-i .box-title {
    font-size: 14px;
  }
}
/*-------------------------------------*/

/* 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 0.25s ease;
}
.light-theme .se-ii .item {
  background-color: var(--light);
  border: 1px solid var(--border);
}
.se-ii .item img {
  width: 80px;
  margin-bottom: 15px;
}
.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 */

/* plans */
.se-iii .plans {
  border-radius: 12px;
  background-color: #141526;
}
.light-theme .se-iii .plans {
  background-color: #fff;
  border: 2px solid var(--border);
  background-color: #ffffff;
  box-shadow: 0 2px 5px #dde5eb;
}
@media only screen and (max-width: 1199.98px) {
  .se-iii .plans {
    border-radius: unset;
  }
}

/* plan */
.se-iii .plans .plan {
  position: relative;
  padding: 50px 40px 40px;
  background-color: #141526;
  height: 100%;
  z-index: 2;
}
.light-theme .se-iii .plans .plan {
  background-color: #fff;
}
.se-iii .plans .row > div:nth-child(1) .plan {
  border-radius: 12px 0 0 12px;
}
.se-iii .plans .row > div:nth-child(4) .plan {
  border-radius: 0 12px 12px 0;
}
.se-iii .plans .row > div:not(:last-of-type) .plan {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.light-theme .se-iii .plans .row > div:not(:last-of-type) .plan {
  border-right: 1px solid var(--border);
}
@media only screen and (max-width: 1199.98px) {
  .se-iii .plans {
    background-color: unset;
  }
  .se-iii .plans .row > div .plan {
    border-radius: 12px !important;
    border-right: unset !important;
  }
}

/* plan-head */
.se-iii .plans .plan-head {
  padding-bottom: 20px;
}
.se-iii .plans .plan-name {
  font-size: 23px;
  font-family: var(--primary-font);
  font-weight: 600;
  color: #ffffff;
}
.light-theme .se-iii .plans .plan-name {
  color: var(--dark);
}
.se-iii .plans .plan-para {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  min-height: 50px;
}

/* plan-price */
.se-iii .plans .plan-price {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 20px;
}
.light-theme .se-iii .plans .plan-price {
  border-bottom-color: var(--border);
}
.se-iii .plans .plan-price .price {
  font-size: 30px;
  font-family: var(--primary-font);
  font-weight: 700;
  color: #ffffff;
}
.light-theme .se-iii .plans .plan-price .price {
  color: var(--dark);
}
.se-iii .plans .plan-price .price-comment {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
}

/* actions */
.se-iii .plans .actions {
  padding-bottom: 10px;
}

/* group */
.se-iii .plans .group {
  margin-top: 45px;
}
.se-iii .plans .group .title-4 {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 20px;
}
.light-theme .se-iii .plans .group .title-4 {
  color: var(--dark);
}
.se-iii .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-iii .plans .group .list li:not(last-of-type) {
  margin-bottom: 10px;
}
.se-iii .plans .group .list li img {
  margin-right: 10px;
  width: 16px;
}

/* float-box */
.se-iii .plans .group .list li .float-box {
  position: absolute;
  top: 2px;
  right: 0;
  width: 18px;
  height: 18px;
}
.se-iii .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, 0.1);
  border-radius: 50%;
  font-size: 12px;
  font-family: var(--secondary-font);
  font-weight: 600;
  line-height: 1;
  transition: all 0.15s ease-in-out;
}
.light-theme .se-iii .plans .group .list li .float-box::before {
  background-color: rgba(0, 0, 0, 0.1);
}
.se-iii .plans .group .list li .float-box:hover::before {
  background-color: rgba(0, 0, 0, 0.2);
}
.se-iii .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, 0.1);
  border-radius: 4px;
  box-shadow: 0 10px 45px 0 rgba(0, 0, 0, 0.4);
  z-index: 3;
  visibility: hidden;
  opacity: 0;
  transition: all 0.15s ease-in-out;
}
.light-theme .se-iii .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-iii .plans .group .list li .float-box:hover::after {
  visibility: visible;
  opacity: 1;
}

/* se-footer */
.se-iii .se-footer .line {
  margin: 6px 12px;
}
.se-iii .se-footer .line .icon {
  min-width: 16px;
  width: 16px;
  margin-right: 10px;
}
.se-iii .se-footer .line .text {
  font-size: 14px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: var(--text-gray);
  line-height: 1;
}
/*-------------------------------------*/

/* Section 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, 0.1);
  transition: all 0.2s 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, 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: 0.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: 45px;
}

/* 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 0.15s ease;
}
.se-iv .box:hover .arrow img {
  filter: contrast(100%);
}
/*-------------------------------------*/

/* Section V */

/* filter-nav */
.se-v .filter-nav {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1199.98px) {
  .se-v .filter-nav {
    display: none;
  }
}

/* tab */
.se-v .filter-nav .tab {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px 28px;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}
.light-theme .se-v .filter-nav .tab {
  background-color: #fff;
  border-color: var(--border);
}
.se-v .filter-nav .tab:not(.active):hover {
  background-color: var(--semi-dark);
}
.light-theme .se-v .filter-nav .tab:not(.active):hover {
  background-color: #fff;
  border-color: var(--primary);
}
.se-v .filter-nav .tab.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

/* compare-table */
.se-v .compare-table {
  position: relative;
  width: 100%;
  border-collapse: collapse;
}
.se-v .compare-table::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  z-index: -1;
}
.light-theme .se-v .compare-table::before {
  background-color: #fff;
  border-color: var(--border);
}

/* custom-thead */
.se-v .custom-thead {
  background-color: var(--dark);
  position: sticky;
  top: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 30px;
  z-index: 3;
}
.light-theme .se-v .custom-thead {
  background-color: #fff;
  border-color: var(--border);
}

/* tabs */
.se-v .custom-thead .tabs {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.light-theme .se-v .custom-thead .tabs {
  border-color: var(--border);
}
.se-v .custom-thead .tabs .tab {
  padding: 15px 30px;
  color: var(--text-gray);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.se-v .custom-thead .tabs .tab:nth-child(1) {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.light-theme .se-v .custom-thead .tabs .tab:nth-child(1) {
  border-color: var(--border);
}
.se-v .custom-thead .tabs .tab.active {
  background-color: var(--semi-dark);
  color: #ffffff;
}
.light-theme .se-v .custom-thead .tabs .tab.active {
  background-color: var(--primary);
}
@media only screen and (min-width: 1200px) {
  .se-v .custom-thead {
    display: none;
  }
}

/* tab-content */
.se-v .custom-thead .tab-content {
  padding: 30px;
}
.se-v .custom-thead .tab-content.content-hide {
  display: none;
}

/* table-title-4 */
.se-v .custom-thead .tab-content .table-title-4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
}

/* table-title-1 */
.se-v .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-v .custom-thead .tab-content .table-title-1 {
  color: var(--dark);
}
.se-v .custom-thead .tab-content .table-title-1 .coin {
  position: relative;
  font-size: 24px;
  vertical-align: top;
  margin-right: 5px;
}
.se-v .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-v .compare-table thead th {
  padding: 30px 30px 40px;
}
.se-v .compare-table thead tr:first-child th:first-child {
  border-top-left-radius: 12px;
}
.se-v .compare-table thead th:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.light-theme .se-v .compare-table thead th:not(:last-child) {
  border-color: var(--border);
}
@media only screen and (max-width: 1199.98px) {
  .se-v .compare-table thead {
    display: none;
  }
}

/* top-left-corner */
.se-v .compare-table thead th.top-left-corner {
  min-width: 470px;
  width: 470px;
  text-align: left;
  vertical-align: top;
}
.se-v .compare-table thead th.top-left-corner .table-title-head {
  display: block;
  font-size: 32px;
  color: #ffffff;
  opacity: 0.2;
  line-height: 1.2;
}
.light-theme .se-v .compare-table thead th.top-left-corner .table-title-head {
  color: var(--dark);
}
.se-v .compare-table thead th.top-left-corner .table-title-head span {
  letter-spacing: -9px;
}

/* top-right-corner */
.se-v .compare-table thead th.top-right-corner {
  min-width: 380px;
  width: 380px;
}

/* table-title-3 */
.se-v .compare-table thead th.top-right-corner .table-title-3 {
  display: block;
  color: #ffffff;
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 35px;
}
.light-theme .se-v .compare-table thead th.top-right-corner .table-title-3 {
  color: var(--dark);
}

/* table-title-4 */
.se-v .compare-table thead th.top-right-corner .table-title-4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
}

/* table-title-1 */
.se-v .compare-table thead th.top-right-corner .table-title-1 {
  display: block;
  font-size: 46px;
  color: #ffffff;
  font-weight: bold;
  font-family: var(--secondary-font);
  margin-bottom: 15px;
}
.light-theme .se-v .compare-table thead th.top-right-corner .table-title-1 {
  color: var(--dark);
}
.se-v .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-v .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-v .compare-table tbody tr.hovered {
  background-color: var(--semi-dark);
}
.light-theme .se-v .compare-table tbody tr.hovered {
  background-color: var(--light);
}
.se-v .compare-table tbody tr.hovered td {
  border-bottom: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
}
.light-theme .se-v .compare-table tbody tr.hovered td {
  border-color: var(--border) !important;
}
.se-v .compare-table tbody tr.hovered td:last-child {
  border-right: 0 !important;
}

/* t-space */
.se-v .compare-table tbody tr.t-space {
  border: 0 !important;
}
.se-v .compare-table tbody tr.t-space td {
  border: 0 !important;
}

/* tr-hide */
@media only screen and (min-width: 1200px) {
  .se-v .compare-table tbody tr.tr-hide {
    display: none;
  }
}

/* tbody > tr */
.se-v .compare-table tbody tr:not(.hovered, .t-space):hover {
  background-color: rgba(255, 255, 255, 0.02);
}
.light-theme .se-v .compare-table tbody tr:not(.hovered, .t-space):hover {
  background-color: var(--light);
}

/* tbody > tr > td */
.se-v .compare-table tbody tr td {
  position: relative;
  padding: 20px 30px;
  color: var(--text-gray);
  font-size: 15px;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.light-theme .se-v .compare-table tbody tr td {
  border-color: var(--border);
}
.se-v .compare-table tbody tr td:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.light-theme .se-v .compare-table tbody tr td:not(:last-child) {
  border-color: var(--border);
}

/* hide td[data-for="full"] */
@media only screen and (max-width: 1199.98px) {
  .se-v .compare-table tbody tr td.td-hide {
    display: none;
  }
}

/* left-corner */
.se-v .compare-table tbody .left-corner {
  min-width: 470px;
  width: 470px;
  text-align: right;
  font-weight: 600;
}
@media only screen and (max-width: 1199.98px) {
  .se-v .compare-table tbody .left-corner {
    min-width: 60%;
    width: 60%;
  }
}

/* right-corner */
.se-v .compare-table tbody .right-corner {
  min-width: 380px;
  width: 380px;
  text-align: center;
}
@media only screen and (max-width: 1199.98px) {
  .se-v .compare-table tbody .right-corner {
    min-width: 40%;
    width: 40%;
  }
}

/* se-footer > line */
.se-v .se-footer .line {
  margin: 6px 12px;
}
.se-v .se-footer .line .icon {
  min-width: 16px;
  width: 16px;
  margin-right: 10px;
}
.se-v .se-footer .line .text {
  font-size: 14px;
  color: var(--text-gray);
  font-weight: 400;
  line-height: 1;
}
/*-------------------------------------*/

/* Section VI */

/* box */
.se-vi .box {
  background-color: var(--semi-dark);
  border-radius: 8px;
  padding: 30px 30px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: all 0.2s 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;
}
/*-------------------------------------*/

/*page padding */
.p-80 {
  padding: 60px 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, 0.1),
    0 2px 4px 0 rgba(14, 30, 37, 0.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, 0.02);
}
.compare table tbody tr td:nth-child(even) {
  background: rgba(14, 30, 37, 0.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: auto;
    height: 218px !important;
  }
  /* -- :: 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-left: 20px;
    padding-top:50px;
}
.col-md-3t {
    padding: 19px;
    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: 1550px;
  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: left;
}
.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%
}
.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
}



/*hosting-features-section*/
.hosting-features .se-head {
    margin:0px;
    max-width:990px;
}
    
@media (min-width: 990px) {
.hosting-features .se-head {
    text-align:left;
}
}

.hosting-features .plan_button{
    padding:17px 30px;
    width: fit-content;
}

@media (max-width: 990px) {
.hosting-features .plan_button{
    margin:auto;
}
}

.hosting-features .section-order-list:before{
    content: "✓";
    position: relative;
    top: 0;
    left: 1px;
    width: 15px;
    height: 15px;
    color: #13b763;
    font-weight: bold;
    font-size: 21px;
}

.hosting-features .row{
    margin-bottom:30px;
}

.hosting-features .features-list .row{
    flex-wrap:nowrap;
    align-items: center;
    gap: 10px;
    margin-bottom:10px;
}

.category-flex{
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

.hosting-features .grid-col {
    padding: 19px;
    background-color: #ebebff;
    max-width: 32%;
    border-radius:10px;
}

.category-flex .box{
    padding: 20px;
    /*border: 2px solid black;*/
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: #f5f3fe;
}

.features-icon{
    width:30px;
}


/*dark-section-section*/

.dark-section{
    background-color:#281346;
    color : #ffffff;
}

.dark-section .t-c{
    width:100%;
}

.dark-section .se-head {
    margin:auto;
    max-width:990px;
}

.dark-section .se-head .se-title-2{
    margin-top : 60px;
    color:#ffffff;
}

.dark-section .t-c p {
    margin:auto;
    max-width:990px;
}

.dark-section .row{
    margin-bottom:30px;
}

.dark-section .row{
    display : flex;
    flex-wrap:wrap;
    justify-content: space-between;
}
@media (max-width:990px){
    .dark-section .row{
        justify-content: center;
    }
}

.dark-section .category-flex{
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
    gap:30px;
}

.dark-section .grid-col {
    padding: 20px;
    background-color: #673de6;
    max-width: 32%;
}

.dark-section .animated-section{
    background: linear-gradient(to right, #ffffff, #dddddd, #ababab, #4b4b4b, #9f9f9f, #cbcbcb, #efefef);
    animation: rainbow-move 15s infinite linear;
    padding : 1px;
    border-radius : 10px;
}

.dark-section .animated-section .box{
    height:100%;
    width:100%;
}

.dark-section .category-flex .box{
    padding: 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #2c1a63;
}

.dark-section .features-icon{
    width: 50px;
    border-radius: 10px;
    filter: brightness(10)
}

.dark-section .image-section img{
    width : 100%;
    margin:-5% 0px;
}


/*dashboard-section*/

@media (min-width:990px){
.dashboard-section{
    background: linear-gradient(90deg, #ffffff 80%, #dbdbdb 20%);
}
}


.dashboard-section .category-flex{
    align-items:center;
}

.dashboard-section .t-c{
    width:100%;
}

.dashboard-section .se-head {
    margin:auto;
    max-width:990px;
}

.dashboard-section .se-head .se-title-2{
    margin-top : 60px;
    text-align:left;
}

.dashboard-section .t-c p {
    margin:auto;
    max-width:990px;
}

.dashboard-section .row{
    margin-bottom:30px;
}

.dashboard-section .row{
    display : flex;
    flex-wrap:wrap;
    justify-content: space-between;
}
@media (max-width:990px){
    .dashboard-section .row{
        justify-content: center;
    }
}

.dashboard-section .image-section{
    padding:5%;
    /*background-image:url("https://ishan.heroweby.com/heroxhost/assets/images/pages/home/vector.webp");*/
    background: linear-gradient(135deg, black, #490080, #a382ee);
    background-size:auto;
    border-radius:10px;
    /*background-position: -10px;*/
    margin-top:50px;
}

.dashboard-section .image-section img{
    width: 100%;
    border-radius: 10px;
}
