/* =========================================================
   CLADORA HOME PAGE START
   File: css/styles.css
   ========================================================= */

.cladora-home-page {
  background: #f5f9fc;
}

.cladora-home-box {
  max-width: 1400px;
  margin: 0 auto;
}

.cladora-home-hero {
  padding-top: 60px;
  padding-bottom: 60px;
}

.cladora-home-content {
  padding-right: 20px;
}

.cladora-home-subtitle {
  display: inline-block;
  background: rgba(0, 136, 195, 0.1);
  color: #0088c3;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.cladora-home-title {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 800;
  color: #1e2d3b;
  margin-bottom: 18px;
}

.cladora-home-text {
  font-size: 17px;
  line-height: 1.8;
  color: #5b6773;
  margin-bottom: 28px;
  max-width: 680px;
}

.cladora-home-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cladora-btn-primary,
.cladora-btn-outline {
  padding: 12px 26px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cladora-btn-primary {
  background: #0088c3;
  color: #ffffff;
  border: 2px solid #0088c3;
}

.cladora-btn-primary:hover {
  background: #006f9f;
  border-color: #006f9f;
  color: #ffffff;
}

.cladora-btn-outline {
  background: transparent;
  color: #0088c3;
  border: 2px solid #0088c3;
}

.cladora-btn-outline:hover {
  background: #0088c3;
  color: #ffffff;
}

.cladora-home-card-wrap {
  width: 100%;
}

.cladora-feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 22px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(15, 53, 87, 0.08);
  transition: all 0.3s ease;
}

.cladora-feature-card:hover {
  transform: translateY(-4px);
}

.cladora-feature-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(0, 136, 195, 0.12);
  color: #0088c3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.cladora-feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1e2d3b;
  margin-bottom: 10px;
}

.cladora-feature-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #617181;
  margin-bottom: 0;
}

.cladora-home-intro {
  padding-top: 20px;
  padding-bottom: 70px;
}

.cladora-info-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px 24px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(15, 53, 87, 0.06);
}

.cladora-info-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1e2d3b;
  margin-bottom: 14px;
}

.cladora-info-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #5f6d79;
}

/* Large desktop */
@media (min-width: 1200px) {
  .cladora-home-hero .container-fluid,
  .cladora-home-intro .container-fluid {
    padding-left: 70px;
    padding-right: 70px;
  }
}

/* Tablet */
@media (max-width: 991.98px) {
  .cladora-home-hero {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .cladora-home-content {
    padding-right: 0;
  }

  .cladora-home-title {
    font-size: 38px;
  }

  .cladora-home-text {
    font-size: 16px;
    max-width: 100%;
  }

  .cladora-home-intro {
    padding-bottom: 50px;
  }

  .cladora-feature-card h3,
  .cladora-info-card h3 {
    font-size: 21px;
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .cladora-home-hero .container-fluid,
  .cladora-home-intro .container-fluid {
    padding-left: 14px;
    padding-right: 14px;
  }

  .cladora-home-hero {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .cladora-home-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .cladora-home-text {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 22px;
  }

  .cladora-home-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .cladora-btn-primary,
  .cladora-btn-outline {
    width: 100%;
    text-align: center;
  }

  .cladora-feature-card,
  .cladora-info-card {
    padding: 22px 18px;
  }

  .cladora-feature-icon {
    width: 54px;
    height: 54px;
    font-size: 20px;
  }

  .cladora-feature-card h3,
  .cladora-info-card h3 {
    font-size: 19px;
  }

  .cladora-feature-card p,
  .cladora-info-card p {
    font-size: 14px;
  }

  .cladora-home-intro {
    padding-top: 5px;
    padding-bottom: 34px;
  }
}

/* Extra small */
@media (max-width: 360px) {
  .cladora-home-title {
    font-size: 24px;
  }

  .cladora-home-subtitle {
    font-size: 12px;
    padding: 7px 12px;
  }
}

/* =========================================================
   CLADORA HOME PAGE END
   ========================================================= */
/* =========================================================
   CLADORA TOPBAR START
   File: css/styles.css
   ========================================================= */

.cladora-topbar {
  background-color: #0088c3;
  width: 100%;
  position: relative;
  z-index: 999;
}

.cladora-topbar-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  flex-wrap: wrap;
}

.cladora-topbar-left,
.cladora-topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cladora-social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cladora-social-link:hover {
  background: #ffffff;
  color: #0088c3;
}

.cladora-topbar-item {
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cladora-topbar-item i {
  font-size: 14px;
}

.cladora-topbar-item:hover {
  color: #eaf8ff;
}

.cladora-client-area-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0088c3;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 4px;
  line-height: 1;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cladora-client-area-btn:hover {
  background: #e9f7ff;
  color: #006e9d;
}

/* Tablet */
@media (max-width: 991.98px) {
  .cladora-topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .cladora-topbar-left,
  .cladora-topbar-right {
    justify-content: center;
    width: 100%;
  }

  .cladora-topbar-right {
    gap: 12px;
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .cladora-topbar {
    padding: 4px 0;
  }

  .cladora-topbar-inner {
    gap: 8px;
  }

  .cladora-topbar-left {
    gap: 8px;
  }

  .cladora-topbar-right {
    flex-direction: column;
    gap: 10px;
  }

  .cladora-topbar-item,
  .cladora-client-area-btn {
    justify-content: center;
    font-size: 14px;
  }

  .cladora-client-area-btn {
    width: 100%;
    max-width: 180px;
  }
}

/* Extra small mobile */
@media (max-width: 360px) {
  .cladora-social-link {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .cladora-topbar-item {
    font-size: 13px;
  }
}

/* =========================================================
   CLADORA TOPBAR END
   ========================================================= */
   /* =========================================================
   CLADORA HEADER START
   File: css/styles.css
   ========================================================= */
/* =========================================
   CLADORA HEADER CSS
   File: css/styles.css
========================================= */

.cladora-header{
  width:100%;
  background:#ffffff;
  border-bottom:1px solid #e9ecef;
  position:sticky;
  top:0;
  z-index:999;
  transition:all .3s ease;
}

.cladora-header.cladora-is-sticky{
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.cladora-header .navbar{
  padding-top:12px;
  padding-bottom:12px;
  background:#ffffff;
}

.cladora-logo img{
  height:60px;
  width:auto;
  display:block;
}

.cladora-menu{
  gap:18px;
}

.cladora-menu .nav-link{
  font-size:15px;
  font-weight:600;
  color:#333333;
  text-transform:uppercase;
  padding:8px 12px;
  transition:all .25s ease;
}

.cladora-menu .nav-link:hover,
.cladora-menu .nav-link.active{
  color:#0088c3;
}

.navbar-toggler{
  border:1px solid #d6d6d6;
  padding:6px 10px;
}

.navbar-toggler:focus{
  box-shadow:none;
}

@media (max-width:991px){

  .cladora-logo img{
    height:52px;
  }

  .cladora-header .navbar{
    padding-top:10px;
    padding-bottom:10px;
  }

  .cladora-header .navbar-collapse{
    background:#ffffff;
    margin-top:10px;
    padding:8px 0;
    border-top:1px solid #efefef;
  }

  .cladora-menu{
    margin-top:0;
    gap:0;
  }

  .cladora-menu .nav-item{
    border-bottom:1px solid #efefef;
  }

  .cladora-menu .nav-item:last-child{
    border-bottom:none;
  }

  .cladora-menu .nav-link{
    padding:12px 10px;
    font-size:14px;
  }
}

@media (max-width:576px){

  .cladora-logo img{
    height:45px;
  }

  .cladora-menu .nav-link{
    font-size:13px;
  }
}

/* =========================================
   END HEADER CSS
========================================= */

/* =========================================
   END HEADER CSS
========================================= */

/* =========================================
   END HEADER CSS
========================================= */
/* =========================================================
   CLADORA HEADER END
   ========================================================= */
   /* =========================================================
   CLADORA FOOTER START
   File: css/styles.css
   ========================================================= */

/* =========================================================
   CLADORA FOOTER START
   File: css/styles.css
   ========================================================= */

.cladora-footer {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.cladora-footer-top {
  background: #00a8de;
  padding: 28px 0;
}

.cladora-footer-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cladora-help-box h4 {
  margin: 0 0 8px;
  font-size: 22px;
  color: #16324a;
  font-weight: 400;
  text-transform: uppercase;
}

.cladora-help-box h4 strong {
  font-weight: 800;
  color: #16324a;
}

.cladora-help-number {
  font-size: 58px;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.1;
  display: inline-block;
}

.cladora-help-number:hover {
  color: #ffffff;
}

.cladora-newsletter-box {
  max-width: 700px;
  width: 100%;
}

.cladora-newsletter-box h5 {
  color: #ffffff;
  font-size: 18px;
  margin: 0 0 14px;
  font-weight: 500;
}

.cladora-newsletter-form {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cladora-newsletter-form input {
  flex: 1;
  height: 64px;
  border: none;
  border-radius: 4px;
  padding: 0 24px;
  font-size: 18px;
  outline: none;
  box-shadow: none;
}

.cladora-newsletter-form button {
  min-width: 160px;
  height: 56px;
  border: none;
  border-radius: 4px;
  background: #8dc63f;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.cladora-newsletter-form button:hover {
  background: #79b12f;
}

.cladora-subscribe-msg {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}

.cladora-subscribe-msg.success {
  background: #d7f5df;
  color: #0c6b2e;
}

.cladora-subscribe-msg.error {
  background: #ffe0e0;
  color: #b42323;
}

.cladora-footer-main {
  background: linear-gradient(90deg, #23303d 0%, #1f2a34 50%, #1b242d 100%);
  padding: 48px 0 38px;
}

.cladora-footer-widget h3 {
  color: #8dd12f;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 22px;
}

.cladora-footer-widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cladora-footer-widget ul li {
  margin-bottom: 10px;
}

.cladora-footer-widget ul li a,
.cladora-footer-widget p,
.cladora-footer-widget p a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.7;
  transition: all 0.3s ease;
}

.cladora-footer-widget ul li a:hover,
.cladora-footer-widget p a:hover {
  color: #00a8de;
}

.cladora-address-widget {
  text-align: left;
}

.cladora-footer-social {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cladora-footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.cladora-footer-social a:nth-child(1) {
  background: #3b82c4;
}

.cladora-footer-social a:nth-child(2) {
  background: #2ea3f2;
}

.cladora-footer-social a:nth-child(3) {
  background: #eb6a0a;
}

.cladora-footer-social a:nth-child(4) {
  background: #2e63c9;
}

.cladora-footer-social a:nth-child(5) {
  background: #d85b29;
}

.cladora-footer-social a:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.cladora-footer-bottom {
  background: #213e8a;
  padding: 14px 0;
}

.cladora-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cladora-footer-copy,
.cladora-footer-links,
.cladora-footer-links a,
.cladora-footer-links span {
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
}

.cladora-footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cladora-footer-links a:hover {
  color: #cfefff;
}

/* Scroll Top Button */
.cladora-scroll-top {
  position: fixed;
  right: 18px;
  bottom: 92px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: #f58220;
  color: #ffffff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
}

.cladora-scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cladora-scroll-top:hover {
  background: #d86b11;
}

/* Floating WhatsApp button right side */
.cladora-whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: all 0.3s ease;
}

.cladora-whatsapp-float i {
  font-size: 30px;
  line-height: 1;
}

.cladora-whatsapp-float:hover {
  color: #ffffff;
  background: #1fb759;
  transform: translateY(-2px);
}

@media (min-width: 1200px) {
  .cladora-footer-top .container-fluid,
  .cladora-footer-main .container-fluid,
  .cladora-footer-bottom .container-fluid {
    padding-left: 70px;
    padding-right: 70px;
  }
}

@media (max-width: 991.98px) {
  .cladora-footer-top-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cladora-help-number {
    font-size: 44px;
  }

  .cladora-newsletter-box {
    max-width: 100%;
  }

  .cladora-newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .cladora-newsletter-form button {
    width: 100%;
    min-width: 100%;
  }

  .cladora-footer-widget h3 {
    font-size: 24px;
  }

  .cladora-footer-bottom-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .cladora-footer-links {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .cladora-footer-top {
    padding: 22px 0;
  }

  .cladora-footer-top .container-fluid,
  .cladora-footer-main .container-fluid,
  .cladora-footer-bottom .container-fluid {
    padding-left: 14px;
    padding-right: 14px;
  }

  .cladora-help-box h4 {
    font-size: 18px;
  }

  .cladora-help-number {
    font-size: 32px;
    word-break: break-word;
  }

  .cladora-newsletter-box h5 {
    font-size: 16px;
  }

  .cladora-newsletter-form input {
    height: 52px;
    padding: 0 16px;
    font-size: 15px;
  }

  .cladora-newsletter-form button {
    height: 52px;
    font-size: 15px;
  }

  .cladora-footer-main {
    padding: 32px 0 26px;
  }

  .cladora-footer-widget h3 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .cladora-footer-widget ul li a,
  .cladora-footer-widget p,
  .cladora-footer-widget p a {
    font-size: 15px;
  }

  .cladora-footer-copy,
  .cladora-footer-links,
  .cladora-footer-links a,
  .cladora-footer-links span {
    font-size: 14px;
  }

  .cladora-scroll-top {
    right: 12px;
    bottom: 82px;
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .cladora-whatsapp-float {
    right: 12px;
    bottom: 12px;
    padding: 12px 18px;
    font-size: 15px;
  }

  .cladora-whatsapp-float i {
    font-size: 26px;
  }
}

@media (max-width: 360px) {
  .cladora-help-number {
    font-size: 28px;
  }

  .cladora-scroll-top {
    width: 40px;
    height: 40px;
    bottom: 78px;
  }

  .cladora-whatsapp-float {
    padding: 10px 14px;
    font-size: 14px;
  }

  .cladora-whatsapp-float span {
    display: none;
  }
}

/* =========================================================
   CLADORA FOOTER END
   ========================================================= */

/* =========================================================
   CLADORA FOOTER END
   ========================================================= */
   /* =========================================================
   CLADORA HOSTING SECTION START
   File: css/styles.css
   ========================================================= */

.cladora-hosting-section {
  background: #f7f7f7;
}

.cladora-hosting-box {
  max-width: 1400px;
  margin: 0 auto;
}

.cladora-hosting-heading {
  margin-bottom: 35px;
}

.cladora-hosting-heading h2 {
  margin: 0 0 10px;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  color: #0088c3;
  text-transform: uppercase;
}

.cladora-hosting-heading p {
  margin: 0;
  font-size: 18px;
  color: #4f5c68;
  line-height: 1.7;
}

.cladora-plan-card {
  background: #ffffff;
  border: 1px solid #dfe7ee;
  position: relative;
  height: 100%;
  transition: all 0.3s ease;
  overflow: hidden;
}

.cladora-plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.cladora-plan-top {
  background: #0088c3;
  color: #ffffff;
  text-align: center;
  padding: 14px 15px 10px;
  position: relative;
}

.cladora-plan-top h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.cladora-off-badge {
  position: absolute;
  top: 9px;
  right: 8px;
  background: #ff2f00;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  transform: rotate(-25deg);
  border-radius: 3px;
}

.cladora-best-seller {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #8dc63f;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  z-index: 2;
  border-radius: 0 0 4px 4px;
}

.cladora-plan-price {
  background: #00a8de;
  color: #ffffff;
  text-align: center;
  padding: 22px 15px 18px;
}

.cladora-plan-price h4 {
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 800;
}

.cladora-plan-price h4 small {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

.cladora-plan-price p {
  margin: 0 0 16px;
  font-size: 17px;
  color: #eaf8ff;
}

.cladora-order-btn {
  display: inline-block;
  background: #f58220;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.cladora-order-btn:hover {
  background: #db6e12;
  color: #ffffff;
}

.cladora-plan-features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cladora-plan-features li {
  border-top: 1px solid #e8edf2;
  text-align: center;
  padding: 12px 14px;
  font-size: 15px;
  color: #4f5963;
  line-height: 1.5;
  background: #ffffff;
}

.cladora-highlight-red {
  color: #e53935 !important;
  font-weight: 700;
}

/* Desktop spacing */
@media (min-width: 1200px) {
  .cladora-hosting-section .container-fluid {
    padding-left: 70px;
    padding-right: 70px;
  }
}

/* Tablet */
@media (max-width: 991.98px) {
  .cladora-hosting-heading h2 {
    font-size: 32px;
  }

  .cladora-hosting-heading p {
    font-size: 16px;
  }

  .cladora-plan-price h4 {
    font-size: 30px;
  }

  .cladora-plan-features li {
    font-size: 14px;
    padding: 11px 10px;
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .cladora-hosting-section .container-fluid {
    padding-left: 14px;
    padding-right: 14px;
  }

  .cladora-hosting-heading {
    margin-bottom: 24px;
  }

  .cladora-hosting-heading h2 {
    font-size: 24px;
  }

  .cladora-hosting-heading p {
    font-size: 14px;
    line-height: 1.6;
  }

  .cladora-plan-top h3 {
    font-size: 17px;
  }

  .cladora-plan-price {
    padding: 18px 12px 16px;
  }

  .cladora-plan-price h4 {
    font-size: 28px;
  }

  .cladora-plan-price p {
    font-size: 15px;
  }

  .cladora-order-btn {
    width: 100%;
    max-width: 180px;
    padding: 10px 16px;
    font-size: 13px;
  }

  .cladora-plan-features li {
    font-size: 14px;
    padding: 10px 8px;
  }

  .cladora-best-seller {
    font-size: 12px;
    padding: 4px 12px;
  }

  .cladora-off-badge {
    font-size: 11px;
    top: 10px;
    right: 4px;
  }
}

/* Extra small */
@media (max-width: 360px) {
  .cladora-hosting-heading h2 {
    font-size: 21px;
  }

  .cladora-plan-price h4 {
    font-size: 24px;
  }

  .cladora-plan-features li {
    font-size: 13px;
  }
}

/* =========================================================
   CLADORA HOSTING SECTION END
   ========================================================= */
   /* =========================================
   CLADORA WHY WE SECTION START
   File: css/styles.css
========================================= */

.cladora-whywe-section{
  background:#f3f3f3;
}

.cladora-whywe-box{
  max-width:1400px;
  margin:0 auto;
}

.cladora-whywe-heading{
  margin-bottom:38px;
}

.cladora-whywe-heading h2{
  margin:0;
  font-size:34px;
  line-height:1.2;
  font-weight:800;
  color:#2f80d8;
  text-transform:uppercase;
}

.cladora-whywe-item{
  display:flex;
  align-items:flex-start;
  gap:22px;
  height:100%;
  padding:10px 8px;
}

.cladora-whywe-icon{
  width:80px;
  min-width:80px;
  height:80px;
  border-radius:50%;
  background:#f8f8f8;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#4a90e2;
  font-size:34px;
  box-shadow:0 2px 8px rgba(0,0,0,0.04);
}

.cladora-whywe-content h3{
  margin:0 0 10px;
  font-size:24px;
  line-height:1.25;
  font-weight:700;
  color:#1f2d3d;
}

.cladora-whywe-content p{
  margin:0;
  font-size:17px;
  line-height:1.7;
  color:#243647;
}

/* Large desktop */
@media (min-width:1200px){
  .cladora-whywe-section .container-fluid{
    padding-left:70px;
    padding-right:70px;
  }
}

/* Tablet */
@media (max-width:991.98px){
  .cladora-whywe-heading{
    margin-bottom:28px;
  }

  .cladora-whywe-heading h2{
    font-size:28px;
  }

  .cladora-whywe-item{
    gap:18px;
  }

  .cladora-whywe-icon{
    width:72px;
    min-width:72px;
    height:72px;
    font-size:30px;
  }

  .cladora-whywe-content h3{
    font-size:21px;
  }

  .cladora-whywe-content p{
    font-size:16px;
  }
}

/* Mobile */
@media (max-width:575.98px){
  .cladora-whywe-section .container-fluid{
    padding-left:14px;
    padding-right:14px;
  }

  .cladora-whywe-heading{
    margin-bottom:24px;
  }

  .cladora-whywe-heading h2{
    font-size:22px;
  }

  .cladora-whywe-item{
    gap:14px;
    padding:6px 0;
  }

  .cladora-whywe-icon{
    width:62px;
    min-width:62px;
    height:62px;
    font-size:24px;
  }

  .cladora-whywe-content h3{
    font-size:19px;
    margin-bottom:8px;
  }

  .cladora-whywe-content p{
    font-size:15px;
    line-height:1.65;
  }
}

/* Extra small */
@media (max-width:360px){
  .cladora-whywe-heading h2{
    font-size:19px;
  }

  .cladora-whywe-icon{
    width:56px;
    min-width:56px;
    height:56px;
    font-size:22px;
  }

  .cladora-whywe-content h3{
    font-size:17px;
  }

  .cladora-whywe-content p{
    font-size:14px;
  }
}

/* =========================================
   CLADORA WHY WE SECTION END
========================================= */
/* =========================================
   CLADORA DOMAIN SEARCH SECTION START
   File: css/styles.css
========================================= */

.cladora-domain-search-section{
  position: relative;
  width: 100%;
  padding: 70px 0 10px;
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('../images/domain-bg.jpg') center center / cover no-repeat;
}

.cladora-domain-search-box{
  max-width: 1450px;
  margin: 0 auto;
}

.cladora-domain-search-form-wrap{
  max-width: 1500px;
  margin: 0 auto 26px;
}

.cladora-domain-search-form{
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.cladora-domain-search-label{
  color: #ffffff;
  font-size: 21px;
  font-weight: 500;
  white-space: nowrap;
}

.cladora-domain-search-input-group{
  flex: 1;
  display: flex;
  align-items: stretch;
  gap: 22px;
  min-width: 280px;
}

.cladora-domain-search-input-group input{
  flex: 1;
  height: 98px;
  border: none;
  border-radius: 4px;
  font-size: 20px;
  color: #2a2a2a;
  padding: 0 28px;
  box-shadow: none !important;
}

.cladora-domain-search-input-group input::placeholder{
  color: #8b8b8b;
}

.cladora-domain-search-btn{
  min-width: 265px;
  height: 98px;
  border: none;
  border-radius: 4px;
  background: #2f80d8;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  transition: all .3s ease;
}

.cladora-domain-search-btn:hover{
  background: #1f6fc7;
}

.cladora-domain-result-box{
  margin-top: 18px;
  background: #ffffff;
  border-radius: 4px;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.14);
}

.cladora-domain-result-box.success{
  color: #1f8f45;
  border-left: 6px solid #1f8f45;
}

.cladora-domain-result-box.error{
  color: #d32f2f;
  border-left: 6px solid #d32f2f;
}

.cladora-domain-price-row{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid rgba(255,255,255,0.45);
  background: rgba(0,0,0,0.18);
}

.cladora-domain-price-item{
  min-height: 108px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px 12px;
  font-size: 22px;
  border-right: 1px solid rgba(255,255,255,0.45);
}

.cladora-domain-price-item strong{
  font-size: 34px;
  font-weight: 800;
  margin-right: 6px;
}

.cladora-domain-price-note{
  font-size: 16px;
  font-weight: 700;
}

/* Large desktop */
@media (min-width: 1200px){
  .cladora-domain-search-section .container-fluid{
    padding-left: 70px;
    padding-right: 70px;
  }
}

/* Tablet */
@media (max-width: 991.98px){
  .cladora-domain-search-section{
    padding: 50px 0 10px;
  }

  .cladora-domain-search-form{
    gap: 18px;
  }

  .cladora-domain-search-label{
    width: 100%;
    font-size: 20px;
    text-align: center;
  }

  .cladora-domain-search-input-group{
    flex-direction: column;
    gap: 14px;
  }

  .cladora-domain-search-input-group input,
  .cladora-domain-search-btn{
    height: 68px;
  }

  .cladora-domain-search-input-group input{
    font-size: 18px;
  }

  .cladora-domain-search-btn{
    min-width: 100%;
    font-size: 19px;
  }

  .cladora-domain-result-box{
    font-size: 16px;
  }

  .cladora-domain-price-row{
    grid-template-columns: repeat(3, 1fr);
  }

  .cladora-domain-price-item{
    min-height: 86px;
    font-size: 18px;
  }

  .cladora-domain-price-item strong{
    font-size: 28px;
  }
}

/* Mobile */
@media (max-width: 575.98px){
  .cladora-domain-search-section{
    padding: 34px 0 10px;
  }

  .cladora-domain-search-section .container-fluid{
    padding-left: 14px;
    padding-right: 14px;
  }

  .cladora-domain-search-label{
    font-size: 17px;
    line-height: 1.5;
  }

  .cladora-domain-search-input-group input,
  .cladora-domain-search-btn{
    height: 56px;
  }

  .cladora-domain-search-input-group input{
    padding: 0 16px;
    font-size: 15px;
  }

  .cladora-domain-search-btn{
    font-size: 16px;
  }

  .cladora-domain-result-box{
    padding: 14px 15px;
    font-size: 15px;
  }

  .cladora-domain-price-row{
    grid-template-columns: repeat(2, 1fr);
  }

  .cladora-domain-price-item{
    min-height: 74px;
    font-size: 15px;
    padding: 14px 8px;
  }

  .cladora-domain-price-item strong{
    font-size: 22px;
  }

  .cladora-domain-price-note{
    font-size: 14px;
  }
}

/* Extra small */
@media (max-width: 360px){
  .cladora-domain-search-label{
    font-size: 15px;
  }

  .cladora-domain-price-item{
    font-size: 14px;
  }

  .cladora-domain-price-item strong{
    font-size: 20px;
  }
}

/* =========================================
   CLADORA DOMAIN SEARCH SECTION END
========================================= */