* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Sofia", sans-serif;
}

section {
  overflow: hidden;
}

/* ------- Section Header Start -------- */

.navbar {
  /* background-color: #9edd39; */
  background-color: #000000;
  padding: 0 !important;
  margin: 0 !important;
}
.navbar .navbar-brand {
  margin-left: 5%;
}
.navbar .navbar-brand img {
  max-width: 80px;
}
.navbar .brand-name {
  color: #fff;
}
.navbar .nav-item .nav-link {
  font-size: 20px;
  margin: 0 20px;
  color: #fff;
}
.navbar .whatsapp-li img {
  width: 30px;
}

@media only screen and (max-width: 600px) {
  .navbar .brochure-btn {
    margin-bottom: 20px !important;
    /* width: 60% !important; */
  }
  .navbar .brochure-btn a {
    width: 170px;
    padding-left: 20px;
  }
}

/* ------- Section Header End -------- */

/* ------- Section carousel Start -------- */
.carousel {
  padding: 10px;
  min-height: 40vh;
}
.carousel .carousel-inner {
  border-radius: 20px;
}
.carousel .carousel-item {
  min-height: 40vh;
}
.carousel .mobile-view {
  display: none !important;
}
.carousel .carousel-item img {
  max-height: 500px;
  width: 100% !important;
}
@media only screen and (max-width: 600px) {
  .carousel {
    padding: 0px;
  }
  .carousel .carousel-inner {
    border-radius: 0px;
  }
  .carousel .desktop-view {
    display: none !important;
  }
  .carousel .mobile-view {
    display: block !important;
  }
}
/* ------- Section carousel End -------- */

/* ------- Section qualities Start -------- */

.qualities {
  padding: 2%;
}
.qualities .row {
  text-align: center;
  background-color: rgb(0, 0, 0);
  border-radius: 25px;
  padding: 3%;
  box-shadow: -1px 15px 30px -12px black;
}
.qualities img {
  width: 30%;
  border-radius: 50% !important;
}
.qualities p {
  color: rgb(255, 255, 255) !important;
  margin-top: 20px;
}
@media only screen and (max-width: 600px) {
  .qualities {
    padding: 5% 20%;
  }
  .qualities .row {
    padding: 10%;
  }
  .qualities img {
    width: 50%;
  }
}

/* ------- Section qualities End -------- */

/* ------- Section category Start -------- */

.category {
  padding: 5%;
  padding-top: 2%;
  /* background-color: #ececec; */
  color: #fff;
  background-color: #000;
}
.category h1 {
  text-align: center;
  margin-bottom: 50px;
}
.category .row {
  text-align: center;
}
.category img {
  max-width: 150px;
  border-radius: 50%;
  transition: width 2s, height 2s, transform 2s;
}
.category h5 {
  margin-top: 20px;
}
.category img:hover {
  /* transform: rotate(180deg); */
  animation: rotate-img 1s linear 5;
  -webkit-animation: rotate-img 1s linear 5;
}
@keyframes rotate-img {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-45deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@media only screen and (max-width: 600px) {
.category {
  padding-top: 5%;
  padding-bottom: 20%;
}
.category h1 {
  text-align: center;
  margin-bottom: 20px;
}
}

/* ------- Section category End -------- */

/* ------- Section card carousel Start -------- */
.notCurrentCard {
  opacity: 0.7;
  display: block;
}

.currentCard {
  opacity: auto;
  display: block;
  z-index: 999;
}

.hideCard {
  display: none;
}

/*Magic happens here!*/

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes slideOutCenterLeft {
  from {
    -webkit-transform: scale(0.8) translate3d(-100%, 0, 0);
    transform: scale(0.8) translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    transition: all 3s ease-in-out;
  }
}

@keyframes slideCenterLeft {
  from {
    -webkit-transform: scale(0.8) translate3d(-100%, 0, 0);
    transform: scale(0.8) translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    transition: all 3s ease-in-out;
  }
}

.slideOutCenterLeft {
  -webkit-animation-name: slideOutCenterLeft;
  animation-name: slideOutCenterLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    /*visibility: hidden;*/
    -webkit-transform: translate3d(100%, 0, 0);
    transform: scale(0.8) translate3d(100%, 0, 0);
    transition: all 3s ease-in-out;
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    /*visibility: hidden;*/
    -webkit-transform: scale(0.8) translate3d(100%, 0, 0);
    transform: scale(0.8) translate3d(100%, 0, 0);
    transition: all 3s ease-in-out;
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: scale(0.8) translate3d(-100%, 0, 0);
    transform: scale(0.8) translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: scale(0.8) translate3d(-100%, 0, 0);
    transform: scale(0.8) translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: scale(0.8) translate3d(-100%, 0, 0);
    transform: scale(0.8) translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: scale(0.8) translate3d(-100%, 0, 0);
    transform: scale(0.8) translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes reverseSlideOutCenterLeft {
  from {
    -webkit-transform: scale(0.8) translate3d(100%, 0, 0);
    transform: scale(0.8) translate3d(100%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    transition: all 3s ease-in-out;
  }
}

@keyframes reverseSlideOutCenterLeft {
  from {
    -webkit-transform: scale(0.8) translate3d(100%, 0, 0);
    transform: scale(0.8) translate3d(100%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    transition: all 3s ease-in-out;
  }
}

.reverseSlideOutCenterLeft {
  -webkit-animation-name: reverseSlideOutCenterLeft;
  animation-name: reverseSlideOutCenterLeft;
}

@-webkit-keyframes reverseSlideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: scale(0.8) translate3d(-100%, 0, 0);
    transform: scale(0.8) translate3d(-100%, 0, 0);
    transition: all 3s ease-in-out;
  }
}

@keyframes reverseSlideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: scale(0.8) translate3d(-100%, 0, 0);
    transform: scale(0.8) translate3d(-100%, 0, 0);
    transition: all 3s ease-in-out;
  }
}

.reverseSlideOutLeft {
  -webkit-animation-name: reverseSlideOutLeft;
  animation-name: reverseSlideOutLeft;
}

@-webkit-keyframes reverseSlideOutRight {
  from {
    -webkit-transform: scale(0.8) translate3d(100%, 0, 0);
    transform: scale(0.8) translate3d(100%, 0, 0);
  }
  to {
    -webkit-transform: scale(0.8) translate3d(100%, 0, 0);
    transform: scale(0.8) translate3d(100%, 0, 0);
  }
}

@keyframes reverseSlideOutRight {
  from {
    -webkit-transform: scale(0.8) translate3d(100%, 0, 0);
    transform: scale(0.8) translate3d(100%, 0, 0);
  }
  to {
    -webkit-transform: scale(0.8) translate3d(100%, 0, 0);
    transform: scale(0.8) translate3d(100%, 0, 0);
  }
}

.reverseSlideOutRight {
  -webkit-animation-name: reverseSlideOutRight;
  animation-name: reverseSlideOutRight;
}

.card-carousel {
  height: 400px;
  padding: 5%;
  padding-top: 3%;
  background-color: #000;
}
.card-carousel img {
  width: 100%;
  height: 100%;
}
.cards {
  height: 300px;
  /* top: 15%; */
  transition: all 0.2s ease-out;
  /* background: #4a148c; */
  /* max-width: 400px; */
  width: 40%;
  margin: auto;
  right: 5%;
  left: 5%;
  border-radius: 20px;
  position: absolute;
  box-shadow: -1px 15px 30px -12px black;
}

/*mobile devices like iphone*/

@media (max-width: 461px) {
  .cards {
    right: 1%;
    left: 1%;
  }
}

/* big landscape tablets, laptops, and desktops */

/* @media (min-width: 1025px) {
  .cards {
    right: 35%;
    left: 35%;
  }
} */

/* tablet, landscape iPad, lo-res laptops ands desktops */

/* @media (min-width: 641px) and (max-width: 961px) {
  .cards {
    right: 25%;
    left: 25%;
  }
} */

/* tablet, landscape iPad, lo-res laptops ands desktops */

/* @media (min-width: 962px) and (max-width: 1024px) {
  .cards {
    right: 30%;
    left: 30%;
  }
} */

/* ------- Section card carousel End -------- */

/* ------- Section category 2 Start -------- */
#myCarousel {
  /* margin-top: 50px; */
}
.category2 {
  background-color: gold;
}
.category2 img {
  width: 100%;
  height: 100px;
  border-radius: 10px;
}
.category2 .col-12 {
  padding: 20px;
}
.category2 .card-body {
  padding: 0 !important;
  border-radius: 10px;
} 

@media (max-width: 768px) {
  .carousel-inner .carousel-item > div {
    display: none;
  }

  .carousel-inner .carousel-item > div:first-child {
    display: block;
  }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-start,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
  display: flex;
}

@media (min-width: 768px) {
  .carousel-inner .carousel-item-right.active,
  .carousel-inner .carousel-item-next,
  .carousel-item-next:not(.carousel-item-start) {
    transform: translateX(25%) !important;
  }

  .carousel-inner .carousel-item-left.active,
  .carousel-item-prev:not(.carousel-item-end),
  .active.carousel-item-start,
  .carousel-item-prev:not(.carousel-item-end) {
    transform: translateX(-25%) !important;
  }

  .carousel-item-next.carousel-item-start,
  .active.carousel-item-end {
    transform: translateX(0) !important;
  }

  .carousel-inner .carousel-item-prev,
  .carousel-item-prev:not(.carousel-item-end) {
    transform: translateX(-25%) !important;
  }
}
/* ------- Section category 2 End -------- */

/* ------- Section bgFix Start -------- */

.bgFix {
  padding: 5%;
  background-image: url("assets/img/bgFix/all.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-attachment: fixed;
  text-align: center;
  color: #fff;
}
.bgFix .img {
  text-align: center;
  position: relative;
  /* top: -180px; */
}
.bgFix .img img {
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
}
.bgFix .content h1 {
  font-weight: 600;
  font-size: 70px;
  word-spacing: 5px;
  letter-spacing: 5px;
  /* position: relative;
  top: -100px; */
}
.bgFix .hashtag h4 {
  position: relative;
  /* top: -100px; */
}

@media only screen and (max-width: 600px) {
  .bgFix {
    background-image: url("assets/img/bgFix/all_mobile.png");
  }
  .bgFix .img {
    /* top: -110px; */
  }
  .bgFix .img img {
    width: 150px;
  }
  .bgFix .content h1 {
    font-size: 40px;
    /* top: -50px; */
  }
  .bgFix .hashtag h4 {
    /* top: -50px; */
  }
}

/* ------- Section bgFix End -------- */

/* ------- Section bgFix2 Start -------- */

.bgFix2 {
  padding: 5%;
  background-image: url("assets/img/bgFix/benefits-bg.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-attachment: fixed;
  color: #fff;
}
.bgFix2 .content h1 {
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
.bgFix2 button {
  padding: 10px 30px;
  background-color: #9edd39;
  font-weight: 700;
}
.bgFix2 .hashtag {
  margin-bottom: 30px;
}
.bgFix2 .hashtag h5 span {
  background-color: #4b241fa5;
}
@media only screen and (max-width: 600px) {
  .bgFix2 {
    background-image: url("assets/img/bgFix/benefits-bg_mobile.jpg");
  }
}

/* ------- Section bgFix2 End -------- */

/* ------- Section banner1 Start -------- */
.banner1 {
  padding: 5%;
}
.banner1 .img img {
  width: 100%;
}
/* ------- Section banner1 End -------- */

/* ------- Section banner2 Start -------- */
.banner2 {
  padding: 5%;
}
.banner2 .img img {
  width: 100%;
}
/* ------- Section banner2 End -------- */

/* ------- Section about Start -------- */

.about {
  padding: 5% 5% 8% 5%;
  background-image: url("assets/img/about/banner1.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  text-align: center;
}

/* ------- Section about End -------- */

/* ------- Section about-img Start -------- */
.about-img img {
  width: 100%;
}
/* ------- Section about-img End -------- */

/* ------- Section bulkbuy Start -------- */

.bulkbuy {
  background-image: url("assets/img/bgFix/all.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-attachment: fixed;
  text-align: center;

  color: #fff;
}
.bulkbuy .content {
  padding: 5% 10%;
  background-color: #1b2014da;
}
.bulkbuy h6 {
  margin-top: 20px;
}
.bulkbuy button {
  border-radius: 20px;
  padding: 5px 20px;
  margin-top: 20px;
  background-color: transparent;
  border: 3px solid #fff;
  color: #fff;
  font-weight: 800;
}

/* ------- Section bulkbuy End -------- */

/* ------- Section about-us Start -------- */

.about-us {
  padding: 5%;
  padding-bottom: 0;
  text-align: justify;
  text-justify: inter-word;
}
.about-us .col-12 {
  display: block;
  margin: auto;
}
.about-us p {
  margin-bottom: 5%;
  color: #000 !important;
}
.about-us img {
  width: 100%;
  padding: 5%;
}

/* ------- Section about-us End -------- */

/* ------- Section quote Start -------- */

.quote {
  padding: 5%;
}
.quote img {
  width: 100%;
}

/* ------- Section quote End -------- */

/* ------- Section vmg Start -------- */

.vmg {
  padding: 5%;
  text-align: center;
}
.vmg .card {
  min-height: 480px;
  margin: auto;
  margin-bottom: 20px;
  width: 90%;
  /* background-color: gold; */
  border: 3px solid gold;
}
.vmg .card img {
  padding: 10px;
  max-width: 80%;
  border-radius: 50%;
  margin: auto;
}

.vmg p {
  color: #000 !important;
}

/* ------- Section vmg End -------- */

/* ------- Section greetings Start -------- */

.greetings {
  padding: 5%;
  text-align: justify;
  text-justify: inter-word;
}
.greetings p {
  color: #000 !important;
}
.greetings h2 {
  color: #fff;
}
.greetings-back p {
  color: rgb(203, 203, 203) !important;
}
.greetings img {
  width: 100%;
  height: 50vh;
  /* box-shadow: 10px 10px 5px rgb(219, 230, 173); */
  box-shadow: 10px 10px 5px gold;
  /* box-shadow: 10px 10px 5px gold; */
}
.greetings .cont {
  display: block;
  margin: auto;
}
.greetings-back {
  background-color: #000000;
}
.greetings-back2 {
  background-color: #000;
}

@media only screen and (max-width: 600px) {
  .greetings h2 {
    margin-top: 20px;
  }
}

/* ------- Section greetings End -------- */

/* ------- Section contact Start -------- */
.contact {
  padding: 5% 5% 8% 5%;
  background-image: url("assets/img/about/banner1.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  text-align: center;
}
/* ------- Section contact End -------- */

/* ------- Section help Start -------- */

.help {
  padding: 5%;
  padding-bottom: 0;
}
.help p {
  color: #000 !important;
}
.help .content-head {
  text-align: center;
}
.help .content-head h1 {
  margin-bottom: 30px;
}
.help .content-head h6 {
  margin-bottom: 20px;
}
.help .content-body {
  margin: 5%;
  text-align: center;
  background-color: #fff;
  /* box-shadow: 1px 6px 1px 5px rgb(219, 230, 173); */
  /* box-shadow: 1px 6px 1px 5px gold; */
}

/* ------- Section help End -------- */

/* ------- Section contact-us Start -------- */
.contact-us {
  padding: 5%;
  /* background-color: rgb(243, 243, 243); */
}
.contact-us .contents {
  max-width: 1000px;
  margin: auto;
  box-shadow: 0px 0px 5px 5px rgb(233, 233, 233);
  background-color: #fff;
}
.contact-us .contact-head {
  background-image: url("assets/img/about/banner1.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.contact-us .contact-head .content {
  /* background-color: rgba(255, 217, 0, 0.404); */
  background-color: rgba(0, 0, 0, 0.656);
  padding: 5%;
  /* color: rgb(0, 0, 0); */
  color: #fff;
}

.contact-us .contact-body {
  padding: 4%;
  padding-bottom: 0;
}
.contact-us .contact-body label {
  color: black;
}
.contact-us .contact-body input {
  border-radius: 0;
}
.contact-us .hr {
  border: 1px solid gold;
  margin: 0 4%;
}
.contact-us .contact-footer {
  padding: 0 4%;
  padding-bottom: 4%;
}
.contact-us .contact-footer label {
  color: #000;
  margin-top: 10px;
}
.contact-us .contact-footer textarea {
  width: 100%;
}
.contact-us .contact-footer button {
  max-width: 150px;
  margin-left: 1.2%;
  padding: 10px 20px;
  background-color: gold;
  color: rgb(0, 0, 0);
  font-weight: 700;
  margin-top: 20px;
  display: none;
}
.contact-us .contact-footer #esub {
  max-width: 150px !important;
  margin-left: 1.2%;
  padding: 10px 20px;
  background-color: gold;
  color: rgb(0, 0, 0);
  font-weight: 700;
  margin-top: 20px;
}

/* ------- Section contact-us End -------- */

/* ------- Section festGift Start -------- */

.festGift {
  padding: 5% 5% 8% 5%;
  background-image: url("assets/img/about/banner1.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  text-align: center;
}

/* ------- Section festGift End -------- */

/* ------- Section festGift End -------- */
.gift-box {
  padding: 5%;
}
.gift-box .col-12 {
  padding: 20px;
}
/* ------- Section festGift End -------- */

/* ------- Section runningText Start -------- */
.runningText {
  background-color: gold;
}
/* ------- Section runningText End -------- */


/* ------- Section Nuts Start -------- */

.nuts {
  background-image: url("assets/img/bg/bg1.jpg");
  /* background-repeat: no-repeat; */
  background-size: 100% 100vh;
}
.nuts .content {
  padding: 5%;
  background-color: #fffcf4e1;
}
/* .nuts .bg-img {
  padding: 10px;
  background-image: url("assets/img/bg/bg2.png");
  background-size: 100% 385px;
} */
.nuts h1 {
  margin-bottom: 3%;
  text-align: center;
  background-color: #D2A84A;
  padding: 13px 0;
}
.nuts h5 {
  text-align: center;
}
.nuts .card {
  border: none;
  /* box-shadow: -1px 15px 30px -12px black; */
  box-shadow: -6px 6px 10px -10px black;
  /* background-image: linear-gradient(to bottom right, rgb(248, 233, 150), white, rgb(110, 101, 101)); */
}
.nuts .logo-bgtsp {
  position: absolute;
  width: 30%;
  background-color: rgb(0, 0, 0);
  border-bottom-right-radius: 30px;
  display: none;
}
.nuts .card-body {
  background-color: #D2A84A;
  text-align: center;
}
.nuts .card-body h5 {
  font-weight: 700;
}
.nuts .card-img-top {
  height: 300px;
  width: 100%;
  /* padding: 10%; */
  /* border-radius: 100%; */
}
.nuts .col-6 {
  padding: 1%;
}
@media only screen and (max-width: 600px) {
  .nuts .card-img-top {
    height: 200px;
  }
  .nuts {
    background-image: url("assets/img/bg/bggggg.jpg");
    /* background-repeat: no-repeat; */
    background-size: 100% 100vh;
  }
}

/* ------- Section Nuts End -------- */


/* ------- Section Footer Start -------- */

.footer-section ul {
  margin: 0px;
  padding: 0px;
}
.footer-section {
  /* background: #151414; */
  background: #000;
  position: relative;
  padding-left: 2%;
  padding-right: 1%;
}
.footer-cta {
  border-bottom: 1px solid #373636;
}
.footer-cta h4 {
  color: #fff;
}
.footer-cta i {
  color: gold !important;
}
.footer-cta h5,p {
  color: #ffffff !important;
}
.single-cta i {
  color: gold;
  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: 110px;
}
.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;
}
.whatsapp-bg {
  background: green;
}
.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: gold;
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover {
  color: gold;
}
.footer-widget ul li a {
  color: hsl(0, 0%, 100%);
  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: gold;
  padding: 13px 20px;
  border: 1px solid gold;
  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: gold;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a {
  color: gold;
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}

@media only screen and (max-width: 600px) {
  .c-form {
    display: none !important;
  }
}

/* ------- Section Footer End -------- */
