body{overflow-x: hidden;}
p{font-size: 17px;}
/* ===== HERO ===== */
.custom-nav {
  position: fixed;
  top: 35px;
  left: 0;
  width: 100%;

  background: rgba(0, 0, 0, 0.2);
  color: #ffffff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  z-index: 9999;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* 🔥 يتحول رمادي عند السكرول */
.custom-nav.nav-scrolled {
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
top: 0px;
}

/* روابط الناف */
.custom-nav .nav-link {
  color: #ffffff;
  font-weight: 600;
}

.custom-nav .nav-link:hover {
  color: #50a735;
}
.custom-toggler {
  background-color: rgba(104, 190, 63, 0.3); /* أخضر */
  border: none;
  padding: 10px;
}

/* الشرط الثلاثة */
.custom-toggler .toggler-bar {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px auto;
  background-color: #242424; /* أبيض */
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* اختياري: hover */
.custom-toggler:hover {
  background-color: #50a735;
}
/* ================= HERO ================= */
.hero {
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 97vh;
  padding-top: 140px;
  position: relative;
  background-attachment: fixed;
}

/* Overlay أسود */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* محتوى الهيرو */
.hero-content {
  position: absolute;
  z-index: 2;
  /* padding: 300px 20px; */
  bottom: 10%;
  left: 15%;
  align-content: end;
}

/* النص */
h1 {
  color: #fff;
  font-size: 3.5rem;
  letter-spacing: 0.5px;
}

.hero p span {
  letter-spacing: 3px;
}

/* زر الاتصال */
.large {
  width: 280px;
  margin-top: 20px;
}

.diagonal {
  position: relative;
  line-height: 55px;
  background: #50a735;
  font-size: 1.6rem;
  font-weight: 700;
  border: none;
  overflow: hidden;
}

.location-btn .diagonal {background: #929292;transition: .8s;width: 99%;
  font-size: 1.2rem;
  font-weight: 600;
  
}
.location-btn .diagonal:hover {background: #50a735;transition: .8s;
  font-size: 1.2rem;
  font-weight: 600;
  
}

.mediem
{
  width: 200px;
  margin-top: 20px;
  font-size: 1.4rem;
  font-weight: 600;
}
.small{ width: 200px;
  margin-top: 10px;
  font-size: 1.1rem;
padding:0 3px ;
 line-height: 45px;
font-weight: 550;}

.diagonal a {
  color: #fff;
  text-decoration: none;
}

.diagonal::after {
  content: "";
  position: absolute;
  width: 400%;
  height: 800%;
  background: #50a735;
  top: 0;
  left: 0;
  transform: rotate(-45deg) translate(10%, 20%);
  transition: transform 0.3s;
}

.diagonal:hover::after {
  transform: rotate(-45deg) translate(-25%, 20%);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  h1 {
    font-size: 2.4rem;
  }
  .hero-content {
    padding: 120px 15px;
  }
}

.before-head{
  height:35px;
  background:#50a735;
  color:#fff;
}

/* مهم عشان الفاصل المائل يركب صح */
.phone-part{
  position: relative;
  height: 35px;
}
.phone-part::after{
  content:"";
  position:absolute;
  top:0;
  right:-22px;                 /* نفس الموضع */
  width:0;
  height:0;
  border-bottom:35px solid #212529; /* عكس الاتجاه */
  border-right:22px solid transparent;
}
.custom-nav .nav-link.active {
    font-size:1.5em;
  font-weight:700;
  letter-spacing:1px;
  color: #50a735;
}

.phone{
  font-size:1.2em;
  font-weight:600;
  letter-spacing:1px;
  padding-left: 20px;
}
.phone a:hover{
  color: #50a735;
}
.phone a{
  text-decoration:none;
  color:#fff;
}

.working-hours{
  font-size: 0.95em;
}


:root {
  --color-basic: #0bec7c;
  --color-second: #0bec7c22;
}
.lineglow{
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #000;
}

/* الخط الأخضر */
.lineglow::before{
  content:"";
  position:absolute;
  inset:0;
  background: var(--color-basic);
  animation: animate 8s linear infinite;
  transform-origin: left;
}

/* ✅ النقطة */
.lineglow::after{
  content:"";
  position:absolute;
  top:50%;
  left:0;                         /* مهم: نبدأ من أول الخط */
  width:10px;
  height:10px;
  border-radius:50%;
  background: var(--color-basic);
  transform: translateY(-50%) scale(0);
  animation: animateDot 8s linear infinite;
}

/* ✅ حركة النقطة حتى النهاية (100% من عرض الخط) */
@keyframes animateDot{
  0%{
    left: 0;
    transform: translateY(-50%) scale(0);
    box-shadow: none;
  }

  5%{
    left: 0;
    transform: translateY(-50%) scale(1);
  }

  15%,20%{
    left: 0;
    transform: translateY(-50%) scale(1);
    box-shadow:
      0 0 0 4px var(--color-second),
      0 0 0 10px var(--color-second),
      0 0 20px var(--color-basic),
      0 0 40px 5px var(--color-basic),
      0 0 60px 10px var(--color-basic);
  }

  /* ✅ توصل آخر الخط تمامًا */
  40%{
    left: calc(100% - 10px);      /* 10px = عرض النقطة */
    transform: translateY(-50%) scale(1);
  }

  80%{
    left: calc(100% - 10px);
    transform: translateY(-50%) scale(1);
    box-shadow:
      0 0 0 4px var(--color-second),
      0 0 0 10px var(--color-second),
      0 0 20px var(--color-basic),
      0 0 40px 5px var(--color-basic),
      0 0 60px 10px var(--color-basic);
  }

  95%{
    left: calc(100% - 10px);
    transform: translateY(-50%) scale(1);
    box-shadow: none;
  }

  100%{
    left: calc(100% - 10px);
    transform: translateY(-50%) scale(0);
    box-shadow: none;
  }
}



/* section1 */
/* الكلاس الأساسي للميل */
.skew{
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 8px 0;           /* بدل pt-2 لو تحبي، أو اتركي pt-2 */
}

/* النص يبقى مستقيم */
.skew p{
  position: relative;
  z-index: 3;
  margin: 0;
  text-align: center;
  font-weight: 600;
  transform: none;          /* ✅ لا يوجد ميل للنص */
}

/* الخلفية الأساسية (مستقيمة) */
.skew-dark{ background-color:#212529; }
.skew-green{ background-color:#69c04f; }

/* الميل من اليسار */
.skew::before{
  content:"";
  position:absolute;
  top:0;
  left:0px;               /* تحكم في عرض الميل */
  width:70px;               /* عرض منطقة الميل */
  height:100%;      /* نفس لون الخلفية */
  transform: skewX(-18deg);  /* نفس الزاوية */
  z-index: 10;
   background-color:#69c04f; 
}

/* الميل من اليمين */
.skew::after{
  content:"";
  position:absolute;
  top:0;
  right:-35px;
  width:70px;
  height:100%;
  background: inherit;
  transform: skewX(-18deg);  /* نفس الزاوية */
  z-index: 2;
}



/* Section2 */
.section2 button{background-color: #1f1f1f; transition: 1s;}
.section2 button:hover{background-color: #50a735;}
.section2 ul{list-style: none;}
.section2 i {color: #50a735; margin-right: 20px;}
.float2{margin-left: -60px; margin-top: 190px;}

.hero-content ul {
    margin: 0;
    padding: 0;
    display: flex;
}

.hero-content li {
    list-style: none;
    color: #86d36e;
    font-size: 70px;
    font-weight: bold;
    letter-spacing: 8px;
    transition: 2s;
    padding-bottom: 0;
    margin-bottom: 0;
}

.hero-content ul:hover li {
    transform: rotate(45deg) translateY(-150px);
    opacity: 0;
    filter: blur(15px);
}

ul li:nth-child(1) { transition-delay: 0s; }
ul li:nth-child(2) { transition-delay: 0.2s; }
ul li:nth-child(3) { transition-delay: 0.4s; }
ul li:nth-child(4) { transition-delay: 0.6s; }
ul li:nth-child(5) { transition-delay: 0.8s; }
ul li:nth-child(6) { transition-delay: 1s; }
ul li:nth-child(7) { transition-delay: 1.2s; }
ul li:nth-child(8) { transition-delay: 1.4s; }
ul li:nth-child(9) { transition-delay: 1.6s; }
ul li:nth-child(10) { transition-delay: 1.8s; }




/* section3 */
.section3{background-color: #202020; margin-top: 200px;}
.section3 img{margin-top: -100px;}
/* .sec3-text{margin-top: 100px;margin-left: -50px;} */
.parent{position: relative;}
.float-text{position: absolute;right:-50px; bottom: 30%;color: white; background-color: #50a735; padding: 5px 10px;}
.float-text2{position: absolute;right:-50px; bottom: 15%;color: white; background-color: #50a735; padding: 5px 10px;}

@-webkit-keyframes bounceInRight {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes bounceInRight {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}





/* section4 */
.section4{position: relative;}
.outerGif {
  margin-top:50px;
  display:inline-block;
  position:relative;
  background: url(https://25.media.tumblr.com/tumblr_md91o3v2o21rdi9rjo1_500.gif);
  border-radius:50%;
  background-size:cover;
  width:400px; height:400px;
  overflow:hidden;
  /* Fix webkit rendering bug */
  -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
  border: 5px solid white;
}
.innerGif {
  position:absolute;
  left:-25%; bottom:50%;
  width:150%; height:50%;
  transform-origin:bottom center;
  overflow:hidden;
}
.innerGif .image{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:200%;
  object-fit:cover;
  object-position:center;
  display:block;
}
.overlay {
  position:absolute;
  top:50%; left:50%;
  margin-top:-75px; margin-left:-75px;
  width:150px; height:150px;
  background:#F4F4F4;
  border-radius:50%;
  opacity: .8;
}
.overlay:before {
  content:''; position:absolute;
  width:170%; height:170%;
  border-radius:50%;
  margin-top:-50px; margin-left:-50px;
  border:10px solid #69c04f;
  opacity: .5;
}
.overlay .image {
  position:absolute;
  top:60%; left:50%;
  width:70px; height:70px;
  overflow:hidden;
  /* background:url(https://25.media.tumblr.com/tumblr_ma235cIYyx1rzygcio1_500.gif) center 42%; */
  margin-top:-35px; margin-left:-35px;
}
.overlay .image:before {
  content:''; position:absolute;
  left:-80%;
  height:120%; width:80%;
  background:#F4F4F4;
  transform-origin:top right;
  transform:rotate(-33deg);
}
.overlay .image:after {
  content:''; position:absolute;
  right:-80%;
  height:120%; width:80%;
  background:#F4F4F4;
  transform-origin:top left;
  transform:rotate(33deg);
}
.cssAnim { left:15%; }
.jsFollow { left:25%; }
.cssAnim .innerGif { animation:elem 5s infinite; }
.cssAnim .innerGif .image { animation:inner 5s infinite; }

@keyframes elem {
  30% { transform:rotate(-50deg); }
  70% { transform:rotate(180deg); }
}
@keyframes inner {
  30% { transform:rotate(50deg); }
  70% { transform:rotate(-180deg); }
}
.coupon{background-color: rgba(64, 128, 48, 0.8); position: absolute;bottom: 30px; right: 100px; width: 50%; padding: 20px 20px; color: white;}
.coupon h2 span{font-size: 2em; font-weight: 700;}



/* section5 */
.section5{background-color: #ececec; margin-top: 100px; background-position: center; background-repeat: no-repeat; background-size:cover;background-attachment: fixed;}

@import url(//fonts.googleapis.com/css?family=Montserrat:400,700);



.count{
  text-align: center;
  padding-bottom: 50px;
  border-right: 1px dashed black;
  background-color:rgba(116, 116, 116, 0.1);
}

.count:last-child {
  border-right: 0px solid black;
}

.counter {
  animation-duration: 1s;
  animation-delay: 0s;
}
.count h2 { font-size: 35px !important; color:#96b68c; font-weight: 600}
.count i { font-size: 50px !important; padding-top: 30px; color:#96b68c;}
@media (max-width: 991px) {
  .count{
    border-right: 0px dashed black;
    border-bottom: 1px dashed black;
    width: 50%;
    margin: auto auto;
  }
  
  .col-md-4:last-child {
    border-bottom: 0px dashed black;
  }
}



.marquee {
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  padding: 0px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 18s linear infinite;
}

/* توقف الحركة عند hover */
.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  min-width:180px;
  margin: 0 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}
.border-top-bottom {
  border-top: 2px solid #d3d3d3;
  /* border-bottom: 2px solid #e4e4e4; */
}
/* الحركة المستمرة بدون انقطاع */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* section6 */
.section6 a{text-decoration: none;}
.section6 h3:hover{color: #50a735;}
.section6 .D-color:hover{color:#202020 ;}
.sec6-img{padding:0 20px;}
.box-divider {
  background-color: #202020;
  color: white;
}

/* الفاصل بين الأعمدة */
.box-divider + .box-divider {
  border-left: 9px solid rgba(255, 255, 255, 1);
}
.contact-btn{background-color: #50a735;}


/* section7 */
.section7{margin-top: 300px;}
.sec7-row{margin-top: -260px;}
/* .sec7-text{margin-left:-50px;background-color: rgba(0, 0, 0, 0.7); color: white;} */

/* section8 */
.wrapper {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background:transparent;
  padding: 25px;
}

.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 65px;
  width: 65px;
  margin: 0 20px;
  color: #333;
  background: #8bcf76;
  box-shadow: 0 0 0px 0px rgba(255, 255, 255, 0.5);
  cursor: pointer;
  border-radius:0%;
  -webkit-border-radius:0%;
  -moz-border-radius:0%;
  -ms-border-radius:0%;
  -o-border-radius:0%;
  transition: 250ms color;
  -webkit-transition: 250ms color;
  -moz-transition: 250ms color;
  -ms-transition: 250ms color;
  -o-transition: 250ms color;
  animation-name: wave;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes wave {
  0% {box-shadow: 0 0 0px 0px rgba(255, 255, 255, 0.5);}
  100% {box-shadow: 0 0 0px 15px rgba(255, 255, 255, 0);}
}

.icon-wrapper a{color:#1f1f1f;}





#contact{background-position: center; background-size: cover;}


/* .form{background-size: cover; background-position: center; background-attachment: fixed;} */
form .form-control{margin-top: 10px;padding-top: 8px; padding-bottom: 8px;color: #ffffff;padding-left: 30px;background-color: rgba(104, 190, 63, 0.4); border: none;border-radius: 0;}
.form-control::placeholder{color: rgba(255, 255, 255, .7)}
form.CUS input.subject { display: none; }
 .send{position: relative;
  line-height: 35px;
  width: 100%;
  background:#86d36e;
  border: 2px solid  rgba(104, 190, 63, 0.4);
  color: rgb(27, 27, 27);
  margin-top: 10px;
  /* border-radius: 10px; */
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 1px;
  overflow: hidden;
  z-index: 1;
  padding: 0px;
  transition: 1S}
.CUS legend {
    font-size: 25px;
    text-align: left;
    color: #ffffff;
    padding-top: 20px;
}




.container-Accordion {
 padding: 80px 5px;
}
.container-Accordion h2 {color:#4f7a42}
.faq-drawer {
  margin-bottom: 30px;
}

.faq-drawer__content-wrapper {
  font-size: 1.25em;
  line-height: 1.4em;
  max-height: 0px;
  overflow: hidden;
  transition: 0.25s ease-in-out;
}

.faq-drawer__title {
  border-top: #727272 1px solid;
  cursor: pointer;
  display: block;
  font-size: 1.3em;
  font-weight: 600;
  padding: 30px 0 0 0;
  position: relative;
  margin-bottom: 0;
  transition: all 0.25s ease-out;
  color: #acacac;
}

.faq-drawer__title::after {
  border-style: solid;
  border-width: 1px 1px 0 0;
  content: " ";
  display: inline-block;
  float: right;
  height: 10px;
  left: 2px;
  position: relative;
  right: 20px;
  top: 2px;
  transform: rotate(135deg);
  transition: 0.35s ease-in-out;
  vertical-align: top;
  width: 10px;
}

/* OPTIONAL HOVER STATE */
.faq-drawer__title:hover { 
  color: #4E4B52  ;
}

.faq-drawer__trigger:checked
  + .faq-drawer__title
  + .faq-drawer__content-wrapper {
  max-height: 350px;
}

.faq-drawer__trigger:checked + .faq-drawer__title::after {
  transform: rotate(-45deg);
  transition: 0.25s ease-in-out;
}

input[type="checkbox"] {
  display: none;
}

@media only screen and (max-width: 600px) {
  .container {
    padding: 30px;
  }
  nav .container{padding:0 20px;}
}




/* 4 locations page */
.seo-zip-list {
  list-style: none;
  padding-left: 0;
}

.seo-zip-list li {
  margin-bottom: 6px;
  font-weight: 500;
  color: #414141;
}


/* footer */
footer a{text-decoration: none;color:#878787}
footer a:hover{color:#ffffff}
ul {
    margin: 0px;
    padding: 0px;
}
.footer-section {
  background: #151414;
  position: relative;
}
.footer-cta {
  border-bottom: 1px solid #373636;
}
.single-cta i {
  color: #86d36e;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #757575;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
    max-width: 200px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
      color: #7e7e7e;
  line-height: 28px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.facebook-bg{
  background: #3B5998;
}
.twitter-bg{
  background: #55ACEE;
}
.google-bg{
  background: #DD4B39;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #86d36e;
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover{
  color: #86d36e;
}
.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
}
.subscribe-form button {
    position: absolute;
    right: 0;
    background: #86d36e;
    padding: 13px 20px;
    border: 1px solid #86d36e;
    top: 0;
}
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area{
  background: #202020;
  padding: 25px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.copyright-text p a{
  color: #86d36e;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a{
  color: #86d36e;
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}

.copyright{color: #878787;}

.social-icons-container {
}
.social-icons-container ul {
  display: flex;
  width: 100%;
  height:auto;
  justify-content: start;
  align-items: center;
  padding: 0;
}
.social-icons-container li {
  list-style: none;
}

.social-icons-container a {
  width: 45px;
  height: 45px;
  color: white;
  text-align: center;
  line-height: 20px;
  font-size: 20px;
  margin: 0 10px;
  display: block;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #b6cab0;
}

.social-icons-container a i {
  transition: 0.5s;
  z-index: 1;
}

.social-icons-container a:hover i {
  transform: rotateY(360deg);
}

.social-icons-container ul > li > a::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  transition: top 0.5s;
}

.social-icons-container ul > li:nth-child(1) > a::before {
  background: #23527c;
}
.social-icons-container ul > li:nth-child(2) > a::before {
  background: #cd486b;
}
.social-icons-container ul > li:nth-child(3) > a::before {
  background: #0077b5;
}
.social-icons-container ul > li > a:hover::before {
  top: 0;
}

@media (max-width: 1400px){.coupon{bottom: 30px; right: 40px;}
.outerGif {
  width: 300px;
  height: 300px;}}

@media (max-width: 1200px){
  .footer-col{width: 50%;}
  .hero-content{left: 10%;}
  .float-text {right: -50px;
  bottom: 35%;
}}
@media (max-width: 992px){
  .float-text {bottom: 50%;
}
.coupon-img{width: 80%;}
.coupon{width: 80%;}
.container-Accordion {padding-top: 0;}
.contact{width: 95%;}}



@media (max-width:767px){
.float{margin-top: 20px;}
.float2 {
  margin-left:40%;
  margin-top:-100px;
  width: 50%;
}
 .col-zip{width: 16.5%;}
.coupon-img{margin-top: -70px;width: 100%;}
.coupon{width: 100%;}
.box-divider{ margin-top: 20px;}}

@media (max-width: 700px){
  h1{font-size:2.3em;padding: 0px 0px; letter-spacing: 0;}
  .hero-content{left: 7%;}
  .hero-content li{font-size: 40px}
 
}
@media (max-width: 680px){
   .float-text {right: 0px;
  bottom: 55%;}
  .float-text2{right: 0px;}
 
.coupon{width: 80%;}
}
  
  @media (max-width: 600px){
   .float-text {right: 0px;
  bottom: 70%;}
  .section3{margin-top: 60px;}
  }
  @media (max-width: 550px){
   .float-text {right: 0px;}
  
  }