/* ===================================
    Table of Content
====================================== */

/*- Fonts
  - Scrollbar
  - General   
  - Loader
  - Navbar
  - Side-Menu
  - Banner
  - About-Section
  - Portfolio-section
  - Clients-Section
  - Contact-Section
  - Products-Detail Page
  - StandAlone Page
  - Media Queries
*/

/* ===================================
    Fonts
====================================== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

/* ===================================
    Scrollbar
====================================== */

::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
width: 12px;
background: white;
border-left: 0 solid white;
border-right: 0 solid white;
}
::-webkit-scrollbar-thumb {
background: #b82619;
width: 0;
height: 25%;
transition: .5s ease;
cursor: pointer;
}

/* ===================================
    General
====================================== */

body{
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
}

a{
  text-decoration: none;
}

/*Text Classes*/
.heading{
  font-size: 60px;
  color: #202020;
  font-weight: 300;
  font-family: 'Oswald', sans-serif;
}

.subheading{
  font-size: 20px;
  color: #b82619;
  font-weight: 400;
}

.text{
  font-size: 16px;
  color: #797979; 
  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;
  list-style: none;
}
.social-icons ul li a {
  /*overflow: hidden;*/
  border-radius: 50%;
  display: block;
  color: #000;
  height: 40px;
  line-height: 40px;
  width: 40px;
  border: 1px solid transparent;
  text-align: center;
}

/*Social icons background hover*/
.icon-hover:hover {color: #b82619 !important; 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 !important;  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;}

/*Button*/

.btn {
  z-index: 2;
  letter-spacing: .5px;
  border-radius: 0;
  font-weight: 600;
  overflow: hidden;
  position: absolute;
  line-height: inherit;
  display: inline-block;
  color: #202020;
  border: 2px solid transparent;
  text-transform: uppercase;
  transition: all .5s ease !important;
}

.btn.button {
  font-size: 16px !important;
  font-weight: 600;
  color: #202020;
  padding: 9px 27px !important;
  line-height: 1.8em !important;
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
  text-transform: uppercase;
}

.btn.btn-rounded {
  border-radius: 50px;
}

/*Buttons*/
.btn.trans-btn { background: transparent; border-color: #fff; color: #fff; }
.btn.red-btn{ background: #b82619; border-color:  #b82619; color: #fff; }
.btn.black-btn{ background: #202020; border-color:  #202020; color: #fff; }
/*Buttons Hovers*/
.btn.btn-hvr-white:hover { background-color:transparent; border-color: #fff; color: #b82619; }
.btn.btn-hvr-black:hover { background-color: transparent; border-color: #202020; color: #fff; }
.btn.btn-hvr-red:hover { background-color: transparent; border-color: #b82619; color: #fff; }

.btn.btn-white::before,
.btn.btn-white::after {
  background: #fff;
  content: '';
  position: absolute;
  z-index: -1;
}

.btn.btn-black::before,
.btn.btn-black::after {
  background: #202020;
  content: '';
  position: absolute;
  z-index: -1;
}

.btn.btn-red::before,
.btn.btn-red::after {
  background: #b82619;
  content: '';
  position: absolute;
  z-index: -1;
}


/*Button Hover*/
.btn,
.btn::after {

  transition: all 0.3s;
}

.btn-1::after { height: 0; left: 0; bottom: 0; width: 100%; }
.btn-1:hover:after { height: 100%; } 

/*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
====================================== */
.loader-bg {
    position: fixed;
    z-index: 99999;
    background-color: #ffffff;
    width: 100%;
    height: 100%;
}

.loader {
    border: 0 solid transparent;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.loader:before , .loader:after {
    content: '';
    border: 1em solid #b82619;
    border-radius: 50%;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    animation: load 2s linear infinite;
    opacity: 0;
}

.loader:before {
    animation-delay: .5s;
}
@keyframes load {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}
/* ===================================
    Navbar
====================================== */
.navbar {
  padding-bottom: 0;
  padding-top: 0;
  z-index: 9;
}

.center-nav {
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: absolute;
  width: 100%;
}


.center-nav .navbar-brand {
  position: absolute;
  padding: 0;
  margin-left: 20px;
}

.navbar-collapse {
  height: 70px;
  background: #b82619;
}

.navbar-nav .nav-item {
  margin: 16px 5px;
  position: relative;
}

.navbar.sidebar-nav .navbar-nav .nav-item {
  margin: 10px 0;
}

.navbar-nav .nav-link {
  margin: 0 1rem !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  padding: 0;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  font-family: 'Oswald', sans-serif;
}

/*Navlink Hover*/
.navbar .navbar-nav .nav-link.active:after {
  width: 100%;
  background: #fff;
}

.navbar .navbar-nav .nav-link:hover {
  color: #fff;
  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: 0;
  background: transparent;
  transition: width .5s ease, background-color .5s ease;
}

.navbar .navbar-nav .nav-link:hover:after {
  width: 100%;
  background: #fff;
}

/*Side Menu Button*/

.sidemenu_btn {
  width: 36px;
  padding: 6px;
  right: 40px;
  top: 45px;
  z-index: 999;
  margin-top: 12px;
  margin-left: 16px;
  cursor: pointer;
  position: absolute;
  display: inline-block;
  transition: all .3s linear;
}

.sidemenu_btn span {
  height: 2px;
  width: 100%;
  background: #000;
  display: block;
  margin: auto;
  transition: .5s ease;
}

.sidemenu_btn:hover span:first-child,
.sidemenu_btn:hover span:last-child {
  width: 70%;
  background-color: #000;
}

.sidemenu_btn:hover span:nth-child(2) {
  background-color: #000;
}

.sidemenu_btn span:nth-child(2) {
  margin: 4px 0;
}

/*Header-appear*/
.header-appear {
    height: 85px;
    top: 0;
    width: 100%;
    position: fixed;
    z-index: 1024;
    background: #b82619;
    animation-name: animationFade;
    animation-duration: 1s;
    animation-fill-mode: both;
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}

@keyframes animationFade {
    from { opacity: 0; -webkit-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0);
    }
    to { opacity: 1; -webkit-transform: none; -o-transform: none; transform: none; }
}
.header-appear .navbar-top-default{
  position: fixed;
  top: 0;
  z-index: 1024;
  height: 90px;
  width: 100%;
}

/*Full-nav*/
.header-appear .full-nav {
  height: 85px;
  margin-top: 40px;
}

.header-appear .full-nav, .header-appear .full-nav {
  margin-top: 0;
  padding: 0;
}

.header-appear .navbar .navbar-nav {
  margin-left: auto !important;
  margin-right: 0 !important;
}

/*Hedaer-appear logo*/
.navbar.header-appear .logo-default,
.navbar  .logo-scrolled{
  display: none;
}

.navbar.header-appear .logo-scrolled,
.navbar .logo-default{
  display: inline-block;
}
/*Header-appear center-nav*/
.header-appear .center-nav{
  padding-top: 0;
  padding-bottom: 0;
}

/*Header appear Logo*/
.header-appear .navbar-brand{
margin-left: 0;
}
/*Header-appear Side-menu-btn*/
.header-appear .sidemenu_btn{
  right: 40px;
  top: 36%;
  transform: translateY(-50%);
}
.header-appear .sidemenu_btn span{
  background: #fff;
}
.header-appear .sidemenu_btn:hover span:first-child,
.header-appear .sidemenu_btn:hover span:last-child{
  background: #fff;
}
.header-appear .sidemenu_btn:hover span:nth-child(2) {
  background-color: #fff;
}
/* ===================================
    Side Menu
====================================== */

.side-menu {
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  z-index: 9999;
  background: #b82619;
  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: #011321;
  position: fixed;
  transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*side menu image*/
.sidemenu-image {
  position: absolute;
  top: 30px;
}

/*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: 3.5rem 3.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-menu .navbar-nav .nav-link{
  margin:0 5px !important;
}

.side-nav .navbar-nav .nav-item {
  opacity: 0;
  display: block;
  margin: 5px 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;
  text-transform: uppercase;
  line-height: normal;
  position: relative;
  border-radius: 0;
  text-decoration: none;
  font-family: 'Oswald', 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 .text {
  color: #fff;
  font-size: 14px;
}
.side-menu-footer .social-icons ul li a{
  color: #fff;
}

/* ===================================
    Banner
====================================== */
.banner-section{
  background: url("../img/banner.jpg");
  display: flex;
  height:100vh;
  background-repeat: no-repeat;
  align-items: center;
  background-size: cover;
}

.banner-section .text-col{
  padding-bottom: 150px;
}
.banner-section .text-col .heading{
  font-size: 72px;
  margin-bottom: 25px;
}
.banner-section .text-col .text{
  color: #202020;
}

/* ===================================
    About-Section
====================================== */
.about-section{
  padding-top: 120px;
}
/*Row-1*/
.about-section .row-1 .img-section{
  position: absolute;
  bottom: -35px;
  display: flex;
  justify-content: center;
  width: 100%;
}
/*Row-2*/
.about-section .row-2{
  padding-top: 100px;
  padding-bottom: 100px;
}
.about-section .row-2 .para-column{
  margin-top: 50px;
}
.about-section .row-2 .subheading{
  margin-bottom: 20px;
}
.about-section .row-2 .heading{
  font-size: 48px;
  font-weight: 100;
}
.about-section .row-2 .text{
padding-left: 55px;
}

/*Row-3*/
.about-section .row-3{
  padding-bottom: 120px;
}
.about-section .row-3 .text-column{
  cursor: pointer;
}
.about-section .row-3 .text-column .heading{
  color: #b82619;
  margin-bottom: 30px;
}
.about-section .row-3 .text-column .heading{
  transition: all .5s ease;
}
.about-section .row-3 .text-column:hover .heading {
transform: translateY(-10px);
transition: all .5s ease;
}
.about-section .row-3 .text-column .subheading{
  color: #202020;
  font-size: 30px;
  margin-bottom: 30px;
  font-family: 'Oswald', sans-serif;
}
.about-section .text-column .row-3 .text{
  color: #000;
  opacity: 0.7;
}
/*Row-4*/
.about-section .row-4{
  background: url("../img/about-us.jpg");
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
}

.about-section .prog-column{
  margin-top: 105px;
  width: 50%;
}

.about-section .row-4 .heading{
  font-size: 48px;
  font-weight: 100;
  margin-bottom: 50px;
}
/*Progress Bars*/
.prog-item {
  margin-bottom: 30px;
}
.prog-item .text {
  font-size: 18px;
  margin-bottom: 5px;
  color: #000;
}

.prog-item .skills-progress {
  width: 100%;
  height: 10px;
  position: relative;
  background: #a4a4a4;
}
.prog-item .skills-progress span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 10%;
  transition: all 1s;
}
.prog-item .skills-progress span i{
  position: absolute;
  color: #b82619;
  right: -5px;
  bottom: 9px;
}
.prog-item .skills-progress span::after {
  content: attr(data-value);
  position: absolute;
  top: -30px;
  right: -19px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: #b82619;
  padding-left: 5px;
  padding-right: 5px;
}
.bar-color{
  background: #b82619;
}

.skills{
  text-align: left;
}

/* ===================================
    Portfolio-Section
====================================== */
.portfolio-section{
  padding-top: 120px;
}
.portfolio-section{
  margin-bottom: 30px;
}
.portfolio-section .container {
  max-width: 1140px;
}
.portfolio-section .heading{
  margin-bottom: 0;
  font-size: 48px;
}
.cbp-wrapper-outer {
    overflow: visible;
}
.cbp-l-loadMore-button .cbp-l-loadMore-link,
.cbp-l-loadMore-button .cbp-l-loadMore-button-link {
  padding: 12px 32px;
}
.cbp-l-loadMore-button .cbp-l-loadMore-link,
.cbp-l-loadMore-button .cbp-l-loadMore-button-link,
.cbp-l-loadMore-button .cbp-l-loadMore-link:hover,
.cbp-l-loadMore-button .cbp-l-loadMore-button-link:hover,
.cbp-l-loadMore-button .cbp-l-loadMore-link:focus,
.cbp-l-loadMore-button .cbp-l-loadMore-button-link:focus{
  color: #fff;
}

.cbp-l-filters-button .cbp-filter-item {
  background: transparent;
  padding: 0;
  margin: 0;
  border: none;
  color: #202020;
  font-size: 12px;
  font-weight: 600;
  margin-right: 15px;
  text-transform: uppercase;
  border-bottom: solid 2px transparent ;
}

.cbp-l-filters-button .cbp-filter-item.cbp-filter-item-active {
  color: #b82619;
  background: transparent;
  border-bottom: solid 3px #b82619;

}
.cbp-l-filters-button .cbp-filter-item,
.cbp-item.even{
  -webkit-transition: 300ms all ease;
  -o-transition: 300ms all ease;
  transition: 300ms all ease;
}
.cbp-item.even {
  margin-top: -190px;
}
.cbp-l-grid-mosaic .cbp-caption-activeWrap {
  background: rgba(184,38,25, 0.8);

}
.cbp-l-caption-title {
  color: #ffffff !important;
  font-weight: 400 !important;
  font-size: 15px !important;
}
.portfolio-detail-text {
  color: #FFFFFF;
  font-style: italic;
}
.portfolio-hover-effect .hover-text{
  padding-left: 3%;
  padding-bottom: 2%;
}
.portfolio-hover-effect .portfolio-inner-content{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.portfolio-hover-effect .portfolio-inner-content span{
  background-color: #FFFFFF;
  height: 3px;
  width: 70px;
  display: block;
}
.portfolio-hover-effect .portfolio-inner-content span:nth-child(2){
  transform: rotate(90deg);
}
.portfolio-hover-effect .hover-text .p-hover-title{
  font-size: 20px;
  color: #FFFFFF;
  font-weight: 500;
  margin-bottom: 0;
}
.portfolio-hover-effect .hover-text .p-hover-des{
  font-size: 14px;
  color: #FFFFFF;
}
#js-loadMore-lightbox-gallery {
  margin-top: 45px;
}
#js-loadMore-lightbox-gallery.active {
  margin-top: -150px;
  position: relative;
}
#js-loadMore-lightbox-gallery.active-outer {
  margin-top: -250px;
}
.cbp-caption-active .cbp-caption-activeWrap {
  width: 94%;
  position: absolute;
  z-index: 2;
  height: 94%;
}
.cbp-caption-active .cbp-caption-activeWrap:hover .text-data{
  z-index: -1 !important;
}

.cbp-caption-zoom .cbp-caption-activeWrap {
  opacity: 0;
  top: 3%;
  left: 3%;
}

.portfolio-foot-detail{
  padding-bottom: 3%;
}
.portfolio-foot-detail .p-text{
  color: #202020;
  font-size: 13px;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 8px;
}
.portfolio-foot-detail .p-text:last-child{
  margin-bottom: 0;
}
.portfolio-foot-detail .p-num{
  font-size: 50px;
  font-weight: 700;
}

/* ===================================
    Clients-Section
====================================== */

.client-section {
  padding-top: 120px;
}
.client-section .carousel{
  padding-bottom: 100px;
}

.client-section .carousel-section h2{
  color: #fff;
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 40px;
}
.client-section .text-area{
  padding: 58px 25px ;
  background-color: #000;

}
.client-section .subheading{
  color: #fff;
  font-size:20px;
  font-weight: 400;
}

.client-section .text-area  .heading{
  color: #fff;
  font-size: 48px;
  font-weight: 100;
  margin-bottom: 50px;

}
.client-section .text-area .text{
  font-size: 18px;
  font-weight: 400;
  padding-left: 120px;
  padding-right: 120px;
  color:#fff;
}
.client-section .text-area .subheading{
  margin-top: 20px;
}

.client-section .text-area .testimonial-image {
  width: 80px;
  height: 80px;
  display: block;
  margin: auto;
}

.client-section .text-area .quote i {
  color: #fff;
  font-style: italic;
  font-size: 20px;
  margin-bottom: 30px;
}


/* ===================================
    Products-Section
====================================== */

.product-section{
  padding-top: 120px;
  padding-bottom: 20px;
  position: relative;
}

.product-section .row-1 .subheading{
  margin-bottom: 20px;
}

.product-section .card{
  border: 1px solid transparent;
  width: 72%;
  margin-right: 0 !important;
  margin-left: 50px
}

.product-section .product-carousel{
  position: relative;
}
.product-section .owl-carousel .owl-item img{
  display: flex;
  justify-content: center;
  width: 80%;
  text-align: center;
  margin-left: 30px;
}
.product-section .item .card .card-body{
  padding: 1rem;
}
.product-section .owl-carousel .owl-stage-outer{
  padding-top: 100px;
  padding-bottom: 100px;
}
.product-section .item .card{
  transition: all .5s ease;
}
.product-section .item .card:hover {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  transition: all .5s ease;
}
.product-section  .item  .card .card-body .heading{
  font-size: 20px ;
}
.product-section .item  .card .card-body .subheading{
  font-size: 30px;
}

/*Carousel buttons*/
.product-section  .icons i {
  color: #272727;
  font-size: 30px;
  cursor: pointer;
}
.product-section  .icons .left-customPrevBtn{
  position: absolute;
  left: 10%;
  bottom: 34%;
  z-index: 999;
}
.product-section  .icons .right-customNextBtn{
  position: absolute;
  right: 10%;
  bottom: 34%;
  z-index: 999;
}

/* ===================================
    Blog-Section
====================================== */
.blog-section .text-sec{
 background-color: #b82619;
}
.blog-section .row .text-col{
  align-items: center;
}
.blog-section .text-sec .text-col{
  padding: 63px 70px;

}
.blog-section .text-sec .text-col .heading{
  color: #fff;
  font-weight: 100;
  margin-bottom: 50px;
}
.blog-section .text-sec .text-col .text{
  color: #fff;
  margin-bottom: 50px;
}
/* ===================================
    Contact-Section
====================================== */
.contact-section{
  padding-top: 120px;
}
.contact-section .form-sec{
  padding-right: 40px;
}
.contact-section .heading{
  margin-bottom: 80px;
}
.contact-section .form-group{
  margin-bottom: 25px;
}

.contact-section .form-control{
  padding: 1.375rem 1.75rem;
}
.contact-section .form-control:focus{
  color: #000;
  border-color: #ced4da;;
  box-shadow: 0 0 0 0.2rem transparent;
}

.contact-section .form-sec .btn.button{
  width: 100%;
}
.contact-section .form-sec .button-center {
  width: 100%;
  margin: 15px 20px 0 20px;
}

/*Address sec*/
.contact-section .address-sec{
  padding-left: 40px;
}
.contact-section .address-sec .text{
  color: #252525;
  opacity: 0.9;
  font-weight: 400;
}
.contact-section .address-sec .text{
  font-size: 17px;
}
.contact-section .address-sec .media {
  margin-top: 40px;
}

.contact-section .address-sec .media i {
  font-size: 25px;
  color: #b82619;
}

.contact-section .address-sec .media-body {
  margin-left: 20px;
}

.contact-section .address-sec .media-body .text {
  margin-top: 0;
  margin-bottom: 0;
}

.contact-section .address-sec .media-body span {
  margin-left: 20px;
}
.contact-section .address-sec .media .media-body ul{
  margin-bottom: 0;
}
.contact-section .address-sec .media .media-body li{
  list-style: none;
  display: inline-block;
}


/* ===================================
    Footer
====================================== */

footer {
  padding-top: 120px;
  padding-bottom: 120px;
}

footer .text{
  margin-top: 8px !important;
  font-size: 14px;
  color: #888888;
  text-align: center;
  padding-left: 55px;

}

/* ===================================
    Products-Detail Page
====================================== */
.detail-banner{
  background: url('../img/detail-banner.jpg');
  height:70vh;
  background-size: cover;
  display: flex;
  align-items: center;    
}

.detail-banner .heading{
  padding-bottom: 16px
}


/*HEADING SECTION*/
.heading-section{
  padding-top: 120px;
}

.detail-body .pro-detail-sec .heading{
 margin-bottom: 40px;
}

.detail-body{
 margin-top: 50px;
}

.detail-body .button-center{
  margin-bottom: 20px;
}

/*DESTINATION DETAIL*/

.product-detail-slider img{
  width: 100%;
}

.detail-body .swiper-slide img {
  height: auto;
}

.detail-body .products-list .product-single-price {
  margin-bottom: 10px;
}

.detail-body .products-list .product-checklist{
  margin-top: 20px;
}
.detail-body .product-detail{
  margin-top: 50px;
}
.detail-body .products-list .product-checklist ul{
  padding-left: 0;
  margin-bottom: 20px;
}

.detail-body .product-detail .product-checklist ul li{
  list-style: none;
  color: #000;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 5px;
}

.detail-body .product-detail .product-checklist ul li i{
  color:  #b82619;
}
.detail-body .products-list .product-detail .product-single-price{
  margin-top: 20px;
}

.detail-body .products-list  .share-product-details .share-product-icons{
  padding: 0;
}

.detail-body .products-list .social-icons li p{
  color: #000;
  font-size: 14px;
  font-weight: normal;
}

.detail-body .products-list  .social-icons li{
  margin-right: 15px;
  display: inline-block;
}

.detail-body .products-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;
}


.product-addtional-info {
  list-style-position: outside;
  padding: 0;
  margin: 0 0 0;
  margin-left: 25px;
  list-style: none;
}

.product-addtional-info li{
  margin-bottom: 10px;
}


.product-addtional-info li i{
  display: inline-block;
  margin-right: 2px;
  color: #ff431e;
}


.product-addtional-info li p{
  display: inline-block;
  font-size: 17px;
}

/*CUSTOMER REVIEWS SECTION */
.customer-reviews{
  padding-top: 80px;
}
.customer-reviews .review-area{
  border: 1px solid #d3d3d3;
  padding: 30px 15px;
}
.customer-reviews .heading{
  letter-spacing: 0;
  margin-bottom: 50px;
  margin-top: 16px !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;
}

/*Related Products Section*/
.related-product-sec{
  padding-bottom: 0;
}
/*Footer*/
.detail-footer{
  padding-top: 20px;
}
/* ===================================
    StandAlone page
====================================== */

/*Banner*/
.banner{
  background: url('../img/standalone-banner.jpg');
  height:70vh;
  background-size: cover;
  display: flex;
  align-items: center;    
}
.banner .header-text{
  position: absolute;
  padding-top: 40px;
  padding-left: 0;
  padding-right: 0;
}
.banner .heading{
  padding-bottom: 16px;
}

.page-breadcrumb li{
  display: inline-block;
  font-size: 18px;
  font-weight:500;
  color: #202020;
}
.page-breadcrumb li a{
  color:#202020; 
  margin-right: 5px;
  transition:all 0.3s ease;
}
.page-breadcrumb li i{
  color: #b82619;
}

/*MAIN PAGE START*/
.main-page{
  float:left;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 120px;
}
.main-page .standalone-heading{
  padding-bottom: 100px;
}
.main-page .standalone-heading .heading{
  font-size: 50px;
}
 
.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 {
  opacity: 0;
  position: absolute;
  transition: all 0.3s ease;
  background-color:  #b82619;
}
.hover-effect:hover .standaloneoverlay {
  opacity: .4;
}
.overlayBottom {
  width: 100%;
  height: 0;
  bottom: 0;
  right: 0;
  cursor: pointer;
  background-color: #b82619;
}
.hover-effect:hover .overlayBottom {
  height: 100%;
}
footer .footer-text{
  text-align: right;
  padding-left: 0;
}

/* ===================================
    Media Queries
====================================== */
@media (width: 1920px) {

/*About Section*/
.about-section .prog-column{
  margin-top: 240px;
}

/*Client Section*/
.client-section .text-area{
  padding: 180px 25px;
}
.client-section .text-area .text{
  padding-left: 220px;
  padding-right: 220px;
}
/*Blog-section*/
.blog-section .text-sec .text-col{
  padding: 165px 215px;
}
}

@media (max-width: 1200px) {
/*Navbar*/
.sidemenu_btn{
  right:4px;
}
/*Side Menu*/
.side-menu{
  width: 50%;
}
.header-appear .sidemenu_btn{
  right: 16px;
}
/*About Section*/
.about-section .row-4{
  background-size: contain;
  height: 100%;
}
.about-section .row-4 .prog-column{
  width: 100%;
  margin-top: 33rem;
}
/*Portfolio Section*/
.portfolio-section .heading{
  display: flex;
  justify-content:center;
  width: 100%;
  text-align: center;
  margin-left: 15.5rem;
}
.portfolio-section .cbp-l-filters-button{
  display: flex;
  justify-content: center;
  width: 100%;
}
#js-loadMore-lightbox-gallery.active{
  margin-top: 50px;
}
.portfolio-section .portfolio-text{
  margin-left: 15px;
}
.portfolio-section .portfolio-btn{
  margin-left: 30rem;
}
.portfolio-foot-detail{
  padding-bottom: 0;
}
/*Client Section*/
.owl-carousel .owl-item img{
  height: 100%;
}
.client-section .text-area .text{
  padding: 0;
}
/*Products Section*/
.product-section .owl-carousel .owl-item img{
  width: 100%;
  margin-left: 0;
}
.product-section .icons .left-customPrevBtn{
  left: 5%;
}
.product-section .icons .right-customNextBtn{
  right: 5%;
}
/*Blog Section*/
.blog-section .text-sec .text-col{
  padding: 60px 34px;
}
.blog-section .text-sec .text-col .heading{
  font-size: 50px;
}
.blog-section .img-sec img{
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
}
/*Contact Section*/
.contact-section .heading{
  font-size: 50px;
}
.contact-section .address-sec{
  padding-left: 0;
}
}
@media (max-width: 992px) {
/*WoW Animation*/
.wow {
  visibility: visible !important;
  animation: none !important;
}
/*General*/
.subheading{
  text-align: center;
}
.heading{
  text-align: center;
}
.text{
  text-align: center;
}
/*Navbar*/
.center-nav{
  background-color: #b82619;
  height: 80px;
}
 .center-nav .navbar-brand{
  margin-left: 0;
 }
.sidemenu_btn{
  top: 18px;
  right: 10px;
}
.sidemenu_btn span{
  background:#fff;
}
.header-appear .sidemenu_btn{
  right: 10px;
}
/*Side Menu*/
.side-menu{
  width: 100%;
}
/*About Section*/
.about-section .row-1 .img-section{
  bottom: 155px;
}
.about-section .row-2{
   padding-top: 0;
}
.about-section .row-2 .heading{
  font-size: 45px;
}
.about-section .text-column{
  margin-bottom: 50px;
}
.about-section .row-4 .prog-column{
  margin-top: 26rem;
}
.about-section .row-2 .text{
  padding-left: 0;
}
/*Portfolio section*/
.portfolio-section .heading{
  display: block;
  margin-left: 0;
}
.portfolio-section .portfolio-text{
  margin-left: 0
}
.portfolio-section .portfolio-btn{
  margin-left: 0;
}
/*Products-Section*/
.product-section .card{
  width: 100%;
  margin-left: 0;
}
.product-section .icons i{
  display: none;
}
.product-section .card-body{
  padding-top: 5rem;
}
/*Blog Section*/
.blog-section .heading{
  font-size: 45px;
}
.blog-section .button-center{
  text-align:center;
}
/*Contact-Section*/
.contact-section .heading{
  font-size: 45px;
}
.contact-section .form-sec{
  padding-right: 0;
  padding-left: 0;
}
.contact-section .address-sec{
  padding-left: 0;
}
.contact-section .address-sec .heading{
  margin-top: 80px;
  margin-bottom: 60px;
}
.contact-section .address-sec .media i{
  margin-bottom: 15px;
}
.contact-section .address-sec .media{
  display: block;
  text-align: center;
}
.contact-section .address-sec .media{
  margin-top: 60px;
}
.contact-section .address-sec .media-body{
  margin-left: 0;
}
/*Footer*/
footer .text{
  padding-left: 0;
}
/*Products Detail Page*/
.detail-body{
  margin-top: 0;
}
.heading-section .heading{
 font-size: 45px;
}
.detail-body .products-list .product-single-price{
  margin-top: 40px;
}
.customer-reviews .heading{
  font-size: 45px;
}
.customer-reviews .reviews .media{
  display: block;
}
.customer-reviews .reviews .media-body{
  padding-left: 0;
  border-left: 1px solid transparent;
}
.customer-reviews .button-center{
  text-align: center;
}
/*StandAlone page*/
.standalone-area .standalone-row{
  margin-bottom: 60px;
}
.main-page .standalone-row .row-text{
  padding-left: 0;
  margin-bottom: 30px;
}
.standalone-row:nth-child(2) .row-text{
  padding-right: 0;
}
footer .footer-text{
  text-align: center;
}
footer .social-icons{
  text-align: center;
}
}

@media (max-width: 767px) {
  
/*Side Menu*/
.side-menu .inner-wrapper{
  padding: 4.5rem 3rem; 
}
.navbar-nav .nav-link{
  margin: 0 0 !important;
}
/*Banner Section*/
.banner-section .text-col{
  padding-bottom: 85px;
}
.banner-section .text-col .heading{
  font-size: 46px;
}
/*About Section*/
.about-section .row-2 .heading{
  font-size: 34px;
}
.about-section .row-4 .prog-column{
  margin-top: 15rem;
}
.about-section .row-4 .heading{
  font-size: 34px;
}
/*portfolio Section*/
.portfolio-section .heading br{
  display: none;
}
.portfolio-section .heading{
  font-size: 34px;
}
.portfolio-section .btn.button{
  padding: 9px 24px !important;
}
.portfolio-section .pl-4{
  padding-left: 1rem !important;
}
.portfolio-foot-detail .p-text{
  font-size: 11px;
}
.cbp-popup-ready.cbp-popup-lightbox .cbp-popup-next, 
.cbp-popup-ready.cbp-popup-lightbox .cbp-popup-prev, 
.cbp-popup-ready.cbp-popup-lightbox .cbp-popup-close{
  display: none;
}
/*Product section*/
.product-section .row-1 .heading{
 font-size: 34px;
}

/*Client section*/
.client-section .text-area .heading{
  font-size: 34px;
}
/*Blog Section*/
.blog-section .text-sec .text-col{
  padding: 40px 40px;
}
.blog-section .heading{
  font-size: 34px;
}
/*Footer*/
footer .text{
  font-size: 13px;
}
/*Products Detail Page*/
.detail-banner .heading{
  font-size: 55px;
}
/*StandAlone Page*/
.banner .heading{
  font-size: 55px;
}
}
@media (max-width: 370px) {

  /*Side Menu*/
.side-nav .navbar-nav .nav-link{
    font-size: 20px;
}
/*Banner Section*/
.banner-section .text-col .heading{
    font-size: 44px;
}
}