/*  CSS INDEX
    ===================
    01. Theme default CSS
	  02. Header
    03. Hero
	  04. Footer

    COLOR
    =====================
    BLUE #171c4a
    rgba(23,28,74,255)
    
    RED #ed1f24
    rgba(237,31,36,255)
-----------------------------------------------------------------------------------*/
/*===========================
    1. COMMON css 
===========================*/
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800");
body {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #777; 
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; 
}

img {
  max-width: 100%; 
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none; 
}

a:focus,
a:hover {
  text-decoration: none; 
}

i,
span,
a {
  display: inline-block; 
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #333;
  margin: 0px; 
}

h1 {
  font-size: 92px; 
}

h2 {
  font-size: 35px; 
}

h3 {
  font-size: 32px; 
}

h4 {
  font-size: 24px; 
}

h5 {
  font-size: 20px; 
}

h6 {
  font-size: 16px; 
}

ul, ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none; 
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #777;
  margin: 0px; 
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%; 
}

/*===== All Section Title Style =====*/
.section-title h5 {
  position: relative;
  font-size: 18px;
  color: #ed1f24;
  font-weight: 500;
  padding-left: 110px; 
}
  .section-title h5::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 100px;
    height: 1px;
    background-color: #fe7865;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); 
  }

.section-title h1{
  color: #000;
  position: relative;
  font-size: 52px;
  margin: 50px 0;
}

.section-title h1::before {
  position: absolute;
  content: '';
  display: block;
  top: 50%;
  left: 10%;
  width: 300px;
  height: 8px;
  background-color: #000;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); 
}

.section-title h1::after {
  position: absolute;
  content: '';
  display: block;
  top: 50%;
  left: 70%;
  width: 300px;
  height: 8px;
  background-color: #000;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); 
}

.section-title .title{
  font-size: 52px; 
}

  @media (max-width: 767px) {
    .section-title .title {
      font-size: 26px; 
    } 
  }
/*===========================
    2.HEADER css 
===========================*/
#top-nav{
  background-color: #ed1f24;
}

#top-nav .navbar-logo img{
  width: 60px;
  height: 60px;
}

#top-nav .form-inline input{
  border: none;
  border-radius: 0%;
}

#top-nav .form-inline button{
  border: none;
  border-radius: 0%;
  background-color: #fff;
}

#top-nav .form-inline .btn i{
  color: #171c4a;
  padding: 1px 0;
}

#top-nav .navbar-nav a{
  display: flex;
  justify-content: space-between;
  margin-left: 30px;
}

#top-nav .navbar-nav i{
  color: #fff;
  font-size: 30px;
}

#bottom-nav{
  background-color: #fff;
}

#bottom-nav ul li{
  color: #000;
  padding-left: 30px;
}

#bottom-nav ul .nav-item i{
  margin: 0px 0 0 5px;
}

#bottom-nav ul li:nth-child(5){
  padding-right: 0;
}

#bottom-nav .navbar-collapse{
  text-align: right;
}

/*======================================
      CAROUSEL BANNER SLIDER
======================================*/

#carousel .carousel-indicators li{
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #ed1f24 !important;
}

#carousel .carousel-control-prev span i{
  color: #ed1f24;
  font-weight: bold;
  font-size: 40px;
  z-index: 1;
}

#carousel .carousel-control-next span i{
  color: #ed1f24;
  font-weight: bold;
  font-size: 40px;
  z-index: 1;
}

#carousel .container-fluid{
  margin: 0;
  padding: 0;
}

#carouselExampleIndicators .carousel-item img{
  width: 100%;
  height: auto;
}

#carousel .carousel-caption{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-110%, -50%);
}

#carousel .carousel-caption h2{
  text-shadow: #fff 5px 5px 8px;
  text-align: left;
  font-size: 60px;
  color: #ed1f24;
  line-height: 1;
  margin-bottom: 0;
}

#carousel .carousel-caption span{
  background-color: rgba(255, 255, 255, 0.473);
  border-radius: 50px;
  padding-left: 20px;
  color: #ed1f24;
  display: flex;
  align-items: flex-start;
  font-size: 25px;
}

#carousel .carousel-caption a button{
  display: flex;
  align-items: flex-start;
  padding: 5px 7px;
  background-color: #ed1f24;
  color: #fff;
  margin: 10px 30em 0 0;
  font-size: 14px;
}

#carousel .carousel-inner{
  height: 80vh;
}

/*=================== ESSENTIALS ====================*/
#essentials{
  margin: 6em 0;
}

#essentials img{
  width: 100%;
  height: auto;
}

#essentials button{
  display: block;
  color: #fff;
  margin: 30px auto 0 auto;
  background-color: #ed1f24;
}

#essentials .btn i{
  padding-right: 10px;
}
/*=========================== PRODUCT CARD ===========================*/
@media (max-width: 767px) {
  .product-area {
    padding-top: 50px;
    padding-bottom: 80px; 
  } 
}

#product .side-image{
  position: relative;
}

#product .side-image img{
  opacity: .8;
  width: 100%;
  height: auto;
  padding: 30px;
}

#product .side-image h3{
  position: absolute;
  color: #171c4a;
  text-shadow: #fff 2px 2px 8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
}

#product1 .side-image{
  position: relative;
}

#product1 .side-image img{
  opacity: .8;
  width: 100%;
  height: auto;
  padding: 30px;
}

#product1 .side-image h3{
  position: absolute;
  color: #171c4a;
  text-shadow: #fff 2px 2px 8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
}

#product2 .side-image{
  position: relative;
}

#product2 .side-image img{
  opacity: .8;
  width: 100%;
  height: auto;
  padding: 30px;
}

#product2 .side-image h3{
  position: absolute;
  color: #171c4a;
  text-shadow: #fff 2px 2px 8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
}

.collection-menu .collection-tilte {
  background-color: #e5e5e5;
  font-size: 24px;
  font-weight: 600;
  padding: 30px 20px; 
}
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .collection-menu .collection-tilte {
      font-size: 20px;
      padding: 15px 10px; 
    } 
  }

  @media (max-width: 767px) {
    .collection-menu .collection-tilte {
      font-size: 20px;
      padding: 20px 15px; 
    } 
  }

.collection-menu .nav a {
  border: 1px solid #ddd;
  margin-bottom: -1px;
  line-height: 58px;
  background-color: #fff;
  font-size: 18px;
  font-weight: 600;
  color: #777;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s; 
}

  .collection-menu .nav a.active {
    background-color: #ed1f24;
    border-color: #ed1f24;
    color: #fff; 
  }

.single-product-items .product-item-image {
  padding: 30px;
  position: relative;
  overflow: hidden; 
}

  .single-product-items .product-item-image a {
    display: block; 
}

  .single-product-items .product-item-image img {
    width: 100%;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s; 
}

  .single-product-items .product-item-image .product-discount-tag {
    width: 50px;
    height: 50px;
    background-color: #ed1f24;
    position: absolute;
    top: 35px;
    right: 35px;
    text-align: center;
    border-radius: 50%; 
}

    .single-product-items .product-item-image .product-discount-tag p {
      color: #fff;
      font-weight: 600;
      font-size: 14px;
      line-height: 50px; 
  }

.single-product-items .product-item-content .product-title a {
  font-size: 20px;
  color: #333;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s; 
}

  .single-product-items .product-item-content .product-title a:hover {
    color: #ed1f24; 
  }

.single-product-items .product-item-content .rating li {
  color: #fc924b;
  font-size: 12px;
  display: inline-block; 
}

.single-product-items .product-item-content span {
  margin: 0 3px;
  font-size: 16px;
  font-weight: 600;
  position: relative; 
}

.single-product-items .product-item-content .regular-price {
  color: #fe7865; 
}

.single-product-items .product-item-content .discount-price {
  color: #c4c4c4; 
}

.single-product-items .product-item-content .discount-price::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #222;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); 
}

.product-items-active .slick-arrow {
  position: absolute;
  z-index: 9;
}

#product .product-items-active .slick-arrow.prev{
  position:absolute;
  left: 10px;
  top: 40%;
}

#product .product-items-active .slick-arrow.next{
  position: absolute;
  left: 96%;
  bottom: 55%;
}

#product1 .product-items-active .slick-arrow.prev{
  position:absolute;
  left: 14px;
  top: 40%;
}

#product1 .product-items-active .slick-arrow.next{
  position: absolute;
  left: 101%;
  bottom: 50%;
}

#product2 .product-items-active .slick-arrow.prev{
  position:absolute;
  left: 10px;
  top: 40%;
}

#product2 .product-items-active .slick-arrow.next{
  position: absolute;
  left: 96%;
  bottom: 53%;
}

.product-items-active .slick-arrow i {
  font-size: 18px;
  color: #ed1f24;
  cursor: pointer;
}
   
.tab-content .tab-pane {
  display: block;
  overflow: hidden;
  height: 0;
  visibility: hidden;
  max-width: 100%;
  opacity: 0;
}

.tab-content .tab-pane.active {
  height: auto;
  visibility: visible;
  opacity: 1;
  overflow: visible; 
}

/*=========================== SERVICES ===========================*/
.services-area {
  background-color: #fffaf6; 
}
  @media (max-width: 767px) {
    .services-area {
      padding-top: 75px;
      padding-bottom: 80px; 
    } 
  }

.services-left {
  position: relative; 
}
  .services-left .services img {
    width: 100%; 
  }

.single-services {
  border: 1px solid #ddd;
  padding: 25px 15px;
  background: #fff; 
}
.single-services .services-icon i {
  font-size: 50px;
  color: #ed1f24; 
}

.single-services .services-content .title {
  font-size: 20px;
  color: #ed1f24; 
}

/*========================== About Us Section =======================*/
#about{
  background: url(../images/bg_2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  padding: 80px 0;
}

#about h3 {
  color: #fff;
  font-weight: 600;
  font-size: 34px;
}

.about-item{
  padding-bottom: 30px;
}

.about-item img{
  width: 250px;
  height: 250px;
  border-radius: 50%;
}

#about .about-item .cred{
  color: #ed1f24;
  font-weight: bold;
  margin: 5px 0;
}

#about .js-desp{
  color: #fff;
}

#about .ds-desp{
  color: #fff;
}

/* =================== About us page ======================= */
#about-us-page .about-content{
  margin: 50px 50px 5em 50px;
  text-align: justify;
}

#about-us-page .about-content h2{
  color: #ed1f24;
}

#about-us-page .about-content p{
  margin: 20px 0;
  color: #000;
}

#about-us-page .about-content .wrap-img{
  float: right;
  width: 50%;
  height: auto;
  padding-left: 30px;
}

#about-us-page .about-content .l-wrap{
  float: left;
  width: 50%;
  height: auto;
  padding-right: 30px;
}

/*==================================================================
              GET IN TOUCH BUTTON
==================================================================*/
#git-btn{
  text-align: center;
  padding: 20px;
  background-color: rgb(233, 233, 233);
  margin-bottom: 50px;
}

#git-btn p{
  padding: 20px;
  font-size: 16px;
}
.git-button{
  background-color: #ed1f24;
  color: #fff;
  transition: all 2s ease-in-out;
}

/*====================== SEPERATOR =========================*/

#women-ad .women-ad-img {
  background-image: url(../images/05.jpg);
	background-position: 0% 15%;
	background-repeat: no-repeat;
	background-size: cover;
	height: 85vh;
  margin: 70px 0;
}

#men-ad .men-ad-img {
  background-image: url(../images/mens/ad_1.jpg);
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
	height: 85vh;
  margin: 70px 0;
}

#kids-ad .kids-ad-img {
  background-image: url(../images/kids/kids-ad.jpg);
	background-position: 0% 20%;
	background-repeat: no-repeat;
	background-size: cover;
	height: 85vh;
  margin: 70px 0;
}

/*================ AD TEXT =================*/
#women-ad{
  position: relative;
}
#women-ad .women-ad-text h1{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-125%, -50%);
  color: #000;
  text-transform: uppercase;
  font-size: 86px;
}
#women-ad .women-ad-text h2{
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(60%, -50%);
  color: #000;
  text-transform: uppercase;
  font-size: 60px;
}
#women-ad .women-ad-text h2 span{
  color: #ed1f24;
}

#men-ad{
  position: relative;
}
#men-ad .men-ad-text h3{
  font-size: 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-135%, -50%);
  color: #fff;
  text-transform: uppercase;
}

#kids-ad{
  position: relative;
}
#kids-ad .kids-ad-text h1{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-76%, -50%);
  color: #000;
  text-transform: uppercase;
}

/*===================== SERVICE PROVIDED ======================*/

#service-provided{
  margin: 6em 0 4em 0;
}

#service-provided .row{
  border: 1px solid #000;
  padding: 20px;
  margin: 10px;
}

#service-provided .icon{
  display: inline-block;
}

#service-provided .text-details{
  display: inline-block;
  margin-left: 5px;
}

#service-provided i{
  font-size: 48px;
  margin-right: 5px;
  color: #000;
}

#service-provided span{
  text-transform: uppercase;
}


/*=========================== BLOG ===========================*/
#blog .section-title h3{
  font-family: 'Raleway';
}
.single-blog {
  -webkit-box-shadow: 0px 15px 21px 0px rgba(254, 119, 101, 0.06);
  -moz-box-shadow: 0px 15px 21px 0px rgba(254, 119, 101, 0.06);
  box-shadow: 0px 15px 21px 0px rgba(254, 119, 101, 0.06); 
}
  .single-blog .blog-image {
    overflow: hidden; 
  }
    .single-blog .blog-image img {
      width: 100%;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s; 
    }
  .single-blog .blog-content {
    background-color: #fff;
    border: 1px solid #ddd;
    border-top: 0; 
  }
    .single-blog .blog-content .content {
      padding: 20px 30px 25px; 
    }
      .single-blog .blog-content .content .title a {
        color: #333;
        -webkit-transition: all 0.4s ease-out 0s;
        -moz-transition: all 0.4s ease-out 0s;
        -ms-transition: all 0.4s ease-out 0s;
        -o-transition: all 0.4s ease-out 0s;
        transition: all 0.4s ease-out 0s; 
      }
      .single-blog .blog-content .content span {
        font-size: 16px;
        color: #777; 
      }
    .single-blog .blog-content .meta {
      border-top: 1px solid #ddd;
      padding: 20px 30px 25px; 
    }
      .single-blog .blog-content .meta .meta-admin .image a img {
        border-radius: 50%; 
      }
      .single-blog .blog-content .meta .meta-admin .admin-title {
        padding-left: 20px; 
      }
        .single-blog .blog-content .meta .meta-admin .admin-title .title a {
          font-size: 16px;
          font-weight: 500;
          color: #333;
          -webkit-transition: all 0.4s ease-out 0s;
          -moz-transition: all 0.4s ease-out 0s;
          -ms-transition: all 0.4s ease-out 0s;
          -o-transition: all 0.4s ease-out 0s;
          transition: all 0.4s ease-out 0s; 
        }
          .single-blog .blog-content .meta .meta-admin .admin-title .title a:hover {
            color: #ed1f24; 
          }
      .single-blog .blog-content .meta .meta-icon ul li {
        display: inline-block;
        margin-right: 15px; 
      }
        .single-blog .blog-content .meta .meta-icon ul li:last-child {
          margin-right: 0; 
        }
        .single-blog .blog-content .meta .meta-icon ul li a {
          font-size: 16px;
          color: #333;
          -webkit-transition: all 0.4s ease-out 0s;
          -moz-transition: all 0.4s ease-out 0s;
          -ms-transition: all 0.4s ease-out 0s;
          -o-transition: all 0.4s ease-out 0s;
          transition: all 0.4s ease-out 0s; 
        }
          .single-blog .blog-content .meta .meta-icon ul li a:hover {
            color: #ed1f24; 
          }
  .single-blog:hover .blog-image img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); 
  }

/*===========================
      CONTACT
===========================*/
#contact-pg{
  padding: 3em 8em;
}

#contact-pg .form h4{
  margin-bottom: 1em;
}

#contact-pg .form #sendmessage {
  color: #fff;
  background: #1bb1dc;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact-pg .form #errormessage {
  color: #fff;
  display: none;
  background: red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact-pg .form #sendmessage.show,
#contact-pg .form #errormessage.show,
#contact-pg .form .show {
  display: block;
}

#contact-pg .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact-pg .form label {
  color: #413e66;
  font-weight: 500;
}

#contact-pg .form input,
#contact-pg .form textarea {
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #bebebe;
  font-size: 14px;
}

#contact-pg .form input::-webkit-input-placeholder,
#contact-pg .form textarea::-webkit-input-placeholder {
  color: #a2a0bd;
}

#contact-pg .form input::-moz-placeholder,
#contact-pg .form textarea::-moz-placeholder {
  color: #a2a0bd;
}

#contact-pg .form input:-ms-input-placeholder,
#contact-pg .form textarea:-ms-input-placeholder {
  color: #a2a0bd;
}

#contact-pg .form input::placeholder,
#contact-pg .form textarea::placeholder {
  color: #a2a0bd;
}

#contact-pg .form button[type="submit"] {
  background: #ed1f24;
  border: 0;
  padding: 8px 30px;
  color: #fff;
  transition: 0.3s;
}

#contact-pg .form button[type="submit"]:hover {
  border: 1px solid #ed1f24;
  background: #fff;
  color: #000;
  cursor: pointer;
}

#contact-pg .contact-img img{
  width: 100%;
  height: auto;
}

/*=========================== FOOTER ==========================*/
.footer-area {
 background-color: #171c4a;  
}

.footer-logo img{
  width: 100%;
  height: auto;
}

.footer-logo .footer-social li {
  display: inline-block;
}
  .footer-logo .footer-social li:first-child {
    margin-left: 0; 
  }
  .footer-logo .footer-social li a {
    font-size: 16px;
    color: #fff;
    width: 35px;
    height: 35px;
    line-height: 38px;
    text-align: center;
    background-color: #ed1f24;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    border-radius: 50%; 
  }
  .footer-logo .footer-social li a:hover {
    background-color: #fff;
    color: #ed1f24; 
  }
  .footer-logo p{
    color: #fff;
  }

.footer-payment-credits .payment-credits{
  margin: 2em auto;
}

.footer-payment-credits h5{
  color: #fff;
  margin-right: 20px;
}

.f-title {
  color: #fff;
  font-size: 20px;
  padding-bottom: 5px; 
}

.footer-link ul li {
  margin-top: 15px; 
}
  .footer-link ul li a {
    color: #fff;
    font-size: 16px;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s; 
  }
    .footer-link ul li a:hover {
      color: #7a6667; 
    }

.footer-info {
  padding-left: 70px; }
  @media only screen and (min-width: 992px) and (max-width: 1200px) {
    .footer-info {
      padding-left: 0; 
    } 
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-info {
      padding-left: 0; 
    } 
  }
  @media (max-width: 767px) {
    .footer-info {
      padding-left: 0; 
    } 
  }

.single-footer-info {
  position: relative; 
}
  .single-footer-info span {
    font-size: 16px;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0; 
  }
  .single-footer-info .footer-info-content a{
    color: #fff;
    font-size: 16px;
  }

.footer-copyright {
  border-top: 1px solid #ddd; 
}
  .footer-copyright a{
    color: #fff; 
  }

  .footer-copyright a:hover{
    color: #ed1f24; 
  }
  .footer-copyright .copyright p {
    color: rgb(238, 238, 238); 
  }
    @media (max-width: 767px) {
      .footer-copyright .copyright p {
        font-size: 14px; 
      } 
    }

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 18px;
    width: 40px;
    line-height: 40px;
    z-index: 99999;
    text-align: center;
    display: none;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    color: #fff;
    background-color: #ed1f24; 
  }

.back-to-top:hover {
  color: #ed1f24;
  background-color: #fff; 
}
    
    
/*================== RESPONSIVE DESIGN ========================*/

/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 320px) and (max-width: 576px)  { 
  #top-nav form{
    display: none;
  }

  #top-nav .navbar-nav{
    display: flex;
    flex-direction: row;
  }

  #top-nav .navbar-nav a{
    display: flex;
    justify-content: space-between;
    margin-left: 30px;
  }
  
  #top-nav .navbar-nav i{
    color: #fff;
    font-size: 30px;
  }

  #top-nav .navbar-nav .cart i{
    margin-right: 70px;
  }

  #bottom-nav .navbar-toggler{
    position: fixed;
    left: 84%;
    top: 4%;
    border: .6px solid rgba(255, 255, 255, 0.5);
    z-index: 99999;
  }

  #carousel .carousel-inner{
    height: auto;
  }

  #carousel .carousel-caption{
    margin-bottom: 0em;
  }

  #carousel .carousel-caption h2{
    font-size: 18px;
    margin-bottom: 0;
  }

  #carousel .carousel-caption span{
    font-size: 8px;
    padding-left: 2px;
  }

  #carousel .carousel-caption a button{
    padding: 3px 5px;
    font-size: 10px;
    margin: 10px 7em 0 0;
  }

  #essentials img{
    margin: 20px 0;
  }

  #deal{
    padding: 0;
  }

  #clockdiv {
    font-size: 15px;
  }

  #clockdiv > div{
    padding: 5px 9px;
  }

  .smalltext{
    font-size: 12px;
  }

  #service-provided .ser-col{
    margin-bottom: 50px;
  }

  #service-provided .ser-col:last-child{
    margin-bottom: 10px;
  }

  #women-ad .women-ad-img {
    background-position: top;
  }
  
  #men-ad .men-ad-img {
    background-position: 80% 0%;
  }
  
  #kids-ad .kids-ad-img {
    background-position: 80% 0%;
  }

  #men-ad .men-ad-text h3{
    font-size: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-60%, -50%);
  }
  
  #women-ad .women-ad-text h1{
    /*font-size: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);*/
    display: none;
  }
  
  #women-ad .women-ad-text h2{
    display: none;
  }
  
  #about .about-content-js{
    padding-top: 0em;
  }

  #about .about-content-ds{
    padding-top: 0em;
  }
  
  #about .about-img img {
    width: 100px;
    height: 100px;
  }

  #footer .col-sm-6{
    width: 50%;
  }

  #footer .col-sm-4{
    width: 35%;
  }

  #footer .col-sm-8{
    width: 65%;
  }
 }

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 576px) and (max-width: 768px) { 
  #top-nav form{
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-80%, 0%);
  }

  #top-nav .form-inline .btn i{
    padding: .8px 0;
  }

  #top-nav .navbar-nav{
    display: flex;
    flex-direction: row;
  }

  #top-nav .navbar-nav a{
    display: flex;
    justify-content: space-between;
    margin-left: 30px;
  }
  
  #top-nav .navbar-nav i{
    color: #fff;
    font-size: 30px;
  }

  #top-nav .navbar-nav .cart i{
    margin-right: 70px;
  }

  #bottom-nav .navbar-toggler{
    position: fixed;
    left: 90%;
    top: 4%;
    border: .6px solid rgba(255, 255, 255, 0.5);
    z-index: 99999;
  }

  #bottom-nav ul{
    margin-top: 0px;
  }

  #carousel .carousel-inner{
    height: auto;
  }

  #carousel .carousel-caption{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-110%, -40%);
  }

  #carousel .carousel-caption h2{
    font-size: 35px;
  }

  #carousel .carousel-caption span{
    font-size: 16px;
  }

  #essentials button{
    text-align: center;
    margin: 30px auto;
    display: block;
    width: 80%;
    text-align: center;
  }

  #women-ad .women-ad-img {
    background-position: top;
  }
  
  #men-ad .men-ad-img {
    background-position: top;
  }
  
  #kids-ad .kids-ad-img {
    background-position: 80% 0%;
  }

  #men-ad{
    margin-top: 50px;
  }

  #men-ad .men-ad-text h3{
    font-size: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-80%, -50%);
  }
  
  #kids-ad{
    margin-top: 50px;
  }
  
  #women-ad .women-ad-text h1{
    /*font-size: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-90%, -50%);*/
    display: none;
  }
  
  #women-ad .women-ad-text h2{
    display: none;
  }
  
  #about .about-content-js{
    padding-top: 0em;
  }

  #about .about-content-ds{
    padding-top: 0em;
  }
  
  #about .about-img img {
    width: 160px;
    height: 160px;
  }

}