@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

@font-face {
  font-family: "Brasika Display - Trial";
  src: url("../fonts/BrasikaDisplayTrial-Regular.eot");
  src: url("../fonts/BrasikaDisplayTrial-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/BrasikaDisplayTrial-Regular.woff2") format("woff2"), url("../fonts/BrasikaDisplayTrial-Regular.woff") format("woff"), url("../fonts/BrasikaDisplayTrial-Regular.ttf") format("truetype"), url("../fonts/BrasikaDisplayTrial-Regular.svg#BrasikaDisplayTrial-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Quicksand";
  src: url("../fonts/Quicksand-Regular.eot");
  src: url("../fonts/Quicksand-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Quicksand-Regular.woff2") format("woff2"), url("../fonts/Quicksand-Regular.woff") format("woff"), url("../fonts/Quicksand-Regular.ttf") format("truetype"), url("../fonts/Quicksand-Regular.svg#Quicksand-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Quicksand";
  src: url("../fonts/Quicksand-Bold.eot");
  src: url("../fonts/Quicksand-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Quicksand-Bold.woff2") format("woff2"), url("../fonts/Quicksand-Bold.woff") format("woff"), url("../fonts/Quicksand-Bold.ttf") format("truetype"), url("../fonts/Quicksand-Bold.svg#Quicksand-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Quicksand";
  src: url("../fonts/Quicksand-Medium.eot");
  src: url("../fonts/Quicksand-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Quicksand-Medium.woff2") format("woff2"), url("../fonts/Quicksand-Medium.woff") format("woff"), url("../fonts/Quicksand-Medium.ttf") format("truetype"), url("../fonts/Quicksand-Medium.svg#Quicksand-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
body {
  margin: 0;
  font-family: "Quicksand";
  background: #fff;
  background-size: contain;
  scroll-behavior: auto !important;
  overflow-x: hidden;
}

html {
  scroll-behavior: auto !important;
}

.SectionTitle h3 {
  font-size: 52px;
  margin-bottom: 18px;
  color: #9C4B39;
}

img {
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Brasika Display - Trial";
}

section {
  padding: 60px 0;
}

.menu-button {
  position: absolute;
  top: 0px;
  right: 0px;
  background: none;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
  z-index: 101;
}

.menu-container {
  position: fixed;
  top: 17px;
  right: 14px;
  height: 90vh;
  width: 350px;
  background: #472D30;
  border-radius: 30px;
  transform-origin: top right;
  padding: 40px 30px 20px;
  z-index: 100;
  -webkit-clip-path: circle(0px at 100% 0%);
          clip-path: circle(0px at 100% 0%);
  overflow-x: scroll;
}
.menu-container::-webkit-scrollbar {
  display: none;
}
.menu-container.open {
  -webkit-clip-path: circle(100% at 100% 0%);
          clip-path: circle(100% at 100% 0%);
}
.menu-container .menu-content {
  width: 80%;
  text-align: center;
}
.menu-container .menu-content .close-button {
  background: rgba(0, 0, 0, 0.1);
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  align-self: flex-end;
  margin-bottom: 30px;
}
.menu-container .menu-content .menu-items {
  margin-top: 30px;
}
.menu-container .menu-content .menu-items a {
  margin-bottom: 5px;
  text-decoration: none;
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  transition: color 0.3s ease;
  text-align: left;
  display: flex;
  font-family: "December";
}
.menu-container .menu-content .menu-items a:hover {
  color: #F8AB4C;
}
.menu-container .menu-content .menu-items a i {
  margin-right: 15px;
  color: #555;
}
.menu-container .menu-content .social-links {
  margin-top: 60px;
  display: flex;
  position: absolute;
  bottom: 32px;
  left: 20px;
  gap: 12px;
  width: 70%;
}
.menu-container .menu-content .social-links a {
  text-decoration: none;
  color: #fff;
  margin: 0px;
  font-size: 18px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.menu-container .menu-content .social-links a img {
  width: 100%;
}
.menu-container .menu-content .social-links a .IconHov {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 400ms all ease;
}
.menu-container .menu-content .social-links a:hover .IconHov {
  opacity: 1;
}
.menu-container .menu-content .social-links a i {
  margin-right: 5px;
  font-size: 27px;
}

#header .SectionTitle h3 {
  font-size: 26px;
  color: #472C2F;
  margin-bottom: 0;
}
#header .navbar-nav .nav-link {
  color: #000;
}
#header .navbar-nav .nav-link:hover {
  text-decoration: underline;
}
#header .btn-warning {
  background-color: #f5a623;
  border: none;
}
#header .btn-warning:hover {
  background-color: #e59400;
}
#header .navbar-toggler {
  background-color: transparent;
  border: none;
}
#header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 0, 0, 0.8%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

#header.scrolled {
  background-color: #fff;
  /* Change to your desired color */
}

#hero-slider {
  height: 12vh;
  padding: 32px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero-slider .marquee {
  overflow: hidden;
  display: flex;
  background-color: var(--clr_light);
  color: var(--clr_dark);
}
#hero-slider .marquee h1 {
  font-size: 56px;
  color: #472C2F;
  text-transform: uppercase;
}

#hero-banner {
  padding: 50px 0;
  padding-bottom: 0;
}
#hero-banner .hero-back {
  background: #E7D8C9;
  padding: 50px;
  padding-bottom: 90px;
  position: relative;
}
#hero-banner .SectionTitle p {
  color: #472C2F;
  font-weight: 500;
}
#hero-banner ul {
  list-style-type: none;
  padding-left: 0;
}
#hero-banner .social-media {
  display: flex;
  justify-content: space-between;
  color: #472C2F;
  align-items: center;
}
#hero-banner .social-media i {
  font-size: 20px;
}
#hero-banner .social-media a {
  display: flex;
  align-items: center;
  gap: 10px;
}
#hero-banner .hand-image {
  position: absolute;
  top: -185px;
  right: 10px;
}
#hero-banner .hand-image img {
  width: 665px;
}

#gallery {
  padding-top: 0px;
  margin-top: -75px;
  padding-bottom: 0;
  z-index: 999;
  position: relative;
}
#gallery .pl-3 {
  padding-left: 40px;
}
#gallery .gallery-grid {
  display: flex;
  align-items: center;
  justify-content: end;
}
#gallery .gallery-grid .grid {
  display: grid;
  grid-template-columns: repeat(3, 150px);
  grid-gap: 10px;
}
#gallery .gallery-grid .grid .grid img {
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
#gallery .SectionTitle h3 {
  padding-top: 34px;
  color: #472C2F;
}
#gallery .list-box {
  background: #9C4B39;
  color: #fff;
  padding: 40px;
}
#gallery .list-box ul {
  margin-bottom: 0;
  list-style-type: none;
}
#gallery .list-box ul li {
  padding-bottom: 6px;
  position: relative;
  padding-left: 30px;
}
#gallery .list-box ul li::after {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #f4d19b;
  /* Light beige tick background */
  color: #8d4c25;
  /* Dark brown checkmark */
  border-radius: 50%;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}
#gallery .list-para {
  margin-top: 20px;
  background: #C4A77D;
  padding: 20px;
  margin-top: 20px;
  color: #fff;
  font-weight: 500;
}

#Gallery-2 {
  background-color: #f5f1e9;
}
#Gallery-2 .SectionTitle {
  text-align: center;
}
#Gallery-2 .SectionTitle h3 {
  color: #472C2F;
}
#Gallery-2 .Marquee {
  background-color: #f5f1e9;
  width: 100vw;
  box-sizing: border-box;
  padding: 1em;
  color: #fff;
  font-weight: 200;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-align: center;
  align-items: center;
  overflow: hidden;
}
#Gallery-2 .Marquee-content {
  display: -ms-flexbox;
  display: box;
  display: flex;
  animation: marquee 140s linear infinite running;
  transition: 300ms all ease;
}
#Gallery-2 .Marquee-content:hover {
  animation-play-state: paused;
}
#Gallery-2 .Marquee-tag {
  width: 300px;
  margin: 0 0.5em;
  padding: 0.5em;
  background: rgba(255, 255, 255, 0.1);
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -o-box-align: center;
  align-items: center;
  -o-box-pack: center;
  justify-content: center;
  transition: all 0.3s ease;
}
#Gallery-2 .Marquee-tag:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
  cursor: pointer;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translate(-50%);
  }
}

#skills {
  margin-top: -60px;
  background: #F9F4EF;
  padding-top: 80px;
}
#skills .SectionTitle h3 {
  color: #9C4B39;
}
#skills .skill-pills ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
}
#skills .skill-pills ul li {
  background: #472C2F;
  color: #fff;
  padding: 16px 20px;
  text-align: center;
  border-radius: 30px;
  margin: 10px;
}

#project {
  background-color: #E7D8C9;
  position: relative;
}
#project .SectionTitle {
  position: absolute;
  top: -29px;
}
#project .SectionTitle h3 {
  color: #472C2F;
}
#project .project-detail {
  padding-top: 30px;
}
#project .project-detail h4 {
  font-family: "Quicksand";
  font-weight: 600;
}
#project .project-detail .project-title {
  color: #C4A77D;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0;
}
#project .project-detail p {
  font-size: 18px;
  font-weight: 500;
  max-width: 325px;
  text-align: justify;
}

#mobile-slide {
  background-color: #f5f1e9;
  position: relative;
  padding: 60px 0 20px;
}
#mobile-slide .SectionTitle {
  text-align: center;
}

#footer {
  padding-top: 80px;
  margin-bottom: 10px;
}
#footer .SectionTitle h3 {
  padding-bottom: 20px;
}
#footer .foot-back {
  background: #9C4B39;
  color: #fff;
  padding: 60px 40px 40px;
  position: relative;
}
#footer .foot-description {
  width: 80%;
  margin: auto;
  text-align: center;
}
#footer .social-media {
  display: flex;
  justify-content: space-around;
  color: #fff;
  align-items: center;
}
#footer .social-media i {
  font-size: 20px;
}
#footer .social-media a {
  display: flex;
  align-items: center;
  gap: 10px;
}
#footer .counter-sec {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: -120px;
  justify-content: center;
  padding-bottom: 20px;
  flex-wrap: wrap;
}
#footer .counter {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin: 1.5%;
  font-size: 50px;
  background-color: #C4A77D;
  color: #fff;
  width: 160px;
  height: 140px;
  border-radius: 10px;
  vertical-align: middle;
}

#Services {
  padding: 0;
}
#Services .hero-section {
  position: relative;
  width: 100vw;
  height: 80vh;
  overflow: hidden;
}
#Services .hero-section .background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url("../images/img-1.png");
  transition: background-image 0.5s ease-in-out;
  z-index: 0;
  height: 80vh;
}
#Services .hero-section .panels {
  position: relative;
  display: flex;
  height: 100%;
  z-index: 1;
}
#Services .hero-section .panels .panel {
  flex: 1;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}
#Services .hero-section .panels .panel span {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
#Services .hero-section .panels .panel .hover-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  background: rgba(255, 255, 255, 0.6);
  padding: 4rem 2rem;
  text-align: center;
  color: #000;
  max-width: 400px;
  z-index: 3;
  width: 90%;
  opacity: 0;
  transition: 300ms all ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
#Services .hero-section .panels .panel .hover-text p {
  margin: 0;
  font-size: 21px;
}
#Services .hero-section .panels .panel:hover .hover-text {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%);
}

#StickySection {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
#StickySection .image-stack {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#StickySection .image-container {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
#StickySection .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#StickySection .image-container:first-child {
  opacity: 1;
}
#StickySection .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#StickySection .content.HeroText {
  width: -moz-max-content;
  width: max-content;
  top: unset;
  bottom: 0%;
  border-radius: 15px;
  background: rgba(252, 248, 235, 0.7137254902);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  padding: 20px 20px 5px;
  border-radius: 14PX;
  /* Animation to simulate typing by expanding the width */
}
#StickySection .content.HeroText .hero-text {
  /* Hide overflow and create the "typing" effect */
  overflow: hidden;
  white-space: nowrap;
  /* Add a caret at the end */
  /* Set initial width to 0 to hide text */
  width: 0;
  /* Animate the width to reveal text */
  animation: typing 3s steps(40, end) forwards, blink-caret 0.75s step-end infinite;
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
#StickySection .content.HeroText h1 {
  font-weight: 800;
  font-size: 36px;
  color: #B72A35;
}
#StickySection .content.AboutUs {
  width: 100%;
  left: 0;
  transform: translate(0%, -50%);
}
#StickySection .content.AboutUs .SectionTitle {
  border-radius: 15px;
  background: rgba(252, 248, 235, 0.7137254902);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  padding: 40px 30px 20px;
}
#StickySection .content.AboutUs .SectionTitle p {
  color: #472C2F;
  font-size: 16px;
  text-align: left;
  font-weight: 500;
}
#StickySection .content.Welcome {
  width: 100%;
  left: 0;
  transform: translate(0%, -50%);
}
#StickySection .content.Welcome .SectionTitle {
  border-radius: 15px;
  background: rgba(252, 248, 235, 0.7137254902);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  padding: 40px 30px 20px;
}
#StickySection .content.Welcome .SectionTitle p {
  color: #472C2F;
  font-size: 16px;
  text-align: left;
  font-weight: 500;
}
#StickySection .content.Meals {
  top: unset;
  bottom: -5%;
  text-align: center;
  background: rgba(252, 248, 235, 0.7137254902);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  border-radius: 14px;
  padding: 20px 40px 10px;
  width: 70%;
}
#StickySection .content.Meals .SectionTitle h3 {
  color: #472C2F;
}
#StickySection .content.Footer {
  width: 60%;
  background: rgba(252, 248, 235, 0.7137254902);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  padding: 70px 40px 40px;
  border-radius: 14px;
  text-align: center;
}

.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
}

#GalleryMain {
  padding-bottom: 0;
}
#GalleryMain #PhotoGallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: 10px;
  /* Key: this enables variable height */
  gap: 16px;
}
#GalleryMain .photo-item {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  display: flex;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
#GalleryMain .photo-item:hover img {
  transform: scale(1.1);
}
#GalleryMain .photo-item img {
  width: 100%;
  border-radius: 10px;
  transition: 400ms all ease;
}

#PhoneImages {
  background-color: #FFE9B7;
  display: none;
  padding: 40px 14px 0;
  position: relative;
}
#PhoneImages a {
  display: block;
}
#PhoneImages .reveal-image {
  margin-bottom: 80px;
  border: 8px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  transform: translateY(0px) scale(1);
}
#PhoneImages .slider-arrows {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  position: absolute;
  z-index: 10;
  width: 100%;
  top: 63%;
  left: 0;
}
#PhoneImages button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #422241;
  background: transparent;
  color: #CE4D52;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background: #FFE9B7;
}
#PhoneImages button:hover {
  background: #422241;
  color: #FFE9B7;
}

#Reels {
  text-align: center;
}
#Reels .marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}
#Reels .marquee-track {
  display: flex;
  gap: 20px;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}
#Reels .reel {
  flex: 0 0 auto;
  width: 350px;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  position: relative;
}
#Reels .reel > * {
  cursor: none !important;
}
#Reels .icon {
  position: absolute;
  pointer-events: none;
  /* So the icon doesn’t block mouse events */
  opacity: 0;
  /* Hidden by default */
  transition: opacity 0.15s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  /* Prevent text selection */
  transform: translate(10px, 10px);
  /* Slight offset from cursor */
  width: 66px;
  /* Match your image size */
  height: 66px;
  /* offset icon from cursor */
}
#Reels .icon img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
  /* Just in case */
}
#Reels video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.3s ease;
}

.owl-theme .owl-nav {
  display: flex;
  width: 110%;
  justify-content: space-between;
  position: absolute;
  top: 40%;
  left: -5%;
  z-index: -1;
}

.owl-carousel .owl-nav button.owl-prev {
  background: url(../images/left-arrow.svg);
  background-size: contain;
  opacity: 0.6;
  height: 40px;
  width: 40px;
  background-repeat: no-repeat;
  color: transparent;
}

.owl-carousel .owl-nav button.owl-next {
  background: url(../images/right-arrow.svg);
  background-size: contain;
  opacity: 0.6;
  transition: 300ms all ease;
  background-repeat: no-repeat;
  height: 40px;
  width: 40px;
  color: transparent;
}

.owl-carousel .owl-nav button.owl-prev:hover {
  opacity: 1;
  background: url(../images/left-arrow.svg);
  background-size: contain;
  height: 40px;
  width: 40px;
  background-repeat: no-repeat;
  color: transparent;
}

.owl-carousel .owl-nav button.owl-next {
  background: url(../images/right-arrow.svg) !important;
  background-size: contain !important;
  opacity: 0.6;
  transition: 300ms all ease !important;
  background-repeat: no-repeat !important;
  height: 40px;
  width: 40px;
  color: transparent;
}

.web-btn {
  text-align: center;
  padding-top: 15px;
}
.web-btn .web-dev {
  background: #472C2F;
  padding: 10px 20px;
  border: 1px solid #472C2F;
  border-radius: 53px;
  color: #fff;
  transition: 0.3s;
}
.web-btn .web-dev:hover {
  border: 1px solid #472C2F;
  background: #fff;
  color: #472C2F;
}

#stickey-social {
  padding: 0;
  /*.search_icon a:hover i  {
  transform:rotate(360deg);}*/
}
#stickey-social .sticky-icon {
  z-index: 1;
  position: fixed;
  top: 30%;
  right: 0%;
  width: 220px;
  display: flex;
  flex-direction: column;
}
#stickey-social .sticky-icon a {
  transform: translate(160px, 0px);
  border-radius: 50px 0px 0px 50px;
  text-align: left;
  margin: 2px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px;
  font-size: 22px;
  font-family: "Oswald", sans-serif;
  transition: all 0.8s;
}
#stickey-social .sticky-icon a:hover {
  color: #FFF;
  transform: translate(0px, 0px);
}
#stickey-social .sticky-icon a:hover i {
  transform: rotate(360deg);
}
#stickey-social .Facebook {
  background-color: #2C80D3;
  color: #FFF;
}
#stickey-social .Youtube {
  background-color: #fa0910;
  color: #FFF;
}
#stickey-social .Twitter {
  background-color: #53c5ff;
  color: #FFF;
}
#stickey-social .Instagram {
  background-color: #FD1D1D;
  color: #FFF;
}
#stickey-social .Google {
  background-color: #d34836;
  color: #FFF;
}
#stickey-social .sticky-icon a i {
  background-color: #FFF;
  height: 40px;
  width: 40px;
  color: #000;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  transition: all 0.5s;
}
#stickey-social .sticky-icon a i.fa-facebook-f {
  background-color: #FFF;
  color: #2C80D3;
}
#stickey-social .sticky-icon a i.fa-google-plus-g {
  background-color: #FFF;
  color: #d34836;
}
#stickey-social .sticky-icon a i.fa-instagram {
  background-color: #FFF;
  color: #FD1D1D;
}
#stickey-social .sticky-icon a i.fa-youtube {
  background-color: #FFF;
  color: #fa0910;
}
#stickey-social .sticky-icon a i.fa-twitter {
  background-color: #FFF;
  color: #53c5ff;
}
#stickey-social .fas fa-shopping-cart {
  background-color: #FFF;
}
#stickey-social #myBtn {
  height: 50px;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  text-align: center;
  padding: 10px;
  text-align: center;
  line-height: 40px;
  border: none;
  outline: none;
  background-color: #1e88e5;
  color: white;
  cursor: pointer;
  border-radius: 50%;
}
#stickey-social .fa-arrow-circle-up {
  font-size: 30px;
}
#stickey-social #myBtn:hover {
  background-color: #555;
}/*# sourceMappingURL=style.css.map */