/* ============================================================
   Express Cash For Cars — Custom Overrides
   Sits on top of motex-style.css to brand the theme and
   add WordPress-specific helpers.
   ============================================================ */

/* ── Override Motex theme colour to Express Cash For Cars brand ── */
:root {
  --theme-color: #E31837;
}

/* ── Logo text fallback (displayed when no logo image is uploaded) ── */
.navbar-brand .logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: #E31837;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.footer-logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 1rem;
}

/* ── Ensure custom logo images fit in the navbar ── */
.navbar-brand img,
.navbar-brand .custom-logo {
  max-height: 60px;
  width: auto;
  height: auto;
}

/* ── WordPress alignment classes ── */
.alignleft  { float: left;  margin: 0.5rem 1.5rem 1rem 0; }
.alignright { float: right; margin: 0.5rem 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }
img.alignleft, img.alignright, img.aligncenter { max-width: 100%; height: auto; }

/* ── WordPress captions ── */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: #666; text-align: center; margin-top: 0.3rem; }

/* ── About list items with checkmark icons (from page editor) ── */
.about-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.about-list li {
  padding: 0.4rem 0 0.4rem 2rem;
  position: relative;
}
.about-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--theme-color, #E31837);
  font-size: 1.1rem;
}

/* ── Contact / AJAX form response messages ── */
.alert {
  padding: 0.8rem 1.1rem;
  border-radius: 4px;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-danger  { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ── Pagination ── */
.wp-pagenavi,
.navigation.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 3rem;
}
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  color: #444;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.25s, color 0.25s;
}
.page-numbers.current,
.page-numbers:hover {
  background: var(--theme-color, #E31837);
  color: #fff;
  border-color: var(--theme-color, #E31837);
}

/* ── Sidebar widget heading ── */
.widget-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--theme-color, #E31837);
}

/* ── Entry content (blog post / page editor body text) ── */
.entry-content h2 { margin-top: 2.5rem; }
.entry-content h3 { margin-top: 2rem; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.entry-content ul li { list-style: disc;    margin-bottom: 0.4rem; }
.entry-content ol li { list-style: decimal; margin-bottom: 0.4rem; }
.entry-content blockquote {
  border-left: 4px solid var(--theme-color, #E31837);
  padding: 1rem 1.5rem;
  background: #f9f9f9;
  margin: 1.5rem 0;
  font-style: italic;
}
.entry-content a { text-decoration: underline; }

/* ── Newsletter message ── */
.newsletter-message {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}


/*------------------------------Customize------------------------------*/


/* ── Contact Form 7 – Inner Page Styling ── */

/* Form spacing */
.wpcf7-form .wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 16px;
}

/* Labels */
.wpcf7-form label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
    display: block;
}

/* All input fields, textarea */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="number"],
.wpcf7-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #1a1a1a;
    background: #fafafa;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

/* Focus state */
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="number"]:focus,
.wpcf7-form textarea:focus {
    border-color: #e63232;
    box-shadow: 0 0 0 3px rgba(230, 50, 50, 0.08);
    background: #fff;
}

/* Textarea height */
.wpcf7-form textarea {
    min-height: 130px;
    resize: vertical;
}

/* Submit button */
.wpcf7-form input[type="submit"] {
    width: 100%;
    padding: 12px 24px;
    background: #e63232;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.2s ease, transform 0.1s ease;
    margin-top: 4px;
}

/* Submit hover */
.wpcf7-form input[type="submit"]:hover {
    background: #c42828;
    transform: translateY(-1px);
}





/* ═══════════════════════════════
   HERO
═══════════════════════════════ */

.hero-section .hero-single {
    min-height: 70vh;
    padding: 80px 0;
}

.min-vh-80 {
    min-height: unset;
}


/* ═══════════════════════════════
   ABOUT
═══════════════════════════════ */

.about-list li {
    padding-left: 18px;
}

.about-list li::before {
    content: ">";
    font-size: 14px;
    font-weight: 700;
    line-height: 2.9;
}


/* ═══════════════════════════════
   TESTIMONIALS
═══════════════════════════════ */

.testimonial-slider.owl-carousel,
.testimonial-slider .owl-stage,
.testimonial-slider .owl-item {
    display: flex;
    align-items: flex-start;
		margin-top: -16px;
	 
}

.testimonial-slider .testimonial-single {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-single {
    min-height: 400px;
    padding: 24px;
    border-radius: 20px;
}

.testimonial-content {
    margin-bottom: 12px;
}

.testimonial-quote {
    position: relative;
}

.testimonial-quote p {
    margin-top: 0;
}

.testimonial-quote-icon {
    position: absolute;
    top: -155px;
    right: 0;
}

.testimonial-quote-icon i {
    font-size: 20px;
}

.testimonial-rate {
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    gap: 2px;
    align-items: center;
}

.testimonial-area{
	padding-bottom: 80px;
}

/* ═══════════════════════════════
   HEADER + NAV
═══════════════════════════════ */

.header-top,
.search-btn,
.search-area,
.sidebar-btn {
    display: none;
}


/* CTA */

.nav-cta-btn {
    display: inline-flex;
    justify-content: center;
    text-align: center;
}

.nav-cta-btn span {
    display: none;
}


/* Phone Button */

.nav-phone-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border: 2px solid var(--theme-color, #e63946);
    border-radius: 8px;
    background: transparent;
    text-decoration: none;
    transition: border-color .25s, color .25s;
}

.nav-phone-number {
    font-size: 15px;
    font-weight: 700;
    color: var(--theme-color, #e63946);
    animation: blink-number 1.2s step-start infinite;
}

.nav-phone-btn:hover {
    border-color: #111;
}

.nav-phone-btn:hover .nav-phone-number {
    color: #111;
    animation: none;
}


/* Animation */

@keyframes blink-number {
    0%,100% { color: var(--theme-color, #e63946); }
    50%     { color: rgba(230,57,70,0.3); }
}


/* Hero phone button */

.hero-phone-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: #000;
    border: 2px solid var(--theme-color, #e63946);
    border-radius: 8px;
    text-decoration: none;
    transition: background .25s, color .25s;
}

.hero-phone-btn strong {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.hero-phone-btn:hover {
    background: var(--theme-color, #e63946);
}


/* ═══════════════════════════════
   HERO FORM CARD
═══════════════════════════════ */
.hero-form-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}
/* Header */
.hero-form-header {
    padding: 28px 24px 16px;
}
.hero-form-header h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #111;
}
.hero-form-header p {
    display: none;
}
/* Body */
.hero-form-body {
    padding: 14px 24px 4px;
}
/* Form Grid */
.hero-form-body .wpcf7-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 16px;
}
/* Labels */
.hero-form-body .wpcf7-form label {
    display: block;
    margin-bottom: 3px;
    font-size: 12px;
    font-weight: 600;
    color: #444;
}
/* Full-width rows */
.hero-form-body .wpcf7-form p:nth-of-type(5),
.hero-form-body .wpcf7-form p:nth-of-type(6),
.hero-form-body .wpcf7-form p:last-of-type {
    grid-column: 1 / -1;
}
/* Inputs & Selects */
.hero-form-body .wpcf7-form input,
.hero-form-body .wpcf7-form textarea,
.hero-form-body .wpcf7-form select {
    width: 100%;
    padding: 9px 12px;
    font-size: 13px;
    border: 1.5px solid #e6e6e6;
    border-radius: 8px;
    background: #fafafa;
    box-sizing: border-box;
    transition: 0.2s ease;
}
.hero-form-body .wpcf7-form input:focus,
.hero-form-body .wpcf7-form textarea:focus,
.hero-form-body .wpcf7-form select:focus {
    background: #fff;
    border-color: var(--theme-color, #e63946);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.08);
    outline: none;
}
.hero-form-body .wpcf7-form textarea {
    height: 75px;
    resize: none;
}
/* Submit Button */
.hero-form-body .wpcf7-form input[type="submit"] {
    width: 100%;
    margin-top: 10px;
    padding: 11px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background: var(--theme-color, #e63946);
    color: #fff;
    cursor: pointer;
    transition: 0.25s ease;
}
.hero-form-body .wpcf7-form input[type="submit"]:hover {
    background: #c0262e;
    transform: translateY(-2px);
}
/* Validation */
.hero-form-body .wpcf7-not-valid-tip {
    margin-top: 3px;
    font-size: 11px;
    color: #e63946;
}
.hero-form-body .wpcf7-response-output {
    grid-column: 1 / -1;
    margin-top: 8px;
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 8px;
}
/* Responsive */
@media (max-width: 768px) {
    .hero-form-body .wpcf7-form {
        grid-template-columns: 1fr;
    }
}


/* ── Content Styling Classes ── */

.content-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
}

.content-section {
    margin-bottom: 32px;
}

.content-divider {
    border: none;
    border-top: 1.5px solid #bbbbbb;
    margin: 0 0 32px;
}

.content-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.content-text {
    font-size: 0.97rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
		
}

.content-checklist {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
		
}

.content-checklist-item {
    font-size: 0.97rem;
    color: #555;
    padding-left: 16px;
    position: relative;
		
}

.content-checklist-item::before {
    content: '—';
    color: #e63232;
    font-weight: 700;
    position: absolute;
    left: 0;
}

.content-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;

}

.content-step {
    padding: 14px 16px;
    border-left: 3px solid #e63232;
}

.content-step-title {
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px;
    font-size: 0.97rem;
}

.content-step-text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
}

.content-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.content-tag {
    color: #e63232;
    border: 1px solid #e63232;
    border-radius: 4px;
    padding: 4px 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.content-card {
    border: 1.5px solid #e8e8e8;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 32px;
}

.content-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
}


/* ═══════════════════════════════════════════════
   MOBILE MENU OVERLAY
═══════════════════════════════════════════════ */
@media (max-width: 991px) {

    /* Hide the default collapse menu on mobile */
    #main_nav {
        display: none !important;
    }

    /* Overlay panel */
    .npd-mobile-overlay {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        z-index: 99999;
        transition: left .3s ease;
        overflow-y: auto;
        box-shadow: 4px 0 30px rgba(0,0,0,0.15);
    }

    .npd-mobile-overlay.active {
        left: 0;
    }

    .npd-mobile-inner {
        padding: 24px 20px;
    }

    /* Close button */
    .npd-mobile-close {
        background: none;
        border: none;
        font-size: 22px;
        cursor: pointer;
        color: #222;
        display: block;
        margin-left: auto;
        margin-bottom: 20px;
    }

    /* Logo inside overlay */
    .npd-mobile-logo {
        margin-bottom: 24px;
    }

    .npd-mobile-logo img {
        max-height: 45px;
        width: auto;
    }

    /* Nav links */
    .npd-mobile-nav {
        list-style: none;
        padding: 0;
        margin: 0 0 24px;
    }

    .npd-mobile-nav li a {
        display: block;
        padding: 12px 0;
        font-size: 15px;
        font-weight: 600;
        color: #222;
        border-bottom: 1px solid #f0f0f0;
        text-decoration: none;
    }

    .npd-mobile-nav li a:hover {
        color: var(--theme-color, #e63946);
    }

    /* Submenu */
    .npd-mobile-nav .sub-menu {
        list-style: none;
        padding-left: 16px;
        margin: 0;
        display: none;
    }

    .npd-mobile-nav .sub-menu.open {
        display: block;
    }

    .npd-mobile-nav .sub-menu li a {
        font-size: 14px;
        font-weight: 500;
        padding: 10px 0;
        color: #555;
    }

    .npd-mobile-nav li.menu-item-has-children > a::after {
        content: "+";
        float: right;
        font-size: 18px;
        line-height: 1;
    }

    .npd-mobile-nav li.menu-item-has-children.open > a::after {
        content: "−";
    }

    /* Backdrop */
    .npd-mobile-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 99998;
    }

    .npd-mobile-backdrop.active {
        display: block;
    }

    /* Buttons */
    .npd-mobile-btns {
        margin-top: 24px;
    }

    .npd-mobile-btns .theme-btn {
        width: 100%;
        text-align: center;
        display: block;
    }
}

/* Hide mobile overlay on desktop */
@media (min-width: 992px) {
    .npd-mobile-overlay,
    .npd-mobile-backdrop {
        display: none !important;
    }
}

@media (max-width: 991px) {
    img.custom-logo {
        max-height: 40px !important;
        width: auto !important;
        height: auto !important;
    }

    .navbar .container {
        justify-content: space-between !important;
    }

    .navbar-brand {
        order: 1 !important;
        margin: 0 !important;
    }

    .mobile-menu-right {
        order: 2 !important;
    }

    /* Minimal hamburger button */
    .npd-menu-toggle {
        background: none !important;
        border: none !important;
        padding: 4px !important;
        cursor: pointer !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 5px !important;
        box-shadow: none !important;
    }

    .npd-menu-toggle .navbar-toggler-mobile-icon {
        display: none !important;
    }

    .npd-menu-toggle::before,
    .npd-menu-toggle::after,
    .npd-menu-toggle span {
        content: '' !important;
        display: block !important;
        width: 22px !important;
        height: 2px !important;
        background: #111 !important;
        border-radius: 2px !important;
    }

    .npd-menu-toggle span {
        width: 14px !important;
    }
}


.service-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .page-template-page-templates-services .main {
        margin-top: 400px;
    }
}


/* ═══════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */
.services-area {
    background: #fff;
}

.services-list .row {
    margin: 0;
    gap: 0;
}

.services-list .col-6 {
    padding: 4px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    background: #fff;
    border: 1.5px solid #f0f0f0;
    border-radius: 10px;
    margin: 0;
    transition: border-color .25s, color .25s;
}

.service-item:hover {
    border-color: var(--theme-color, #e63946);
    color: var(--theme-color, #e63946);
}

.service-item i {
    font-size: 22px;
    color: var(--theme-color, #e63946);
    flex-shrink: 0;
}


/* ═══════════════════════════════════════════════
   LOCATIONS
═══════════════════════════════════════════════ */
.locations-area {
    background: #f8f8f8;
}

.loc-item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background: #fff !important;
    border: 1.5px solid #e0e0e0 !important;
    border-radius: 10px !important;
    min-height: 60px !important;
    padding: 14px 10px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #333 !important;
    text-decoration: none !important;
}

.locations-area .mt-3{
	margin-bottom:-20px;
}

/* ═══════════════════════════════════════════════
   LOCATION PAGE
═══════════════════════════════════════════════ */
.location-content {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

.location-content h2,
.location-content h3 {
    color: #111;
    font-weight: 700;
    margin-bottom: 12px;
}

.location-content p {
    margin-bottom: 16px;
}

.location-content ul {
    padding-left: 18px;
    margin-bottom: 16px;
}

.location-content ul li {
    margin-bottom: 8px;
}

/* Form card */
.location-form-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.location-form-header {
    background: var(--theme-color, #e63946);
    padding: 22px 28px 16px;
}

.location-form-header h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.location-form-header p {
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    margin-bottom: 0;
}

.location-form-body {
    padding: 20px 28px 24px;
}

.location-form-body .wpcf7-form input[type="text"],
.location-form-body .wpcf7-form input[type="email"],
.location-form-body .wpcf7-form input[type="tel"],
.location-form-body .wpcf7-form textarea,
.location-form-body .wpcf7-form select {
    width: 100% !important;
    box-sizing: border-box !important;
    border: 1.5px solid #e6e6e6 !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
    background: #fafafa !important;
    margin-bottom: 10px !important;
    transition: border-color .2s !important;
}

.location-form-body .wpcf7-form input:focus,
.location-form-body .wpcf7-form textarea:focus {
    border-color: var(--theme-color, #e63946) !important;
    background: #fff !important;
}

.location-form-body .wpcf7-form textarea {
    height: 80px !important;
    resize: none !important;
}

.location-form-body .wpcf7-form input[type="submit"] {
    width: 100% !important;
    padding: 13px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    background: var(--theme-color, #e63946) !important;
    color: #fff !important;
    border: none !important;
    cursor: pointer !important;
    transition: background .25s !important;
}

.location-form-body .wpcf7-form input[type="submit"]:hover {
    background: #c0262e !important;
}

/* ═══════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════ */

/* Info Cards */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: #f8f8f8;
    border-radius: 10px;
}

.contact-info-item i {
    font-size: 20px;
    color: var(--theme-color, #e63946);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-info-item h6 {
    margin-bottom: 2px;
    font-size: 13px;
    font-weight: 700;
    color: #111;
}

.contact-info-item p,
.contact-info-item a {
    margin: 0;
    font-size: 13px;
    color: #666;
    text-decoration: none;
}


/* Form Card */
.contact-form-card {
    height: 100%;
    padding: 22px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
}

.contact-form-card h4 {
    margin-bottom: 14px;
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

/* Inputs */
.contact-form-card .wpcf7-form input,
.contact-form-card .wpcf7-form textarea,
.contact-form-card .wpcf7-form select {
    width: 100%;
    padding: 8px 12px;
    margin-bottom: 8px;
    font-size: 13px;
    background: #fafafa;
    border: 1.5px solid #e6e6e6;
    border-radius: 8px;
    box-sizing: border-box;
    transition: 0.2s border-color, 0.2s background;
}

.contact-form-card .wpcf7-form input:focus,
.contact-form-card .wpcf7-form textarea:focus,
.contact-form-card .wpcf7-form select:focus {
    border-color: var(--theme-color, #e63946);
    background: #fff;
    outline: none;
}

.contact-form-card .wpcf7-form textarea {
    height: 65px;
    resize: none;
}

/* Submit Button */
.contact-form-card .wpcf7-form input[type="submit"] {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: var(--theme-color, #e63946);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.25s;
}

.contact-form-card .wpcf7-form input[type="submit"]:hover {
    background: #c0262e;
}


/* Map Card */
.contact-map-card {
    height: 628px;
    min-height: 300px;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
}

.contact-map-card iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}


/* Layout Spacing */
.contact-area.py-60 {
    padding-top: 40px;
    padding-bottom: 60px;
}

.site-breadcrumb {
    margin-bottom: 0;
}

.contact-info-bar {
    margin-top: 20px;
}

