/*--------------------------------------------------------------
# Imports: Colors & Typography Variables
--------------------------------------------------------------*/
@import '_colors.css';
@import '_typography.css';
@import '_reviews.css';


html, body {
  overflow-x: hidden;
}

/*--------------------------------------------------------------
# General Typography
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  background-color: var(--color-background);
  font-size: var(--p-size);
  line-height: var(--p-line-height);
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin: 0!important;
}

h1 { font-size: var(--h1-size); line-height: var(--h1-line-height); font-family: var(--font-heading);}
h2 { font-size: var(--h2-size); line-height: var(--h2-line-height); font-family: var(--font-heading);}
h3 { font-size: var(--h3-size); line-height: var(--h3-line-height); font-family: var(--font-heading);}
h4 { font-size: var(--h4-size); line-height: var(--h4-line-height); font-family: var(--font-heading);}
h5 { font-size: var(--h5-size); line-height: var(--h5-line-height); font-family: var(--font-heading);}
h6 { font-size: var(--h6-size); line-height: var(--h6-line-height); font-family: var(--font-heading);}

.heading-lg {font-size: var(--heading-lg); line-height: (--heading-lg-height); letter-spacing: (--heading-lg-letter-spacing);}

.liv-heading-li {
  font-family: var(--font-heading) !important;
  font-size: var(--p-size)!important;
  letter-spacing: 0 !important;
  line-height: var(--p-meduim-line-height)!important;
  font-weight: 500 !important;
  color: #0C1924 !important;
}

p {
  font-size: var(--p-size);
  line-height: var(--p-meduim-line-height);
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.small, small {
  font-size: var(--small-size);
  line-height: var(--p-meduim-line-height);
  color: inherit;
}

.caption {
  font-size: var(--caption-size);
  line-height: var(--caption-line-height);
}

.lead {
  font-size: clamp(16px, 2.5vw, 1.5rem);
  font-weight: 400;
}

.border-1 {
  color: var(--color-default)!important;
  opacity: 1;
}

blockquote, .special-text {
  font-size: var(--p-size);
  line-height: var(--p-line-height);
}

.custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

/*--------------------------------------------------------------
# Containers 
--------------------------------------------------------------*/

.container-xl {
  max-width: 1920px;
}

@media screen and (min-width: 641px) {
  .container-xl {
        padding: 0 50px;
    }
}

@media screen and (min-width: 1140px) {
  .container-xl {
        padding: 0 80px;
    }
}

.vh-70 {
  min-height: 70vh;
}

.vh-100 {
  min-height: 100vh;
}

@media screen and (min-width: 1140px) {
  .container-xl {
    padding: 0 100px;
  }
}
/*--------------------------------------------------------------
# Buttons & Inputs
--------------------------------------------------------------*/
input:focus-visible, input:active {
    outline: 0px;
}
input::placeholder {
  color: var(--color-default);
  font-weight: 600;
  font-size: var(--small-size);
}

.form-control:focus {
  box-shadow: none!important;
}

.btn {
  font-family: var(--font-heading);
  font-weight: 400;
  border-radius: 0px;
  padding: 0.4rem 1rem;
  font-size: var(--p-size);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}

.btn-ziipfy-dark {
  background-color: var(--brand-purple);
  border: 0px solid var(--brand-purple);
  color: var(--brand-white);
  text-transform: uppercase;
}

.btn-ziipfy-dark:hover{
 background-color: var(--color-default); 
 opacity: 85%;
 color: var(--brand-white);
}

.btn-ziipfy-pink {
  background-color: var(--brand-pink);
  border: 2px solid var(--brand-pink);
  color: var(--brand-white);
}

.btn-ziipfy-pink:hover{
  background-color: var(--brand-pink);
  opacity: 85%;
  color: var(--brand-white);
}

.btn-ziipfy-orange{
  background-color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  color: var(--brand-white);
}

.btn-ziipfy-orange:hover{
  background-color: var(--color-secondary);
  opacity: 85%;
  color: var(--brand-white);
}

.btn-ziipfy-outlined {
  background-color: transparent;
  border: 2px solid var(--color-default);
  color: var(--color-default);
}

.btn-ziipfy-outlined:hover {
  background-color: var(--color-blue);
  border: 2px solid var(--color-default);
  color: var(--color-default);
}

.Select {
    position: relative;
    color: currentColor;
    line-height: 1;
    vertical-align: middle;
}

.Select svg {
    position: absolute;
    line-height: normal;
    pointer-events: none;
    vertical-align: baseline;
    fill: currentColor;
}

.Select svg.icon_search {
    width: 22px;
    left: 14px;
    height: 22px;
    top: 34%;
    color: var(--color-default);
}

@media (max-width: 576px) {
  .btn {
    width: 100%;
    justify-content: center;
  }
  
}

footer .btn {
  width: auto;
}
/*--------------------------------------------------------------
# Global Titles
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--color-default);
  background-color: var(--color-background);
  padding: 50px 0;
  scroll-margin-top: 90px;
}

.section-0 {
  padding: 0;
}

.dark-background {
  background-color: var(--color-background);
  color: var(--color-default);
}

.marquee {
    display: flex;
    overflow: hidden;
    gap: 10px;
    position: relative;
    user-select: none;
    justify-content: space-around;
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    gap: 5px;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    text-transform: none;
}

@media (min-width: 780px) {
  section,
  .section {
    padding: 30px 0;
  }

  .container {
    max-width: 1356px; 
    margin: 0 auto; 
    padding-left: 96px; 
    padding-right: 96px;
  }

  .section-0 {
  padding: 60px 0;
}
}

@media (min-width: 48rem) {
  .w-65 {
    max-width: 100%;
    margin: auto;
  }
}

@media (min-width: 1200px) {
  section,
  .section {
    scroll-margin-top: 66px;
    padding: 60px 0;
  }

}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.header-spacer {
  min-height: 70px;
}

@media (max-width: 768px) {
  .header-spacer {
  min-height: 40px;
}
}

.navbar-nav .nav-link, a.nav-link {
    padding: 0;
    color: var(--color-default);
    font-size: 18px !important;
    letter-spacing: 0 !important;
    line-height: 1.4em !important;
    font-weight: 500 !important;
    display: flex;
    align-items: anchor-center;
    gap: 0.3px;
}

.navbar-brand {
  font-size: 32px;
  font-weight: 500;
  color: #101720;
  width:auto;
  max-width: 120px;

}

.navbar-brand {
  z-index: 10;
}


.navbar-brand img {
  transition: all 0.3s ease;
  width:100%;
  height: auto;
}

.nav-item {
  border-bottom: 3px solid transparent;
}

.nav-item:hover {
    border-bottom: 3px solid var(--color-secondary);
}

.navbar-toggler { 
  border: 0!important;
}

.navbar-toggler:focus { 
  border: 0!important;
  box-shadow: none!important;
}

.navbar-toggler .line{
  stroke: #462b88; /* accent color for hover */
}

/* Basic hover shadow + smooth transition */
.navbar-toggler-icon-svg .line {
  transition: all 0.3s ease;
}

.navbar-toggler:hover .line {
  stroke: #f51605; /* accent color for hover */
  stroke-width: 2;
}

.dropdown-menu[data-bs-popper] {
    top: 230%;
}

.dropdown-toggle::after {
  display: none!important;
}

.nav-link svg {
  margin: 0px;
  font-size: inherit;
  width: 24px;
  height: 24px;
}

#cart-count {
  background-color: var(--color-secondary);
}


#cartSidebar {
  width: 400px;  /* 4/12 columns */
  max-width: 480px;
  height: 100vh;
  max-height: 919px;
  box-shadow: #00000059 0 5px 15px;
  touch-action: manipulation;
  padding: 0;
}

.offcanvas.offcanvas-end {
  color:0;
}

.offcanvas-backdrop {
    background-color: transparent!important;
}

.cart_header {
  display: flex;
    align-items: center;
    position: relative;
    background: inherit;
    text-align: center;
    z-index: 1;
    padding: 16px;
    box-shadow: none;
    max-height: unset;
    min-height: unset;
}

.cart_title {
  font-weight: 700;
  font-size: var(--p-size);
}

.btn-close {
  opacity: 1!important;
  width: 1.5rem!important;
  height: 1.5rem!important;
}

.custom-close {
  background: none !important; /* remove Bootstrap's default icon */
  border: none;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart_header svg {
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-default);
}


.cart_body {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    height: calc(100% - 54px);
    max-height: calc(100% - 54px);
}

/* Smooth transitions */
.transition-all {
  transition: all 0.3s ease-in-out;
}

/* Default header height */
#mainHeader {
  background-color: var(--color-background); /* optional, keeps brand tone */
}

/* Shrinked header */
#mainHeader.scrolled {
  padding: 0.2rem 0;
  background-color: var(--color-background); /* optional, keeps brand tone */
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 20px 4px;
}

/* Shrink the logo */
#mainHeader.scrolled .ziipfy-logo {
  max-height: 28px !important;
  transform: scale(0.9);
}

/* Default logo size */
.ziipfy-logo {
  max-height: 40px;
}


@media screen and (min-width: 641px) {
    @supports (width: max(100%)) {
        .cart_body {
            height: max(calc(100% - 92px), calc(100% - 60px));
            max-height: max(calc(100% - 92px), calc(100% - 60px));
        }
    }
   #mainHeader {
    padding-top: 1rem;
   }
}

.cart_main {
  flex: 1 1 auto;
}



.cart-empty__title {
  font-size: var(--h1-size);
}
.cart-empty__subtitle {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.375rem;
    color:#63687a;
}

/*--------------------------------------------------------------
# Curency selector ----*/

.currency-dropdown .nav-link {
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.currency-dropdown .nav-link:hover {
  color: #f15448; /* your brand accent */
  transform: translateY(-1px);
}

.currency-dropdown .dropdown-menu {
  min-width: 140px;
}

.currency-dropdown .dropdown-item {
  font-weight: 500;
  padding: 10px 16px;
  transition: all 0.2s ease;
}

.currency-dropdown .dropdown-item:hover {
  background: #fffaec;
  color: #1a2b49;
  transform: translateX(4px);
}

.currency-dropdown .dropdown-item.active {
  background: #f51605;
  color: #fff;
}

.currency-flag img {
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.currency-flag img {
  width: 22px;
  height: 16px;
}

.currency-dropdown:hover .currency-flag img {
  transform: scale(1.1);
  transition: 0.2s ease;
}


/*--------------------------------------------------------------
# Home Hero 
--------------------------------------------------------------*/
.select {
    background: linear-gradient(to right, #FF7C02, #FFC657);
    border-radius: 7px;
    padding: 2px;
    max-width: 528px;
    margin: 0 auto 20px;
}
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* always 3 columns max */
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 456px !important;
    column-gap: 12px !important;
    row-gap: 12px !important;
}

@media (max-width: 992px) {
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.destination-card {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    transition: transform 0.2s;
}

.destination-card:hover {
    transform: translateY(-4px);
}

.card-link {
    display: flex;
    align-items: center;
    padding: 0;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    flex-direction: column;
    gap: 10px;
}

.card-content {
  width: 100%;
}

.flag-img {
   box-shadow: 2px 2px 0 #FFEB72;
   border-radius: 12px;
   border: 1px solid var(--color-default);
}

.flag-img img {
    width: 100%;
    height: auto;
    max-width: 120px;
    background-color: #FFFFFF;
    padding: 5px;
    border-radius: 12px;
}

.card-content .small {
    display: block;
    font-size: 0.75rem;
    color: #888;
}

.card-content .destination-title {
    font-size: var(--small-size);
    font-weight: 400;
}

.card_title {
  color: var(--color-default) !important;
  font-weight: 700;
  line-height: 1.4em;
  font-size: var(--p-size);
}

.travel-blog .card {
  color: inherit!important;
  border: 0!important;
 box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px!important;
}

/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/
.truncate-2-lines {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4em;
    max-height: 2.8em;
}

.product_title {
  color: var(--color-default);
  font-weight: 700;
  line-height: 1.4em;
  font-size: 16px;
}

.productSwiper {
  padding-bottom: 3rem;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.custom-next,
.custom-prev {
  color: #0C1924;
  transition: opacity 0.3s ease;
}


.custom-next:hover,
.custom-prev:hover {
  opacity: 1;
}

.custom-next, .custom-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: flex
;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-slide .card {
  border: 1px solid var(--color-default);
}

.custom-swiper-btn {
  background: var(--brand-white);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-default);
  box-shadow: 0px 2px 0px var(--color-accent);
  transition: all 0.3s ease;
  z-index: 10;
}

.custom-swiper-btn svg {
    max-width: 100%;
    height: auto;
}

.custom-swiper-btn:hover {
  color: var(--color-default);
  transform: scale(1.1);
}

.custom-prev,
.custom-next {
  top: 50%;
  transform: translateY(-50%);
}

.custom-prev {
  left: 15px;
}

.custom-next {
  right: 15px;
}

/* Hide Swiper's built-in arrow icons */
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}


/* Mobile horizontal scroll for destroyed Swiper */
@media (max-width: 767.98px) {
  .productSwiper {
    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    scrollbar-width: thin;       /* Firefox */
    scrollbar-color: rgba(50, 215, 122, 0.6) transparent; /* Firefox */
  }

  /* Chrome, Safari, Edge */
  .productSwiper::-webkit-scrollbar {
    height: 10px; /* horizontal scrollbar height */
  }

  .productSwiper::-webkit-scrollbar-track {
    background: transparent; /* track color */
  }

  .productSwiper::-webkit-scrollbar-thumb {
    background: rgba(50, 215, 122, 0.6); /* green with transparency */
    border-radius: 999px; /* full pill shape */
    transition: background 0.3s ease;
  }

  .productSwiper::-webkit-scrollbar-thumb:hover {
    background: rgba(50, 215, 122, 0.9); /* darker on hover */
  }

  .productSwiper .swiper-wrapper {
    display: flex !important;
    flex-wrap: nowrap;
    width: max-content;
  }

  .productSwiper .swiper-slide {
    flex: 0 0 25%; /* shows ~1.4 cards at once */
    scroll-snap-align: start;
  }

  /* Hide Swiper navigation arrows */
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }

.custom-next,
.custom-prev {
  display: none !important;
}
}





/*--------------------------------------------------------------
how to 
---------------------------------------------------------------*/
.how-to-card {
  border: 2px solid var(--color-default);
  box-shadow: 0px 6px 0px #ffcd39;
}

.how-to-card p {
  line-height: var(--p-line-height)!important;
}


/*--------------------------------------------------------------
Destination Tabs Section
---------------------------------------------------------------*/
.nav-link:focus, .nav-link:hover {
    color: inherit;
}

.destinations-tabs .nav-item , .destinations-tabs .nav-item:hover, .destinations-tabs .nav-item:focus , .destinations-tabs .nav-item button, .faq-sections .nav-item, .faq-sections .nav-item button {
  border: none;
  border-bottom: none;
}

.destinations-tabs .nav-item button:not(.active):hover, .faq-tabs__button:not(.active):hover{
  background-color: var(--color-surface-secondary);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.destination-tabs__button, .faq-tabs__button {
    align-items: flex-start;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    color: var(--color-default);
    cursor: pointer;
    display: flex;
    font-family: inherit;
    font-size: var(--p-size);
    font-weight: 500;
    justify-content: center;
    text-align: center;
    width: 100%;
    background: none;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    outline: 0px;
    padding: 1em 2em;
    text-decoration: none;
    transition: color 1s, background-color 0.3s, box-shadow 0.5s;
    white-space: nowrap;
}

.destination-tabs__button.active {
    box-shadow: inset 0 -4px 0 0 #0086cd;
    color: var(--color-default);
    font-weight: 600;
    border-style: none;
}

.destinations-tabs .title {
    color: #1a2b49;
    font-size: var(--p-size);
    font-weight: 600;
    line-height: 1.375rem;
    line-height: 1.625rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.destinations-tabs .subtitle {
    color: #63687a;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.25rem;
}

/*--------------------------------------------------------------
Money Back Section
---------------------------------------------------------------*/
.money-back_contianer {
    background-color: var(--color-surface);
    padding: 64px 16px;
}

@media screen and (min-width: 769px) {
    .money-back_contianer {
        background-color: var(--color-surface);
        padding: 64px 80px;
        max-width: 1200px;
        margin: 0 auto;
        border-radius: 12px;
    }
}


/*--------------------------------------------------------------
Login screen 
---------------------------------------------------------------*/
.login-card {
width: 100%; 
gap: calc(.25rem* 6) !important; 
border-radius: 0; 
border: 0.2em solid #52339f
}

@media screen and (min-width: 769px) {
    .login-card {
        max-width: 600px;
        margin: 0 auto;
        border-radius: 4px;
    }
}
/*--------------------------------------------------------------
FAQ Sections
---------------------------------------------------------------*/
.faq-sections .nav-tabs {
  border: none;
}

.faq-sections .nav-tabs  .faq-tabs__button.active {
    box-shadow: inset 0 -4px 0 0 #0071eb;
    color: var(--color-default);
    font-weight: 500;
    border-style: none;
}

.faq-sections .accordion {
  border: none;
}

.faq-sections .accordion-button:focus {
  box-shadow: none!important;
}

.faq-sections .accordion .accordion-item {
  border: none;
  background-color: var(--color-surface);
}

.faq-sections .accordion  .accordion-button {
  padding: 9px 10px;
  font-weight: 600;
  background-color: var(--color-surface);
  font-size: var(--small-size);
}

.faq-sections .accordion  .accordion-button:not(.collapsed) {
  background-color: var(--color-surface);
  box-shadow: none;
  color: inherit;
}

.faq-sections .accordion .accordion-body {
  padding: 9px 10px;
}

.faq-sections .accordion .accordion-body p {
  line-height: normal;
  font-size: var(--small-size);
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Footer Global 
--------------------------------------------------------------*/
.Footer {
  background-color: var(--color-background);
  color:var(--color-default);
  padding: 40px 0;
}

.Footer a:hover {
  text-decoration: underline!important;
}


.Footer_Title {
  font-size: var(--p-size);
  font-weight: 600;
}

.Link {
    transition: color .2s ease-in-out, opacity .2s ease-in-out;
}

.Linklist__Item {
    position: relative;
    display: block;
    margin-bottom: 12px;
    width: 100%;
    line-height: 1.5;
    text-align: left;
    transition: all .2s 
ease-in-out;
}


.Linklist__Item>.Link {
    display: block;
    width: 100%;
    text-align: inherit;
}

.footer-item {
  font-size: 16px!important;
  font-weight: 400;
}

.signup-heading {
  font-size: 25px;
  font-weight: 700;
}

@media screen and (min-width: 641px) {
    .Footer {
        padding: 67px 40px;
    }
}

@media (min-width: 768px) {
    .Footer {
        padding: 67px 80px;
    }
}

/* Make input + button fully responsive */
.input-group .form-control {
  border-radius: 0.25rem 0 0 0.25rem;
}

.input-group .btn {
  border-radius: 0 0.25rem 0.25rem 0;
}

/* Smaller devices: full width input */
@media (max-width: 767px) {
  .input-group {
    flex-wrap: nowrap;
    width: 100%;
  }
  .input-group .form-control {
    flex: 1 1 auto;
  }
}


/* Device Compatability */
 /* Popup Modal */
    .modal {
      display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.6); justify-content: center; align-items: center;
    }
    .modal-content {
      background: white; border-radius: 0px; width: 90%; max-width: 600px;
      max-height: 50vh; padding: 50px; position: relative; border: 0.2em solid #F44336;
    }

    @media (min-width: 780px) {
      .modal-content {
         padding: 50px;
      }
    }

    .modal-content .title {
      margin-bottom: 5px; color: var(--color-default); font-size: 22px; font-weight: 700; 
    }
    .close { position: absolute; top: 10px; right: 20px; font-size: 24px; cursor: pointer; }
    input[type="text"] {
      width: 100%; padding: 10px; margin-bottom: 15px; border-radius: 6px; border: 1px solid #ccc;
    }

    #results {overflow-y: auto; max-height: 40vh; padding-right: 10px;}

    .brand { margin-bottom: 15px; }
    .brand h3 { margin-bottom: 5px; color: var(--color-default); font-size: 18px; font-weight: 700; }
    .device-list { list-style: none; padding: 0; }
    .device-list li { padding: 5px 0; border-bottom: 1px solid #eee; font-size: 14px; font-weight: 500;}

/* Ziipy */

.ziippyprice {
  width: 19%;
  bottom: -40px;
  left: 5%;
}

.ziippyblog {
  width: 30%;
  bottom: -90px;
  right: 2%;
}

.zippyheader {
  width: 100%;
  max-width: 19%; 
  position: absolute; 
  bottom: -4px; 
  left: 3%;
}

@media (min-width: 780px) {
     .ziippyprice {
        width: 10%;
      }

      .ziippyblog {
       width: 10%; 
       bottom: -60px; 
       right: 8%;
      }

      .zippyheader {
        max-width: 10%;
        bottom: -54px; 
        left: 10%;

      }
}





