/* ===================================
    Table of Content
====================================== */

/*- Fonts
  - Scrollbar
  - General   
  - Loader
  - Navbar
  - Banner
  - About-us
  - Products-Section
  - Reviews-Section
  - Contact-Section
  - Footer
  - Products Detail Page
  - StandAlone
  - Products Page
  - Media-Queries

*/

/* ===================================
Fonts
====================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap&subset=latin-ext');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap&subset=latin-ext');

/* ===================================
    Scrollbar
====================================== */

::-webkit-scrollbar {
  width: 18px;
}

::-webkit-scrollbar-track {
  width: 5px;
  background: #30254f;
  border-left: 9px solid #30254f;
  border-right: 9px solid #30254f;
}

::-webkit-scrollbar-thumb {
  background: #d4b610;
  width: 0;
  border-left: 7px solid #30254f;
  border-right: 6px solid #30254f;
}

/* ===================================
    General
====================================== */

body{
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
}

a{
  text-decoration: none;
}
/*Text Classes*/
.heading{
  font-size: 60px;
  color: #202020;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.subheading{
  font-size: 20px;
  color: #212121;
  font-weight: 400;
}

.text{
  font-size: 18px;
  color: #212121; 
  font-weight:400;
}

/*Social Icons*/

.social-icons ul {
margin-bottom: 0;
}
.social-icons ul li {
font-size: 15px;
/*display: inline-block;*/
margin-right: 5px;
margin-left: 5px;
margin-bottom: 3px;
list-style: none;
}
.social-icons ul li a {
/*overflow: hidden;*/
border-radius: 50%;
display: block;
color: #fff;
height: 36px;
line-height: 36px;
width: 36px;
border: 1px solid transparent;
text-align: center;
}
/*Social icons background hover*/
.icon-hover:hover {color: #30254f; transition: all 0.5s ease; background-color: #fff;}

.facebook-hover:hover {color: #fff !important; transition: all 0.5s ease; background-color: #4267B2;}
.twitter-hover:hover {color: #fff !important; transition: all 0.5s ease; background-color: #1DA1F2;}
.google-plus-hover:hover {color: #fff !important; transition: all 0.5s ease;background-color: #db4a39;}
.linked-in-hover:hover {color: #fff !important; transition: all 0.5s ease; background-color: #2867B2;}
.instagram-hover:hover{color: #fff;  transition: all .5s ease; background:linear-gradient(to bottom, #aa2fb5 0%, #f1762c 93%)!important;}
.gmail-hover:hover {color: #fff !important; transition: all 0.5s ease; background-color: #D44638;}
.whatsapp-hover:hover {color: #fff; transition: all 0.5s ease; background-color: #128C7E;}


/*Button*/
.btn {
z-index: 2;
letter-spacing: .5px;
border-radius: 0;
font-weight: 500;
overflow: hidden;
position: absolute;
line-height: inherit;
display: inline-block;
color: #fff;
border: 2px solid transparent;
text-transform: capitalize;
transition: all .5s ease !important;
}
.btn.button {
font-size: 14px !important;
font-weight: 500;
color: #fff;
padding: 9px 27px !important;
line-height: 1.8em !important;
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
}
.btn.btn-rounded {
border-radius: 50px;
}
.btn.white-btn {
background: transparent;
border-color: #fff;
color: #fff;
}

.btn.trans-btn {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.btn.trans-btn-2 {
  background: transparent;
  border-color: #30254f;
  color: #30254f;
}
.btn.yellow-btn {
  background:  #d4b610;
  border-color:  #d4b610;
  color: #fff;
}
.btn.blue-btn {
  background:  #30254f;
  border-color:  #30254f;
  color: #fff;
}
/*Button hover*/

.btn.btn-hvr-white:hover {
  background-color: #fff; 
  border-color: #fff;
  color: #30254f;
}
.btn.btn-hvr-blue:hover {
  background-color: #30254f; 
  border-color: #30254f;
  color: #fff;
}
.btn.btn-hvr-yellow:hover {
  background-color: #d4b610; 
  border-color: #d4b610;
  color: #fff;
}

/*Image Overlay*/

.overlay-image {
  position: relative;
  overflow: hidden;
}
.overlay-image img {
  transition: all 0.7s;
}

.overlay-image:hover img {
  transform: scale(1.1);
  transition: all 0.7s;
}

.overlay-image:hover {
  cursor: pointer;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient( rgba(255,255,255, 0.9), rgba(255,255,255, 0.9));
  opacity: 1;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: .7s ease;
}

.overlay-image:hover .overlay {
  transform: scale(1);
}

/* ===================================
    Loader
====================================== */

@keyframes ldio-8v0e2g029us-o {
  0% {
    opacity: 1;
    transform: translate(0, 0)
  }
  49.99% {
    opacity: 1;
    transform: translate(60px, 0)
  }
  50% {
    opacity: 0;
    transform: translate(60px, 0)
  }
  100% {
    opacity: 0;
    transform: translate(0, 0)
  }
}

@keyframes ldio-8v0e2g029us {
  0% {
    transform: translate(0, 0)
  }
  50% {
    transform: translate(60px, 0)
  }
  100% {
    transform: translate(0, 0)
  }
}

.pre-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #fff;
}

.loader {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 40%;
  left: 45%;
  margin-top: -13px;
  margin-left: -13px;
  border-radius: 60px;
  animation: loader 1.3s linear infinite;
}

.loader div {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  top: 70px;
  left: 40px;
}

.loader div:nth-child(1) {
  background: #30254f;
  animation: ldio-8v0e2g029us 1.4492753623188404s linear infinite;
  animation-delay: -0.7246376811594202s;
}

.loader div:nth-child(2) {
  background: #d4b610;
  animation: ldio-8v0e2g029us 1.4492753623188404s linear infinite;
  animation-delay: 0s;
}

.loader div:nth-child(3) {
  background: #30254f;
  animation: ldio-8v0e2g029us-o 1.4492753623188404s linear infinite;
  animation-delay: -0.7246376811594202s;
}

.loader div {
  box-sizing: content-box;
}

/* ===================================
    Navbar
====================================== */

/* nav top default */
.navbar {
  padding: 0;
  z-index: 1010;
  background-color: transparent !important;
  height: 82px;
}

.navbar-brand {
  background-color: #d4b610;
  padding: 20px 13px 20px 13px;
}

.navbar-brand img {
  width: 100%;
}

.navbar .navbar-links{
height: 84px;
}

.navbar .navbar-logo, .navbar-links{
  padding-left: 0;
  padding-right: 0;
}

.navbar .navbar-nav{
  padding-top: 20px;
  padding-bottom: 20px;
  margin-left: 0 !important;
  position: relative;
}

.navbar-fixed-top.scrolled .navbar-logo{
  background-color: #d4b610 !important; /*#30254f !important;*/
  transition: .2s linear;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}
.navbar-fixed-top.scrolled .navbar-links{

  background-color: #fff !important;
  transition: .2s linear;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}

.navbar .navbar-nav .nav-link {
  font-size: 15px;
  color: #212121;
  font-weight: 600;
  padding: 6px 6px;
  margin-left: 50px;
  margin-right: 50px;
  transition: .5s ease;
  transition: all .6s ease;
  border: 2px solid transparent;
  display: block;
  font-family: 'Montserrat', sans-serif;
}
.navbar .navbar-nav .nav-link.active {
  color: #212121;
  transition: all .6s ease;
}

.navbar .navbar-nav .nav-link:hover {
  color: #212121;
  transition: all .6s ease;
}

.navbar .navbar-nav .nav-link:last-child {
  margin-right: 0;
}

.navbar .navbar-nav .nav-link:after {
  content: '';
  display: block;
  margin: auto;
  height: 3px;
  width: 0px;
  background: transparent;
  transition: width .5s ease, background-color .5s ease;
}

.navbar .navbar-nav .nav-link:hover:after {
  width: 100%;
  background: #212121;
}
.navbar .navbar-nav .nav-link.active:after {
  width: 100%;
  background: #212121;
}

/*side menu button*/

.sidemenu_btn {
  width: 36px;
  padding: 6px;
  right: 15px;
  top: 15px;
  z-index: 999;
  margin-top: 12px;
  margin-left: 16px;
  cursor: pointer;
  position: absolute;
  display: inline-block;
  transition: all .3s linear;
}
.navbar  .side-menu-btn{
  background-color: #fff;
  position: absolute;
  width: 70px;
  top:0;
  right: 0;
  height: 70px;

}

.sidemenu_btn span {
  height: 2px;
  width: 100%;
  background: #212121;
  display: block;
  margin: auto;
  transition: .5s ease;
}

.sidemenu_btn:hover span:first-child,
.sidemenu_btn:hover span:last-child {
  width: 70%;
  background-color: #212121;
}

.sidemenu_btn:hover span:nth-child(2) {
  background-color: #212121;
}

.sidemenu_btn span:nth-child(2) {
  margin: 4px 0;
}
.side-menu.hidden{
  display: none;
}


/* ===================================
     Banner
====================================== */

.banner .text-section{
  background-color: #30254f;
  height: 100vh;
  position: relative;
}
.banner .img-section{
  position: absolute;
  top: 90px;
  right: 150px
}
.banner .text-section .text-area{
  position: absolute;
  left:88px;
  padding-top: 10rem;
  z-index: 111;
}
.banner .text-section .heading{
  font-size: 58px;
  color: #fff;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.banner .text-section span{
  color: #d4b610;
}

.banner .text-section .text{
  color:#fff;
  font-size: 24px;
  margin-bottom: 30px;
}

.banner .social-icons{
 position: absolute;
 right: 106%;
 top: 50%;
 z-index: 11;
 color: #26313c;
}

/*Carousel buttons*/
.banner .icons {
  display: flex;
  justify-content: center;
  background-color: #d4b610;
  position: absolute;
  right: 0;
  bottom: 0;
}

.banner  .icons i {
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.banner  .icons .left-customPrevBtn{
  padding: 25px 10px 25px 20px;
}
.banner  .icons .right-customNextBtn{
  padding: 25px 20px 25px 10px;
}
.banner  .icons .left-customPrevBtn:hover{
   background-color: #30254f;
   transition: all .5s ease;
   cursor: pointer;
}
.banner  .icons .right-customNextBtn:hover{
  background-color: #30254f;
  cursor: pointer;
  transition: all .5s ease;
}

/*Animation*/
.animated  {
  animation-duration : 1000ms  ;
  animation-fill-mode : both  ;
}  


.fadeOut  {
  animation-name : fadeOut  ;
}  

@keyframes  fadeOut  {
  0% {
    opacity : 1   ;
  }  
  100% {
    opacity : 0   ;
  }  
}

/* ===================================
    About-us
====================================== */
.about-us{
  padding-top: 120px;
}
.about-us .image{
  position: absolute;
  right:0;
}
.about-us .text-section .subheading{
  font-size: 49.5px;
  transition: all .5s ease;
}
.about-us .text-section .text-column:hover{
  cursor: pointer;
}
.about-us .text-section .text-column:hover .subheading{
transform: translateY(-10px);
transition: all .5s ease;
color: #d4b610;
}

.about-us .text-section .heading{
  font-size: 18px;
  margin:20px 0;
}
.about-us .text{
  font-size: 15px;
}

.about-us .row-2, .row-3{
  margin-top: 100px;
}
.about-us .text-section{
  padding-bottom: 120px;
}

.about-us .image-section{
  padding-top: 170px;
  padding-bottom: 170px;
  position: relative;
  background-color: #f2f2f2;
}
.about-us .row-4 .heading{
  color: #30254f;
  margin-bottom: 25px;
}
.about-us .row-4 .img img{
  position: absolute;
  bottom: -100px;
  left: -50px;
}
.about-us .image-section .text{
  margin-top:30px;
}

/* ===================================
    Produts-Section
====================================== */
.products-section{
  padding-top: 120px;
  padding-bottom: 120px;
}
.products-section .row-1, .row-2, .row-3, .row-4{
  margin-bottom: 80px;
}
.products-section .card{
  border: 1px solid transparent;
}

.products-section .card .subheading{
  font-size: 30px;
}
.products-section .card .text{
  color:#606060;
  font-size: 16px;
}
.products-section .card .button-center{ 
  color: white;
  opacity: 1;
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* ===================================
   Reviews-section 
====================================== */

.reviews-section .text-section h5 {
  font-size: 48px
}

.reviews-section .text-section .text-area {
  padding-top: 120px;
  padding-bottom: 120px;
  padding-left: 200px;
}

.reviews-section .carousel-section {
  background-color: #d4b610;
  padding-top: 120px;
  padding-bottom: 120px;
  padding-right: 100px;
  padding-left: 40px;
}

.carousel-section .review-image {
  width: 80px;
  height: 80px;
  display: block;
  margin: auto;
}

.carousel-section .review .quote i {
  color: #fff;
  font-style: italic;
  font-size: 20px;
}

.carousel-section .review  .text {
  text-align: center;
  margin-top: 34px;
  color: #fff;
  font-size: 18px ;
}

.carousel-section .review .font{
  font-size: 14px;
}

.carousel-section .review  .heading {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-top: 25px;
}

.reviews-section .counter-section {
  background-color: #30254f;
  padding-top: 170px;
  padding-bottom: 120px;
  padding-left: 200px;
}
.reviews-section .counter-section .row-1{
  margin-bottom: 100px;
}
.reviews-section .counter-section .count-title{
  font-size: 38px;
  color: #fff;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}
.reviews-section .counter-section .count-text{
  font-size: 16px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

/* ===================================
    Contact-Section
====================================== */
.contact-section{
  padding-top: 120px;

}
.contact-section .heading{
  color: #212121;
  margin-bottom: 90px;
}

.contact-section .form-section {
  padding-top: 130px;
}

.contact-section .contact-form .form-control {
  border: none;
  padding: 0;
  border-bottom: 1px solid #9b9b9b;
  background: transparent;
  font-weight: normal;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 50px;
  color: #212121;
  font-size: 14px;
  transition: border .9s ease;
}

.contact-form .form-control::placeholder {
  color: #9b9b9b;
}

.form-control:focus {
  color: #212121;
  border-color: #ced4da;
  box-shadow: 0 0 0 0.0rem transparent;
}

.contact-section .button {
  margin-top: 15px;
}

.contact-section p {
  font-size: 17px;
  margin-top: 30px;
}

.contact-section .media {
  margin-top: 50px;
}


.contact-section .media i {
  font-size: 25px;
  color: #202020;
}

.contact-section .media-body {
  margin-left: 20px;
}

.contact-section .media-body h5 {
  font-size: 14px;
  font-weight: 700;
  color: #202020;
  margin-bottom: 10px;
}

.contact-section .media-body p {
  font-size: 16px;
  font-weight: 500;
  color: #252525;
  margin-top: 0;
  margin-bottom: 0;
}

.contact-section .media-body span {
  margin-left: 20px;
}

.contact-section li{
  list-style: none;
  display: inline-block;
}

.contact-section .button-center  {
  text-align: center;
  width: 100%;
}

.contact-section .button-center .button{
  padding: 9px 90px !important;
}

/* ===================================
    Footer
====================================== */

footer {
  padding-top: 120px;
  padding-bottom: 120px;
}

footer .social-icons ul li {
  display: inline-block;
    text-align: center;
}

footer .social-icons ul li a {
  color: #202020;  
}

footer .text {
  font-size: 13px;
  color: #888888;
}

/* ===================================
    Products Detail Page
====================================== */

.productdetail-banner .text-section{
  background-color: #30254f;
  height: 76vh;
  position: relative;
}
.productdetail-banner .img-section{
  position: absolute;
  top: 75px;
  right: 150px
}
.productdetail-banner .text-section .text-area{
  position: absolute;
  left:124px;
  padding-top: 8rem;
  z-index: 111;
}
.productdetail-banner .text-section .heading{
  font-size: 65px;
  color: #fff;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.productdetail-banner .text-section span{
  color: #d4b610;
}
.productdetail-banner  .text-section .text{
  color:#fff;
  font-size: 24px;
  margin-bottom: 30px;

}
.productdetail-banner  .social-icons{
 position: absolute;
 left: -23%;
 top: 43%;
 z-index: 11;
 color: #26313c;
}
.productdetail-banner  .icons {
  display: flex;
  justify-content: center;
  background-color: #d4b610;
  padding: 25px 25px; 
  position: absolute;
  right: 0;
  bottom: 0;
}

/*HEADING SECTION*/
.heading-section{
  padding-top: 120px;
}

.product-body .pro-detail-sec .heading{
 margin-bottom: 40px;
}

.product-detail{
 margin-top: 50px;
}

.product-body .button-center{
  margin-bottom: 20px;
}


/*PRODUCT DETAIL*/

.product-detail-slider img{
    width: 100%;
}

.product-slider .swiper-slide img {
    height: auto;
}

.product-body .product-list .product-single-price {
    margin-bottom: 10px;
}

.product-body .product-single-price .text{
    font-size: 14px;
}

.product-body .product-detail .product-checklist{
    margin-top: 20px;
}

.product-body .product-detail .product-checklist ul{
    padding-left: 0;
    margin-bottom: 20px;
}
.product-body .product-detail .product-checklist ul li{
    list-style: none;
    color: #000;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 5px;
}

.product-body .product-detail .product-checklist ul li i{
    color:  #d4b610;
}
.product-body .product-list .product-detail .product-single-price{
    margin-top: 20px;
}

.product-body .product-list  .share-product-details .share-product-icons{
    padding: 0;
}


.product-body .product-list .social-icons li p{
  color: #000000;
  font-size: 14px;
  font-weight: normal;
}

.product-body .product-list  .social-icons li{
  margin-right: 15px;
  display: inline-block;
}

.product-body .product-list .social-icons ul li a{
  color: #000;
  height: 30px;
  line-height: 32px;
  width: 30px;
  font-size: 14px;
  text-align: center;
}


/*SWIPER SLIDER CODE*/
.wrapper{
    max-height: 360px;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.product-detail-slider .swiper-slide{
    width: 96%;
}
.product-detail-slider .swiper-slide img {
    display: block;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    -o-object-fit: cover;
    object-fit: cover;
    cursor: pointer;
}

.Thumbs{
    -ms-flex-preferred-size: 100px;
    flex-basis: 100px;
}
.Thumbs .swiper-slide {
    opacity: 0.4;
}
.Thumbs .swiper-slide-active {
    opacity: 1;
}

.remove-margins{
    margin: 0;
}


.property-addtional-info {
    list-style-position: outside;
    padding: 0;
    margin: 0 0 0;
    margin-left: 25px;
    list-style: none;
}

.property-addtional-info li{
  margin-bottom: 10px;
}


.property-addtional-info li i{
  display: inline-block;
  margin-right: 2px;
  color: #ff431e;
}


.property-addtional-info li p{
  display: inline-block;
  font-size: 17px;
}

/*CUSTOMER REVIEWS SECTION */
.customer-reviews .review-area{
  border: 1px solid #d3d3d3;
  padding: 30px 15px;
}
.customer-reviews .heading{
  letter-spacing: 0px;
  margin-bottom: 50px;
  margin-top: 50px !important;
}

.customer-reviews .reviews .media{
  margin-bottom: 60px;
  margin-top: 16px;
}
.customer-reviews .reviews .text{
  font-size: 16px;
}
.customer-reviews .reviews .media-body{
  padding-left: 30px;
  border-left: 1px solid #d3d3d3;
}
.customer-reviews .reviews .media-body span{
  color: #d3d3d3;
}
.customer-reviews .reviews .media-body .heading{
  font-size: 20px;
  margin-bottom: 8px;
  margin-top: 0;
}

.customer-reviews .checked-star{
  color: #ffc600 ;
}
.customer-reviews .half-checked{
  color: #ffc600 ;
}
.customer-reviews .getin_form .user-rating li{
  display: inline-block;
  color: #ffc600;
}

.customer-reviews .btn.button{
  padding: 9px 52px !important;
}

/*PRODUCTS SECTION*/
.products-section .card-title{
  color: #212121;
}
.products-section .card .card-titile{
  transition: all .5s ease;
}
.products-section .card:hover .card-title {
  color: #d4b610;
  transition: all .5s ease;
}


/* ===================================
     StandAlone Page
====================================== */

.standalone-banner .text-section{
  background-color: #30254f;
  height: 76vh;
  position: relative;
}
.standalone-banner .img-section{
  position: absolute;
  top: 75px;
  right: 150px
}
.standalone-banner .text-section .text-area{
  position: absolute;
  left:175px;
  padding-top: 8rem;
  z-index: 111;
}
.standalone-banner .text-section .heading{
  font-size: 65px;
  color: #fff;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.standalone-banner .text-section span{
  color: #d4b610;
}
.standalone-banner  .text-section .text{
  color:#fff;
  font-size: 24px;
  margin-bottom: 30px;

}
.page-breadcrumb li {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.page-breadcrumb li a {
  color: #fff;
  margin-right: 5px;
  transition: all 0.3s ease;
}

.page-breadcrumb li i {
  color:#d4b610;
}
.standalone-banner .social-icons{
 position: absolute;
 left: -35%;
 top: 42%;
 z-index: 11;
 color: #26313c;
}
.standalone-banner .icons {
  display: flex;
  justify-content: center;
  background-color: #d4b610;
  padding: 25px 25px; 
  position: absolute;
  right: 0;
  bottom: 0;
}

.standalone-banner .icons i {
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
.standalone-banner .icons .customPrevBtn{
  margin-right: 10px;
}
.standalone-banner .icons .customNextBtn{
  margin-left: 10px;
}
/*Main Page Start*/
.main-page{
  padding-top: 120px;
  padding-bottom: 120px;
}
.main-page .standalone-heading{
  padding-bottom: 100px;
  padding-top: 100px;
}
.main-page .standalone-area .heading{
 font-size:40px;
 margin-bottom: 20px;
}
.main-page .row-image{
  position: relative;
}
.main-page .row-image img {
    width: 100%;
    height: 100%;
    display: block;
}
.standalone-area .standalone-row{
  margin-bottom: 40px;
}
.standalone-area .standalone-row:last-child{
  margin-bottom: 0;
}
 .main-page .standalone-row .row-text{
  padding-left: 30px;
  text-align: center;
 }  

 .standalone-row:nth-child(2) .row-text{
    padding-left: 0;
    padding-right: 30px;
}

/* Image Hover*/
.standaloneoverlay {
position: absolute;
transition: all 0.3s ease;
opacity: 0;
background-color:  #d4b610;
}
.hover-effect:hover .standaloneoverlay {
opacity: .4;
}
.overlayBottom {
width: 100%;
height: 0;
bottom: 0;
right: 0;
background-color: #d4b610;
cursor: pointer;
}
.hover-effect:hover .overlayBottom {
height: 100%;
}

/* ===================================
   Scroll Top
====================================== */

.go-top {
    position: fixed;
    cursor: pointer;
    bottom: 15px;
    right: 15px;
    color: #ffffff;
    background-color: #30254f;
    z-index: 4;
    width: 40px;
    text-align: center;
    height: 42px;
    line-height: 42px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .9s;
    -o-transition: .9s;
    transition: .9s;
    -webkit-transform: translateY(150px);
    -ms-transform: translateY(150px);
    transform: translateY(150px);
}

.go-top.active {
    -webkit-animation: bounceInDown 2s;
    animation: bounceInDown 2s;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.go-top i {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.go-top i:last-child {
    opacity: 0;
    visibility: hidden;
    top: 60%;
}

.go-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #d4b610;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.go-top:hover, .go-top:focus {
    color: #ffffff;
}

.go-top:hover::before, .go-top:focus::before {
    opacity: 1;
    visibility: visible;
}

.go-top:hover i:first-child, .go-top:focus i:first-child {
    opacity: 0;
    top: 0;
    visibility: hidden;
}

.go-top:hover i:last-child, .go-top:focus i:last-child {
    opacity: 1;
    visibility: visible;
    top: 50%;
}

/* ===================================
    Media Queries
====================================== */
@media (width: 1920px){

/*Navbar*/
.navbar .navbar-nav{
  margin-left: 8rem !important;
}
.sidemenu_btn{
  right: 90px;
  margin-left: 60px;
}
.navbar .side-menu-btn {
 
    width: 163px;
    height: 75px;
  }

/*Banner*/
.banner .text-section{
  height: 100vh;
}
.banner .text-section .text-area{
  left:365px;
  padding-top: 19.5rem;
}
.banner .img-section{
  top: 125px;
}
.banner .social-icons{
  right: 150%;
  top: 65%;
}

/*Products Detail*/
.productdetail-banner .text-section{
  height: 65vh;
}
.productdetail-banner .img-section{
  right: 270px;
  top: 87px;
}

.productdetail-banner .text-section .text-area{
  left: 350px;
  padding-top: 15rem;
}
.productdetail-banner .social-icons{
  left: -62%;
  top: 58%;
}

.productdetail-banner .img-section img{
  display: flex;
  justify-content: center;
  width: 80%;

}

/*StandAlone*/
.standalone-banner .text-section{
  height: 68vh;
}
.standalone-banner .img-section{
  right: 150px;
  top:95px;
}
.standalone-banner .text-section .text-area{
  left: 335px;
  padding-top: 15rem;
}
.standalone-banner .social-icons{
  left: -52%;
  top: 59%;
}

.standalone-banner .img-section img{
  display: flex;
  justify-content: center;
  width: 70%;
}
}


@media (width: 1600px){

/*Banner*/
.banner .text-section{
  height: 92vh;
}
.banner .img-section{
  top: 121px;
}
.banner .text-section .text-area{
  left: 205px;
  padding-top: 15rem;
}  
.banner .social-icons{
  right: 125%;
  top: 58%;
}
/*Products Detail Page*/
.productdetail-banner .img-section img{
  display: flex;
  justify-content: center;
  width: 85%;
}
.productdetail-banner .img-section{
  top: 85px;
}
.productdetail-banner .text-section{
  height: 70vh; 
}
.productdetail-banner .text-section .text-area{
  left: 250px;
  padding-top: 13rem;
}
.productdetail-banner .social-icons{
  left: -45%;
  top: 52%;
}
/*StandAlone*/
.standalone-banner .text-section{
  height: 70vh
}
.standalone-banner .text-section .text-area{
  left: 320px;
  padding-top: 13rem;
}
.standalone-banner .img-section{
  top: 85px;
}
.standalone-banner .social-icons{
  left: -65%;
  top: 52%;
}
.standalone-banner .img-section img {
  display: flex;
  justify-content: center;
  width: 85%;
}
}

@media (max-width: 1200px){
  /*Navbar*/
  .navbar .navbar-nav .nav-link{
    font-size: 14px;
    margin-left: 16px;
  }
  /*Banner*/
.banner .img-section{
  top:185px;
}
.banner .text-section{
  height: 55vh;
}
.banner .text-section .text-area{
  padding-top: 16rem;
}
.banner .text-section .heading{
  font-size: 45px;
}
.banner .text-section .text{
  font-size: 16px;
}
.banner .social-icons{
  top: 53%;
}
/*About-us Section*/
.about-us .text{
  font-size: 14px;
}
/*Reviews Section*/
.reviews-section .carousel-section{
  padding-right: 40px;
}
.reviews-section .counter-section{
  padding-left: 80px;
}

/*Products Detail*/
.productdetail-banner .text-section{
  height: 35vh;
}
.productdetail-banner .text-section .heading{
  font-size: 40px;
}
.productdetail-banner .text-section .text-area{
  left:153px;
  padding-top: 11rem;
}
.productdetail-banner .social-icons{
  left: -43%;
  top:49%;
}
.product-body .pro-detail-sec .heading{
  font-size: 50px;
}
/*StandAlone*/
.standalone-banner .img-section{
  top: 80px;
  right: 165px;
}
.standalone-banner .text-section{
  height: 37vh;
}
.standalone-banner .text-section .heading{
  font-size: 40px;
}
.standalone-banner .text-section .text-area{
  left:138px;
  padding-top: 11rem;
}
.standalone-banner .social-icons{
  left: -36%;
  top:48%;
}
}
@media (max-width: 992px){
  .heading{
    font-size: 40px;
  }
/*Navbar*/
.navbar{
  z-index: 1111;
}
.navbar .navbar-logo, .navbar-links{
  background-color: #fff;
}
.navbar .navbar-links{
  height: 0;
}
.navbar-fixed-top.scrolled .navbar-logo{
  background-color: #fff !important;
}
.sidemenu_btn{
  top:-60px;
}
.navbar .side-menu-btn{
  height: 0;
}


/*Banner*/
.banner .social-icons{
  display: none;
}

.banner .img-section{
  top: 148px;
  right:0;
}
.banner .text-section{
  height: 100vh;
}
.banner .text-section .text-area{
  left: 0px;
  text-align: center;
  padding-top: 48rem;

}
.banner .text-section .heading {
  font-size: 40px
}
.banner .text-section .text{
  font-size: 18px;
}

.banner .icons{
  display: none;
}

/*About-us*/
.about-us .image{
  display: none;
}
.about-us .row-4 .img img{
  position: relative;
  left: 0;
  width: 100%;
}
.about-us .text, .heading, .subheading{
  text-align:center;
  margin-bottom: 40px;
}

.about-us .button-center{
  text-align: center;
}
.about-us .text-colmn{
  top: 118px;
}
.about-us .text{
  font-size: 15px;
}
/*Reviews Section*/
.reviews-section .carousel-section{
  padding-left: 10px;
  padding-right: 10px;
}

.reviews-section .counter-section{
  padding-left: 0;
  text-align: center;
}
.reviews-section .counter-section .row-1{
  margin-bottom: 0;
}
/*Products-Section*/
.products-section{
  padding-bottom: 50px;
}
.products-section .row-1, .row-2, .row-3, .row-4{
  margin-bottom: 0;
  margin-top: 0;
}
.products-section .card{
  margin-bottom: 60px;
}
.products-section .card .subheading{
  margin-bottom: 10px;
}
.products-section .button-center{
  margin-top: 30px;
}

/*Reviews Section*/
.reviews-section .counter-section{
  padding-top: 120px;
}
.reviews-section .counter-section .counter{
  margin-bottom: 50px;
}
.reviews-section .counter-section .counter.last-child{
  margin-bottom: 0;
}



/* ===================================
    Side Menu
====================================== */
.side-menu.hidden{
  display: block ;
}
.side-menu {
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 9999;
  background: #30254f;
  transform: translate3d(100%, 0, 0);
  transition: transform .5s ease;
  position: fixed;
  overflow: hidden;
}

.side-menu.left {
  left: 0;
  right: auto;
  transform: translate3d(-100%, 0, 0);
}

.side-menu.before-side {
  width: 280px;
}

.side-menu.side-menu-active,
.side-menu.before-side {
  transform: translate3d(0, 0, 0);
}

.pul-menu .side-menu.side-menu-active {
  visibility: visible;
  opacity: 1;
}

.side-menu .navbar-brand {
  margin: 0 0 2.5rem 0;
}


/*Side overlay*/

#close_side_menu {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 1031;
  opacity: 0.7;
  background-color: #fff;
  position: fixed;
  transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
}


/*side menu image*/

.sidemenu-image {
  position: absolute;
  top: 45px;
}


/*side menu close btn*/

.side-menu .btn-close {
  height: 33px;
  width: 33px;
  top: 30px;
  right: 25px;
  cursor: pointer;
  text-align: center;
  position: absolute;
  display: inline-block;
}

.side-menu.before-side .btn-close {
  display: none;
}

.side-menu .btn-close::before,
.side-menu .btn-close::after {
  top: 5px;
  left: 16px;
  height: 24px;
  width: 2px;
  content: ' ';
  background: #fff;
  position: absolute;
}

.side-menu .btn-close:before {
  transform: rotate(45deg);
}

.side-menu .btn-close:after {
  transform: rotate(-45deg);
}

.side-menu .btn-close:hover {
  transform: scale(0.9);
  overflow: hidden;
  transition: all .5s ease;
}


/*side menu inner-wrapper*/

.side-menu .inner-wrapper {
  height: 100%;
  padding: 4.5rem 5rem;
  position: relative;
  overflow-y: auto;
  display: flex;
  align-items: center;
  text-align: left;
  flex-wrap: wrap;
}

.pul-menu.pushwrap .side-menu .inner-wrapper {
  padding: 3.5rem 2.5rem;
}

.side-menu .side-nav {
  margin-bottom: 0;
  margin-top: 30px;
  display: block;
}

.side-nav .navbar-nav .nav-item {
  opacity: 0;
  display: block;
  margin: 15px 0;
  padding: 0 !important;
  transition: all 0.8s ease 500ms;
  transform: translateY(30px);
}

.side-nav .navbar-nav .nav-item:first-child {
  transition-delay: .1s;
}

.side-nav .navbar-nav .nav-item:nth-child(2) {
  transition-delay: .2s;
}

.side-nav .navbar-nav .nav-item:nth-child(3) {
  transition-delay: .3s;
}

.side-nav .navbar-nav .nav-item:nth-child(4) {
  transition-delay: .4s;
}

.side-nav .navbar-nav .nav-item:nth-child(5) {
  transition-delay: .5s;
}

.side-nav .navbar-nav .nav-item:nth-child(6) {
  transition-delay: .6s;
}

.side-nav .navbar-nav .nav-item:nth-child(7) {
  transition-delay: .7s;
}

.side-nav .navbar-nav .nav-item:nth-child(8) {
  transition-delay: .8s;
}

.side-nav .navbar-nav .nav-item:nth-child(9) {
  transition-delay: .9s;
}

.side-menu.side-menu-active .side-nav .navbar-nav .nav-item {
  transform: translateY(0);
  opacity: 1;
}

.side-nav .navbar-nav .nav-link {
  display: inline-table;
  color: #fff;
  padding: 2px 0 3px 0 !important;
  font-size: 24px;
  line-height: normal;
  position: relative;
  border-radius: 0;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
}

.side-nav .navbar-nav .nav-link::after {
  content: "";
  left: 0;
  width: 0;
  bottom: 0;
  height: 2px;
  background: #fff;
  overflow: hidden;
  position: absolute;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
}

.side-nav .navbar-nav .nav-link:hover::after,
.side-nav .navbar-nav .nav-link:focus::after,
.side-nav .navbar-nav .nav-link.active::after {
  width: 100%;
}

.side-nav .navbar-nav .nav-link.active {
  background: transparent;
}


/*side menu footer */

.side-menu-footer .navbar-nav {
  transform: translateY(0);
}

.side-menu-footer p {
  color: #fff;
  font-size: 12px;
}

.side-menu-footer .social-icons ul li{
   display: inline-block !important;
}

/*Product Detail*/
.productdetail-banner .bannersocial-icons{
  display: none;
}
.productdetail-banner .text-section{
  height: 90vh;
}
.productdetail-banner .icons{
  display: none;
}
.productdetail-banner .text-section .text-area{
 left: 120px;
 text-align: center !important;
 padding-top: 45rem;
}
.productdetail-banner .text-section br{
  display: none;
}
.productdetail-banner .text-section .heading{
  font-size: 42px;
  left:80px;
}
.productdetail-banner .img-section{
  right: 0;
  top: 130px;
}
.productdetail-banner .img-section img{
  width:100%;
}
.product-body .pro-detail-sec .heading{
  font-size: 34px;
}
.product-body .product-list .product-single-price{
  margin-top: 50px;
}
.customer-reviews .reviews .media{
  display: block;
}
.customer-reviews .reviews .media-body{
  padding-left: 0px;
  text-align: center;
  border-left: 1px solid transparent;
}
.productsec-1{
  padding-bottom: 0;
}
.productsec-1 .card{
  margin-bottom: 0;
}
.product-body .product-single-price .text{
  font-size: 16px;
}

/*StandAlone*/
.standalone-banner .social-icons{
  display: none;
}
.standalone-banner .text-section{
  height: 90vh;
}
.standalone-banner .icons{
  display: none;
}
.standalone-banner .text-section .text-area{
 left: 152px;
 text-align: center;
  padding-top: 45rem;
}
.standalone-banner .text-section .heading{
  font-size: 44px;
}
.standalone-banner .img-section{
  right: 0;
  top: 130px;
}
.standalone-banner .img-section img{
  width: 100%;
}
.main-page{
  padding-bottom: 0;
}
.main-page .standalone-heading{
  padding-top: 0;
}
.main-page .standalone-heading .heading{
  font-size: 34px;
}
.main-page .text{
  font-size: 16px;
}
.main-page .standalone-area .heading{
  font-size: 28px;
}
.standalone-area .standalone-row{
  margin-bottom: 70px;
}
.main-page .standalone-row .row-text{
  padding-left: 0;
  margin-bottom: 15px;
}
.standalone-row:nth-child(2) .row-text{
  padding-right: 0;
}
}
@media (max-width: 767px){
 .heading{
    font-size: 32px;
}
 /*Loader*/
 .loader{
  left:30%;
}
/*Navbar*/
.navbar{
  height: 70px;
}
.navbar-brand{
  padding: 14px 10px 13px 10px;
}
  /*Side Menu*/
  .side-menu{
    width: 100%;
}
/*Banner*/
.banner .text-section .text-area{
  padding-top: 30rem;
}
/*Review Section*/
.carousel-section .review .text{
  font-size: 15px;
}

/*Products Detail Page*/
.productdetail-banner .text-section{
  height: 80vh;
}
.productdetail-banner .social-icons{
  display: none;
}
.productdetail-banner .text-section .text-area{
  left: 0;
}
.productdetail-banner .text-section .text-area{
  padding-top: 26rem;
}
.product-body .product-single-price .text{
  font-size: 14px;
}
/*StandAlone*/
.standalone-banner .text-section .text-area{
   left: 0;
  padding-top: 27.5rem;
}
.standalone-banner .text-section{
  height: 85vh;
}
}
@media (max-width: 370px){
  .text{
    font-size: 16px;
  }
  .heading{
    font-size: 30px;
  }
/*Side Menu*/
.side-nav .navbar-nav .nav-link{
  font-size: 22px;
}
.side-menu .inner-wrapper{
  padding: 4.5rem 4rem;
}

/*Banner*/
.banner .img-section{
  top:100px;
}
.banner .text-section .heading{
    font-size: 30px;
    margin-bottom: 22px;
}

.banner .text-section .text{
  margin-bottom: 22px;
  font-size: 15px;
}
.banner .text-section .text-area{
  padding-top: 24rem;
}
/*Products section*/
.products-section .text, .heading, .subheading{
  margin-bottom: 10px;
}

.products-section .row-3{
  margin-top: 0;
}
/*Products Detail Page*/
.productdetail-banner .img-section{
  top:105px;
}
.productdetail-banner .text-section .heading{
  font-size: 30px;
}
.productdetail-banner .text-section .text-area{
  padding-top: 22.5rem;
}
.product-body .pro-detail-sec .heading{
  font-size: 30px;
}
/*StandAlone*/
.standalone-banner .text-section .text-area{
  left: 34px;
  padding-top: 25rem
}
.standalone-banner .img-section{
    top:120px;
}
.standalone-banner .text-section .heading{
  font-size: 30px;
}

}





