a {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}


/* =========================
   Carry Quick Animated Buttons
   Colors: #4f210e , #288f67
========================= */

.cq-btn-primary,
.cq-btn-outline {
  position: relative;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 50px;
  overflow: hidden;
  transition: all .4s ease;
  z-index: 1;
}

/* PRIMARY BUTTON */
.cq-btn-primary {
  background: linear-gradient(135deg, #288f67, #4f210e);
  color: #fff;
  border: none;
}

.cq-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4f210e, #288f67);
  transition: .4s;
  z-index: -1;
}

.cq-btn-primary:hover::before {
  left: 0;
}

.cq-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
  color: #fff;
}

/* OUTLINE BUTTON */
.cq-btn-outline {
  background: transparent;
  color: #288f67;
  border: 2px solid #288f67;
}

.cq-btn-outline::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #288f67;
  transform: scaleX(0);
  transform-origin: left;
  transition: .4s;
  z-index: -1;
}

.cq-btn-outline:hover::after {
  transform: scaleX(1);
}

.cq-btn-outline:hover {
  color: #fff;
  border-color: #288f67;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(40, 143, 103, .4);
}

@keyframes ripple {
  from {
    transform: scale(0);
    opacity: .8;
  }

  to {
    transform: scale(8);
    opacity: 0;
  }
}

/* =========================
   Carry Quick Animated Buttons
   Colors: #4f210e , #288f67
========================= */






.logo-img {
  width: 160px;
}

.hero-section {
  padding: 80px 0;
  background: linear-gradient(to right, #ffffff 0%, #fce9e6 100%);
}

.hero-section span {
  color: #4f210e;
}

/* =========================
   Carry Quick Navbar Styling
   Colors: #4f210e , #288f67
========================= */



/* Brand */
.cq-navbar .navbar-brand {
  color: #fff;
  font-weight: 700;
  letter-spacing: .5px;
}

.cq-navbar .navbar-brand:hover {
  color: #e6fff4;
}

/* Nav links */
.cq-navbar .nav-link {
  color: #4e200f;
  font-weight: 500;
  position: relative;
  margin: 0 8px;
  transition: .3s;
}

.cq-navbar .nav-link:hover {
  color: #288f67;
}

/* Active link */
.cq-navbar .nav-link.active {
  color: #288f67;
  font-weight: 600;
}



/* Navbar button (Get Quote) */
.cq-navbar .btn {
  background: #fff;
  color: #288f67;
  border-radius: 50px;
  font-weight: 600;
  padding: 10px 22px;
  transition: .3s;
}

.cq-navbar .btn:hover {
  background: #288f67;
  color: #fff;
  box-shadow: 0 10px 25px rgba(40, 143, 103, .5);
  transform: translateY(-2px);
}


.cq-navbar .navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

/* ================= DROPDOWN ITEMS ================= */
.dropdown-item {
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.dropdown-item:hover {
  background: linear-gradient(90deg, #0d6efd, #198754);
  color: #fff;
  padding-left: 28px;
}





/* Navbar overflow fix */
.navbar,
.navbar-collapse {
  overflow: visible !important;
}

/* Desktop hover dropdown */
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    padding: 0px 0px;
    display: block;
    margin-top: 0;
    border-radius: 0px;
    width: 230px;
  }
}


/* =========================services Section======================== */
.service-box {
  background: #fff;
  padding: 30px 25px;
  border-radius: 18px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
  transition: .4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(0 0 0 / 18%);
}

.service-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #288f67, #4f210e);
  opacity: 0;
  transition: .4s;
  z-index: 0;
}

.service-box:hover::before {
  opacity: .05;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, .12);
}

.service-box * {
  position: relative;
  z-index: 1;
}

.service-box h6 {
  font-weight: 600;
  margin-top: 15px;
}

.service-box p {
  font-size: 14px;
  color: #6b7280;
}

.service-box ul {
  padding-left: 18px;
  margin: 0;
}

.service-box ul li {
  font-size: 13px;
  color: #374151;
  margin-bottom: 5px;
}

/* ICON */
.icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
}


/* common icon base (already working) */
.bg-brown {
  background: #f1dad0;
  color: #4f210e;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* 🔥 card-wise icon colors */
.services-ui .col-lg-3:nth-child(1) .bg-brown {
  background: #e8f0ff;
  color: #2563eb;
}

.services-ui .col-lg-3:nth-child(2) .bg-brown {
  background: #fff1e6;
  color: #f97316;
}

.services-ui .col-lg-3:nth-child(3) .bg-brown {
  background: #e7f9ef;
  color: #22c55e;
}

.services-ui .col-lg-3:nth-child(4) .bg-brown {
  background: #f3e8ff;
  color: #7c3aed;
}

.services-ui .col-lg-3:nth-child(5) .bg-brown {
  background: #fff7ed;
  color: #ea580c;
}

.services-ui .col-lg-3:nth-child(6) .bg-brown {
  background: #ecfeff;
  color: #0891b2;
}

.services-ui .col-lg-3:nth-child(7) .bg-brown {
  background: #fef2f2;
  color: #dc2626;
}

.services-ui .col-lg-3:nth-child(8) .bg-brown {
  background: #f0fdf4;
  color: #16a34a;
}

/* =========================services Section======================== */



/* =========================Why Choose Section======================== */

.why-choose-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2e805b, #030a08);
}

/* ITEM */
.why-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.why-item h6 {
  font-weight: 600;
  margin-bottom: 6px;
}

.why-item p {
  font-size: 14px;
  color: #e0e7ff;
  margin: 0;
}

/* ICON */
.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
  transition: .3s;
}


/* HOVER EFFECT */
.why-item:hover .why-icon {
  background: #fff;
  color: #2563eb;
  transform: scale(1.1);
}

/* =========================Why Choose Section======================== */



/* =========================Knowledge Section======================== */
.knowledge-section {
  padding: 80px 20px;
  background-color: #fbf8ff;


  .container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }

  .container h1 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
  }

  .subtitle {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 60px;
  }

  .card-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .card {
    background: #ffffff;
    width: 350px;
    padding: 35px;
    border-radius: 18px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
  }

  .card:hover {
    transform: translateY(-6px);
  }

  /* ICON */
  .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 25px;
  }

  .icon.blue {
    background: #e0ebff;
    color: #2563eb;
  }

  .icon.orange {
    background: #fff1e6;
    color: #f97316;
  }

  .icon.green {
    background: #e7f9ef;
    color: #22c55e;
  }

  .card h3 {
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 12px;
  }

  .card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .card a {
    color: #2e7d58;
    text-decoration: none;
    font-weight: 600;
  }

  .card a:hover {
    text-decoration: underline;
  }
}

@media (max-width: 900px) {
  .card-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

/* =========================Knowledge Section======================== */



/* =========================FAQ Section========================= */

.faq-section {



  .faq-wrapper {
    max-width: 820px;
  }

  .faq-item {
    background: #fff;
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    cursor: pointer;
    transition: .3s ease;
  }

  .faq-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
  }

  /* Question */
  .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: #4f210e;
  }

  /* Answer */
  .faq-answer {
    display: none;
    margin-top: 12px;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
  }

  /* Active State */
  .faq-item.active .faq-answer {
    display: block;
  }

  .faq-item.active .faq-question i {
    transform: rotate(180deg);
  }

  .faq-question i {
    transition: .3s;
    color: #6b7280;
  }
}

/* =========================FAQ Section========================= */



/* ========================Quote Section======================== */


.contact-modern {
  background: #fbf8ff;
}

.contact-badge {
  background: #d8fff0;
  color: #288f67;
  padding: 6px 14px;
  border-radius: 30px;
  font-weight: 600;
}

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-item i {
  font-size: 17px;
  color: #ffffff;
  background: #4f210e;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item small {
  color: #6b7280;
  font-size: 12px;
}

.contact-item p {
  margin: 0;
  font-weight: 500;
}

/* FORM CARD */
.modern-form {
  background: #ffffff;
  border-radius: 22px;
  padding: 35px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
}

/* INPUTS */
.modern-input {
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  height: 52px;
  font-size: 14px;
  padding: 14px 16px;
}

.modern-input:focus {
  border-color: #288f67;
  box-shadow: 0 0 0 .2rem rgba(249, 115, 22, .2);
}

/* ========================Quote Section======================== */


/* ===================DARK FOOTER UI=================== */

.footer-dark {
  background: linear-gradient(180deg, #0b1220, #020617);
  color: #cbd5f5;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.footer-brand i {
  color: #ffffff;
  font-size: 24px;
}

.footer-text {
  font-size: 14px;
  color: #9ca3af;
  max-width: 320px;
}

.footer-title {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #9ca3af;
  font-size: 14px;
  transition: .3s;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-social {
  margin-top: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #111827;
  border-radius: 50%;
  color: #9ca3af;
  margin-right: 10px;
  transition: .3s;
}

.footer-social a:hover {
  background: #3b82f6;
  color: #fff;
}

.footer-divider {
  border-color: rgba(255, 255, 255, .08);
  margin-top: 40px;
}

.footer-copy,
.footer-seo {
  font-size: 13px;
  color: #9ca3af;
}

/* ===================DARK FOOTER UI=================== */



/* ======================CONTACT-PAGE====================== */
.contact-premium {
  background: linear-gradient(180deg, #ffffff, #f9fafb);
}

/* Left content */
.contact-badge {
  background: rgba(40, 143, 103, .1);
  color: #288f67;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 500;
}

.contact-title {
  font-size: 38px;
  font-weight: 700;
  color: #111827;
}

.contact-title span {
  color: #4f210e;
}

.contact-desc {
  color: #6b7280;
  max-width: 480px;
}

/* Contact feature */
.contact-feature {
  display: flex;
  gap: 15px;
  margin-bottom: 22px;
}

.contact-feature i {
  width: 48px;
  height: 48px;
  background: rgba(40, 143, 103, .12);
  color: #288f67;
  font-size: 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-feature p {
  margin: 0;
  color: #374151;
}

/* Form Card */
.contact-form-premium {
  background: #ffffff;
  padding: 35px;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

/* Inputs */
.form-control {
  height: 48px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
}

.form-control:focus {
  border-color: #288f67;
  box-shadow: 0 0 0 .15rem rgba(40, 143, 103, .25);
}

/* Button */
.premium-btn {
  background: linear-gradient(135deg, #4f210e, #288f67);
  color: #fff;
  padding: 14px;
  font-weight: 600;
  border-radius: 14px;
  transition: .4s;
}

.premium-btn i {
  margin-left: 8px;
  transition: .3s;
}

.premium-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(40, 143, 103, .4);
  color: #fff;
}

.premium-btn:hover i {
  transform: translateX(6px);
}

/* ======================CONTACT-PAGE====================== */



/* ==========================CONTACT HERO BANNER========================== */

.contact-hero-main {
  padding: 20px 0;
  background: linear-gradient(135deg,
      rgba(79, 33, 14, .95),
      rgba(40, 143, 103, .95));
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Badge */
.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, .15);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  margin-bottom: 18px;
}

/* Title */
.hero-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-title span {
  color: #d1fae5;
}

/* Text */
.hero-text {
  max-width: 520px;
  margin: 20px 0 30px;
  color: #e5e7eb;
}

/* Actions */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* CTA Button */
.hero-btn {
  background: #ffffff;
  color: #4f210e;
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: 600;
  transition: .4s;
}

.hero-btn i {
  margin-left: 8px;
  transition: .3s;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
}

.hero-btn:hover i {
  transform: translateX(6px);
}

/* Call box */
.hero-call {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-call i {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Trust points */
.hero-trust {
  margin-top: 35px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 14px;
}

.hero-trust i {
  margin-right: 6px;
  color: #bbf7d0;
}

/* Image */
.hero-image-wrap {
  position: relative;
}

.hero-image-wrap img {
  max-width: 100%;
}

/* Responsive */
@media(max-width:768px) {
  .hero-title {
    font-size: 32px;
  }
}

/* ==========================CONTACT HERO BANNER========================== */


/* ==========================service-page========================== */
.service-hero-v2 {
  padding: 110px 0;
  background: #f9fafb;
}

.service-hero-v2 h1 {
  font-size: 46px;
  font-weight: 800;
  color: #111;
}

.service-hero-v2 h1 span {
  color: #4f210e;
}

.service-hero-v2 p {
  max-width: 650px;
  margin: 20px auto 30px;
  color: #6b7280;
}

.service-pill {
  background: rgba(40, 143, 103, .1);
  color: #288f67;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 13px;
}


.service-items {
  background: #f8fafc;
}

.item-box {
  background: #fff;
  padding: 35px 20px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.item-box i {
  font-size: 30px;
  color: #288f67;
  margin-bottom: 12px;
}

.process-box {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  border-top: 4px solid #4f210e;
}

.process-box span {
  font-size: 34px;
  font-weight: 800;
  color: #288f67;
}

.service-cta-final {
  padding: 80px 0;
  background: linear-gradient(135deg, #4f210e, #288f67);
  color: #fff;
}

/* ==========================service-page========================== */


/* ==========================about-page========================== */

.about-hero {
  padding: 110px 0;
  background: #f9fafb;
}

.about-hero h1 {
  font-size: 46px;
  font-weight: 800;
  color: #111;
}

.about-hero h1 span {
  color: #4f210e;
}

.about-hero p {
  max-width: 700px;
  margin: 20px auto 0;
  color: #6b7280;
}

.about-badge {
  background: rgba(40, 143, 103, .1);
  color: #288f67;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 13px;
}

.about-card {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.about-card i {
  font-size: 34px;
  color: #288f67;
  margin-bottom: 15px;
}

.about-list li {
  margin-bottom: 14px;
  font-weight: 500;
}

.about-list i {
  color: #288f67;
  margin-right: 8px;
}

/* ==========================about-page========================== */



/* ==========================blog-page========================== */
.blog-hero {
  padding: 90px 0;
  background: #f9fafb;
}

.blog-hero h1 {
  font-size: 42px;
  font-weight: 800;
}

.blog-hero p {
  max-width: 650px;
  margin: 12px auto 0;
  color: #6b7280;
}

.blog-badge {
  background: rgba(40, 143, 103, .12);
  color: #288f67;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 13px;
}

.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
  transition: .3s;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-card img {
  width: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 22px;
}

.blog-cat {
  display: inline-block;
  font-size: 12px;
  color: #288f67;
  font-weight: 600;
  margin-bottom: 8px;
}

.blog-content h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 14px;
  color: #6b7280;
}

.read-more {
  color: #4f210e;
  font-weight: 600;
  text-decoration: none;
}

.read-more i {
  transition: .3s;
}

.read-more:hover i {
  transform: translateX(5px);
}

.page-item.active .page-link {
  background: #288f67;
  border-color: #288f67;
}

.page-link {
  color: #4f210e;
}

.blog-detail-hero {
  padding: 80px 0;
  background: #f9fafb;
}

.blog-detail-hero h1 {
  font-size: 40px;
  font-weight: 800;
  margin-top: 10px;
}

.blog-meta {
  margin-top: 15px;
  display: flex;
  gap: 20px;
  color: #6b7280;
  font-size: 14px;
}

.blog-meta i {
  color: #288f67;
  margin-right: 5px;
}

.blog-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

.blog-content h3 {
  margin-top: 30px;
  font-weight: 700;
  color: #4f210e;
}

.blog-content blockquote {
  margin: 30px 0;
  padding: 20px;
  background: #f1f5f9;
  border-left: 4px solid #288f67;
  font-style: italic;
}

/* SIDEBAR */
.blog-widget {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
  margin-bottom: 30px;
}

.blog-widget h5 {
  font-weight: 700;
  margin-bottom: 15px;
}

.blog-widget ul {
  list-style: none;
  padding: 0;
}

.blog-widget ul li {
  margin-bottom: 10px;
}

.blog-widget ul li a {
  color: #333;
  text-decoration: none;
  transition: .3s;
}

.blog-widget ul li a:hover {
  color: #288f67;
}

/* RECENT POSTS */
.recent-post {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.recent-post img {
  width: 70px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.recent-post a {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  font-weight: 600;
}

.recent-post a:hover {
  color: #4f210e;
}

/* ==========================blog-page========================== */



/* ==========================privacy-page========================== */
.policy-hero {
  padding: 80px 0;
  background: #f9fafb;
}

.policy-hero h1 {
  font-size: 40px;
  font-weight: 800;
  margin-top: 10px;
}

.policy-hero p {
  max-width: 700px;
  margin: 12px auto 0;
  color: #6b7280;
}

.policy-badge {
  background: rgba(40, 143, 103, .12);
  color: #288f67;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 13px;
}

.policy-content {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.policy-content h3 {
  margin-top: 30px;
  font-weight: 700;
  color: #4f210e;
}

.policy-content p {
  color: #444;
  line-height: 1.8;
  margin-top: 10px;
}

.policy-content ul {
  padding-left: 18px;
  margin-top: 10px;
}

.policy-content ul li {
  margin-bottom: 8px;
}

/* ==========================privacy-page========================== */






@media (max-width: 768px) {
  .knowledge-section {
    .card {
      width: 100%;
    }
  }
}



.slide-alert {
  position: fixed;
  top: 30px;
  right: -400px;
  z-index: 9999;
  transition: all 0.6s ease;
}

.slide-alert.show {
  right: 20px;
}

.slide-alert-content {
  background: #198754; /* bootstrap success */
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  font-weight: 500;
  display: flex;
  align-items: center;
}


/*citypages*/

.sectionwhy{
    padding:70px;
}
.sectionHome{
    padding:70px;
}

