@import url('https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Spartan', sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Global Styles */

h1 {
  font-size: 50px;
  line-height: 64px;
  color: #222;
}

h2 {
  font-size: 46px;
  line-height: 54px;
  color: #222;
}

h4 {
  font-size: 20px;
  color: #222;
}

h6 {
  font-weight: 700;
  font-size: 12px;
}

p {
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px 0;
}

.section-p1 {
  padding: 40px 80px;
}

.section-m1 {
  margin: 40px 0;
}

body {
  width: 100%;
}

button.normal {
  text-decoration: none;

  background-color: #ffffff;
  font-size: 14px;
  color: #333333;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 3px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

/* ////////////////////////////////////// for section transform animation/////////////////////////////////////// */

.section--hider {
  transition: all 1s;
}

.section--anime {
  transform: translateY(8rem);
  opacity: 0;
}

/* HEADER */
#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 80px;
  background: #e3e6f3;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  position: relative;
}

#navbar {
  display: flex;
  justify-content: center;
  align-items: center;
}

#navbar li {
  list-style: none;
  padding: 0 20px;
  position: relative;
}

#navbar li a {
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
  color: #088178;
}

#navbar li a.active::after,
#navbar li a:hover::after {
  content: '';
  width: 30%;
  height: 2px;
  background: #088178;
  position: absolute;
  bottom: -4px;
  left: 20px;
}

#mobile {
  display: none;
  align-items: center;
}

#close {
  display: none;
}

/* ///////////////// Hero Section//////////////////// */

#hero {
  background-image: url('img/hero4.png');
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  padding: 0px 80px;
  height: 90vh;
  width: 100%;
  background-size: cover;
  background-position: top 25% right 0;
}

#hero h4 {
  padding: 15px 0;
}

#hero h1 {
  color: #088178;
}

#hero button {
  background-image: url('img/button.png');
  border: none;
  background-color: transparent;
  background-size: cover;
  padding: 14px 80px 14px 65px;
  font-size: 15px;
  font-weight: 700;
  color: #088178;
  cursor: pointer;
  display: block;
}

#feature {
  padding: 40px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

#feature .fe-box {
  display: flex;
  flex-direction: column;
  width: 170px;
  border-radius: 4px;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

#feature .fe-box:hover {
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}

#feature .fe-box img {
  padding: 20px 20px 0;
  width: 100%;
  margin-bottom: 10px;
}

#feature .fe-box h6 {
  padding: 10px 10px;

  margin: 20px 0;
  color: #088178;
  border-radius: 3px;
  font-weight: 700;

  background-color: #fddde4;
}

/* Giving colors to each of the H6 */

#feature .fe-box.fe-box-2 h6 {
  background-color: #cdebbc;
}

#feature .fe-box.fe-box-3 h6 {
  background-color: #d1e8f2;
}
#feature .fe-box.fe-box-4 h6 {
  background-color: #ffe2e1;
}
#feature .fe-box.fe-box-5 h6 {
  background-color: #f6dbf6;
}
#feature .fe-box.fe-box-6 h6 {
  background-color: #cdd4f8;
}

/* //////////// products ///////////////////////////////////// */

#product1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}

#product1 .pro-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#product1 .pro-container .pro {
  width: 23%;
  display: flex;
  flex-direction: column;
  min-width: 250px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 10px 10px;
  border-radius: 25px;
  position: relative;
  box-shadow: 0 8px 24px rgba(180, 180, 180, 0.29);
  transition: scale 1s, opacity 1s, box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  margin: 15px 0;
  z-index: 0;
}

.product--hidden {
  scale: 0.5;
  opacity: 0;
  cursor: pointer;
}

#product1 .pro-container .pro:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  transform: translateY(-3px);
}

#product1 .pro-container .pro img {
  border-radius: 20px;
  width: 100%;
}

#product1 .pro-container .pro .des {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5px;
}
#product1 .pro-container .pro .des h5 {
  padding-top: 7px;
  color: #1a1a1a;
  font-size: 14px;
}

#product1 .pro-container .pro span {
  font-size: 13px;
  color: #465b52;
  margin-top: 20px;
}

#product1 .pro-container .pro .star i {
  font-size: 13px;
  color: goldenrod;
}

#product1 .pro-container .pro h4 {
  font-size: 15px;
  color: #088178;
  padding-top: 7px;
}

#product1 .pro-container .pro a {
  background: rgb(250, 240, 240);
  width: 45px;
  height: 45px;
  color: #088178;
  align-items: center;
  justify-content: center;
  display: flex;
  border-radius: 50%;
  position: absolute;
  right: 10px;
  bottom: 10px;
  transition: 0.3s ease;
}

#product1 .pro-container .pro a:hover {
  background: #088178;
  color: #fdfdfd;
  font-weight: 700;
}
#product1 .pro-container .pro a i {
  font-weight: 700;
}

/* //////////// repaire ///////////////////////////////// */

#banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 60px 0;
  background-image: url('img/banner/b2.jpg');
  background-size: cover;
  background-position: center;
  height: 40vh;
  margin-bottom: 50px;
}

#banner p {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0;
}
#banner h4 {
  color: #ffffff;
  font-size: 25px;
}

#banner h4 span {
  color: rgb(230, 11, 11);
}

#banner .normal:hover {
  background-color: rgb(230, 11, 11);
  color: #ffffff;
  transform: translateY(1px);
}

/* /////////////////// sm- banner///////////////////// */
#sm-banner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#sm-banner .banner-box {
  width: 48%;
  background-size: cover;
  height: 50vh;
  padding: 25px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 15px 0;
  background-position: center;
  background-size: cover;
}

#sm-banner .banner-box p {
  color: #ffffff;
}
#sm-banner .banner-box h4 {
  color: #ffffff;
  font-weight: 800;
  font-size: 25px;
}

#sm-banner .banner-box p2 {
  color: #ffffff;
  margin: 15px 0 20px 0;
  font-size: 14px;
}

#sm-banner .banner-box button.normal:hover {
  background-color: #088178;
  color: #ffffff;
}

#sm-banner .banner-box.banner-box-1 {
  background-image: url('img/banner/b17.jpg');
}

#sm-banner .banner-box.banner-box-2 {
  background-image: url('img/banner/b10.jpg');
}

#sm-banner .banner-boxes-small {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #088178;
  padding: 0 20px;
}

#sm-banner .banner-box-small {
  height: 32vh;
  width: auto;
  min-width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 25px 25px;
  background-size: cover;
  gap: 15px;
  margin: 15px 0;
  background-position: center;
  background-size: cover;
}

#sm-banner .banner-box-small h4 {
  color: #ffffff;
  font-weight: 800;
}

#sm-banner .banner-box-small p {
  margin: 0 0;
  color: rgb(230, 11, 11);
  font-size: 15px;
  font-weight: 700;
}

#sm-banner .banner-box-small.banner-box-3 {
  background-image: url('img/banner/b7.jpg');
}

#sm-banner .banner-box-small.banner-box-4 {
  background-image: url('img/banner/b4.jpg');
}

#sm-banner .banner-box-small.banner-box-5 {
  background-image: url('img/banner/b18.jpg');
}

/* ////////////////////////// NEWS -Letter /////////////////////////////// */

#news-letter {
  background-image: url('img/banner/b14.png');
  background-size: auto;
  background-position: center;
  background-color: #041e42;
  height: 25vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#news-letter .news-text h4 {
  color: #ffffff;
  font-size: 25px;
}
#news-letter .news-text p {
  color: #818ea0;
  font-size: 14px;
  font-weight: 600;
}

#news-letter .news-text p span {
  color: goldenrod;
}

#news-letter .sign-up {
  background-color: #ffffff;

  border-radius: 3px;
}

#news-letter .sign-up input {
  background: transparent;
  height: auto;
  padding: 5px 5px;
  border: none;
  width: 300px;

  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
  font-weight: 400;
  padding: 0 20px;
}

#news-letter .sign-up input:focus {
  outline: none;
  border: none;
}

#news-letter .sign-up button {
  background-color: #088178;
  color: white;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

#news-letter .sign-up button:hover {
  color: #1a1a1a;
}

/* /////////////////////// footer- 1 //////////////////////////// */

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}

footer .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

footer a {
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 13px;
  color: #222;
}

footer .logo {
  margin-bottom: 30px;
}
footer h4 {
  font-size: 14px;
  margin-bottom: 20px;
}

footer p {
  font-size: 13px;
  margin: 0 0 8px 0;
}

footer .follow h4 {
  font-size: 14px;
  margin-top: 12px;
}

footer .icon {
  display: flex;
  justify-content: space-between;
  font-size: 19px;
  gap: 12px;
  cursor: pointer;
}
footer .icon i {
  transition: all 0.2s ease;
}
footer .icon i:hover {
  color: #088178;
  scale: 1.2;
  transform: translateY(-2px);
}

footer .col .row img {
  border: 1px solid #088178;
  border-radius: 5px;
  margin: 15px 0;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

footer .col .row img:hover {
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.2);
}
footer .terms {
  text-align: center;
  width: 100%;
}

footer .install p {
  margin: 0 0 0 0;
}
footer .col .payment {
  margin-top: 15px;
}

/* ////////////////-----------Shop-page------------/////////// */

#shop-header {
  background-image: url('img/banner/b1.jpg');
  height: 40vh;
  width: 100%;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;

  text-align: center;
  padding: 14px;
}

#shop-header h2,
#shop-header p {
  color: #fff;
}

/* ///////////////////pagination/////////////////////// */

#pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

#pagination a {
  background-color: #088178;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 3px;
  border: none;
  transition: 0.3s ease;
}
#pagination a i {
  font-weight: 500;
  color: #fff;
  font-size: 16px;
}

/* ////////////////////////Sproducts -Images/////////////////////// */
#prodetails {
  display: flex;
  margin-top: 20px;
}

#prodetails .single-pro-image {
  width: 40%;
  margin-right: 50px;
}

#prodetails .single-pro-image .small-img-group {
  display: flex;
  gap: 10px;
}

.small-img-col {
  cursor: pointer;
}

#prodetails .single-pro-details {
  width: 50%;
  padding-top: 20px;
}

#prodetails .single-pro-details h4 {
  padding: 40px 0 20px 0;
}

#prodetails .single-pro-details h2 {
  font-size: 24px;
}

#prodetails .single-pro-details select {
  padding: 5px 10px;
  display: block;
  margin-bottom: 10px;
}

#prodetails .single-pro-details input {
  width: 30px;
  height: 30px;
}

#prodetails .single-pro-details input:focus {
  outline: none;
}

#prodetails .single-pro-details button {
  background-color: #088178;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
}

#prodetails .single-pro-details h3 {
  margin-top: 30px;
  color: #1a1a1a;
}

#prodetails .single-pro-details p {
  font-size: 15px;
  line-height: 25px;
  word-spacing: 5px;
  letter-spacing: 1px;
}

/* ////////////////////////////////------------BLOG-----------//////////////// */

#blog-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 40vh;
  background-image: url('img/banner/b19.jpg');
  background-size: cover;
}

#blog-header h2 {
  color: #fff;
}
#blog-header p {
  color: #fff;
  font-size: 14px;
}

#blog-container .container {
  display: flex;
  padding: 40px;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

#blog-container .container .blog-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  padding-top: 20px;
}

#blog-container .container .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateY(-17px);
}

#blog-container .container .blog-image h2 {
  color: rgb(182, 182, 182);
  font-size: 60px;
}

#blog-container .container .blog-info {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding-top: 50px;
  width: 100%;
}

#blog-container .container .blog-info h3 {
  font-size: 19px;
}
.container .blog-info p {
  font-size: 14px;
  line-height: 20px;
  word-spacing: 2px;
  letter-spacing: 1px;
  width: 100%;
}
.container .blog-info h4 {
  font-size: 10px;
  cursor: pointer;
  position: relative;
  transition: 0.2s ease;
}

.container .blog-info h4::after {
  content: '';
  width: 50px;
  height: 1px;
  top: 5px;
  right: -55px;
  position: absolute;
  background: #000;
}

.container .blog-info h4:hover {
  color: #088178;
}

/* ///////////////////////////////////-----------ABOUT Us----------//////////////////////////////////  */

#about-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px;
  background-image: url('img/about/banner.png');
  background-position: center -55px;
  background-size: cover;
}

#about-header h2 {
  color: #ffffff;
  font-size: 45px;
}

#about-header p {
  color: #f1f1f1;
  margin-bottom: 0;
}

#aboutUs {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

#aboutUs .about-Us-img {
  width: 50%;
}

#aboutUs .about-Us-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#aboutUs .about-Us-info {
  width: 50%;
}

#aboutUs .about-Us-info h2 {
  font-size: 45px;
  color: #222;
}

#aboutUs .about-Us-info h2 span {
  color: #088178;
  font-size: 55px;
}

#aboutUs .about-Us-info p {
  font-size: 16px;
  font-weight: 540;
  word-spacing: 2px;
  letter-spacing: 2px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

#aboutUs .about-Us-info .lux-marquee {
  background: #0e0e0e;
  color: #f5f5f5;
  padding: 20px 0;
  font-family: 'Cinzel', serif;
  letter-spacing: 2px;
  width: 100%;
  text-align: center;
}

#aboutUs .about-Us-info .lux-marquee span {
  background: #088178;
  color: #ffffff;
  font-size: 14px;
  padding: 2px;
}

/* //////////////////////////////////about-video////////////////////// */

#about-app {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

#about-app h2 {
  font-size: 40px;
  color: #222;
}

#about-app h2 a {
  color: #7114a7;
}
#about-app .about-video {
  width: 65%;
  /* border-radius: 20px;
  overflow: hidden; */
}

#about-app .about-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* ///////////////////////////----Contact-page------///////////// */

#contact-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px;
  background-image: url('img/about/banner.png');
  background-position: center -55px;
  background-size: cover;
}

#contact-header h2 {
  color: #ffffff;
  font-size: 45px;
}

#contact-header p {
  color: #f1f1f1;
  margin-bottom: 0;
}

#contact-info {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
#contact-info .contact-info-touch {
  width: 40%;
}
#contact-info .contact-info-touch span {
  font-size: 12px;
  font-weight: 600;
}

#contact-info .contact-info-touch h4 {
  font-size: 25px;
  margin-bottom: 15px;
}
#contact-info .contact-info-touch h6 {
  font-size: 13px;
  margin-bottom: 15px;
}

#contact-info .address {
  display: flex;
  align-items: center;

  text-align: center;
  gap: 20px;
}
#contact-info .address i {
  transform: translateY(-4px);
}

#contact-info .contact-info-touch p {
  font-size: 14px;
  text-align: left;
}

#contact-info .google-map {
  width: 50%;
}

#contact-info .map {
  border-radius: 10px;
  overflow: hidden;
}

/* /////////////////////////contact-message///////////////////////// */

#contact-mesage {
  margin: 20px;
  border: 1px solid #222;
  display: flex;
  padding: 40px;
}

#contact-mesage .message {
  width: 60%;
  margin: 40px;
}

#contact-mesage .message p {
  font-size: 14px;
}

#contact-mesage .message h4 {
  font-size: 25px;
  margin-bottom: 20px;
}
#contact-mesage .message .message-info {
  width: 100%;
  padding: 10px 15px;
  font-size: 13px;
  margin-bottom: 15px;
  border: 1px solid #465b52;
}

#contact-mesage .message .message-info:focus {
  outline: none;
}

#contact-mesage .message .your-message {
  font-size: 13px;
  margin-bottom: 15px;
  padding: 10px 15px;
  width: 100%;
  height: 150px;
  border: 1px solid #465b52;
}
#contact-mesage .message .your-message:focus {
  outline: none;
}

#contact-mesage .message button {
  background: #088178;
  color: #ffffff;
  padding: 10px 25px;
  font-size: 14px;
}

#contact-mesage .employee {
  margin: 40px 40px 40px 40px;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
#contact-mesage .employee .people {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 15px;
  margin-bottom: 20px;
}

#contact-mesage .employee .people img {
  width: 18%;
  border: 1px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0px 0px 20px -8px #060808;
}
#contact-mesage .employee .people h4 {
  font-size: 18px;
}

#contact-mesage .employee .people p {
  font-size: 14px;
  margin: 5px 5px 5px 0px;
}

/* ///////////////////////////------cart-page-----////////////////////// */

#cart-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px;
  background-image: url('img/about/banner.png');
  background-position: center -55px;
  background-size: cover;
}

#cart-header h2 {
  color: #ffffff;
  font-size: 45px;
}

#cart-header p {
  color: #f1f1f1;
  margin-bottom: 0;
}
#cart {
  overflow-x: auto;
}
#cart table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  white-space: nowrap;
}

#cart table img {
  width: 70px;
}

#cart table td {
  text-align: center;
}

#cart table td:nth-child(1) {
  width: 100px;
}
#cart table td:nth-child(2) {
  width: 150px;
}

#cart table td:nth-child(3) {
  width: 250px;
}

#cart table td:nth-child(4),
#cart table td:nth-child(5),
#cart table td:nth-child(6) {
  width: 150px;
}

#cart table td:nth-child(5) input {
  width: 70px;
  padding: 10px 5px 10px 15px;
}

#cart thead {
  border: 1px solid #e2e9e1;
  border-left: none;
  border-right: none;
}

#cart thead td {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  padding: 18px 0;
}

#cart tbody td {
  padding-top: 15px;
  font-size: 13px;
}

/* ////////////////////////cart-section//////////////////////////////// */

#sssss {
  display: flex;
}
#sssss .coupon {
  width: 50%;
}

#sssss .coupon h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

#sssss .coupon .coupon-apply {
  width: 100%;
}

#sssss .coupon .coupon-apply input {
  width: 60%;
  padding: 10px 15px;
  font-size: 13px;
  border: 1px solid #e2e9e1;
  border-radius: 2px;
}

#sssss .coupon .coupon-apply input:focus {
  outline: none;
}

#sssss .coupon .coupon-apply button {
  background: #088178;
  color: #fff;
  font-size: 13px;
  font-weight: 500s;
  margin-left: 10px;
}

#sssss .cart-total {
  border: 1px solid #e2e9e1;
  padding: 30px;
  width: 50%;
}

#sssss .cart-total h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

#sssss .cart-total table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  white-space: nowrap;
}

#sssss .cart-total table td {
  border: 1px solid #e2e9e1;
  font-size: 12px;
  padding: 10px;
}
#sssss .cart-total button {
  background: #088178;
  color: #fff;
  font-size: 13px;
  font-weight: 500s;
  margin-top: 20px;
}

/* /////////////////////////// media querry adder///////////// */

/* ///////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////
//////////////////////MEDIA QUERY////////////////////////// */

@media (max-width: 1024px) {
  .section-p1 {
    padding: 40px 40px;
  }

  #navbar {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: fixed;
    top: 0;
    right: -999px;
    height: 100vh;
    width: 300px;
    background-color: #e3e6f3;
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
    padding: 80px 0 0 10px;
    transition: 0.3s ease-out;
    z-index: 1000;
  }

  #navbar li {
    margin-bottom: 20px;
  }

  #mobile {
    display: flex;
  }
  #mobile i {
    color: #1a1a1a;
    font-size: 24px;
    padding-left: 20px;
  }

  #close {
    display: block;
    position: absolute;
    top: 30px;
    left: 30px;
  }
  #close i {
    font-size: 24px;
    color: #222;
  }

  #lg-bag {
    display: none;
  }

  /* /////////////// Hero //////////////////////////////////// */

  #hero {
    padding: 40px 40px;
    height: 70vh;
    background-position: top 35% right 30%;
  }

  #feature {
    padding: 40px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    /* flex-wrap: wrap; */
  }

  /* ///////////////////// produc 1 /////////////////////// */

  #product1 .pro-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px 0;
    gap: 40px;
  }
  #product1 .pro-container .pro {
    margin: 0px;
  }

  /* //////////////////banner /////////////////////////// */

  #banner {
    height: 25vh;
  }

  /* ////////////////////// sm-banner //////////////////////////////////// */
  #sm-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #sm-banner .banner-box {
    width: 100%;
    height: 25vh;
  }

  #sm-banner .banner-box-1 {
    background-position: 50% 15%;
  }

  #sm-banner .banner-boxes-small {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
  }

  #sm-banner .banner-box-small {
    height: 20vh;
    width: 30%;
  }

  /* /////////////////////// news-letter///////////////////// */

  #news-letter {
    height: auto;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* /////////////////////////// ------BLOG PAGE-----//////////// */

  #blog-header {
    height: 20vh;
  }
  #blog-container .container {
    padding: 0px;
    padding-top: 40px;
    gap: 20px;
  }

  #blog-container .container .blog-image {
    width: 80%;
    height: 280px;
  }
  #blog-container .container .blog-info {
    width: 80%;
  }

  /* ///////////////////////////--------Contact----page-----/////////////// */

  #contact-info .contact-info-touch {
    width: 50%;
  }

  #contact-mesage {
    padding: 0px;
  }
  #contact-mesage .message {
    width: 60%;
    margin: 40px;
    margin-right: 20px;
  }

  #contact-mesage .employee {
    margin: 55px 40px 40px 20px;
  }
}
/* ////////////////////For Mobile version ////////////////////////
  ///////////////////////////////////////////////////////////////
  ///////////////////////////////////////////////////////// */

@media (max-width: 477px) {
  .section-p1 {
    padding: 40px 30px;
  }

  #header {
    padding: 10px 30px;
  }

  /* ////////////////////hero /////////////////////////// */

  #hero {
    padding: 0px 20px;

    background-position: 60%;
  }

  #hero p {
    color: #ffffff;
    font-weight: 700;
    max-width: 70%;
  }

  #hero h2 {
    font-size: 30px;
    line-height: 54px;
    color: #222;
  }

  #hero h1 {
    font-size: 40px;
    line-height: 64px;
  }

  /* //////////////// feature////////////////////// */

  #feature {
    padding: 40px 25px;
  }

  #feature .fe-box {
    width: 140px;
  }

  /* //////////////////////featured product////////////////*/

  #product1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0px 0;
  }

  #product1 h2 {
    font-size: 30px;
    line-height: 54px;
    color: #222;
  }

  #product1 p {
    font-size: 16px;
    color: #465b52;
    /* margin: 15px 0 20px 0; */

    text-align: center;
  }

  #product1 .pro-container .pro {
    min-width: 100%;
    margin: 0px 0;
  }

  /* /////////////////////////banner////////////////// */

  #banner {
    height: auto;
    margin-bottom: 0px;
    height: 30vh;
  }

  #banner h4 {
    color: #ffffff;
    font-size: 25px;
    text-align: center;
  }

  /* ////////////////////sm benner-box/////////////////// */
  #sm-banner .banner-box {
    width: 100%;
    height: auto;
  }
  #sm-banner .banner-boxes-small {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: #088178;
    padding: 0 20px;
  }
  #sm-banner .banner-box-small {
    height: 20vh;
    width: 100%;
    gap: 10px;
    padding: 15px 15px;
  }
  #sm-banner .banner-box-small h4 {
    color: #ffffff;
    font-weight: 800;
    font-size: 15px;
  }
  #sm-banner .banner-box-small p {
    font-size: 15px;
  }

  /* //////////////////////News-letter////////////// */

  #news-letter {
    max-height: 30vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #news-letter .news-text h4 {
    color: #ffffff;
    font-size: 20px;
  }

  #news-letter .sign-up input {
    width: 180px;
  }

  /* ////////////////////footer////////////////////////// */
  footer .col .row img {
    margin: 10px 0;
  }
  footer p {
    font-size: 13px;
    margin: 0 0 8px 0;
    text-align: start;
  }

  /* ///////////////////single----- product/////////////////////// */

  #prodetails {
    flex-direction: column;

    justify-content: center;
    align-items: center;
  }

  #prodetails .single-pro-image {
    width: 100%;
    margin-right: 0px;
  }

  #prodetails .single-pro-details {
    width: 100%;
    padding-top: 20px;
  }

  /* /////////////////-------BLOG-------///////////////////////////// */

  #blog-container .container {
    flex-direction: column;
    padding: 0px;
    gap: 0px;
    margin-bottom: 50px;
  }

  #blog-container .container .blog-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    padding-top: 20px;
  }
  #blog-container .container .blog-info {
    padding-top: 10px;
    text-align: center;
    width: 100%;
    align-items: center;
  }

  /* /////////////////////////////------about-page-----------///////////// */

  #about-header {
    padding: 25px;
  }

  #aboutUs {
    flex-direction: column;
  }

  #aboutUs .about-Us-img {
    width: 100%;
  }
  #aboutUs .about-Us-info {
    width: 100%;
  }

  #aboutUs .about-Us-info h2 {
    font-size: 40px;

    text-align: center;
  }

  #about-app h2 {
    text-align: center;
  }

  #about-app .about-video {
    width: 100%;
  }

  /* /////////////////////////--------contact-Page----------////////////// */
  #contact-header {
    padding: 30px;
  }
  #contact-info {
    flex-direction: column;
  }

  #contact-info .contact-info-touch {
    width: 100%;
  }

  #contact-info .map {
    width: 100%;
  }

  #contact-mesage {
    padding: 20px;
    flex-direction: column;
  }

  #contact-mesage .message {
    width: 100%;
    margin: 0px;
  }

  #contact-mesage .message .your-message {
    height: 100px;
  }

  #contact-mesage .employee {
    margin: 50px 0px 0px 0px;
  }

  /* ////////////////////////////////------cart---page------////////////// */

  #sssss {
    flex-direction: column;
  }

  #sssss .coupon {
    width: 100%;
    margin-bottom: 50px;
    text-align: center;
  }

  #sssss .cart-total {
    width: 100%;
  }

  #sssss .cart-total h4 {
    text-align: center;
  }
  #sssss .cart-total button {
    width: 100%;
  }
}
