/*==========================
	Prelaoder
===========================*/
.preloader {
  background-color: #ffffff;
  height: 100%;
  left: 0px;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 999999;
}

.preloader:after {
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../image/logo.png);
  /* background-image: url(../img/logo/w3-Logo-Loader.webp); */
  background-size: 170px;
  content: "";
  height: 100px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 170px;
  transform: translate(-50%, -50%);
}
/* TEXT OVERLAY IN THE BANNER IMAGE */
.overlay-text {
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 5vw;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* test */
.overlay-text .heading,
.overlay-text .content,
.overlay-text .button-container {
  opacity: 0;
  transform: translateY(-40px); /* Start above their final position */
  transition: all 1s ease; /* Controls speed of fade and movement */
}

/* Active slide animations */
.slick-active .overlay-text .heading,
.slick-active .overlay-text .content,
.slick-active .overlay-text .button-container {
  opacity: 1;
  transform: translateY(0); /* Final position */
}

/* Add delay for each element to appear in sequence */
.slick-active .overlay-text .heading {
  transition-delay: 0.4s;
}

.slick-active .overlay-text .content {
  transition-delay: 0.8s;
}

.slick-active .overlay-text .button-container {
  transition-delay: 1.2s;
}

/* test */

/* Styling for Heading */
.heading {
  font-size: 5vw;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 10vh;
  font-family: "Montserrat", serif;
}

/* Styling for Content */
.content {
  font-size: 1.5vw;
  margin-bottom: 15px;
  font-family: Roboto;
  font-weight: 500;

  font-family: "Roboto", sans-serif;
}
/* General Button Styling */
/* Button Container Styling */
.button-container {
  display: flex;
  gap: 16px; /* Space between buttons */
  font-family: "Roboto", sans-serif;
}
.btn {
  font-size: 16px;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Explore Now Button (Primary) */
.explore-now {
  background-color: #60b128;
  color: white;
}

.explore-now:hover {
  background-color: transparent;
  border: 2px solid #60b128;
  /* background-color: white; */
  color: #60b128;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(76, 175, 80, 0.3);
}

/* Contact Us Button (Secondary) */
.contact-us {
  background-color: transparent;
  color: #60b128;
  border: 2px solid #60b128;
  /* color: #0196ec;
  border: 2px solid #0196ec; */
}

.contact-us:hover {
  background-color: #60b128;
  /* background-color: #0196ec; */
  color: white;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(76, 175, 80, 0.3);
}

/* Base button styling */
/* .btn {
  padding: 1em 2em;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  color: rgb(95 180 36);
  transition: all 1000ms;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  outline: 2px solid rgb(95 180 36);
}

.btn:hover {
  color: #ffffff;
  transform: scale(1.1);
  outline: 2px solid rgb(95 180 36);
  box-shadow: 4px 5px 17px -4px #268391;
}

.btn::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  width: 0;
  height: 100%;
  background-color: rgb(95 180 36);
  transform: skewX(45deg);
  z-index: -1;
  transition: width 1000ms;
}

.btn:hover::before {
  width: 250%;
}

.explore-now {
  background: transparent;
  border-radius: 8px 0 0 8px;
  background-color: #00000062;
}

.explore-now::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  bottom: 0;
  width: 10px;
  background-color: #f4f4f4;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.contact-us {
  background: transparent;
  color: rgb(95 180 36);
  border-radius: 0 8px 8px 0;
  outline: 2px solid rgb(95 180 36);
  background-color: #ffffff4f;
} */

/* Styling for Footer (Button Text) */
/* .footer {
  font-size: 1vw;
  background-color: #1998cd;
  padding: 10px;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  width: auto;
  min-width: 150px;
  display: inline-block;
} */

/* .footer:hover {
  background-color: #64b966;
} */
@media (max-width: 768px) {
  .mob-hide {
    display: none; /* Hide desktop images */
  }

  .mob-show {
    display: block; /* Show mobile images */
  }

  .overlay-text {
    padding: 10px; /* Add spacing */
  }

  .heading {
    font-size: 2rem; /* Reduce heading size */
    margin-bottom: 0px;
    line-height: 5vh;
  }

  .content {
    font-size: 1rem; /* Adjust content size */
  }

  .button-container {
    gap: 8px; /* Reduce space between buttons */
  }

  .btn {
    padding: 0.5em 1em; /* Adjust padding */
    font-size: 1rem; /* Reduce button text size */
  }
}

/* Mobile screens */
@media (max-width: 480px) {
  .overlay-text {
    font-size: 0.8rem; /* Smaller font size for overlay */
    padding: 5px; /* Reduce padding */
  }

  .heading {
    font-size: 1.5rem; /* Smaller headings */

    margin-bottom: 0px;
    line-height: 3vh;
  }

  .content {
    font-size: 0.9rem; /* Smaller content text */
  }

  .button-container {
    gap: 5px; /* Reduce space */
  }

  .btn {
    font-size: 0.8rem; /* Smaller button text */
    padding: 0.5em 1em; /* Adjust padding */
  }
}
/* logo slider */
/* html,
body {
  height: 100%;
} */

.logo {
  width: 100%;
  height: auto;
  padding: 25px 0;
  color: black;
}
.logo_ing {
  aspect-ratio: 1.5;
}

.accociated_container {
  margin-top: 630px;
  display: flex;
  justify-content: center;
}
.accociated_container p {
  font-size: 40px;
  color: #000;
  margin-bottom: 20px;
  font-family: "Montserrat";
  font-weight: 500;
  padding-bottom: 25px;
}

.swiper {
  width: 90%;
  height: 100px;
  padding: 0;
  border: 1px solid whitesmoke;
  background-color: whitesmoke;
  border-radius: 10px;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: whitesmoke;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0px; /* Add small padding to reduce space between logos */
  margin-top: 12px;
  height: 100% !important;
  /* border-radius: 10%; */
}
.swiper-slide img {
  width: 95px;
  transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}
.swiper-slide img:hover {
  transform: translateY(-5px);
  cursor: pointer;
}

.swiper-slide img:hover {
  transform: translateY(-5px) scale(1.1); 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 760px) {
  .swiper-button-next {
    right: 20px;
    transform: rotate(90deg);
  }

  .swiper-button-prev {
    left: 20px;
    transform: rotate(90deg);
  }
  .swiper-slide {
    padding: 10px 0px;
  }
}
/* Style for the next button */
.swiper-button-next,
.swiper-button-prev {
  color: #898989;
  height: 50px !important;
  width: 50px !important;
  border-radius: 50%;
  font-weight: 900;
}

/* Align the icon within the button */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px; /* Icon size */
}

/* Optional: Add hover effect */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #1998cd; /* Change background on hover */
  color: white; /* Change icon color on hover */
}

/* industry we serve  */
.service {
  display: flex;
  justify-content: center;
}
.service p {
  font-size: 40px;
  color: #000;
  margin-bottom: 20px;
  font-family: "Montserrat", serif;
  font-weight: 500;
  padding-bottom: 25px;
}
.card {
  width: 260px;
  gap: 250px;
  height: 300px;
  overflow: hidden;
  /* background-color: transparent; */
  /* text-align: center; */
  position: relative;
  margin: 20px;
  transition: transform 0.3s ease-in-out;
}

.card img {
  width: 260px;
  max-height: 270px;
  display: block;
  transition: opacity 0.3s ease-in-out;
}

.icon-circle {
  width: 65px;
  height: 65px;
  background-color: #0196ec;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 150px;
  left: 15%;
  transform: translateX(-50%);
  z-index: 10;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.3);
  opacity: 1;
  transform: scaleY(1);
  transform-origin: bottom;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.icon-circle img {
  width: 30px;
  height: 30px;
  filter: invert(100%) brightness(100%) saturate(100%);
  transition: filter 0.3s ease;
}

.content1 {
  padding: 25px;
  position: relative;
  top: -70px;
  left: 20px;
  min-height: 560px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3); /* 0 -4px 8px rgba(0, 0, 0, 0.8); */
  z-index: 1;
  /* background-color: #00b6f1; */
  opacity: 1;
  transform: scaleY(1);
  transform-origin: bottom;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.content1 h2 {
  font-size: 25px;
  margin: 20px 0 0;
  color: #6c6a72;
  font-family: "Montserrat", serif;
  font-weight: 600;
  line-height: 25px;
}
.content1 .app {
  padding: 3px 0;
  /* display: block; */
  margin: 0;
}
.content1 .development {
  position: relative;
  margin-top: 5px;
  /* font-family: "Montserrat", serif; */
}
.content1 .development::after {
  content: "→";
  font-size: 30px;
  color: #6c6a72; /* color: #1998cd; */
  position: absolute;
  width: 100%;
  height: 100%;
  left: 160px;
  bottom: -10px;
  z-index: 9999;
}
.content1 p {
  font-size: 12px;
  opacity: 0;
  /* width: 250px; */
  font-family: "Roboto", sans-serif;
  height: 0;
  visibility: hidden;
  margin: 0;
  color: #fff;
  word-wrap: break-word;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.card:hover .content1 h2 {
  color: #fff;
}
.card:hover .content1 p {
  height: auto;
  color: #dadadacb;
  opacity: 1;
  padding-top: 8px;
  visibility: visible;
  font-size: 20px;
}
.card:hover .content1 {
  position: relative;
  top: -120px;
  height: auto;
  left: 20px;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.8);
  z-index: 1;
  background-color: #0196ec;
  max-height: 900px;
  opacity: 1;
  transform: scaleY(1.1);
  padding: 10px 25px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  color: #fff;
}
.card:hover .icon-circle {
  width: 65px;
  height: 60px;
  top: 50px;
  left: 15%;
  background-color: #fff;
  transform: translateX(-50%);
  z-index: 10;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.3);
  opacity: 1;
  transform: scaleY(1.1);
}
.card:hover .icon-circle img {
  /* filter: invert(30%) sepia(93%) saturate(542%) hue-rotate(192deg)
    brightness(93%) contrast(97%); */
  filter: invert(37%) sepia(90%) saturate(615%) hue-rotate(189deg)
    brightness(101%) contrast(101%);
}
.card:hover .development::after {
  display: none;
  z-index: 9999;
}
.card-link1 {
  display: block;
  text-decoration: none;
}

.card-link1:hover {
  cursor: pointer;
}

.card:hover .app {
  display: block;
}
/* General Footer Styles */
footer {
  background-color: #1d1729;
  padding: 30px 0;
  color: #f3f3f3;
}

/* Footer Description and Band */
.footerDescription {
  text-align: center;
  padding-bottom: 20px;
  font-family: "Roboto", sans-serif;
}
.footerband {
  height: 4px;
  background-color: #1998cd;
  margin-bottom: 30px;
}

/* Footer Main Section */
.footerMain .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footerLeft {
  max-width: 320px;
}

.footerLeft h2 {
  font-size: 25px;
  margin-left: -100px;
  color: #ffffff;
  margin-top: -50px;
  font-family: "Montserrat", serif;
}
.footerLeft p {
  font-size: 16px;
  margin-left: -100px;
  color: #837d93;
  line-height: 1.6;

  font-family: "Roboto", sans-serif;
}

.footerMain .logo_footer img {
  width: 30%;
  height: 200px;
  margin-top: -100px;
}
.social-list1 {
  display: flex;
  justify-content: flex-start;
  top: 200px;
  margin-top: -130px;
  margin-left: -130px;
}
.coty_right {
  margin: 50px 0 0 -100px;
  color: #837d93;
  font-family: "Roboto", sans-serif;
}

.footerCenter {
  text-align: left;
  padding: 60px 0;
  margin-top: -100px;
  margin-left: 350px;
}

.footerCenter h2 {
  font-size: 25px;
  margin-top: -10px;
  font-family: "Montserrat", serif;
}
.footerCenter p {
  font-size: 16px;
  /* padding: 25px 0; */
  text-align: left;
  line-height: 1.6;
  color: #837d93;
  font-family: "Roboto", sans-serif;
}

.footerRight {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 20px;
  margin-top: -220px;
  margin-left: -250px;
}

.footerRight h2 {
  font-size: 25px;
  color: #ffffff;
  margin-left: 100px;
  font-family: "Montserrat", serif;
}

.social-list2 {
  margin-left: 100px; /* Optional: aligns list to match heading */
}

.example-4 {
  list-style: none; /* Removes default bullet points */
  /* padding: 0; */
  margin: 10px 0;
  text-decoration: none;
}

.icon-content2 {
  margin-bottom: 10px; /* Space between list items */
}

.icon-content2 a {
  color: #837d82 !important;
  text-decoration: none;
  font-size: 16px;
  text-align: left;
  display: block;
  transition: color 0.3s ease, text-decoration 0.3s ease;
  font-family: "Roboto", sans-serif;
}

.icon-content2 a:hover {
  color: #1998cd !important; /* Hover color for links */
  text-decoration: underline;
}

.footerFourth {
  margin-top: -220px;
  margin-left: 900px;
  padding: 20px;
  /* color: #333; Dark text color */
}

.footerFourth h2 {
  font-size: 25px;
  font-weight: bold;
  color: #ffffff; /* Matches your preferred color scheme */
  margin-bottom: 15px;
  font-family: "Montserrat", serif;
}

.footerFourth .social-list3 {
  margin-top: 10px;
}

.footerFourth .example-5 {
  list-style: none;
  margin: 10px 0;
}

.footerFourth .icon-content3 {
  margin-bottom: 10px; /* Space between each link */
}

.footerFourth .icon-content3 a {
  text-decoration: none;
  color: #837d82 !important;
  font-size: 16px;
  line-height: 1.6;
  transition: color 0.3s ease, text-decoration 0.3s ease; /* Smooth transition */
  font-family: "Roboto", sans-serif;
}

.footerFourth .icon-content3 a:hover {
  color: #1998cd !important; /* Hover color */
  text-decoration: underline; /* Underline effect on hover */
}

/* CSS FOR FOOTER ICON */

ul {
  list-style: none;
  margin-top: 150px;
}

.example-2 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.example-2 .icon-content {
  margin: 0 10px;
  /* position: relative; */
  width: 10px;
  height: 10px;
  padding: 0 15px;
}
.example-2 .icon-content .tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  opacity: 0;
  transition: all 0.3s ease;
}
.example-2 .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -50px;
}
.example-2 .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #4d4d4d;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}
.example-2 .icon-content a svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
}

.example-2 .icon-content a:hover {
  color: white !important;
}
.example-2 .icon-content a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover .filled {
  height: 100%;
}

.example-2 .icon-content a[data-social="linkedin"] .filled,
.example-2 .icon-content a[data-social="linkedin"] ~ .tooltip {
  background-color: #0274b3;
}

.example-2 .icon-content a[data-social="github"] .filled,
.example-2 .icon-content a[data-social="github"] ~ .tooltip {
  background-color: #24262a;
}
.example-2 .icon-content a[data-social="instagram"] .filled,
.example-2 .icon-content a[data-social="instagram"] ~ .tooltip {
  background: linear-gradient(
    45deg,
    #405de6,
    #5b51db,
    #b33ab4,
    #c135b4,
    #e1306c,
    #fd1f1f
  );
}
.example-2 .icon-content a[data-social="youtube"] .filled,
.example-2 .icon-content a[data-social="youtube"] ~ .tooltip {
  background-color: #ff0000;
}
.copy_right {
  text-align: center;
  display: none;
  font-family: "Roboto", sans-serif;
}
/* Responsive Design */

@media (max-width: 768px) {
  .footerMain .container {
    flex-direction: column;
    align-items: center;
  }
  .footerLeft {
    text-align: center;
  }
  .coty_right {
    display: none;
  }
  .copy_right {
    display: block;
  }
}
/* @media (max-width: 768px) {
  .footerMain {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footerLeft,
  .footerCenter,
  .footerRight,
  .footerFourth {
    margin-bottom: 30px;
  }

  .social-list1 {
    justify-content: center;
  }
} */

@media (max-width: 552px) {
  /* Footer Main Section */
  .footerMain .container {
    width: 100%;
  }
  .footerRight h2 {
    font-size: 25px;
    color: #ffffff;
    margin-left: -10px !important;
  }
  .footerRight ul {
    font-size: 25px;
    color: #ffffff;
    margin-left: -100px !important;
  }
  .coty_right {
    margin-left: 10% !important;
  }
  .footerLeft p {
    margin-left: 10px !important;
  }
  .footerLeft h2 {
    margin-left: 10px !important;
  }
  .footerFourth h2 {
    margin-left: 10px !important;
  }

  .footerLeft {
    width: 100%;
  }

  .footerLeft h2 {
    font-size: 25px;
  }
  .footerLeft p {
    font-size: 16px;
  }

  .footerMain .logo_footer img {
    width: 58%;
    height: 200px;
    margin-top: -100px;
    position: relative;
  }
  .social-list1 {
    display: flex;
    justify-content: flex-start;
    top: 200px;
    margin-top: -130px;
    margin-left: -30px;
  }
  .coty_right {
    display: none;
  }

  .footerCenter {
    width: 100%;
    margin-top: 40px;
    margin-left: 40px;
  }

  .footerCenter h2 {
    font-size: 25px;
    /* margin-top: -10px; */
  }
  .footerCenter p {
    font-size: 16px;
    /* padding: 25px 0; */
    text-align: left;
    line-height: 1.6;
    color: #837d93;
  }

  .footerRight {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    padding: 20px;
    /* margin-top: -220px;
    margin-left: -250px; */
  }

  .footerRight h2 {
    font-size: 25px;
    color: #ffffff;
    margin-left: 100px;
  }

  .social-list2 {
    margin-left: 100px; /* Optional: aligns list to match heading */
  }

  .example-4 {
    list-style: none; /* Removes default bullet points */
    /* padding: 0; */
    margin: 10px 0;
    text-decoration: none;
  }

  .icon-content2 {
    margin-bottom: 10px; /* Space between list items */
  }

  .icon-content2 a {
    color: #837d82 !important;
    text-decoration: none;
    font-size: 16px;
    text-align: left;
    display: block;
    transition: color 0.3s ease, text-decoration 0.3s ease;
  }

  .icon-content2 a:hover {
    color: #1998cd !important; /* Hover color for links */
    text-decoration: underline;
  }

  .footerFourth {
    margin-top: -220px;
    margin-left: 900px;
    padding: 20px;
    /* color: #333; Dark text color */
  }

  .footerFourth h2 {
    font-size: 25px;
    font-weight: bold;
    color: #ffffff; /* Matches your preferred color scheme */
    margin-bottom: 15px;
  }

  .footerFourth .social-list3 {
    margin-top: 10px;
  }

  .footerFourth .example-5 {
    list-style: none;
    margin: 10px 0;
  }

  .footerFourth .icon-content3 {
    margin-bottom: 10px; /* Space between each link */
  }

  .footerFourth .icon-content3 a {
    text-decoration: none;
    color: #837d82 !important;
    font-size: 16px;
    line-height: 1.6;
    transition: color 0.3s ease, text-decoration 0.3s ease; /* Smooth transition */
  }

  .footerFourth .icon-content3 a:hover {
    color: #1998cd !important; /* Hover color */
    text-decoration: underline; /* Underline effect on hover */
  }
  .copy_right {
    display: block;
    font-family: "Roboto", sans-serif;
  }
}

.product-image {
  position: relative;
}
.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: opacity 0.3s ease;
}
.product-overlay h3 {
  font-size: 30px;
  line-height: 30px;
  text-transform: uppercase;

  font-family: "Montserrat", serif;
  padding-bottom: 4px;
}
/* breadcrumb */
.breadcrumb a {
  text-decoration: none;
  color: #4993e2;
  margin-right: 5px;
  transition: color 0.2s ease-in-out;
  text-transform: uppercase;

  font-family: "Roboto", sans-serif;
}

.breadcrumb a:hover {
  color: #0056b3;
}

.breadcrumb span {
  margin: 0 5px;
  color: #fff;
  white-space: nowrap; /* Prevents breaking of separator on small screens */
  text-transform: uppercase;

  font-family: "Roboto", sans-serif;
}

.breadcrumb span:last-child {
  margin-right: 0;
}

@media (max-width: 600px) {
  .breadcrumb {
    font-size: 14px; /* Adjust font size for small screens */
  }
}

.service-heading {
  text-transform: capitalize;
  font-size: 30px;
  color: #000;
  font-weight: 600;
  font-family: "Montserrat", serif;

  padding-top: 20px;
}
.service-paragraph {
  font-family: "Roboto", sans-serif;
}

.logo2 {
  width: 400px;
  background-color: #1f3f4b;
  border-right: 5px solid #00b6f1;
  -webkit-transform: skewx(-5deg);
  transform: skewx(-5deg);
  -webkit-transform-origin: top right;
  transform-origin: top right;
}


/* Wave Styling */
/*  */

