/* general section */
body {
  font-family: "Roboto", sans-serif;
  background-color: #fff;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  display: inline-block;
}
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background-color: #f0f0f2;
}

::-webkit-scrollbar-thumb {
  background-color: #ff003c;
  border-radius: 10px;
}

/* start nav section */
.navbar {
  padding: 20px 10px;
}
.navbar-brand {
  padding-top: 0;
}
.navbar-light .navbar-nav .nav-link {
  color: #212529;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  font-family: "Josefin Sans", sans-serif;
  margin-bottom: 0 !important;
}
.badge-parent {
  position: relative;
}
.badge-child {
  position: absolute;
  top: -3px;
  right: -10px;
  background: #ff003c;
  color: #fff;
  font-size: 10px;
  box-shadow: 0 2px 5px rgb(0 0 0 / 30%);
}

/* start main section */
.main-section {
  background: #f0f0f2;
  overflow: hidden;
}
.main-section img:first-child {
  width: 70%;
}
.main-section-txt {
  justify-content: center;
}
.main-section h1 {
  font-family: "Josefin Sans", sans-serif;
  color: #0b1c39;
  font-size: 96px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 26px;
  animation-name: left-right;
  animation-duration: 1.5s;
  background: #f0f0f2;
}

.sm-txt {
  font-family: "Josefin Sans", sans-serif;
  color: #0b1c39;
  font-size: 52px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 26px;
}
.main-p {
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 39px;
  color: #212025;
  margin-bottom: 60px;
  padding-right: 50px;
  animation-name: left-right;
  animation-duration: 2.5s;
}
.shop-btn {
  animation-name: left-right;
  animation-duration: 2.9s;
}

.watch-img-con img {
  width: 90%;
  animation-name: scale-watch;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.btn-1 {
  font-family: "Josefin Sans", sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 22px 35px;
  display: inline-block;
  cursor: pointer;
  margin-bottom: 0;
  margin: 10px;
  cursor: pointer;
  transition: all 7s;
  position: relative;
  z-index: 1;
  background-color: #212529;
  border: 0;
  overflow: hidden;
  margin: 0;
}

.btn-1::after {
  content: "";
  height: 100%;
  width: 0;
  background: #ff2020;
  inset: 0;
  position: absolute;
  transition: all 1s;
  transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
  z-index: -1;
}
.btn-1:hover::after {
  width: 100%;
}

/* start New Arrivals section */
.New-Arrivals {
  padding-top: 200px;
  padding-bottom: 170px;
  overflow: hidden;
}
.New-Arrivals h2 {
  color: #000;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  font-family: "Josefin Sans", sans-serif;
  margin-bottom: 70px;
}
.New-Arrivals img {
  width: 100%;
}
.card-title {
  color: #444444;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 12px;
  font-family: "Josefin Sans", sans-serif;
}
.img-container {
  overflow: hidden;
}
.New-Arrivals .img-container {
  margin-bottom: 30px;
}
.img-container img {
  width: 100%;
  display: block;
  transition: all 0.4s ease-out 0s;
}
.img-container:hover img {
  transform: scale(1.05);
}
.card-txt {
  font-size: 18px;
  font-weight: 500;
}
/* start gallery section  */
.gallery .row {
  --bs-gutter-x: 0rem !important; /* Your desired gutter size */
}
.gallery-img-container {
  overflow: hidden;
  position: relative;
}
.gallery-img-container img {
  display: block;
  transform: scale(1.03);
  transition: all 0.4s ease-out 0s;
}
.gallery-img-container:hover img {
  transform: scale(1);
}
.gallery-img-container::before {
  content: " ";
  width: 100%;
  height: 100%;
  inset: 0;
  position: absolute;
  opacity: 0;
  background-color: #000;
  z-index: 1;
}

.gallery-img-container:hover::before {
  opacity: 0.3;
}
.card-cover-right {
  padding-right: 24px;
}
.card-cover-bottom {
  margin-top: 37px;
}

/* start popular section */
.Popular-Items {
  padding-top: 200px;
  padding-bottom: 170px;
}
.Popular-Items h2 {
  color: #000;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  font-family: "Josefin Sans", sans-serif;
}
.popular-p {
  font-family: "Roboto", sans-serif;
  color: #777;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 15px;
  font-weight: normal;
}
.popular-img-container {
  overflow: hidden;
  border-bottom: 3px solid #ff2020;
  margin-bottom: 19px;
  position: relative;
}
.popular-img-container img {
  width: 100%;
}
.popular-cover {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}
.heart {
  font-size: 40px;
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: 0;
  transition: 0.7s;
}

.bottom-div {
  width: 100%;
  height: 70px;
  background-color: #ff2020;
  position: absolute;
  bottom: -70px;
  color: #fff;
  opacity: 0;
  transition: all 0.4s ease-out 0s;
  font-family: "Josefin Sans", sans-serif;
}
.popular-card:hover .bottom-div {
  opacity: 1;
  bottom: 0;
  color: #fff;
}
.popular-card:hover .heart {
  opacity: 1;
}

.btn-products {
  padding-top: 70px;
}

.btn-2 {
  background: #ff2020;
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 30px 28px;
  border-radius: 0px;
  display: inline-block;
  line-height: 0;
  cursor: pointer;
  margin-bottom: 0;
  margin: 10px;
  cursor: pointer;
  transition: color 0.4s linear;
  position: relative;
  z-index: 1;
  border: 0;
  overflow: hidden;
  margin: 0;
}

.btn-2::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0%;
  height: 100%;
  background-color: #212529;
  z-index: -1;
  transition: all 1s;
  transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
}
.btn-2:hover::after {
  width: 100%;
}

/* start video section */
.video-section {
  position: relative;
  background-image: url(../img/bg.webp);
  width: 100%;
  height: 700px;
  background-position: center;
  background-size: cover;
}
.video-section::before {
  content: " ";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(2, 5, 12, 0.647);
  transition: all 0.4s ease-out 0s;
  opacity: 90;
}
.video-section:hover::before {
  opacity: 100;
}

.popup-video {
  width: 85px;
  height: 85px;
  display: inline-block;
  line-height: 85px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all 0.4s ease-out 0s;
}

.popup-video span {
  font-size: 50px;
  transition: all 0.4s ease-out 0s;
}
.video-section:hover .popup-video {
  width: 115px;
  height: 115px;
}

.popup-video:hover {
  background-color: #fff;
  color: #ff2020;
  transition: all 0.4s ease-out 0s;
}
.video-next-video {
  width: 34%;
  background-image: url(../img/vidoe_more.png.webp);
  padding: 60px 143px 60px 80px;
  background-position: center;
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.video-next-video h3 {
  padding-top: 15px;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Josefin Sans", sans-serif;
}

.video-next-video span {
  color: #fff;
  display: block;

  font-size: 30px;
}
/* end video section */

/* start Watch of Choice section */
.Watch-Choice {
  padding-top: 200px;
  padding-bottom: 170px;
}

.Watch-Choice img {
  width: 100%;
}
.Watch-Choice-title h2 {
  color: #000;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 40px;
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-family: "Josefin Sans", sans-serif;
}
.watches-container {
  margin-bottom: 40px;
  padding-bottom: 130px;
}
.Watch-Choice-p {
  font-family: "Roboto", sans-serif;
  color: #777;
  font-size: 17px;
  line-height: 30px;
  margin-bottom: 15px;
  font-weight: normal;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  margin-bottom: 50px;
}

/* start footer section */
.up-footer-row {
  background: #ea0000;
}
.footer-div {
  padding: 43px 20px 0 45px;
}
.footer-div h6 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  font-family: "Roboto", sans-serif;
}
.footer-div p {
  font-size: 16px;
  color: #d3d1d1;
  line-height: 30px;
  margin-bottom: 15px;
}
.footer-icon {
  font-size: 40px;
  color: #ffff;
  margin-bottom: 25px;
  display: block;
}
.down-footer-row {
  padding-top: 150px;
  padding-bottom: 120px;
}
.footer-p {
  color: #868c98;
  font-size: 16px;
  margin-bottom: 50px;
  line-height: 1.8;
  font-family: "Roboto", sans-serif;
}
.footer-title {
  color: #000;
  font-size: 20px;
  margin-bottom: 29px;
  font-weight: 500;
  text-transform: capitalize;
  font-family: "Roboto", sans-serif;
}

.footer-list ul {
  list-style: none;
  padding: 0;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  /* padding-inline-start: 40px; */
}
.footer-list li {
  color: #868c98;
  font-weight: 300;
  margin-bottom: 15px;
  transition: all 0.5s ease-out 0s;
  cursor: pointer;
}
.footer-list li:hover {
  transform: translateX(7px);
  color: #ff2020;
}

.last-p-footer p {
  color: #868c98;
  font-weight: 300;
}
.last-p-footer span,
.last-p-footer a {
  color: #ff2020;
  font-weight: 300;
}

.last-p-footer .right i {
  cursor: pointer;
  transition: all 0.5s;
}
.last-p-footer .right i:hover {
  transform: rotateY(180deg);
  color: #ea0000;
}

/* blog page */

.bg {
  min-height: 500px;
  background-image: url(../img/about_hero.png.webp);
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  background-attachment: fixed;
  background-repeat: no-repeat;
  z-index: 1;
}
.blog-body {
  padding-top: 120px;
  padding-bottom: 120px;
}
.left-blog-img {
  position: relative;
}
.left-blog-img img {
  width: 100%;
}
.padg-color {
  width: 90px;
  position: absolute;
  bottom: -15px;
  left: 30px;
  display: block;
  color: #fff;
  background-color: #ea0000;
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.5s;
}
.padg-color:hover {
  background-color: transparent;
}
.padg-color:hover h3 {
  color: #ea0000;
}
.padg-color:hover p {
  color: #ea0000;
}

.padg-color h3 {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  transition: all 0.5s;
}
.padg-color p {
  font-size: 18px;
  transition: all 0.5s;
  color: #fff;
}
.left-blog-content {
  padding: 60px 30px 35px 35px;
  box-shadow: 0px 10px 20px 0px rgb(221 221 221 / 30%);
  width: 100%;
}
.left-blog-content h2 {
  font-family: "Josefin Sans", sans-serif;
  color: #0b1c39;
  font-size: 24px;
  margin-bottom: 15px;
  transition: all 0.3s;
}
.left-blog-content h2:hover {
  color: #ea0000;
}

.left-blog-content p {
  font-family: "Roboto", sans-serif;
  color: #777;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 15px;
  font-weight: normal;
}
.left-blog-footer span {
  font-size: 14px;
  color: #999999;
}
.form-container {
  background: #fbf9ff;
  padding: 30px;
  margin-bottom: 30px;
}
.input-container {
  position: relative;
  margin-bottom: 1rem;
}
.input-container input {
  background-color: #fff;
  width: 100%;
  border: 1px solid #ced4da;
  padding: 0.375rem 0.75rem;
  height: 50px;
  border-color: #f0e9ff;
  font-size: 13px;
  color: #999999;
  padding-left: 20px;
  border-radius: 0;
  border-right: 0;
}
.input-container button {
  padding: 0.475rem 0.75rem;
  position: absolute;
  height: 50px;
  right: 0;
  background: #ff2020;
  border-left: 0;
  border: 1px solid #f0e9ff;
  padding: 4px 15px;
  border-left: 0;
  cursor: pointer;
  color: #fff;
}
.search {
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 550;
  padding: 12px 54px;
  width: 100%;
  color: #fff;
  border: 1px solid #fdcb9e;
  text-transform: uppercase;
  background-color: #ff2020;
  cursor: pointer;
  transition: all 0.5s;
  letter-spacing: 1.2px;
}
.search:hover {
  background-color: #fff;
  border: 1px solid #ff2020;
  color: #ff2020;
}
.category-container {
  background: #fbf9ff;
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
}
.category-container h4 {
  margin-top: 0px;
  font-style: normal;
  font-weight: 500;
}
.category-container ul {
  list-style: none;
  padding-left: 0;
}
.category-list li {
  border-bottom: 1px solid #f0e9ff;
  transition: all 0.3s ease;
  padding: 14px 0;
  font-size: 16px;
  line-height: 20px;
  color: #888888;
}

.recent-posts h3 {
  font-size: 20px;
  margin-bottom: 40px;
  font-weight: 500;
  text-align: left;
}
.recent-posts h3:hover {
  color: #ff2020;
}
.posts-txt {
  align-self: center;
  padding-left: 20px;
}
.posts-txt h6 {
  transition: all 0.5s;
}
.posts-txt h6:hover {
  color: #ff2020;
}

.posts-txt p {
  font-size: 14px;
  line-height: 21px;
  font-family: "Roboto", sans-serif;
  color: #777;
}
.tag-clouds h4,
.instgram-feed h4,
.Newsletter h4 {
  font-size: 20px;
  margin-bottom: 40px;
}
.tag-clouds li {
  display: inline-block;
  display: inline-block;
  border: 1px solid #eeeeee;
  background: #fff;
  padding: 4px 20px;
  margin-bottom: 8px;
  margin-right: 3px;
  transition: all 0.3s ease 0s;
  color: #888888;
  font-size: 13px;
}
.tag-clouds li:hover {
  background-color: #ff2020;
  color: #fff;
}
.Newsletter .form-container {
  padding: 0;
}

/* shop page */

.watch-shop-body {
  padding-top: 190px;
  padding-bottom: 135px;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: all 0.5s;
  margin-bottom: 40px;
  padding-bottom: 10px;
  color: #1b1b1b;
  font-size: 16px;
}
.nav-link:hover {
  color: #000;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  border-bottom: 1px solid #ea0000 !important;
  background-color: transparent !important;
  color: #000 !important;
  border-radius: 0;
}
/* about us page */
.about-us {
  padding-top: 200px;
  padding-bottom: 170px;
}
.about-us h4 {
  font-size: 30px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000a2d;
  display: inline-block;
  position: relative;
  padding-left: 68px;
}
.about-us h4::before {
  position: absolute;
  content: "";
  width: 54px;
  height: 2px;
  background: #eb566c;
  left: 0px;
  top: 50%;
}
.about-us p {
  color: #464d65;
  font-size: 14px;
  line-height: 30px;
  margin-bottom: 15px;
}
/* contact page */
.get-in-touch {
  margin-bottom: 80px;
}
.get-in-touch h2 {
  color: #000;
  font-family: "Josefin Sans", sans-serif;
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 20px;
}
.contact-bg {
  background-color: transparent;
}
.map {
  padding: 130px 0 100px;
}
.input input {
  width: 98%;
  color: #495057;
  border: 1px solid #e5e6e9;
  height: 48px;
  padding-left: 18px;
  font-size: 13px;
}
textarea {
  border: 1px solid #e5e6e9;
}
.contact-icon i {
  color: #8f9195;
  font-size: 27px;
}
.contact-txt h3 {
  font-size: 16px;
  color: #2a2a2a;
  font-weight: 500;
  font-family: "Josefin Sans", sans-serif;
}
.contact-txt p {
  color: #8a8a8a;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 15px;
  padding-top: 0;
}
.send-btn button {
  border-color: #fdcb9e;
  padding: 12px 25px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
  border: 1px solid #fdcb9e;
  background-color: #ea0000;
  cursor: pointer;
  color: #fff;
  margin-bottom: 50px;
  transition: all 0.5s;
}
.send-btn button:hover {
  transform: scale(1.01);
  color: #000;
}
@media only screen and (max-width: 976px) {
  .main-section {
    height: auto;
  }
  .watch-img-con img {
    width: 80%;
  }
  .watch-choice-container-img img {
    width: 100%;
  }
  .Watch-Choice-title h2 {
    font-size: 29px;
  }
  .card-cover-top img,
  .card-cover-bottom img {
    width: 100%;
  }

  .card-cover-top,
  .card-cover-bottom {
    padding-right: 24px;
    padding-top: 24px;
  }
  .card-cover-top,
  .card-cover-bottom {
    /* margin-right: 24px; */
    margin-top: 24px;
  }
}

@media screen and (max-width: 768px) {
  .main-section h1 {
    font-size: 50px !important;
    margin-bottom: 22px;
  }

  .main-p {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .New-Arrivals {
    padding-top: 100px;
    padding-bottom: 70px;
    overflow: hidden;
  }
  .Popular-Items h2,
  .New-Arrivals h2 {
    font-size: 33px;
  }
  .Watch-Choice-title h2 {
    font-size: 29px;
  }
  .watch-choice-container-img {
    text-align: center;
  }
  .watch-choice-container-img img {
    width: 80%;
  }
  .Watch-Choice-title {
    padding-left: 0 !important;
  }
  .video-next-video {
    width: 60%;
    padding: 11px 49px 14px 9px;
  }
  .btn-1 {
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 602px) {
  .watch-img-con img {
    display: none !important;
  }
  .watch-img-con {
    background-image: url(../img/watch.png.webp);
    background-position: center left;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .main-section h1 {
    font-size: 32px !important;
    margin-bottom: 20px;
  }
  .main-p {
    padding-right: 0px;
  }
  .nav-link {
    font-size: 14px;
  }
  .btn-1 {
    font-size: 15px;

    padding: 14px 18px;
  }
  .Popular-Items h2,
  .New-Arrivals h2 {
    font-size: 26px;
  }
  /* .img-container img {
    width: 90%;
  } */
  .card-cover-right {
    /* padding-right: 24px; */
    padding: 0 12px !important;
  }
  .My-card {
    padding: 0 !important;
    margin: 0 auto;
  }
  .My-card img {
    height: 100%;
    /* width: 95%; */
    margin: 0 2% 0 6%;
  }
  .card-cover-top,
  .card-cover-bottom {
    padding: 4px 12px !important;
  }
  .man-watch {
    margin-top: 24px;
  }
  .man-watch img {
    width: 100%;
  }
  .left {
    text-align: center;
  }
  .padg-color {
    width: 70px;
    bottom: -25px;
    padding: 6px 12px;
  }
}
