
/* ===================================
    Table of Content
====================================== */

/*- Fonts
  - Scrollbar
  - General   
  - Loader
  - Navbar
  - Side-Menu
  - Banner
  - About-us Section
  - Testimonial Section
  - Gallery Section
  - Story Section
  - Pricing Section
  - Blog Section
  - Contact Section
  - Footer
  - StandAlone Page
  - Media Queries

*/

/* ===================================
    Fonts
====================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;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: #202221;
width: 0;
height: 25%;
transition: .5s ease;
cursor: pointer;
}
/* ===================================
    General
====================================== */

body {
  overflow-x: hidden;
  font-family: 'Montserrat', sans-serif; 
}

a {
  text-decoration: none;
}

/*Text and Headings*/

.heading{
  font-size: 44px;
  color: #202221;
  font-weight: 600;

}

.subheading{
  font-size: 16px;
  font-weight: 400;
  color: #202221;
  font-family: 'Open Sans', sans-serif;
}

.text{
   font-size: 16px;
  font-weight: 400;
  color: #515050;
  margin-bottom: 0;
  font-family: 'Roboto', sans-serif;
}

/*Button*/
.btn {
  z-index: 2;
  letter-spacing: .5px;
  border-radius: 0;
  font-weight: 400;
  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: 400;
  color: #fff;
  padding: 9px 25px !important;
  line-height: 1.8em !important;
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
  z-index: 3;
}

.btn.btn-rounded {
  border-radius: 50px;
}
/*Gradient Button*/
.gradient-btn{
 
  background-image:linear-gradient(to right,#fe5638 0%, #e3397a 50%, #fe5638 100%);
  background-size: 200% auto;
}
/*Gradient Button Hover*/
.gradient-btn:hover{
    background-position: right center;
}
/*Black Button*/
.black-btn {
  padding: 40px;
  text-align: center;
  border: none;
  display: inline-block;
  text-decoration: none;
  position: relative;
  background-image: linear-gradient(to right, #202221 30%, #202221 70%);
  -webkit-backface-visibility: hidden;
  z-index: 1;
}
/*Gradient Hover*/
.black-btn:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #fe5638  10%, #e3397a 90%);
  transition: opacity 0.5s ease-in-out;
  z-index: 2;
  opacity: 0;
}
.black-btn:hover:after {
  opacity: 1;
}
.button .button-text {
  position: relative;
  z-index: 3;
  color: #fff;
  font-size: 14px;
}


/*Social icons*/
 .social-icons ul {
  margin-bottom: 0px;
}

 .social-icons li {
  display: inline-block;
}
 .social-icons ul li a {
  border-radius: 50%;
  color: #fff;
  height: 27px;
  line-height: 27px;
  width: 27px;
  font-size: 15px;
  border: 1px solid transparent;
  display: block;
  overflow: hidden;
  text-align: center;
}
/*Social icons Hover*/

/*Hover Style 1*/
 .icon-hover:hover{color: #000 !important; transition: 0.5s ease; 
  background: #fff;}
 
/*Social icons background hover*/
.facebook-hover:hover{color: #fff; transition: 0.5s ease; background-color: #4267B2;}
.twitter-hover:hover{color: #fff; transition: 0.5s ease; background-color: #1DA1F2;}
.google-plus-hover:hover{color: #fff; transition: 0.5s ease; background-color: #db4a39;}
.linked-in-hover:hover{color: #fff; transition: 0.5s ease; background-color: #2867B2;}
.instagram-hover:hover{color: #fff; transition: 0.5s ease; background-color: #C13584;}
.gmail-hover:hover{color: #fff; transition: 0.5s ease; background-color: #D44638;}
.instagram-hover:hover{color: #fff;  transition: all .5s ease; 
  background:linear-gradient(to bottom, #aa2fb5 0%, #f1762c 93%)!important;}

/* ===================================
    Loader
====================================== */

.loader-area {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: #202020;
  z-index: 999999;
}

.spinning-area {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.spinner {
  border: 10px solid rgba(255, 255, 255, 0.2);
  border-top: 10px solid #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin: 0 auto;
  margin-top: 5%;
  padding: 50px;
  -webkit-box-shadow: 0 0 180px #000;
  box-shadow: 0 0 180px #000;
  -webkit-animation-name: spin;
  animation-name: spin;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* ===================================
    Header & Navbar
====================================== */

.navbar{
background-color:  #202221 !important;
z-index: 9;
height: 100px;

}

.top-nav{
  margin-top: 2rem;
  position: absolute;
  width: 100%;
}

.navbar .navbar-brand {
  border: 2px solid #fff;
  padding: 15px 8px;
}
.navbar .navbar-nav{
  margin-left: auto;
}

.navbar .navbar-nav .nav-link{
  font-size: 16px;
  font-weight: 500;
  margin-left: 65px;
  transition: .5s ease;
  color:#fff;
  padding-right: 0;
  padding-left: 0;
  border-bottom: solid 2px transparent; 
}
.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link:hover{
  background: linear-gradient(to right, #fe5638 0%, #e3397a 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.5s ease;
}

/*Social icons*/

.navbar .social-icons{
  position: absolute;
  right: 5px;
}

/*side menu button*/
.sidemenu_btn {
  width: 36px;
  padding: 6px;
  z-index: 999;
  left: 25px;
  top: 37px;
  cursor: pointer;
  position: absolute;
  display: inline-block;
  transition: none;
}

.sidemenu_btn span {
  height: 2px;
  width: 100%;
  background: #fff;
  display: block;
  margin: auto;
  transition: .5s ease;
}

.sidemenu_btn:hover span:first-child,
.sidemenu_btn:hover span:last-child {
  width: 70%;
}

.sidemenu_btn span:nth-child(2) {
  margin: 4px 0;
}

/*Header-appear*/
.header-appear {
    height: 100px;
    top: 0;
    width: 100%;
    position: fixed;
    z-index: 1024;
    background: #202221;
    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; }
}

/*Full-nav*/
.header-appear .full-nav {
  height: 100px;
}

/*Header-appear center-nav*/
.header-appear.top-nav{
  margin-top: 0;
}


/* ===================================
    Side Menu
====================================== */

.side-menu {
  width: 30%;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  background: #fff;
  z-index: 2032;
  height: 100%;
  transform: translate3d(-100%, 0, 0);
  transition: transform .5s ease;
  overflow: hidden;
}

.side-menu .side-nav {
  margin-top: 18px;
  display: block;
}

.side-nav .navbar-nav .nav-item {
  opacity: 0;
  display: block;
  margin: 19px 0;
  padding: 0 !important;
  transition: all 0.8s ease 300ms;
  transform: translateY(30px);
}



.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: #000;
  padding: 2px 0 3px 0 !important;
  font-size: 28px;
  line-height: normal;
  position: relative;
  border-radius: 0;
  text-decoration: none;
}


/*.side-nav .navbar-nav .nav-link:hover {
  
}*/
.side-nav .navbar-nav .nav-link.active,
.side-nav .navbar-nav .nav-link:hover{
  background: linear-gradient(to right, #fe5638 0%, #e3397a 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.side-menu-opacity {
  opacity: 0;
}

.side-menu.left {
  left: 0;
  right: auto;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.side-menu.before-side {
  width: 280px;
}

.side-menu.side-menu-active,
.side-menu.before-side {
  -webkit-transform: translate3d(0, 0, 0);
  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 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #202221;
  transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  display: none;
  z-index: 1031;
  opacity: 0.4;
}

.side-menu .image {
  position: absolute;
  top: 25px;
  right: 50px;
}

/*side close btn*/
.side-menu .btn-close {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 25px;
  left: 34px;
  cursor: pointer;
}


.side-menu.before-side .btn-close {
  display: none;
}

.side-menu .btn-close::before,
.side-menu .btn-close::after {
  position: absolute;
  left: 19px;
  content: ' ';
  height: 28px;
  width: 2px;
  background: #202221;
  top: 6px;
}

.side-menu .btn-close:before {
  transform: rotate(35deg);
}

.side-menu .btn-close:after {
  transform: rotate(-35deg);
}

.side-menu .inner-wrapper {
  padding: 3.5rem 3rem;
  height: 100%;
  position: relative;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  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 .navbar-nav {
  display: block;
}

/*side menu footer */
.side-menu-footer .navbar-nav {
  transform: translateY(0);
}

.side-menu-footer p {
  color: #000;
  font-size: 15px;
}

.side-menu-footer .social-icons ul li a {
  color: #000;
  height: 40px;
  line-height: 42px;
  width: 40px;
 
}

@-webkit-keyframes animationFade {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes animationFade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ===================================
    Banner-Section
====================================== */
.banner-section .btn.button{
  font-weight: 600;
}
 
.banner-section .img-section{
  position: relative;
  width: 100%;
}
.banner-section .text-section{
  top: 37%;
  width: 485px;
  position: absolute;
  text-align: right;
  left: 54%;
  }
  .banner-section .text-section .text{
    margin-bottom: 25px;
  }
.banner-section .text-section .heading{
  margin-top: 15px;
  margin-bottom: 15px;
  font-weight: 700;

} 

/* ===================================
    About-us Section
====================================== */
.about-us{
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #fff;
}
.about-us .heading{
  margin-bottom: 25px;
}
.about-us .services{
  padding-top: 120px;
  padding-bottom: 120px;
}
.about-us .top-col{
margin-bottom: 120px; 
}

.about-us .image{
display: flex;
justify-content: center;
}
.about-us .media .media-body{
  padding-top: 25px;
}
.about-us .media .media-body .subheading{ 
    background: linear-gradient(to right, #fe5638  20%, #e3397a  30%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 15px;
}
.about-us .media .media-body .text{
  color: #515050;
  font-size: 14px;  
}

.about-us .media .heading{
  transition: all .5s ease;
  font-weight: 500;
}
.about-us .media:hover{
cursor: pointer;
}
.about-us .media:hover .heading{
transform: translateY(20px);
transition: all .5s ease;
}

.about-us .button-sec .subheading{
  color: #515050;
}

.about-us .button-sec .heading{
  font-size: 30px;
  margin-top: 25px;
  margin-bottom: 25px;
}

/* ===================================
    Testimonial-Section
====================================== */
.testimonial-section{
  background-color: #202221;
  padding-top: 150px;
  padding-bottom: 150px;
}

.testimonial-section .item .media .carousel-img img{
  display: flex;
  justify-content: center;
  width: 100%;
}

.testimonial-section .item .media{
  text-align: left;
}
.testimonial-section .item .media-body .heading{
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 400;
}
.testimonial-section .item .media-body .text {
  color: #ededed;
  font-size: 15px;
}
.testimonial-section .owl-theme .owl-dots .owl-dot span{
  width: 7px;
  height: 7px;
  margin: 5px 7px;
  background: #fff;
  display: block;
  -webkit-backface-visibility: visible;
  transition: all .5s ease;
  border-radius: 30px;
  position: relative;
  top: 100px;
}
.testimonial-section .owl-theme .owl-dots .owl-dot.active span{
  width: 10px;
  height: 10px;
  background: #fff;
  transition: all .5s ease;
}


/* ===================================
    Gallery-Section
====================================== */
.gallery-section{
  padding-top: 150px;
  padding-bottom: 150px;
}

.gallery-section .heading{
  font-size: 36px;
  margin-bottom: 25px;
}

.gallery-section .text{
  margin-bottom: 65px;
}

.gallery-section .cbp-l-caption-body .title {
  color: #fff;
  font-size: 20px;
}

.gallery-section  .cbp-l-grid-mosaic-flat .cbp-caption-activeWrap {
    background-image:linear-gradient(to right, #fe5638 25%, #e3397a 75%)
}

.gallery-section  .cbp-l-grid-mosaic-flat .cbp-caption-activeWrap:hover {
  background-image:linear-gradient(to right, #fe5638 25%, #e3397a 75%);
  opacity: 0.8;
}

.gallery-section .cbp-item:hover .cbp-caption-defaultWrap {
  transform: scale(1.25);
  transition: 0.6s ease-in-out;
}

.gallery-section .cbp-l-caption-body .cbp-l-caption-title {
  font-size: 20px;
}

.gallery-section .cbp-l-caption-body .cbp-l-caption-desc {
  color: #ffff;
  font-size: 12px;
}
.gallery-section .cbp-l-filters-buttonCenter .cbp-filter-item {
  border: none;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  display: inline-block;
  background: transparent;
  transition: all .2s ease-in-out;
}

.gallery-section .cbp-l-filters-buttonCenter {
  margin-bottom: 0px;
  margin-top: 50px;
}

/*.gallery-section .cbp-l-filters-buttonCenter .cbp-filter-item:hover {
   background: linear-gradient(to right, #fe5638 0%, #e3397a 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}*/

.gallery-section .cbp-l-filters-buttonCenter .cbp-filter-item-active.cbp-filter-item {
   background: linear-gradient(to right, #fe5638 0%, #e3397a 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gallery-section  .plus {
  margin: 0 auto;
  height: 70px;
  width: 70px;
  margin-bottom: 16px;
  display: block;
  position: relative;
  overflow: hidden;
}

.gallery-section  .plus::before {
  width: 2px;
  left: 50%;
  top: 5px;
  bottom: 5px;
  margin-left: -1px;
}

.gallery-section  .plus::after {
  height: 2px;
  top: 50%;
  left: 5px;
  right: 5px;
  margin-top: -1px;
}

.gallery-section  .plus::before,
.plus::after {
  content: " ";
  position: absolute;
  background: #fff;
}
.gallery-section .center-button{
  text-align: center;
  margin-top: 60px;
}

.gallery-section .center-button .btn.button{
  padding: 8px 40px !important;
}

/* ===================================
    Story-Section
====================================== */

.story-section {
  padding-top: 150px;
  padding-bottom: 150px;
  background-size: cover;
  background-image: url('../img/story-img.jpg');
}

.story-section .text-area {
  text-align: center;
}
.story-section .text-area .heading{
  color: #fff;
  font-size: 36px;
  font-weight: 600;
}
 .story-section .center-button{
  display: flex;
  justify-content: center;
  width: 100%;
 }
.story-section .media{
  height: 50px;
  padding:10px 12px 10px 5px;
  background-color: transparent;
}
.story-section .media i {
  overflow: hidden;
  background: linear-gradient(to right, #fe5638 0%, #e3397a 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 10px;
  margin-left: 3px;
  transition: all .5s ease;
  position: relative;
}

.story-section .media .button-border{
  text-align: center;
  color: #fff;
  width: 33px;
  height: 33px;
  line-height: 32px;
  position: relative;
}
.story-section .media .button-border::before{
  content:"";
  position:absolute;
  top:-1px;
  left: 0;
  right:0;
  bottom:1px;
  border-radius:50%;
  background:linear-gradient(to right, #fe5638 0%, #e3397a 70%);
  -webkit-mask:radial-gradient(farthest-side, transparent calc(100% - 2px),#fff 0);
}

.story-section .media .media-body{
  margin-left: 10px;
  background: linear-gradient(to right, #fe5638 0%, #e3397a 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.story-section .media:hover i{
  background: linear-gradient(to right, #fff 0%, #fff 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all .5s ease;
}
.story-section .media:hover .button-border::before{
   background:linear-gradient(to right, #fe5638 0%, #e3397a 70%);
     -webkit-mask:radial-gradient(farthest-side, transparent calc(100% - 100px),#fff 0);

}

/* ===================================
    Pricing-Section
====================================== */

.pricing-section {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #fff;
}
.pricing-section .heading{
  text-align: center;
  margin-bottom: 25px;
}

.pricing-section .text{
  text-align: center;
}

.pricing-section .pricing-plans {
  margin-top: 90px;
}

.pricing-section .pricing-plans .single-price {
  padding-bottom: 30px;
  background-color: #fff;
  text-align: center;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
}

.pricing-section .center.price-tag {
  color: #fff;
}

.pricing-section .price-tag .price {
  color: #18191d;
  font-size: 36px;
  margin-top: 25px;
  margin-bottom: 25px;
}

.pricing-section .price-tag .heading {
  font-size: 18px;
  padding: 30px;
  color: #333333;
  background-color: #f2f2f2;
}
.pricing-section .price-item ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-section .price-item ul li {
  font-size: 15px;
  padding: 7px 0;
  margin: 5px 0;
  color: #4f4f4f;
  font-family: 'Open Sans', sans-serif;
}

.pricing-section .pricing-plans .single-price a {
  margin-top: 15px;
}

.pricing-section .pricing-plans .single-price.active {
  padding-bottom: 35px;
  background-color: #fff;
  transform: translateY(-20px);
  position: relative;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.10);
}

.pricing-section  .active .price-tag .heading {
  font-size: 18px;
  padding: 50px;
  color: #fff;
  background: linear-gradient(to right, #fe5638 10%, #e3397a 80%);
}
.pricing-section .pricing-plans .active .price-tag .heading{
  color: #fff;
}
.pricing-section .pricing-plans .active .price-tag .text {
  color: #032a58;
  font-size: 14px;
}

/* ===================================
    Blog-Section
====================================== */
 .blog-section{
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #f6f6f6;
 }
.blog-section .text-section{
  padding-top: 2.5rem;
}
.blog-section .text-section .heading{
  margin-bottom: 35px;
}

.blog-section .text-section .text{
  margin-bottom: 35px;
  padding-right: 30px;
}

.blog-section .img-section img{
  border:11px solid #fff;
}

/* ===================================
    Contact-Section
====================================== */

.contact-section {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #fff;
}

.contact-section .heading{
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: left;
}

.contact-section .contact-form {
  margin-right: 40px;
}

.form-control:focus {
  border-color: #ced4da;
  box-shadow: 0 0 0 0.0rem transparent;
}

.contact-section .center-button {
  margin-left: 16px;
  margin-top: 30px;
}

.contact-section label {
  margin-bottom: 20px;
  color: #515a5f;
  font-family: 'Open Sans', sans-serif;
}
.contact-section .address-section{
  padding-top: 5rem;
}
.contact-section .address-section .subheading {
  margin-bottom: 65px;
  text-align: justify;
}

.contact-section .address-section .media {
  margin-top: 44px;
}

.contact-section .address-section .media i {
  font-size: 25px;
  color: #333333;
}

.contact-section .address-section .media-body {
  margin-left: 20px;
}

.contact-section .address-section .media-body .subheading {
  font-size: 14px;;
  text-transform: uppercase;
  color: #515a5f;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-section .media-body .text{
  font-size: 14px;
  margin-top: 0px;
  margin-bottom: 0px;
}

/* ===================================
    Footer
====================================== */

footer {
  background-color: #f6f6f6;
  padding-top: 120px;
  padding-bottom: 120px;
}

footer .social-icons ul li {
   margin-right: 5px;
    margin-left: 5px;

}

footer .social-icons ul li a {
      height: 40px;
    line-height: 40px;
    width: 40px;
    color: #2a2a2a; 
}

footer .text {
  font-size: 13px;
  color: #888888;
}
/* ===================================
    StandAlone Page
====================================== */
.standalone-banner{
  background: linear-gradient( rgba(32, 34, 33, 0.3), rgba(32, 34, 33, 0.3) ), url(../img/standalone-banner.jpg);
  height: 60vh;
  background-size: cover;
  display: flex;
  align-items: center;
}

.standalone-banner .banner-text{
  padding-top: 4rem;
  padding-left: 0;
  padding-right: 0;
  text-align: right;
}
.standalone-banner .heading{
  padding-bottom: 16px;
  font-weight: 700;
}

.page-breadcrumb li{
  display: inline-block;
  font-size: 18px;
  font-weight:600;
  color: #202221;
}
.page-breadcrumb li a{
  color:#202221; 
  margin-right: 5px;
  transition:all 0.3s ease;
}
.page-breadcrumb li i{
   background: linear-gradient(to right, #fe5638 0%, #e3397a 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*MAIN PAGE START*/
.main-page{
  padding-top: 120px;
  padding-bottom: 120px;
}
.main-page .standalone-heading{
  padding-bottom: 100px;
}
 
.main-page .standalone-area .heading{
 font-size: 36px;
 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;*/
  background-image:linear-gradient(to right, #fe5638 30%, #e3397a 70%);
}
.hover-effect:hover .standaloneoverlay {
  opacity: .4;
}
.overlayBottom {
  width: 100%;
  height: 0;
  bottom: 0;
  right: 0;
  cursor: pointer;
  /*background-color: #b82619;*/
  background-image:linear-gradient(to right, #fe5638 30%, #e3397a  70%);
}
.hover-effect:hover .overlayBottom {
  height: 100%;
}
footer .footer-text{
  text-align: right;
  padding-left: 0;
}

/* ===================================
    Media Queries
====================================== */

@media (width: 1920px) { 
  /*Navbar*/
.navbar  .social-icons{
  right: 40px;
}
.sidemenu_btn{
  left: 40px;
}
}
@media (max-width: 1200px){
  /*General*/
  br{
  display: none;
}
  /*Navbar*/
.navbar .navbar-brand{
  margin-left: 1rem;
  margin-right: 0;
}  
.navbar .navbar-nav{
  margin-left: 5.5rem;
  margin-right: auto;
}
.navbar .navbar-nav .nav-link{
  margin-left: 18px;
  margin-right: 18px;
}
.navbar .social-icons{
  right: 20px;
}  
.sidemenu_btn{
  left: 7px;
}
/*Banner Section*/
.banner-section .text-section{
  text-align: center;
  width: 100%;
  left: 0;
  padding-top: 6rem;
  position: relative;
}
/*Gallery Section*/
.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{
  visibility: hidden;
}
/*Contact Section*/
.contact-section .address-section .subheading{
  margin-bottom: 45px;
}
.contact-section .address-section .media{
  margin-top:40px;
}
}
@media (max-width: 992px) {
/*General*/
.mr-3{
  margin-right: 0 !important;
}
.heading{
  font-size: 36px;
}
.wow {
  visibility: visible !important;
  animation: none !important;
}

/*Navbar*/
.navbar .navbar-brand{
  margin-left: 0;
}
.navbar .navbar-nav .nav-link {
  margin-left: 10px;
  margin-right: 10px;
}
.navbar .social-icons{
  display: none;
}
.navbar .navbar-nav{
  margin-left: auto;
  margin-right: auto;
}
.sidemenu_btn{
  left: 93%;
}
.navbar .navbar-brand
/*Side Menu*/
.side-menu{
  width: 55%;
}
.side-menu .side-nav{
  margin-top: 95px;
}
/*Banner-Section*/
.banner-section .text-section{
  padding-top: 4rem
}
.banner-section .text-section .heading{
  font-size: 44px;
}

/*About-us Section*/
.about-us .text br{
  display: none;
}
.about-us .media{
  display: block;
  text-align: center;
}
.about-us .image{
  margin-top: 60px;
  margin-bottom: 60px;
}

/*Testimonials Section*/
.testimonial-section .item .media{
  display: block;
  text-align: center;
}
.testimonial-section .item .media .carousel-img img{
  width: 15%;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-section .item .media .media-body{
  margin-top: 30px;
}

/*Pricing Section*/
.pricing-section .text br{
  display: none;
}
.pricing-section .pricing-plans .single-price.active{
  transform: translateY(0);
  margin-top: 60px;
  margin-bottom: 50px;
}
/*Blog Section*/
.blog-section .text-section{
  padding-top: 0;
  text-align: center;
  padding-bottom: 50px;
}
.blog-section .text-section .text{
  padding-right: 0;
}
.blog-section .img-section img{
  width: 100%;
}
/*Contact Section*/
.contact-section .heading{
  text-align: center;
}
.contact-section form .center-button{
  text-align: center;
    width: 100%;
    margin-left: 0;
}
.contact-section .address-section .subheading{
  text-align: center;
  margin-bottom: 60px;
}
.contact-section .address-section .media{
  display: block;
  text-align: center;
}
 .contact-section .contact-form{
    margin-right: 0px;
  }
  /*StandAlone Page*/
.standalone-banner .banner-text{
    text-align: center;
    padding-top: 5.5rem;
}
.standalone-banner .banner-text .heading{
  font-size: 44px;
}
.main-page .standalone-heading .heading{
  font-size: 40px;
}
.standalone-area .standalone-row{
  margin-bottom: 60px;
}
.main-page .standalone-row .row-text{
  padding-left: 0;
  padding-bottom: 40px;
}  
.standalone-row:nth-child(2) .row-text{
  padding-right: 0;
}
}
@media (max-width: 767px){
/*General*/
.heading{
  font-size: 27px;
}
  /*Navbar*/
 .top-nav{
  margin-top: 0;
 } 
 .navbar{
  height: 75px;
 }
 .navbar .navbar-brand{
  padding: 8px 3px;
 }
  .sidemenu_btn{
  left: 88%;
  top: 25px;
}
/*Side Menu*/
.side-menu{
  width: 100%;
}
.side-menu .side-nav{
  margin-top: 65px;
}
/*Banner Section*/
.banner-section .text-section{
  padding-top: 5rem;
}
.banner-section .text-section .heading{
  font-size: 36px;
}
/*About-us Section*/
.about-us .button-sec .heading{
  font-size: 24px;
}
/*Gallery Section*/
.gallery-section .heading{
  font-size: 27px;
}
/*Story section*/
.story-section .text-area .heading{
  font-size: 27px;
}
/*Contact Section*/
.contact-section .heading{
  font-size: 30px;
}
/*StandAlone Page*/
.standalone-banner .banner-text .heading{
  font-size: 35px;
}

.main-page .standalone-heading .heading{
  font-size: 32px;
}
.main-page .standalone-area .heading{
  font-size: 30px;
}
}
@media (max-width: 370px){
  /*Side Menu*/
.side-menu .side-nav {
    margin-top: 25px;
}
.side-nav .navbar-nav .nav-link{
  font-size: 26px;
}
}




