/* ===================================
Table of Content
====================================== */

/*- Fonts
- Scrollbar
- General   
- Loader
- Navbar
- Side-Menu
- Banner-Section
- About-Section
- Team-Section
- Counter-Section
- Testimonial-section
- pricing-Section
- Blog-Section
- Contact-Section
- Form-Section
- Footer
- StandAlone Page
- Media Queries

*/

/* ===================================
Fonts
====================================== */
@font-face {
  font-family: "Montserrat";
  src: url("monsterrat/Montserrat-Regular.ttf") format("truetype");
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("Roboto/Roboto-Medium.ttf") format("truetype");
  font-style: normal;
}
/* ===================================
Scrollbar
====================================== */

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  width: 12px;
  border-left: 0 solid white;
  border-right: 0 solid white;
}
::-webkit-scrollbar-thumb {
  background:linear-gradient(30deg,#fb5211 50%, #ff7d30 100%);
  width: 0;
  height: 25%;
  transition: .5s ease;
  cursor: pointer;
}

/* ===================================
General
====================================== */

body {
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
}

a {
  text-decoration: none;
}

/*Headings and Text*/
.heading{
  font-size: 48px;
  color:#000;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;  
}

.heading1{
  font-size: 18px;
  color:#000;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;  
}

.subheading{
  font-size: 18px;
  color: #2f2f2f;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
}

.about-section p{
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #000;
  margin: 0 0 15px;
}

/*Colors*/
.pink-color{color: #ff7d30;}
.purple-color{color: #fb5211;}

/*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: 15px !important;
  font-weight: 500;
  color: #fff;
  padding: 9px 40px !important;
  line-height: 1.8em !important;
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.btn.btn-rounded {
  border-radius: 50px;
}
.btn.trans-btn {
  background-color: transparent;
  border: 1px solid #000;
  color: #000;
}

/*Button hover*/
.btn.btn-hvr-pink:hover {
  background-color: #ff7d30; 
  border: 1px solid #ff7d30;
  color: #fff;
}
.btn.btn-hvr-black:hover {
  background-color: #000; 
  border: 1px solid #000;
  color: #fff;
}
.btn.btn-hvr-white:hover {
  background-color: #fff; 
  border: 1px solid #fff;
  color: #000;
}

/*Gradient Button*/
.gradient-btn{
  border: solid 1px transparent;
  color: #FFFFFF !important;
  font-weight: 700;
  padding: 10px 35px;
  font-size: 14px;
  text-align: center;
  overflow: hidden;
  transition: .8s ease;
  text-decoration: none;
  background-image:linear-gradient(to right,#ff7d30 0%, #fb5211 50%, #ff7d30 100%);
  background-size: 200% auto;
}

.gradient-btn:hover{
  background-position: right center;
}

/*Social icons*/
.social-icons ul {
  margin-bottom: 0px;
}

.social-icons li {
  display: inline-block;
}


.social-icons ul li a {
  border-radius: 50%;
  color: #000;
  height: 30px;
  line-height: 32px;
  width: 30px;
  font-size: 14px;
  border: 1px solid transparent;
  display: block;
  /*overflow: hidden;*/
  text-align: center;
}
/*Social icons Hover*/
/*Hover Style 1*/
.hover:hover{color: #fff !important; transition: 0.5s ease; 
  background: linear-gradient(to bottom, #ff7d30 0%, #fb5211 93%);}

/*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
====================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 9999;
}

#loader {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: url('../img/loader.gif');
  background-repeat: no-repeat;
  background-position: center;
  margin: -100px 0 0 -100px;
}

/* ===================================
Navbar
====================================== */
/*Main Navbar*/
header{
  position: relative;
  top:0px;
  left:0px;
  right:0px;
}

header .navbar{
  padding: 0;
}

header .nav-logo{
  text-align: center;
}

header .navbar .navbar-nav .nav-link {
  font-size: 14px;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 16px;
  /*margin-left: 20px;*/
  margin-right: 10px;
  transition: .5s ease;
  transition: all .6s ease;
  border: 2px solid transparent;
  display: block;
  font-family: 'Montserrat', sans-serif; 

}

header .navbar .navbar-nav{
  margin-left: auto;
  margin-right: auto;
}
header .navbar .navbar-nav .nav-link.active {
  color: #000;
  transition: all .6s ease;
}

header .navbar .navbar-nav .nav-link:hover {
  transition: all .6s ease;
  color:#000;
}


/*Navlink Hover*/

header .navbar .navbar-nav .nav-link:hover {
  color: #000;
  transition: all .6s ease;
}

header .navbar .navbar-nav .nav-link:last-child {
  margin-right: 0;
}

header .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;
}

header .navbar .navbar-nav .nav-link:hover:after {
  width: 100%;
  background: linear-gradient(to right, #ff7d30 0%, #fb5211 45%);
}

/*side menu button*/

.sidemenu_btn {
  width: 36px;
  padding: 6px;
  z-index: 999;
  left: 0;
  top: -42px;
  margin-left: 30px;
  cursor: pointer;
  position: absolute;
  display: inline-block;
  transition: none;
}

.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%;
}

.sidemenu_btn span:nth-child(2) {
  margin: 4px 0;
}
.logo-scrolled{
  display: none;
}

/*Header-appear*/
.header-appear {
  height: 50px;
  top: 0;
  width: 100%;
  position: fixed;
  z-index: 1024;
  background: transparent;
  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%;
}
.header-appear .full-nav {
  height: 85px;
  margin-top: 40px;
}
.header-appear .full-nav, .header-appear .full-nav {
  margin-top: 0;
  padding: 0;
}


.header-appear .logo .logo-scrolled{
  display: none;
}

/*Header-appear Navbar*/
.header-appear  .navbar-nav{
  display: none;
}

/*Header-appear Side-menu-btn*/
.header-appear .sidemenu_btn{
  left: 0;
  margin-left: 5px;
  left: 15px;
  top: 50%;
  background-color: #fff;
  transform: translateY(-50%);
}

/* ===================================
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: 5px;
  display: block;
}

.side-nav .navbar-nav .nav-item {
  opacity: 0;
  display: block;
  margin: 19px 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: #000;
  padding: 2px 0 3px 0 !important;
  font-size: 20px;
  line-height: normal;
  position: relative;
  border-radius: 0;
  text-decoration: none;
}

.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);
  background: linear-gradient(to right, #ff7d30 40%, #fb5211 60%);
}

.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-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: #000;
  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: 15px;
  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: 15px;
  left: 34px;
  cursor: pointer;
  /*border: solid 1px #fff;*/
}


.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: #fff;*/
  background: linear-gradient(to right, #ff7d30, #fb5211);
  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
====================================== */

.banner-section .img-section{
  background-size: cover;
  align-items: center;
  position: relative;
}
.banner-section .img-section img{
  width: 100%;
}
.banner-section .img-section .text-section{
  position: absolute;
  bottom: 40%;
}
.banner-section .img-section .text-section .heading{
  margin-bottom: 30px;
  font-weight: 700;
}
.banner-section .img-section .text-section .heading span{
  background: linear-gradient(to right, #ff7d30 0%, #fb5211 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.banner-section .img-section .text-section .text{
  color: #444;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: bold;
}
.banner-section .img-section .text-section .btn-2{
  margin-left: 25px;
}

/* ===================================
About-section
====================================== */
.about-section{
  padding-top: 120px;
  padding-bottom: 120px;
}
.about-section .text-section .subheading{
  margin-bottom: 30px;
}
.about-section .text-section .heading{
  margin-bottom: 30px;
}
.about-section .text-section .text{
  margin-bottom: 30px;
  padding-right: 70px;
} 
.about-section .text-section .heading span{
  color: #fb5211;
}

.about-section .text-section .about-check-list ul{
  padding-left: 0;
  margin-bottom: 20px;
}

.about-section .text-section .about-check-list ul li{
  list-style: none;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
}

.about-section .text-section .about-check-list ul li i{
  background: linear-gradient(to right, #ff7d30 0%, #fb5211 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 15px;

}
.about-section .img-section{
  padding-left: 30px;
}
.about-section .services-section{
  padding-top: 120px;
}
.about-section .services-section .row-2{
  padding-bottom: 120px;
}
.about-section .services-section .card{
  padding: 40px;
  text-align: center;
  border-radius: 0;
  border: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  display: inline-block;
  text-decoration: none;
  position: relative;
  background-image: linear-gradient(to right, #ffff 30%, #ffff 70%);
  -webkit-backface-visibility: hidden;
  z-index: 1;

}
.about-section .services-section .card:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #ff7d30 10%, #fb5211 90%);
  transition: opacity 0.5s ease-in-out;
  z-index: 2;
  opacity: 0;
}
.about-section .services-section .card:hover:after {
  opacity: 1;
}
.about-section .services-section .card .card-body {
  position: relative;
  z-index: 3;
}
.about-section .services-section .card .card-body{
  padding: 0;
}
.about-section .services-section .card i{
  padding-bottom: 30px;
  font-size: 40px;
  z-index: 3;
  position: relative;
  background: linear-gradient(to right, #ff7d30 30%, #fb5211 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-section .services-section .card .card-body .subheading{
  color:#000;
  font-weight: 600;
  margin-bottom: 20px;
}
.about-section .services-section .card .card-body .text{
  font-weight: 300;
}

.about-section .services-section .card:hover i{
  background: linear-gradient(to right, #fff 30%, #fff 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-section .services-section .card:hover .subheading{
  color: #fff;
}
.about-section .services-section .card:hover .text{
  color: #fff;
}

/* ===================================
Team-section
====================================== */
.team-section{
  background-color: #f9f9f9;
  padding-top: 120px;
  padding-bottom: 120px;
}
/*Row-1*/
.team-section .row-1{
  margin-bottom: 115px;
}
.team-section .row-1 .subheading{
  margin-bottom: 25px;
}
.team-section .row-1 .heading {
  text-align:center;
}
.team-section .row-1 .subheading {
  text-align:center;
}
.team-section .row-1 .heading span{
  color: #ff7d30;
}
/*Row-2*/
.team-section .row-2 .team-col{
  max-width: 300px;
}
.team-section .row-2 .image img{
  width: 100%;
}
.team-section .row-2 .team-col .text-column{
  background-color: #fff;
  padding: 35px 20px;
}
.team-section .row-2 .team-col .text-column .heading{
  font-size: 20px;
  text-align: center;
  margin-bottom: 10px;
}
.team-section .row-2 .team-col .text-column .subheading{
  background: linear-gradient(to right, #ff7d30 30%, #fb5211 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  text-align: center;
}
.team-section .row-2 .team-col .text-column .text{
  text-align: center;
}
.team-section .social-icons{
  text-align: center;
} 
.team-section .row-2 .team-col .image{
  overflow: hidden;
}
.team-section .row-2 .team-col .image img{
  transition: all .5s ease; 
}
.team-section .row-2 .team-col:hover{
  cursor: pointer;
}
.team-section .row-2 .team-col:hover img{
  transform: scale(1.1);
  transition: all .5s ease; 
}

/* ===================================
Work-section
====================================== */

.work-section{
  padding-top: 120px;
  padding-bottom: 120px;
}
.work-section .row-1 {
  margin-bottom: 70px;
}
.work-section .row-1 .subheading {
  text-align: center;
}
.work-section .row-1 .heading{
  text-align: center;
}
.work-section .row-1 .heading span{
  color: #fb5211;
}

/*Portfolio Start*/

.work-section .cbp-l-caption-body .title {
  color: #fff;
  font-size: 20px;
}

.work-section .cbp-l-grid-mosaic-flat .cbp-caption-activeWrap {
  background: #032a58;
}

.work-section .cbp-l-grid-mosaic-flat .cbp-caption-activeWrap:hover {
  background-color: #fb5211;
  opacity: 0.8;
}

.cbp-item:hover .cbp-caption-defaultWrap {
  transform: scale(1.25);
  transition: 0.6s ease-in-out;
}

.cbp-l-caption-body .cbp-l-caption-title {
  font-size: 20px;
}

.cbp-l-caption-body .cbp-l-caption-desc {
  color: #ffff;
  font-size: 12px;
}

.work-section .plus {
  margin: 0 auto;
  height: 70px;
  width: 70px;
  margin-bottom: 16px;
  display: block;
  position: relative;
  overflow: hidden;
}

.work-section .plus::before {
  width: 2px;
  left: 50%;
  top: 5px;
  bottom: 5px;
  margin-left: -1px;
}

.work-section .plus::after {
  height: 2px;
  top: 50%;
  left: 5px;
  right: 5px;
  margin-top: -1px;
}

.work-section .plus::before,
.plus::after {
  content: " ";
  position: absolute;
  background: #fff;
}

/* ===================================
Counter-section
====================================== */

.counter-section{
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f9f9f9;
}

.counter-section .counter-text .heading{
  font-size: 30px;
  margin-bottom: 25px;
  padding-right: 79px;
}
.counter-section .counter-text .underline{
  border-bottom: 10px solid;
  border-image-slice: 1;
  border-width: 4px;
  width: 50px;
}

.counter-section .counter-text .gradient-border{
  border-image-source: linear-gradient(to right, #ff7d30, #fb5211);
}

.counter-section .counter-text .text{
  margin-top: 25px;
  padding-right: 60px;
}

/*Counters*/
.counter-section .num_counter{
  padding-left: 10px;
}
.counter-section .num_counter .counter i {
  font-size: 36px;
  margin-bottom: 35px;
  background: linear-gradient(to right, #ff7d30 40%, #fb5211 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.counter-section .num_counter .subheading{
  font-size: 30px;
  font-weight: 500;
}
.counter-section .counter .text {
  margin-bottom: 0px;
  padding-top: 10px;
}
.counter-section .num_counter .counter:hover{
  cursor:pointer;
}

.counter-section .num_counter .counter:hover .subheading{
  background: linear-gradient(to right, #000 20%, #ff7d30 40%, #fb5211 70%, #000 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: textShine 5s ease-in-out infinite alternate;
}

@keyframes textShine {
  to {
    background-position: 200%;
  }
}

/* ===================================
Testimonial-section
====================================== */

.testimonial-section{
  padding-top: 120px;
  padding-bottom: 120px;
}
.testimonial-section .testimonial-carousel .owl-item .text{
  padding-left: 40px;
  padding-right: 40px;
}
.testimonial-section .testimonial-carousel .owl-item .heading{
  font-size: 16px;
  font-weight: 500;
  background: linear-gradient(to right, #ff7d30 40%, #fb5211 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.testimonial-section .testimonial-carousel .owl-item .subheading{
  font-size: 14px;
  font-family: 'Source Sans Pro', sans-serif;
}
.testimonial-section .owl-carousel .owl-item .img{
  margin-bottom: 30px;
}
.testimonial-section .owl-carousel .owl-item img{
  width: 11%;
  margin: auto;
  display: flex;
  justify-content: center;
}

/* ===================================
Pricing-section
====================================== */

.pricing-section{
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f9f9f9;
}

.pricing-section .row-1{
  margin-bottom: 80px;
}

/*Row-2 Pricing Tables*/
.single-price {
  text-align: center;
  padding: 40px 25px;
  background-color: #fff;
  border: none;
  border-radius: 8px;
  display: inline-block;
  text-decoration: none;
  position: relative;
  background-image: linear-gradient(to right, #ffff 30%, #ffff 70%);
  -webkit-backface-visibility: hidden;
  z-index: 1;
}
.pricing-section .single-price .price-title .subheading {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}
.pricing-section .single-price .price-para .text{
  font-weight: 300;
}

.pricing-section .single-price .price-tag {
  margin: 10px 0;
  color: #000;
  padding: 10px 0;
}

.pricing-section .single-price .price-tag .heading .gradient{
  background: linear-gradient(to right, #ff7d30 20%, #fb5211 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 62px;
  font-weight: 700;

}
.pricing-section .single-price .price-tag .heading span {
  font-weight: 400;
  font-size: 15px;
  font-family: 'Source Sans Pro', sans-serif;
}
.pricing-section .single-price .price-tag .heading .dollar{
  position: relative;
  font-size: 20px;
  bottom: 22px;
  left: -5px;
  font-weight: 500;
}
.pricing-section .price-item ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pricing-section .price-item ul li {
  font-size: 14px;
  padding: 5px 0;
  margin: 5px 0;
  font-family: 'Source Sans Pro', sans-serif;
}

.pricing-section .single-price a {
  margin-top: 15px;
}

/*Active Class*/
.pricing-section .single-price.active {
  background-image: linear-gradient(to right, #ff7d30 20%, #fb5211 100%);
}
.pricing-section .single-price.active span{
  color: #fff;
}
.pricing-section .single-price.active .price-tag .heading .gradient{
  background: linear-gradient(to right, #fff 20%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pricing-section .single-price.active .subheading{
  color: #fff;
}
.pricing-section .single-price.active .text{
  color: #fff;
}
.single-price.active ul li{
  color: #fff;

}
.single-price.active .trans-btn{
  border: 1px solid #fff;
  color: #fff;
}
.single-price.active .btn.btn-hvr-white.active{
  color: #000;
}

/* ===================================
Blog-section
====================================== */

.blog-section{
  padding-top: 120px;
  padding-bottom: 120px;
}
.blog-section .text-column .heading{
  margin-bottom: 40px;
}
.blog-section .text-column .text{
  margin-bottom: 40px;
}
.blog-section .row-1{
  margin-bottom: 70px;
}

.blog-section .text-column{
  padding-top: 70px;
}
.blog-section .row-2 .img-column{
  padding-right: 30px;
}
.blog-section .row-1 .img-column{
  padding-left: 30px;
}

/* ===================================
Contact-section
====================================== */

.contact-section{
  background: url(../img/contact.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 96vh;
}
.contact-section .text-column{
  padding-top: 120px;
  padding-bottom: 120px;
}
/*.contact-section .text-column{
margin-top: 5rem;
}*/
.contact-section .text-section .subheading{
  color: #ff7d30;
  margin-bottom: 36px;
}
.contact-section .text-section .heading{
  background: linear-gradient(to right, #ff7d30 0%, #fb5211 45%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px; 
}
.contact-section .text-section{
  font-family: 'Montserrat', sans-serif;
  color: #ff7d30;
}
.contact-section .text-section h2{
font-size: 40px;
}
.contact-section .text-section p{
font-size: 24px;
  margin: 0 0 10px;
}
.contact-section .text-section .contact-list li{
  margin-bottom: 24px;
  font-size: 30px;
  list-style: none;
}

/* ===================================
form-section
====================================== */

.form-section{
  padding-top: 120px;
}

.form-section .heading{
  color: #212121;
  margin-bottom: 90px;
}

.form-section .contact-form .form-control {
  border: none;
  padding: 0px;
  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;
}

.form-content .button-center  {
  text-align: center;
  width: 100%;
}

.form-content .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;
  margin-left: 10px;
  margin-right: 10px;
}

footer .social-icons ul li a {
  color: #2a2a2a;  
  height: 40px;
  line-height: 42px;
  width: 40px;
  font-size: 18px;
  overflow: hidden;
}

footer .text {
  font-size: 14px;
  color: #888888;
}
/* ===================================
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:#000; 
  margin-right: 5px;
  transition:all 0.3s ease;
}
.page-breadcrumb li i{
  color: #ff7d30;
}

/*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;*/
  background-image:linear-gradient(to right, #ff7d30 30%, #fb5211 100%);
}
.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, #ff7d30 30%, #fb5211 100%);
}
.hover-effect:hover .overlayBottom {
  height: 100%;
}
footer .footer-text{
  text-align: right;
  padding-left: 0;
}
/* ===================================
Media Queries
====================================== */
@media (width: 1920px){
  /*Banner Section*/
  .banner-section .img-section .text-section{
  }
  .contact-section{
    height: 77vh;
  }
  .contact-section .text-column{
    padding-top: 120px;
    padding-bottom: 120px
  } 
  .contact-section .text-column .text-section{
    margin-top: 1rem;
  }

}
@media (max-width: 1200px){
  .heading{
    font-size: 40px;
  }
  /*Side Menu*/
  .side-menu{
    width: 50%;
  }
  /*Banner-Section */
  .banner-section .img-section{
    padding-left: 0;
    padding-right: 0;
  }
  .banner-section .img-section .text-section{
    bottom: 8%;
  }
  .banner-section .img-section .text-section .heading{
    font-size: 48px;
  }
  .banner-section .img-section .text-section .text br{
    display: none;
  }
  /*About Section*/
  .about-section .img-section img{
    height: 100%;
  }
  /*Team Section*/
  .team-section .row-2 .team-col .text-column{
    padding: 15px 20px;
  }
  /*Counter Section*/
  .counter-section .num_counter{
    padding-left: 0;
  }
  /*Team Section*/
  .team-section .row-2 .team-col .text-column .heading{
    font-size: 25px;
  }
  /*Blog Section*/
  .blog-section .text-column{
    padding-top: 28px;
  }
  /*Contact Section*/
  .contact-section{
    height: 100%;
  }

}
@media (max-width: 992px){
  /*WoW Animation*/
  .wow {
    visibility: visible !important;
    animation: none !important;
  }
  .heading{
    font-size: 38px;
    text-align: center;
  }
  /*header*/
  header .pt-5{
    padding-top: 0 !important;
  }
  header .social-icons{
    display: none;
  }
  header .nav-logo .logo{
    float: left;
    padding-left: 20px;
  }
  .sidemenu_btn{
    left: 89%;
    top: -50px;
  }
  .header-appear{
    background-color: #fff;
    height: 100px;
    padding: 0;
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
  }
  .header-appear .sidemenu_btn{
    left: 92%;
    top: 50%;
  }
  .header-appear .logo .logo-scrolled{
    display: block;
    padding-left: 0;
    max-width: 200px;
  }
  header .navbar .navbar-nav .nav-link {
    font-size: 12px;
  }
  .banner-section .img-section .text-section .heading {
    margin-bottom: 16px;
  }
  /*Side-Menu*/
  .side-menu{
    width: 100%;
  }
  .side-nav .navbar-nav .nav-link{
    font-size: 40px;
  }
  /*Banner Section*/
  .banner-section .img-section .text-section{
    position: absolute;
    bottom: 0; 
    left: 0;
  }
  .banner-section .img-section .text-section{
    padding: 50px 5px 0 5px;
    text-align: center;
  }
  .banner-section .img-section .text-section .heading{
    font-size: 30px;
  }
  /*About Section*/
  .about-section .text-section .subheading{
    text-align: center;
  }
  .about-section .text-section .text{
    padding-right: 0;
    text-align: center;
  }
  .about-section .img-section{
    padding-left: 0;
  } 
  .about-section .img-section img{
    width:100%;
  }
  .about-section .services-section .row-2 .heading br{ 
    display: none;
  }
  .about-section .services-section .card.card-3{
    margin-top: 50px;
    width: 100%;
  }

  /*Team Section*/
  .team-section .row-1 .heading{
    line-height: 40px;
  }
  .team-section .row-2 .team-col{
    max-width: 100%;
  }
  .team-section .row-2 .image{
    width: 100%;
  }
  .team-section .row-2 .team-col .text-column{
    width: 100%;
    padding: 81px 20px;
  }
  .team-section .row-2 .team-col .text-column .heading{
    font-size: 30px;
  }
  /*Work 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{
    display: none;
  }
  /*Counter Section*/
  .counter-section .counter-text .heading{
    padding-right: 0;
    font-size: 38px;
  }
  .counter-section .counter-text .gradient-border{
    display: none;
  }
  .counter-section .counter-text .text{
    padding-right: 0;
    text-align: center;
  }
  .counter-section .counter{
    margin-top: 50px;
  }
  /*Testimonial Section*/
  .testimonial-section .testimonial-carousel .owl-item .text{
    padding-left: 0;
    padding-right: 0;
  }
  /*Pricing Section*/
  .pricing-section .row-1{
    margin-bottom: 30px;
  }
  .pricing-section .single-price{
    margin-top: 50px;
  }
  .pricing-section .single-price{
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
  /*Blog Section*/
  .blog-section .text-column{
    padding-top: 0;
    margin-bottom: 30px;
  }
  .blog-section .img-column img{
    width: 100%;
  }
  .blog-section .text-column .text{
    text-align: center;
  }
  .blog-section .text-column .button-center{
    text-align: center;
  }
  .blog-section .row-1 .img-column{
    padding-left: 0;
  }
  .blog-section .row-2 .img-column{
    padding-right: 0;
  }

  /*Contact Section*/
  .contact-section .text-section .subheading{
    font-size: 16px;
    text-align: center;
  }

  .contact-section .text-section .contact-list li{
    text-align: center;
  }

  /*Footer*/
  footer .social-icons ul li{
    margin-left: 5px;
    margin-right: 5px;
  }
  /*StandAlone Page*/
  .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){
  /*Banner Section*/
  .banner-section .img-section .text-section .heading{
    font-size: 22px;
  }
  /*header*/
  .sidemenu_btn{
    left: 80%;
  }
  .header-appear .sidemenu_btn{
    left: 88%;
  }
  .header-appear .logo .logo-scrolled{
    padding-left: 12px;
  }
  /*Side Menu*/
  .side-nav .navbar-nav .nav-link{
    font-size: 30px;
  }
  /*Banner Section*/
  .banner-section .img-section .text-section .btn-2{
    margin-left: 0; 
  }
  /*About Section*/
  .about-section .text-section .subheading{
    font-size: 15px;
  }
  .about-section .services-section .card{
    margin-top: 50px;
    width: 100%;
  }
  .about-section .services-section .card.card-1{
    margin-top: 0;
  }
  /*Pricing Section*/
  .pricing-section .single-price{
    width: 100%;
  }
  /*Form Section*/
  .form-section .heading{
    font-size: 35px;
  }
  /*Footer*/
  footer .text {
    font-size: 13px;
  }
  /*StandAlone Page*/
  .main-page .standalone-heading .heading{
    font-size: 36px;
  }
  .main-page .standalone-area .heading{
    font-size: 30px;
  }
}
.card-deck .border-warning {
  border-color: #fb5211 !important;
}
.card-body p{
  margin: 0px;
}
.card-deck .card .card-footer {
  padding: .75rem 1.25rem;
  background-color: rgba(0,0,0,.03);
  border-top: 1px solid #fb5211 !important;
}
.card-footer .text-muted {
  margin-top:5px;
  color:  #fb5211 !important;
}
.card-title a{
  color:  #fb5211 !important;
  font-size:20px;
}
.inner-page{
  font-family: 'Montserrat', sans-serif;
}
header h3 {
  margin-top:1rem;
}
.team-col .card{
  margin:2px;
  border: 0px;
}
.team-col .card-body{
  text-align:center;
  padding: .70rem;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.team-col .card-body .card-text{
  color: #ff7d30;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: #f5f9fc;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}
.team-col .card-body {
  min-height: 188px;
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
  .contact-section .text-section .contact-list li {
    margin-bottom: 11px;
    font-size: 25px;
  }
  .contact-section .text-section .heading {
    font-size: 28px;
  }
  .banner-section .img-section .text-section .text {
    font-size: 15px;
  }
  .team-col .card-body {
    min-height: auto;
  }
}
@media (max-width:574px) {
  .banner-section .img-section .text-section {
    position: relative;
    bottom: 0%;
  }
  .banner-section .img-section .text-section .text {
    font-size: 13px;
  }
}
