/**
 * Theme Name: Haldimand Insurance
 * Description: Blocksy Child theme
 * Author: SlypigPro
 * Template: blocksy
 * Text Domain: blocksy
 */

/* THEME ********************************************************************/

:root {
  --haldimand-blue:#0e51ba;
  --haldimand-blue-op:rgba(14, 81, 186, 0.8);
  --haldimand-darkblue: #0A3D8C;
  --haldimand-lightblue:#4D84D9;
  --haldimand-gold:#E3B625;
  --haldimand-light:rgb(249, 249, 249);
  --haldimand-light-op: rgba(249, 249, 249, 0.5);
  --haldimand-dark:rgb(26, 26, 26);
}


/* FONTS *********************************************************************/

@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/inter.woff2') format('woff2'); 
}


@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  src: url('fonts/inter-800.woff2') format('woff2'); 
}

/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/poppins.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  src: url('fonts/poppins-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}






/* LAYOUT FIXES (Home) ******************************************************/

body, p, li, a, span, input, textarea, button {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", "Inter", sans-serif !important;
}

.home .ct-container-full,
.home .hero-section {
  padding-top: 0 !important;
  padding-bottom : 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  box-sizing: border-box;
}

.sow-icon-ionicons {display: none !important;}


a {
    text-decoration: none !important;
}


/* PAGE BG ************************************************************************/

body {
  background: var(--haldimand-light);
  position: relative;
  overflow-x: hidden;
}

/* Soft structured gradient (this is your main visible layer) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;

  background:
    radial-gradient(circle at 15% 20%,
      rgba(14, 81, 186, 0.10),
      transparent 45%),

    radial-gradient(circle at 85% 75%,
      rgba(227, 182, 37, 0.10),
      transparent 50%),

    linear-gradient(to bottom,
      rgba(14, 81, 186, 0.04),
      transparent 60%);
}

/* Subtle texture (optional but important for depth) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");

  opacity: 0.7;
}

/* PAGE TITLES ***************************************************************************/

/* Full-width background band */
.my-title-wrapper {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom:3em;
    background: var(--haldimand-blue);
     padding: 20px 0;
  }


.my-title-wrapper h1.page-title {
    width: 100%;
    margin: 10px auto ;
    padding: 0;
    color: white;

    max-width: var(--theme-container-width, var(--container-max-width));
}


@media (min-width: 1200px) {
    .my-title-wrapper h1.page-title {
        max-width: 1200px;
    }
}


h1.page-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px; /* adjust to sit behind first letter */
  width: 75px;
  height: 90px;
  transform: translateY(-50%);
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg viewBox='0 0 200 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100 10 L180 40 V100 C180 160 140 200 100 230 C60 200 20 160 20 100 V40 Z' fill='rgba(255,255,255,0.15)' stroke='rgba(255,255,255,0.25)' stroke-width='2'/%3E%3C/svg%3E");
}

@media (max-width:768px) {
  h1.page-title::before {
    width:50px;
    height:65px;
  }
}





h1.page-title {
  font-size: clamp(1.5rem, 2vw + 0.8rem, 2.5rem);
  font-weight: 700;
  position: relative;
  background: none;
  color: var(--haldimand-light); /* or whatever your default text color is */
  padding: 0;
  margin-bottom: 40px;

  /* Animation start state */
  opacity: 0;
  transform: translateX(40px);
}

/* Animate in */
h1.page-title.animate-in {
  animation: slideInRight 0.8s ease-out forwards;
  animation-delay: 0.2s;
}

/* Underline accent BELOW the text */
h1.page-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px; /* moves underline below the text */
  width: 60px;
  height: 4px;
  background: var(--haldimand-gold);
  border-radius: 2px;
  margin-bottom:10px;
}

/* Slide animation */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* body.home .menu {
  opacity: 0;
  transition: opacity 0.2s ease;
} */

.site-branding {
  margin-left:0 !important;
}


/* HOME PAGE TITLE  ********************************************************************/

.home .page-title {
  display: none;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 35em; /* stable mobile height, no vh */
  display: flex;
  align-items: center;       /* vertical center */
  justify-content: center;   /* horizontal center */
  overflow: hidden;
  padding: 1.5em;
  background-color: var(--haldimand-blue);
  z-index: 1;
}

/* Background layer */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://newsite.haldimandins.on.ca/wp-content/uploads/2026/04/hero.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 20% center; /* mobile-safe centering */
}

/* Hero content */
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 1.25em;
  border-radius: 8px;
  border: 1px solid var(--haldimand-light);
  background-color: var(--haldimand-blue-op);
  margin: 0 1em; 
  width: 100%;
  
}

.hero-inner h1 {
  color: var(--haldimand-light);
  margin: 0;
  font-size: 2rem;
  line-height: 1.2;
}

/* Button */
button.home-btn {
  padding: 1em 2em;
  margin-top: 1em;
  background: var(--haldimand-gold);
  color: var(--haldimand-dark);
  border: 2px solid var(--haldimand-light);
  border-radius: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

button.home-btn:hover {
  background: var(--haldimand-lightblue);
  color: var(--haldimand-light);
}

button.home-btn:active {
  transform: translateY(2px);
  opacity: 0.9;
}

button.home-btn:focus {
  outline: none;
}

/* Desktop adjustments only */
@media (min-width: 768px) {

  .hero {
    min-height: calc(105vh - 194px);
    justify-content: flex-end;
      }

  .hero-inner {
    width: 50%;
    margin-top: -7em; /* desktop-only positioning */
  }

  .hero-inner h1 {
    font-size: 3rem;
  }

  .hero-bg::before {
    background-position: center -80px;
    border-radius: 0 0 30% 30%;
  }
}

#homesection-1, #homesection-2, #homesection-3, #homesection-4 {
  padding: 6em 0;
}

@media (max-width:748px) {
   #homesection-1, #homesection-2, #homesection-3, #homesection-4, .hero {
    padding: 3em 0;
}
}

/* INSURANCE INFO CARDS *************************************************************************************/

#homesection-1 {
  background-color: var(--haldimand-blue);
  position: relative;
  z-index:9;
}
/* --- CARD LAYOUT WRAPPER --- */
.insurance-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px;
  max-width: 1600px;
  margin-top: -160px !important;
  margin: 0 auto;
  padding: 30px 10px;
  
}

@media (max-width:1400px) {
  .insurance-cards {
    margin-top: -230px !important;
  }
}

.ins-card {
  flex: 1 1 calc(20% - 25px); /* responsive width */
  background: var(--haldimand-darkblue);
  border-radius: 2px;
  padding: 0;
  color: var(--haldimand-light);
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--haldimand-light);
  border-top: 15px solid var(--haldimand-light);
  /* IMPORTANT: no fixed height, no min-height here */
}



/* --- IMAGE TAKES TOP HALF --- */
.ins-card img {
  width: 100%;
  height: 200px;        /* all images same height */
  object-fit: cover;
  flex-shrink: 0;       /* don’t let flex shrink it */
  display: block;
}


.ins-card-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.ins-card-content p {
  flex: 1;             
  margin-bottom: 15px;
}



.ins-card-content h3 {
  color: var(--haldimand-gold);
  margin: 10px 0 5px;
  font-size: 1.25rem;
}

.ins-card-content p {
  flex-grow: 1;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

/* --- BUTTON --- */
.ins-card-content .ins-btn {
  display: inline-block;
  padding: 10px 18px;
  border: 2px solid var(--haldimand-light);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
  white-space: nowrap;
}

.ins-card-content .ins-btn:hover {
  background: var(--haldimand-gold);
  color: var(--haldimand-dark);
}

/* --- TABLET: 3 CARDS PER ROW --- */
@media (max-width: 1100px) {
  .ins-card {
    flex: 1 1 calc(33.333% - 25px);
  }
}

/* --- MOBILE: 1 CARD PER ROW --- */
@media (max-width: 768px) {
  .ins-card {
    flex: 1 1 100%;
  }

  .insurance-cards {
    margin-top: 0 !important;
  }
}





/***********************************************************************************************/

#homesection-2 {
  background: var(--haldimand-lightblue);
  padding: 2em;
  text-align: center;
  position: relative;
  overflow: hidden;
  
}

#homesection-2::before,
#homesection-2::after {
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
 
  font-size: clamp(14rem, 20vw, 26rem);
  color: #fff;
  opacity: 0.12;

  font-family: Georgia, serif;
  pointer-events: none;
}

#homesection-2::before {
  content: "“";
  left: 5%;
}

#homesection-2::after {
  content: "”";
  right: 5%;
}

@media (max-width: 480px) {

  #homesection-2::before {
   
    top: 60%;
  }

  #homesection-2::after {
    
      top: 60%;
  }
}


/* TESTIMONIALS ******************************************************************************/

.testimonial-fade-slider {
    position: relative;
    width: 100%;
    min-height: 350px; /* adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* CRITICAL for vertical centering */
    opacity: 0;
    transition: opacity 1s ease-in-out;

    display: flex;
    flex-direction: column;
    justify-content: center; /* vertical center */
    align-items: center;     /* horizontal center */

    padding: 10px;
    text-align: center;
}

.testimonial-slide.active {
    opacity: 1;
}

.testimonial-text {
    font-size: clamp(1.0rem, 2vw - 0.2rem, 1.5rem);

    color: #fff;
    line-height: 1.4;
    max-width: 1200px;
    margin-bottom: 20px;
}

.testimonial-name {
    font-size: clamp(0.75rem, 2vw - 0.2rem, 1.25rem);
    color: #fff;
    margin-top: 10px;
}












/* SCROLL ANIMATE **********************************************************************************/

.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}


/* VIDEO *********************************************************************************/

.video-container {
  position: relative;
  width: 100%;
  /* 16:9 Aspect Ratio */
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px; /* modern rounded corners */
  box-shadow: 0 6px 18px rgba(0,0,0,0.1); /* subtle shadow */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* PROFILE PAGE *****************************************************************/

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Title */
.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 2vw + 0.8rem, 2.5rem);
  color: var(--haldimand-dark);
  margin-bottom: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Tablet */
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 500px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Card */
.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  
  position: relative;
  will-change: transform;
  transform: translateZ(0); /* forces GPU rendering */
}


.team-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.50);
}

/* Image */
.card-image {
  position: relative;
  overflow: hidden;
}

.card-image img {
  position: relative;
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.card-image::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 6px; /* thickness of the bottom border */
    background: var(--haldimand-lightblue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.team-card:hover .card-image::after {
    transform: scaleX(1);
}

/* Content */
.card-content {
  padding: 20px;
  text-align: center;
}

.card-content h3 {
  margin: 10px 0 5px;
  color: var(--haldimand-blue);
}

.post-nominals {
    font-size: 1.25rem;       /* smaller than the name/title */
    color: var(--haldimand-dark);
    font-weight: 400;
    margin: 0;     
}

.title {
  font-weight: 600;
  color: var(--haldimand-gold);
  margin-bottom: 8px;
}

.email {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}

.bio {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 20px;
}

.bio-btn {
    position: relative;
    display: inline-block;
    padding: 10px 18px;
    background: var(--haldimand-blue);
    color: var(--haldimand-light);
    border-radius: 8px;
    text-decoration: none;
    overflow: hidden;
    transition: 0.3s ease;
}

.bio-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0); /* transparent initially */
    transition: 0.3s ease;
    border-radius: 8px;
}

.bio-btn:hover::before {
    background: rgba(255, 255, 255, 0.2); /* white overlay */
}

.bio-btn:hover {
    color: var(--haldimand-light); /* make text visible over white */
}


/* Mobile tweaks */
@media (max-width: 600px) {
  .card-image img {
    height: 220px;
  }

  .section-title {
    font-size: 1.8rem;
  }
}


/* In this section ***********************************************************************/

.in-this-section {
  background: var(--haldimand-lightblue);
  border-radius: 3px;
  margin: 30px 0;
  overflow: hidden; 
}

/* Style the title INSIDE the box */
.in-this-section .widget-title {
  padding: 20px 25px 10px;
  margin: 0;
  font-size: 1.4rem;
  color: var(--haldimand-light);
}

/* Content area */
.in-this-section .textwidget,
.in-this-section .widget-content {
  padding: 0 25px 20px;
}

/* Links */
.in-this-section .section-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;

}

.in-this-section .section-links a {
  text-decoration: none;
  color:var(--haldimand-light);
  font-weight: 500;
}

.in-this-section .section-links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .in-this-section .section-links {
    display: flex;
    flex-direction: column; 
    gap: 10px 0;            
  }
}

.sections-container {
  display: flex;
  flex-direction: column;
  gap: 2em; 
}

[id^="section"] {
  border: 1px solid rgb(197, 197, 197);
  min-height: 20em;
  padding: 1em;
  scroll-margin-top: 100px !important; /* keeps offset for sticky header */
  overflow: hidden;
}

@media (max-width: 480px) {
  [id^="section"] img {
    margin-top: 1em;
    margin-bottom: 1em;
  }

  [id^="section"] {
  scroll-margin-top: 100px !important; /* keeps offset for sticky header */
  }
}

h3.widget-title {
  font-size: clamp(1.2rem, 1.5vw + 0.6rem, 2rem);
}

/* SLIDER ****************************************************************************/

#homesection-3 {
  background-color: #fff;
}

.slow-slider {
  overflow: hidden;
  width: 100%;
}

.slow-track {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 100px;
  width: max-content;
  animation: scrollLogos 60s linear infinite;
}

.slow-track img {
  width: auto;
  height: auto;
  max-height: 80px; /* optional */
  display: block;
  flex: 0 0 auto;
}

@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* INSURANCE PRODUCT PAGES ************************************************************/

/* Add spacing ONLY to the Insurance template */
.ct-container {
    padding-top: 0 ;   /* space after header */
    padding-bottom: 30px !important; /* space before footer */
}
.ct-container-full {
  padding-top:0 !important;
  padding-bottom: 30px !important;
}


/* PREFOOTER ****************************************************************************/

.insurance-pre-footer {
  background-color: var(--haldimand-blue);
  padding: 2em;
  color: var(--haldimand-light);
  margin-top:4em;
}


/* BACK TO TOP **********************************************************************/

.ct-icon {
  transform: scale(0.5);
  transform-origin: center;
}

/* CLAIMS *******************************************************************************/

.claims-list-wrapper {
    width: 75%;
    margin: 0 auto; /* centers it */
}

.claims-list {
    max-width: 100%;
}

.claims-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.claims-item strong {
    font-weight: 600;
}

.claims-item a {
    text-decoration: underline;
}


/* GET A QUOTE **********************************************************************/

.nice-form-box {
    width: 90%;
    margin: 0 auto;
    padding: 30px;
    
    border: 1px solid var(--haldimand-lightblue);
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

@media (max-width: 768px) {
  .nice-form-box {
    width: 100%;
  }
}

/* CONTACT ********************************************************************************/

.location {
  margin:5em 0;
}

.mobile-img {
  display: none;
}

@media (max-width: 768px) {
  .desktop-img {
    display: none;
  }
  .mobile-img {
    display: block;
  }
}





/* FOOTER ***************************************************************************/
/* Force consistent font family in the footer */
[data-row="bottom"],
[data-row="bottom"] * {
    font-family: 'Inter';
    font-size: clamp(0.85rem, 0.8rem + 0.25vw, 1rem);

}


/* FORMINATOR *************************************************************************/

.forminator-button {
    position: relative;
    display: inline-block;
    padding: 16px 18px !important;
    background: var(--haldimand-blue);
    color: var(--haldimand-light);
    border-radius: 8px !important;
    text-decoration: none;
    overflow: hidden;
    transition: 0.3s ease;
}

.forminator-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0); /* transparent initially */
    transition: 0.3s ease;
    border-radius: 8px;
}

.forminator-button:hover::before {
    background: rgba(255, 255, 255, 0.2); /* white overlay */
}

.forminator-button:hover {
    color: var(--haldimand-light); /* make text visible over white */
}

.forminator-checkbox-label {
  font-size: 15px !important;
}

/* NEWS POSTS HOME PAGE ************************************************************************/

.haldimand-loop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 40px 0;
}

/* Responsive */
@media (max-width: 900px) {
  .haldimand-loop {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .haldimand-loop {
    grid-template-columns: 1fr;
  }
}

/* Each post card */
.haldimand-loop article {
  background: var(--haldimand-light);
  border: 1px solid var(--haldimand-light-op);
  border-radius: 10px;
  padding: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s ease, transform .25s ease;
}

.haldimand-loop article:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  /*transform: translateY(-3px);*/
}

/* Featured image */
.haldimand-loop article img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

/* Title */
.haldimand-loop article h2 a,
.haldimand-loop article h3 a {
  color: var(--haldimand-darkblue);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  
}

.haldimand-loop article h2 a:hover,
.haldimand-loop article h3 a:hover {
  color: var(--haldimand-blue);
}

/* Excerpt */
.haldimand-loop article .entry-summary,
.haldimand-loop article .entry-content {
  color: var(--haldimand-dark);
  opacity: 0.85;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 12px 0 20px;
  flex-grow: 1;
}


.haldimand-loop .haldimand-btn {
  display: inline-block;
  padding: 10px 18px;
  background-color: var(--haldimand-blue);
  border: 2px solid var(--haldimand-light);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
  white-space: nowrap;
  text-align: center;
}

.haldimand-loop .haldimand-btn:hover {
  background: var(--haldimand-gold);
  color: var(--haldimand-dark);
}

.item-title {
  font-size: 18px !important;
}

.item-content .item-label, .item-content .item-label span {
    font-size: 14px !important;
    font-weight: 400 !important;
}

h3.haldimand-title {
  line-height: 1.1;
}

.blog .ct-container[data-vertical-spacing] {
    padding-top: 0 !important;
    padding-bottom: 50px !important;
}









