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

html,
body {
  font-family: "Inter", serif;
  color: #ffffff;
  background-color: #000000;
}

input:focus-visible {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "ogg_trial";
  font-weight: bold;
}

h1 {
  font-size: 55px;
  line-height: normal;
}
@media (max-width: 1199.98px) {
  h1 {
    font-size: 2.5rem;
  }
}

a {
  text-decoration: none;
}

p {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}
@media (max-width: 767.98px) {
  p {
    font-size: 12px;
  }
}

.p2 {
  font-size: 1.125rem;
  font-weight: 600;
}

.p80 {
  padding: 5rem 0;
}
@media (max-width: 767.98px) {
  .p80 {
    padding: 2.5rem 0;
  }
}

ul {
  list-style: none;
  padding-left: 0;
}

.yellowText {
  color: #FFFF11;
}

.btn {
  font-size: 16px;
  text-transform: uppercase;
  padding: 0.75rem 2.1rem;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  border-radius: 50px;
  color: #ffffff;
  border: 1px solid #ffffff;
  background-color: transparent;
  margin: 0px !important;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767.98px) {
  .btn {
    font-size: 14px;
    padding: 0.5rem 1.75rem;
    line-height: 20px;
  }
}
.btn:hover {
  color: #000000 !important;
  background-color: #ffffff;
}

.readMore {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: 0.5rem;
}

/* Header */
header {
  position: relative;
  z-index: 1;
  background-color: black;
  padding: 10px 0;
}
@media (max-width: 767.98px) {
  header .mainMenu {
    display: none;
  }
}
header .mainMenu ul {
  display: flex;
  list-style: none;
  gap: 30px;
  margin-bottom: 0;
}
header .mainMenu ul li a {
  position: relative;
  font-size: 1rem;
  font-weight: 600;
  color: #C0C0C0;
  text-decoration: none;
}
header .mainMenu ul li a.active {
  color: #fff;
}
header .mainMenu ul li a.active::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 3px;
  background-color: #ffffff;
  bottom: -8px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
header .row {
  align-items: center;
}
header .logo {
  width: 85px;
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  header .logo {
    width: 60px;
  }
}
header .right__bar {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 767.98px) {
  header .right__bar {
    gap: 15px;
  }
}
header .right__bar .searchBar input {
  background-color: transparent;
  border: none;
  width: 185px;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}
header .right__bar .searchBar input::-moz-placeholder {
  color: #C0C0C0;
}
header .right__bar .searchBar input::placeholder {
  color: #C0C0C0;
}
header .right__bar .searchBar .fa-search {
  font-size: 20px;
}
header .right__bar .user img {
  width: 36px;
  height: 36px;
}
header .right__bar .cart img {
  width: 36px;
  height: 36px;
}

.navbar {
  position: inherit;
}

.navbar-toggler .bar {
  position: relative;
  z-index: 111;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  display: block;
  margin: 6px 0px;
  transition: all 0.3s ease-in-out;
  background-image: none;
}

#navbar-toggler.active .bar:nth-child(2) {
  opacity: 0;
}

#navbar-toggler.active .bar {
  background-color: #000000;
}

#navbar-toggler.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

#navbar-toggler.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.navbar-collapse {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh !important;
  z-index: 1;
  background-color: transparent;
}

.navbar-collapse .navbar-nav {
  text-align: center;
}

.navbar-nav .nav-link {
  color: #000000;
  font-size: 1.125rem;
  font-weight: 500;
  transition: 0.5s;
}

.navbar-nav .nav-link:hover {
  color: #ffffff;
  background-color: #000;
  border-radius: 0 20px;
  padding: 0.5rem 20px;
}

.navbar-collapse .navbar-nav {
  gap: 1.5rem;
}

.menu-show:after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 0;
  height: 0;
  scale: 2;
  z-index: -1;
  background: white;
  border-radius: 50%;
  transform: translate(0, 0);
  animation: ball 1.1s forwards ease-in-out;
}

@keyframes ball {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(5);
    width: 1000px;
    height: 1000px;
  }
}
/* Header Close */
.web-bg {
  content: "";
  position: fixed;
  top: 20%;
  background-image: url(../images/web-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* First Fold */
.first__fold {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 80vh;
}
@media (max-width: 1199.98px) {
  .first__fold {
    height: 100vh;
  }
}

.grid__firstfold {
  display: grid;
  padding-top: 100px;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 15rem;
       column-gap: 15rem;
  justify-content: space-between;
  height: 70vh;
}
@media (max-width: 1199.98px) {
  .grid__firstfold {
    grid-template-columns: 1fr;
    padding-top: 25px;
    height: 100vh;
  }
}

.top__box {
  position: relative;
  z-index: 1;
  padding-left: 2rem;
}
.top__box h1 {
  font-size: 10rem;
  line-height: 7rem;
}
@media (max-width: 767.98px) {
  .top__box h1 {
    font-size: 5rem;
    line-height: 4.5rem;
  }
}
.top__box h1 span {
  font-size: 7rem;
}
@media (max-width: 767.98px) {
  .top__box h1 span {
    font-size: 4rem;
  }
}
.top__box p {
  margin-bottom: 2rem;
}
.top__box .top__btn {
  position: relative;
  margin-top: 3rem;
  margin-right: 6rem;
  text-align: right;
}
@media (max-width: 767.98px) {
  .top__box .top__btn {
    margin-top: 1rem;
    margin-right: 1rem;
  }
}
.top__box .top__btn .btn:after {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 60%;
  height: 1px;
  top: 50%;
  left: 0;
}
@media (max-width: 767.98px) {
  .top__box .top__btn .btn:after {
    width: 50%;
  }
}
.top__box .leaf_animation {
  position: absolute;
  top: 21%;
  left: 0;
}

.center__box {
  position: absolute;
  top: 11%;
  left: -8%;
  right: 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1199.98px) {
  .center__box {
    top: 31%;
    left: 0;
  }
}
@media (max-width: 767.98px) {
  .center__box {
    top: 21%;
  }
}

.bottom__box {
  position: relative;
}
.bottom__box .description {
  position: absolute;
  bottom: 0;
}
.bottom__box .description h3 {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.bottom__box .description h3 img {
  width: 20px;
}
.bottom__box .description .readMore {
  float: right;
}

.leaf_animation img {
  overflow: hidden;
  animation: circle 6s linear infinite;
}

@keyframes circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
/* First Fold Close*/
/* The Most Selling*/
.most__selling__Section {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.most__selling__Section .row {
  align-items: center;
}
.most__selling__Section .mt-5 {
  margin-top: 1rem !important;
}
.most__selling__Section .image img {
  width: 100%;
}

.borderLeft {
  border-left: 3px solid !important;
  padding-left: 16px;
}

@media (max-width: 1199.98px) {
  .rightHeading {
    margin-top: 1rem;
  }
}
@media (max-width: 767.98px) {
  .rightHeading {
    margin-top: 0;
  }
}
.rightHeading h1 {
  margin-bottom: 0;
}
.rightHeading h1.art {
  font-size: 155px;
}
@media (max-width: 1199.98px) {
  .rightHeading h1.art {
    font-size: 90px;
  }
}

.most__selling__product {
  position: relative;
  border: 2px solid #ffffff;
  padding: 20px;
}
@media (max-width: 767.98px) {
  .most__selling__product {
    padding: 12px;
  }
}
.most__selling__product:after {
  content: "";
  position: absolute;
  background: linear-gradient(178deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.82) 85%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.most__selling__product .description {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 0 45px 30px;
  display: grid;
  grid-template-columns: 1fr;
  -moz-column-gap: 5rem;
  column-gap: 10rem;
}
@media (max-width: 767.98px) {
  .most__selling__product .description {
    padding: 0 24px 24px;
    grid-template-columns: 1fr;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }
}
.most__selling__product .description .justify-content-between {
  justify-content: start !important;
  gap: 1.5rem;
}
.most__selling__product .description .fa-heart-o {
  font-size: 30px;
}
@media (max-width: 767.98px) {
  .most__selling__product .description .fa-heart-o {
    font-size: 22px;
  }
}

/* The Most Selling Close*/
/* My Recent Arts*/
.recent__arts {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.recent__arts .container {
  position: relative;
}
.recent__arts .mainHeading {
  position: absolute;
  width: 49%;
  right: 0;
  top: 0;
}
@media (max-width: 767.98px) {
  .recent__arts .mainHeading {
    position: relative;
    width: 100%;
  }
}

.recent__arts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 24rem;
       column-gap: 24rem;
  row-gap: 5rem;
}
@media (max-width: 1199.98px) {
  .recent__arts__grid {
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }
}
@media (max-width: 767.98px) {
  .recent__arts__grid {
    grid-template-columns: 1fr;
    row-gap: 3rem;
  }
}
.recent__arts__grid .recent__arts__item:nth-child(2) {
  position: relative;
  top: 12rem;
}
@media (max-width: 1199.98px) {
  .recent__arts__grid .recent__arts__item:nth-child(2) {
    top: 10rem;
  }
}
@media (max-width: 767.98px) {
  .recent__arts__grid .recent__arts__item:nth-child(2) {
    top: 0;
  }
}
.recent__arts__grid .recent__arts__item:nth-child(3) {
  position: relative;
  left: 9rem;
}
@media (max-width: 1199.98px) {
  .recent__arts__grid .recent__arts__item:nth-child(3) {
    left: 2rem;
  }
}
@media (max-width: 767.98px) {
  .recent__arts__grid .recent__arts__item:nth-child(3) {
    left: 0;
  }
}
.recent__arts__grid .recent__arts__item:nth-child(4) {
  position: relative;
  top: 26rem;
}
@media (max-width: 1199.98px) {
  .recent__arts__grid .recent__arts__item:nth-child(4) {
    top: 18rem;
  }
}
@media (max-width: 767.98px) {
  .recent__arts__grid .recent__arts__item:nth-child(4) {
    top: 0;
  }
}
.recent__arts__grid .recent__arts__item .review {
  position: relative;
}
.recent__arts__grid .recent__arts__item .review:after {
  content: "";
  position: absolute;
  width: 90px;
  border-bottom: 2px solid #ffffff;
  bottom: -24px;
}
.recent__arts__grid .recent__arts__item .review ul li {
  position: relative;
}
.recent__arts__grid .recent__arts__item .review ul li:after {
  content: "";
  position: absolute;
  top: 0;
  right: -12px;
  border-right: 2px solid #ffffff;
  height: 100%;
}
.recent__arts__grid .recent__arts__item .review ul li:last-child:after {
  display: none;
}

.art__thumbnail {
  position: relative;
  overflow: hidden;
}
.art__thumbnail:hover .content {
  transform: translateY(0);
}
.art__thumbnail:hover .content .btn {
  color: #ffffff;
  border-color: #ffffff;
}
.art__thumbnail:hover .content h3 {
  color: #ffffff;
}
.art__thumbnail .content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 16px;
  transform: translateY(94px);
  transition: auto;
  transition: all 0.3s ease-out;
}
@media (max-width: 1199.98px) {
  .art__thumbnail .content {
    transform: translateY(118px);
  }
}
@media (max-width: 767.98px) {
  .art__thumbnail .content {
    transform: translateY(110px);
  }
}
.art__thumbnail .content:after {
  content: "";
  position: absolute;
  background: linear-gradient(178deg, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.78) 79%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.art__thumbnail .content h3 {
  transition: all 0.3s ease-in-out;
  color: #000000;
}
.art__thumbnail .content .btn {
  color: #000000;
  padding: 0.75rem 1.25rem;
  border: 2px solid #000000;
}
.art__thumbnail .thumbnail {
  width: 100%;
  height: 511px;
}
@media (max-width: 1199.98px) {
  .art__thumbnail .thumbnail {
    height: 430px;
  }
}
.art__thumbnail .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* My Recent Arts Close*/
/* Footer Section */
footer {
  position: relative;
  z-index: 1;
  padding-top: 7rem;
  padding-bottom: 2rem;
}
@media (max-width: 1199.98px) {
  footer {
    padding-top: 4rem;
  }
}
footer .row {
  align-items: end;
}
footer .footer-logo {
  width: 150px;
}
@media (max-width: 1199.98px) {
  footer .footer-logo {
    width: 100px;
    margin-bottom: 2rem;
  }
}
footer .footer-logo img {
  width: 100%;
}
footer .social__icon ul {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 2rem;
}
footer .social__icon ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #cbcbcb;
  border-radius: 50px;
  padding: 8px;
}
@media (max-width: 1199.98px) {
  footer .social__icon ul li {
    width: 36px;
    height: 36px;
  }
}
footer .social__icon ul li i {
  color: #BABABA;
  font-size: 24px;
}
@media (max-width: 1199.98px) {
  footer .social__icon ul li i {
    font-size: 20px;
  }
}
@media (max-width: 1199.98px) {
  footer .copyright {
    position: absolute;
    bottom: 24px;
  }
}
footer .copyright p {
  font-weight: 600;
  color: #575757;
}
@media (max-width: 1199.98px) {
  footer .footer__menu {
    margin-bottom: 4rem;
  }
}
footer .footer__menu ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
footer .footer__menu ul a {
  color: #ffffff;
}

/* Footer Section Close *//*# sourceMappingURL=main.css.map */