/* Gloabal Values */
:root {
  --main-clr: #e51515;
  --white: white;
  --trans: 0.5s;
  --p-clr: #5a6069;
  --bg: #22232b;
  --pad: 5rem;
  --pad-res: clamp(2rem, 1.5vw, 5rem);
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  scrollbar-width: thin;
  scrollbar-color: var(--main-clr) var(--white);
}
button {
  cursor: pointer;
}
/* costumize scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--white);
}
::-webkit-scrollbar-thumb {
  background-color: var(--main-clr);
  border-radius: 6px;
  border: 1px solid var(--white);
}

/* Grid System */
@media (min-width: 576px) {
  /* Small Devices => Landscape Phones */
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  /* Medium Devices => Tablets */
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  /* Desktops */
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  /* Large Screens */
  .container {
    max-width: 1140px;
  }
}
.container {
  margin: auto;
  padding: 0 15px;
}

/* reseting values */
ul {
  list-style: none;
  padding: 0;
  display: flex;
}
a {
  text-decoration: none;
  color: initial;
}
button {
  border: none;
  background-color: transparent;
}
img {
  max-width: 100%;
  display: block;
}

/* costum components */
.header-title {
  padding: 0 20px;
  overflow: hidden;
  border-left: none;
  border-right: none;
  position: relative;
  margin-bottom: 2rem;
}

.header-title > div {
  height: 100%;
  width: 350px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.header-title > div::before,
.header-title > div::after {
  content: "";
  position: absolute;
  z-index: 1;
  height: 7px;
  width: 20%;
  margin: auto;
  border-top: 1px solid #363c45;
  border-bottom: 1px solid #363c45;
  top: 26px;
}

.header-title > div::before {
  left: -84px;
}
.header-title > div::after {
  right: -84px;
}
.header-title > span {
  height: 100%;
  width: 34.5%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.header-title > span::before,
.header-title > span::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 50%;
  top: 30px;
  left: -189px;
  background: black;
}
.header-title > span::after {
  left: unset;
  right: -189px;
}

.header-title h3 {
  font-family: "Oswald", sans-serif;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px 28px;
  overflow: hidden;
  width: fit-content;
  border-top: 1px solid;
  border-bottom: 1px solid;
  transition: var(--trans);
}

@media (max-width: 450px) {
  .header-title h3 {
    font-size: 3.5vw;
  }
}
.header-title h3::before,
.header-title h3::after {
  content: "";
  position: absolute;
  height: 100px;
  width: 100px;
  background-color: transparent;
  top: 50%;
  border: 2px solid;
  left: -80px;
  border: 4px solid #363c45;
  transform: translateY(-50%) rotate(45deg)
    skew(26deg, 26deg);
}
.header-title h3::after {
  left: unset;
}

.header-title h3 .header-in i {
  margin: 0 25px;
}

.header-title h3:hover i {
  color: var(--main-clr);
  transition: var(--trans);
  transform: rotate(0.5turn) scale(1.1);
  filter: drop-shadow(0 0 2px var(--main-clr));
}
.header-title:hover > div::before,
.header-title:hover > span::before {
  left: 42%;
  opacity: 0;
  transition: var(--trans);
}
.header-title:hover > div::after,
.header-title:hover > span::after {
  right: 32%;
  opacity: 0;
  transition: var(--trans);
}

.header-title.invert h3::before,
.header-title.invert h3::after,
.header-title.invert > div::before,
.header-title.invert > div::after,
.header-title.invert h3 {
  border-color: var(--p-clr);
  color: var(--white);
}
.header-title.invert > span::before,
.header-title.invert > span::after {
  background-color: var(--p-clr);
}

.header-title.invert > p,
.header-title > p {
  display: block;
  text-align: center;
  font-size: 13px;
  line-height: 17px;
  margin: 20px 0 0;
}
.header-title.invert > p {
  color: var(--p-clr);
}

/* header */
header .container {
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  top: 50px;
  align-content: flex-end;
}

header .container > div {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  user-select: none;
}

header .container > div:nth-child(1) ion-icon,
header .container > div:nth-child(2) ion-icon {
  position: relative;
  top: 2px;
  right: -6px;
}

header .container > div:nth-child(4) {
  font-size: 24px;
  position: relative;
  top: 7px;
}
header > div > div:nth-child(3) > div:nth-child(1) {
  position: relative;
  font-size: 24px;
}
@media (max-width: 580px) {
  header .container img {
    display: none;
  }
}

header .container > div > div {
  cursor: pointer;
}
/* cart popup */
.pop-cart {
  position: absolute;
  z-index: 1;
  background-color: var(--bg);
  color: black;
  right: -25px;
  top: 27px;
  display: none;
}
.pop-cart.active {
  display: initial;
}
.pop-cart .prices {
  background-color: var(--white);
  display: flex;
  gap: 150px;
  padding: 40px 30px 10px;
}
.pop-cart .prices p {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 14px;
}
.pop-cart > div:last-child {
  display: flex;
  justify-content: center;
  padding: 40px;
}
.pop-cart > div:last-child button,
.blog .posts .post button:hover {
  background-color: var(--main-clr);
  color: var(--white);
  border-radius: 20px;
  padding: 10px var(--pad);
  filter: drop-shadow(0px 0px 10px var(--main-clr));
  font-size: 14px;
  font-weight: bold;
}

header > div > div:nth-child(3) > div:nth-child(1)::after {
  content: "0";
  position: absolute;
  background-color: white;
  color: black;
  border-radius: 50%;
  width: 20px;
  top: 2px;
  height: 20px;
  display: flex;
  left: 28px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}
header
  > div
  > div:nth-child(3)
  > div:nth-child(1):hover::after {
  background-color: var(--main-clr);
  color: var(--white);
}
body > header > div > div:nth-child(3) {
  position: relative;
  top: 8px;
}

.hamburger {
  font-size: 24px;
  top: 8px;
}
.hamburger .pop {
  right: 0;
  left: unset !important;
}
.hamburger .pop h5 {
  margin-bottom: 5px;
}
.hamburger .pop p {
  color: initial !important;
}

header .container > div:nth-child(1) div:nth-child(1):hover,
header .container > div:nth-child(1) div:nth-child(2):hover,
header > div > div:nth-child(3) > div:nth-child(1):hover,
.hamburger:hover {
  color: var(--main-clr);
  transition: var(--trans);
}

/* popups in logo header*/
header .container div .pop {
  left: 0;
  top: 35px;
  position: absolute;
  background-color: white;
  padding: 35px 25px;
  color: black;
  z-index: 1;
  font-size: 14px;
  width: 250px;
  display: none;
}
header .container div .pop.active {
  display: initial;
}
header .container .pop p:not(:last-child) {
  color: var(--main-clr);
  margin-bottom: 10px;
  border-top: 1px solid #6c707632;
  padding-top: 16px;
}

header .container > div:nth-child(1) > div:nth-child(2) {
  position: relative;
}
header
  .container
  > div:nth-child(1)
  > div:nth-child(2)
  .pop
  p {
  color: inherit;
}
header
  .container
  > div:nth-child(1)
  > div:nth-child(2)
  .pop
  p:last-child {
  color: var(--main-clr);
}
/* Secondary header */
.fixed-head {
  position: relative;
  top: 110px;
  background-color: var(--bg);
  border-bottom: 2px solid var(--main-clr);
}

@media (max-width: 1199px) {
  .fixed-head {
    top: 65vh;
  }
}

.fixed-head .container > ion-icon {
  color: grey;
}

.fixed-head .container .btns {
  display: flex;
  gap: var(--pad);
  padding: 45px 10px 30px;
  margin-left: 50px;
}
.fixed-head .container .btns ion-icon {
  margin-left: 5px;
  position: absolute;
  top: 2px;
}
.fixed-head .container .btns button {
  background-color: unset;
  border: unset;
  position: relative;
}
.fixed-head .container .btns button a {
  color: white;
  font-weight: bold;
  font-size: 14px;
  z-index: 2;
  position: relative;
}
.fixed-head .container .btns button.active::before,
.fixed-head .container .btns button:hover::before {
  content: "";
  position: absolute;
  height: 90px;
  width: 100px;
  background-color: var(--main-clr);
  left: 50%;
  transform: translate(-41%, -46%) skewX(-30deg);
}

@media (max-width: 580px) {
  .fixed-head .container .btns button.active::before,
  .fixed-head .container .btns button:hover::before {
    height: clamp(6vh, 7vh, 8vh);
  }
  .fixed-head .container .btns {
    padding: clamp(2vh, 1.5vh, 6vh);
    flex-wrap: wrap;
    justify-content: center;
  }

  .fixed-head .container .btns button a {
    font-size: 3vw;
  }
}

/* hover to popup */
.fixed-head
  .container
  .btns
  button:nth-of-type(2):hover
  .pop,
.fixed-head
  .container
  .btns
  button:nth-of-type(3):hover
  .pop {
  display: flex;
}

@media (max-width: 530px) {
  .fixed-head
    .container
    .btns
    button:nth-of-type(2):hover
    .pop,
  .fixed-head
    .container
    .btns
    button:nth-of-type(3):hover
    .pop {
    flex-direction: column;
  }
  .pop .text:first-child {
    border-bottom: 2px solid #ccc;
  }
}
/* popups */
.fixed-head .container .btns button .pop {
  position: absolute;
  top: 48px;
  left: -53px;
  background-color: var(--white);
  gap: 65px;
  text-align: left;
  padding: 3vh clamp(2vh, 1.5vh, 6vh);
  display: none;
  transition: var(--trans);
  background-color: #eee;
}
.fixed-head .container .btns button .pop h6 {
  margin-bottom: 15px;
  font-size: 14px;
  width: 128px;
}
.fixed-head .container .btns button .pop p {
  margin-bottom: 10px;
  width: 100px;
}
/* Landing page */
main {
  position: relative;
  top: -146px;
  z-index: -1;
}
main .landing-page {
  min-height: 100vh;
  background-image: url(http://demo.posthemes.com/pos_aero/layout3/modules/posslideshows/images/1bd5364ecde77c8a9f166c7d0420c216ef41df9f_3.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 580px) {
  main {
    top: -210px !important;
  }
  /* main .landing-page {
    background-position: center;
    background-size: cover;
  } */
}

.landing-page .container {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 50px;
}
@media (max-width: 1199px) {
  .landing-page .container {
    display: none;
  }
}
.landing-page .container::before {
  content: "";
  position: absolute;
  width: 99vw;
  left: 50%;
  transform: translateX(-50%);
  top: -1px;
  height: 100%;
  background: black;
  opacity: 0.3;
  z-index: 1;
  border-top: 0.5px solid rgb(255 255 255 / 55%);
}

.landing-page .container .text {
  text-align: center;
  z-index: 3;
  padding: 30px var(--pad-res);
}
.landing-page .container .text:nth-child(2) {
  border-left: 0.5px solid rgb(255 255 255 / 15%);
  border-right: 0.5px solid rgb(255 255 255 / 15%);
}

.landing-page .container .text h3 {
  margin-bottom: 15px;
  font-weight: normal;
  width: 200px;
  font-size: 17px;
  color: var(--white);
}
.landing-page .container .text p {
  color: var(--p-clr);
  font-size: 12px;
}

/* Gallery */
.gallery .container {
  display: flex;

  gap: 30px;
  justify-content: center;
}
@media (max-width: 1199px) {
  .gallery .container {
    flex-wrap: wrap;
  }
}
.gallery .container div,
.blog .posts .post > div:first-child {
  position: relative;
  z-index: 1;
}
.gallery .container div::before,
.gallery .container div::after,
.blog .posts .post > div:first-child:before,
.blog .posts .post > div:first-child:after {
  content: "";
  position: absolute;
  height: 50px;
  width: 50px;
  background: transparent;
  color: var(--white);
  z-index: 1;
  opacity: 0;
  transition: var(--trans);
}
.gallery .container div::before,
.blog .posts .post > div:first-child:before {
  border-top: 1px solid;
  border-left: 1px solid;
  left: 20px;
  top: 20px;
}
.gallery .container div::after,
.blog .posts .post > div:first-child:after {
  border-bottom: 1px solid;
  border-right: 1px solid;
  right: 20px;
  bottom: 20px;
}

.gallery .container div:hover::before,
.gallery .container div:hover::after,
.blog .posts .post > div:first-child:hover::before,
.blog .posts .post > div:first-child:hover::after {
  opacity: 1;
  height: 30px;
  width: 30px;
}

/* category */

.category,
.new-products {
  margin: var(--pad) 0;
}

.category .taps {
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
.category .taps li {
  position: relative;
  font-weight: bold;
  font-size: 12px;
  padding: 20px;
  cursor: pointer;
}
.category .taps li:not(:last-child):after {
  position: absolute;
  content: "";
  height: 5px;
  width: 5px;
  background-color: #e1e1e1;
  right: -15px;
  top: 23px;
  transform: rotate(45deg);
}
.category .taps li.active {
  color: var(--main-clr);
}

.products {
  display: grid;
  place-items: center;
  grid-template-columns: repeat(
    auto-fill,
    minmax(250px, 1fr)
  );
  gap: 30px;
}
.products .product {
  border-radius: 30px;
  border: 1px solid #eeeeee;
  position: relative;
}
.products .product:hover {
  box-shadow: 1px 5px 6px grey;
}

/* eye hover */
.products .product i.fa-eye {
  position: absolute;
  left: 20px;
  top: 55px;
  z-index: 1;
  opacity: 0;
  transition: var(--trans);
  font-size: 20px;
}
.products .product:hover i.fa-eye {
  opacity: 1;
}
.products .product i.fa-eye:hover {
  color: var(--main-clr);
}
.products .product .img-box {
  position: relative;
  cursor: pointer;
}
.products .product .img-box::before,
.products .product .img-box::after {
  content: "NEW";
  position: absolute;
  height: fit-content;
  width: fit-content;
  background: var(--bg);
  color: var(--white);
  padding: 5px 15px;
  font-size: 10px;
  left: 15px;
  top: 15px;
  border-radius: 5px;
}
.products .product .img-box > span {
  position: absolute;
  left: 5px;
  top: 21px;
  border: 5px solid;
  border-color: transparent var(--bg) transparent
    transparent;
}
.products .product .img-box > span::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  background: #eeeeee;
  border-radius: 50%;
  top: -2px;
  left: 9px;
}
.products .product .img-box > span::after {
  content: "";
  position: absolute;
  background: #eeeeee;
  height: 21px;
  width: 30px;
  left: 53px;
  top: -11px;
  clip-path: polygon(
    10% 23%,
    0 12%,
    20% 0,
    20% 100%,
    0 80%,
    10% 60%,
    0 41%
  );
}
.products .product .img-box img {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.content {
  padding: 20px;
}

.content p:not(:nth-child(3)) {
  border-bottom: 1px solid #eeeeee;
  padding: 18px 0;
}
.content p:first-child {
  font-size: 14px;
}
.content p:first-child i:first-child {
  margin-left: 10px;
}
.content p:first-child i {
  color: #ffcc00;
  font-size: 12px;
}
.content p:first-child i:last-child {
  color: #b6b6b6;
}
.content p:nth-child(2) {
  font-weight: bold;
  font-size: 13px;
  cursor: pointer;
}
.content p:nth-child(2):hover {
  color: var(--main-clr);
}
.content p:nth-child(3) {
  color: var(--main-clr);
  font-weight: bold;
  padding: 20px 0;
}

.content button {
  background-color: #eeeeee;
  color: var(--p-clr);
  padding: 10px 10px 10px 35px;
  border-radius: 25px;
  width: 100%;
  margin-top: 20px;
  font-size: 12px;
  transition: var(--trans);
  position: relative;
  cursor: pointer;
  font-weight: bold;
}
.content button:hover {
  background-color: var(--main-clr);
  color: var(--white);
}
.content button:hover i {
  filter: hue-rotate(360deg);
}
.content button ion-icon {
  font-size: 20px;
  position: absolute;
  left: 25%;
  top: 5px;
}
.products .product.sale .content .on-sale,
.content.sale p:last-child span {
  height: fit-content;
  width: fit-content;
  padding: 3px 5px;
  margin-right: 10px;
  border-radius: 3px;
  display: inline;
  color: initial;
  background-color: #ffcc00;
  font-weight: normal;
}

.content p:nth-child(3) span.old {
  text-decoration: line-through;
  color: black;
  font-weight: normal;
  margin-left: 10px;
}

.products .product.sale .img-box::after {
  content: "SALE!";
  left: unset;
  right: 20px;
  background-color: var(--main-clr);
}
.products .product.sale span.on-sale {
  left: unset;
  border-color: transparent var(--main-clr) transparent
    transparent;
  right: 78px;
}
.products .product.sale span.on-sale::after {
  z-index: 1;
  left: 58px;
}
.products .product.sale span.on-sale::before {
  z-index: 1;
}

/* BestSeller section */

.best-seller {
  padding: var(--pad) 0;
  background: url(http://demo.posthemes.com/pos_aero/layout3/themes/pos_aero3/assets/css/bs_bg.jpg)
    no-repeat center / cover fixed;
}

.product-grid {
  display: grid;
  column-gap: 30px;
  grid-template-columns: repeat(
    auto-fill,
    minmax(300px, 1fr)
  );
}
.product-grid .box {
  display: flex;
  align-items: flex-start;
  padding: 20px 0;
  justify-content: center;
  position: relative;
  transition: filter var(--trans);
}
.product-grid .box:hover {
  filter: contrast(1.2);
  padding-left: 5px;
}
@media (max-width: 1199px) {
  .product-grid .box {
    justify-content: unset;
  }
}
@media (min-width: 1199px) {
  .product-grid div:nth-child(2).box,
  .product-grid div:nth-child(5).box {
    border-right: 1px solid var(--p-clr);
    border-left: 1px solid var(--p-clr);
  }

  .product-grid div:nth-child(1).box::after,
  .product-grid div:nth-child(2).box::after,
  .product-grid div:nth-child(3).box::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 90%;
    background-color: var(--p-clr);
    bottom: 0;
  }
}

.box > img {
  border-radius: 20px;
}
.content.invert {
  padding: 0 15px;
}
.content.invert p:first-child {
  padding: 3px 0;
  color: var(--p-clr);
}
.content.invert p:not(:first-child) {
  padding: 15px 0;
}
.content.invert p:nth-of-type(2) {
  color: #838896;
}
.content.invert p:not(:last-child) {
  border-bottom: unset;
}
section.best-seller
  > div
  > div.product-grid
  > div:nth-child(1)
  > div
  > p:nth-child(1)
  > i:nth-child(4),
.new-products
  div:first-child.product
  .content
  > p:nth-child(1)
  > i:nth-child(4),
.new-products
  div:last-child.product
  .content
  > p:nth-child(1)
  > i:nth-child(4),
section.best-seller
  > div
  > div.product-grid
  > div:nth-child(5)
  > div
  > p:nth-child(1)
  > i:nth-child(4) {
  color: #b6b6b6;
}

/* Latest Blog */

.blog {
  margin: var(--pad) 0;
  overflow: hidden;
  background-color: #eee;
  padding: var(--pad-res) 0;
}
.blog .posts {
  display: grid;
  gap: 2rem;
  place-items: center;
  grid-template-columns: repeat(
    auto-fill,
    minmax(33rem, 1fr)
  );
}
@media (max-width: 540px) {
  .blog .posts {
    grid-template-columns: repeat(
      auto-fill,
      minmax(20rem, 1fr)
    );
  }
}

.blog .posts .post {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .blog .posts .post {
    flex-direction: column;
  }
  .blog .posts .post .txt {
    text-align: center;
    width: 65%;
  }
}
.blog .posts .post .txt {
  padding-left: 20px;
}
.blog .posts .post .txt h1 {
  color: var(--main-clr);
  font-size: 2.5rem;
}
.blog .posts .post .txt h1 small {
  font-size: 0.75rem;
}

.blog .posts .post .txt h3 {
  font-size: 14px;
  line-height: 24px;
}

.blog .posts .post .txt p:nth-of-type(1) {
  line-height: 2;
  border-bottom: 1px solid #5a606920;
}
.blog .posts .post .txt p:nth-of-type(1) span {
  color: var(--main-clr);
}

.blog .posts .post .txt p:nth-of-type(2) {
  padding-top: 20px;
}

.blog .posts .post button {
  background-color: #5a606920;
  color: #5a6069;
  font-weight: bold;
}
.blog .posts .post button:hover,
.blog .posts .post button {
  padding: 13px 55px;
  border-radius: 40px;
  font-size: 12px;
  margin-top: 39px;
}

.blog .container {
  position: relative;
}
.blog .container::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background-color: #5a606920;
  bottom: -8rem;
}

/* SUBCRIBERS */
.sub {
  margin: var(--pad) 0;
  text-align: center;
}
.sub h3 {
  font-weight: normal;
  font-size: 13px;
  color: var(--p-clr);
  letter-spacing: 0.2em;
}
.sub h3 span {
  color: var(--main-clr);
  font-weight: bold;
}
.sub h1 {
  margin: 10px 0 0;
  color: var(--bg);
  font-size: 20px;
  letter-spacing: 0.2em;
  line-height: 24px;
}
.sub p:first-of-type {
  margin-top: 20px;
}
.sub p {
  line-height: 2;
  color: var(--p-clr);
}
.sub input {
  margin-top: 40px;
  border: none;
  background-color: #5a606920;
  border-radius: 20px;
  width: 50%;
  padding: 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all var(--trans);
  outline: none;
}
.sub input.expand {
  width: 0%;
  background-color: transparent;
}
.sub a {
  border-radius: 50%;
  height: 57px;
  width: 57px;
  background-color: var(--main-clr);
  position: absolute;
  top: 42px;
  right: 24%;
  display: grid;
  place-items: center;
  transition: var(--trans);
  cursor: pointer;
}
.sub a.expand {
  right: 50%;
}
.sub .subcribe {
  position: relative;
  min-height: 108px;
}
.sub a i {
  font-size: 20px;
  color: white;
}
.sub .subcribe a:hover {
  filter: drop-shadow(0 0 5px var(--main-clr));
}

/* footer */

footer {
  background-image: url(http://demo.posthemes.com/pos_aero/layout3/themes/pos_aero3/assets/css/ft_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
footer .foot {
  display: flex;
  justify-content: center;
  color: grey;
  padding: 90px 0 60px;
  gap: 35px;
  font-size: 13px;
}
footer .box {
  flex-basis: 35%;
}
@media (max-width: 768px) {
  footer .foot {
    flex-wrap: wrap;
    justify-content: unset;
  }
  footer .box {
    flex-basis: 100%;
  }
  footer .details {
    flex-basis: 18%;
  }
}
footer .box p:nth-of-type(1) {
  margin: 30px 0;
  line-height: 24px;
}
footer .box p:not(:first-of-type) {
  color: var(--white);
  margin: 20px 0;
  width: 75%;
}
footer .box p:not(:first-of-type) i,
footer .box p:not(:first-of-type) ion-icon {
  margin-right: 10px;
  color: var(--main-clr);
}
footer .box p a {
  color: var(--white);
}
footer .details {
  border-left: 1px solid #5a606920;
  padding-left: 17px;
}
footer .details h3 {
  color: white;
  margin-bottom: 40px;
  font-size: 1.5em;
}
footer .details p {
  margin-bottom: 20px;
}

footer .footest {
  color: var(--p-clr);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 0;
  border-top: 1px solid #5a606920;
}
footer .footest p {
  display: initial;
  margin-right: 15px;
}
footer .footest p span {
  color: var(--main-clr);
  font-weight: bold;
}
footer .footest i {
  cursor: pointer;
}
footer .footest i:hover {
  color: var(--main-clr);
}
footer .footest i:not(:first-of-type) {
  margin-left: 15px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  footer .footest {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    text-align: center;
  }
}

/* Sticky ToUp btn */
#sticky-up {
  position: fixed;
  background-color: var(--bg);
  bottom: 50px;
  right: 50px;
  border-radius: 50%;
  padding: 20px;
  color: var(--white);
  transition: var(--trans);
  opacity: 0;
  z-index: 99;
}

#sticky-up:hover {
  background-color: var(--main-clr);
  filter: drop-shadow(0 0 8px var(--main-clr));
}
