/* ===================================
    Table of Content
====================================== */

/*  
  - Fonts
  - Scrollbar
  - General   
  - Loader
  - Navbar
  - Side Menu
  - Banner
  - About Section
  - Skills Section
  - Work Section
  - Reviews Section
  - Client Section
  - Blog section
  - Contact Section
  - Media Queries
*/

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500&display=swap');

/* ===================================
    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, #29234e  20%, #29234e  80%);
width: 0;
height: 25%;
transition: .5s ease;
cursor: pointer;
}


/* ===================================
    General
====================================== */


body {
 font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
}

span {
  font-weight: 400;
}

a {
  text-decoration: none;
}


/*Headings*/

.heading {
  font-size: 60px;
  color: #29234e;
  font-weight: 700;
  margin-bottom: 50px;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}
.subheading{
  color: #29234e;
  font-size: 18px; 
  margin-bottom: 30px;
  font-weight: 400;
}

.text {
  font-size: 18px;
  font-weight: 400;
  color: #202020;
  line-height: 32px;

}
.green-text{
  color: #85aa1c;
  font-weight: 700;
}

/*Social Icons*/

.social-icons ul {
  margin-bottom: 0px;
}

.social-icons ul li {
  font-size: 15px;
  display: inline-block;
  margin-right: 5px;
  margin-left: 5px;
}

.social-icons ul li a {
  overflow: hidden;
  border-radius: 50%;
  display: block;
  color: #fff;
  height: 40px;
  line-height: 40px;
  width: 40px;
  border: 1px solid transparent;
  text-align: center;
}

/*Social icons hover*/
.facebook-hovr:hover {color: #4267B2; transition: all 0.5s ease; background-color: #fff;}
.twitter-hovr:hover {color: #1DA1F2; transition: all 0.5s ease; background-color: #fff;}
.google-plus-hovr:hover {color: #fff; transition: all 0.5s ease;background-color: #fff;}
.linked-in-hovr:hover {color: #2867B2; transition: all 0.5s ease; background-color: #fff;}
.instagram-hovr:hover {color: #db4a39; transition: all 0.5s ease; background-color: #fff;}
.gmail-hovr:hover {color: #D44638; transition: all 0.5s ease; background-color: #fff;}

/*Social icons background hover*/

.facebook-hover:hover {color: #fff; transition: all 0.5s ease; background-color: #4267B2;}
.twitter-hover:hover {color: #fff; transition: all 0.5s ease; background-color: #1DA1F2;}
.google-plus-hover:hover {color: #fff; transition: all 0.5s ease;background-color: #db4a39;}
.linked-in-hover:hover {color: #fff; 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; transition: all 0.5s ease; background-color: #D44638;}


/*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: uppercase;
  transition: all .5s ease !important;
}

.btn.button {
  font-size: 14px !important;
  font-weight: 500;
  color: #fff;
  padding: 9px 30px !important;
  line-height: 1.8em !important;
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
  font-family: 'Roboto', sans-serif;
}

.btn.btn-rounded {
  border-radius: 50px;
}

.btn.white-btn {
  background: #fff;
  border-color: #fff;
  color: #4c4c4c;
}

.btn.green-btn {
  background: #85aa1c;
  border-color: #85aa1c;
}

.btn.pruple-btn {
  background: #29234e;
  border-color:#29234e;
}


/*Button hover*/

.btn.btn-hvr-green:hover {
  background-color: #85aa1c;
  border-color: #85aa1c;
  color: #fefefe;
}

.btn.btn-hvr-purple:hover {
  background-color: #29234e;
  border-color: #29234e;
  color: #fff;
}

/* ===================================
   Loader
====================================== */
.loader {
  height: 100%;
  width: 100%;
  position: fixed;
  overflow: hidden;
  z-index: 11111111;
  background: #FFFFFF;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.loader-spinner {
  position: relative;
  height: 100px;
  width: 100px;
  border: 4px solid transparent;
  border-top-color: #85aa1c;
  border-left-color: #85aa1c;
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}
.loader-spinner::before {
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  content: "";
  position: absolute;
  border: 4px solid transparent;
  border-top-color:  #29234e;
  border-left-color:  #29234e;
  border-radius: 50%;
  -webkit-animation: spinBack 1s linear infinite;
  animation: spinBack 1s linear infinite;
}
@-webkit-keyframes spin {
from {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes spin {
from {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@-webkit-keyframes spinBack {
from {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
to {
-webkit-transform: rotate(-720deg);
transform: rotate(-720deg);
}
}
@keyframes spinBack {
from {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
to {
-webkit-transform: rotate(-720deg);
transform: rotate(-720deg);
}
}
/* ===================================
    Navbar
====================================== */


/* nav top default */

.navbar.navbar-top-default {
  position: absolute;
  top: 0;
  z-index: 99;
  overflow: hidden;
  height: 200px;
  width: 100%;
  -webkit-transition: all .1s ease;
  -moz-transition: all .1s ease;
  -ms-transition: all .1s ease;
  -o-transition: all .1s ease;
  transition: all .1s ease;
  background-color: transparent;
}


.header-appear .navbar-top-default {
  height: 90px;
  position: fixed;
  z-index: 999;
  background: #29234e;
  -webkit-animation-name: animationFade;
  -o-animation-name: animationFade;
  animation-name: animationFade;
  -webkit-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}

.header-appear .navbar-top-default .sidemenu_btn{
  top: 30px;
}

@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; }
}

.navbar .navbar-nav .nav-link {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  padding: 6px 6px;
  margin-left: 20px;
  margin-right: 50px;
  transition: .5s ease;
  transition: all .6s ease;
  border: 2px solid transparent;
  display: block;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}

.navbar .navbar-nav {
  margin-left: auto;
}

.navbar .navbar-nav .nav-link.active {
  color: #fff;
  transition: all .6s ease;
}

.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: 0px;
  background: transparent;
  transition: width .5s ease, background-color .5s ease;
}

.navbar .navbar-nav .nav-link:hover:after {
  width: 100%;
  background: #fff;
}
.navbar .navbar-nav .nav-link.active:after {
  width: 100%;
  background: #fff;
}


/*side menu button*/

.sidemenu_btn {
  width: 36px;
  padding: 6px;
  right: 40px;
  top: 86px;
  z-index: 999;
  margin-left: 16px;
  cursor: pointer;
  position: absolute;
  display: inline-block;
}

.sidemenu_btn span {
  height: 2px;
  width: 100%;
  background: #fff;
  display: block;
  margin: auto;
  transition: .5s ease;
}

.sidemenu_btn span:first-child,
.sidemenu_btn span:last-child {
  width: 70%;
  background-color: #fff;
}

.sidemenu_btn span:nth-child(2) {
  background-color: #fff;
}



.sidemenu_btn:hover span:first-child,
.sidemenu_btn:hover span:last-child {
  width: 100%;
  background-color: #fff;
}

.sidemenu_btn:hover span:nth-child(2) {
  background-color: #fff;
}

.sidemenu_btn span:nth-child(2) {
  margin: 4px 0;
}


/* ===================================
    Side Menu
====================================== */

.side-menu {
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  z-index: 9999;
  background: #85aa1c;
  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-menu  .social-icons ul li{
  margin-left: 0;
  margin-right: 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: 28px;
}

/*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 {
  animation: .8s rotate;
}
.side-menu .btn-close:hover {
-webkit-animation: .8s rotate;
animation: .8s rotate;
}
@-webkit-keyframes rotate {
from{
transform: rotate(0deg);
}
to{
transform: rotate(360deg);
}
}
@keyframes rotates {
from{
transform: rotate(0deg);
}
to{
transform: rotate(360deg);
}
}

/*side menu inner-wrapper*/

.side-menu .inner-wrapper {
  height: 100%;
  padding: 3rem 4rem;
  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: 0px;
  margin-top: 65px;
  display: block;
}

.side-nav .navbar-nav .nav-item {
  opacity: 0;
  display: block;
  margin: 15px 0;
  padding: 0 !important;
  transition: all 0.8s ease 500ms;
  transform: translateY(30px);
}

.side-nav .navbar-nav .nav-item:first-child {
  transition-delay: .1s;
}

.side-nav .navbar-nav .nav-item:nth-child(2) {
  transition-delay: .2s;
}

.side-nav .navbar-nav .nav-item:nth-child(3) {
  transition-delay: .3s;
}

.side-nav .navbar-nav .nav-item:nth-child(4) {
  transition-delay: .4s;
}

.side-nav .navbar-nav .nav-item:nth-child(5) {
  transition-delay: .5s;
}

.side-nav .navbar-nav .nav-item:nth-child(6) {
  transition-delay: .6s;
}

.side-nav .navbar-nav .nav-item:nth-child(7) {
  transition-delay: .7s;
}

.side-nav .navbar-nav .nav-item:nth-child(8) {
  transition-delay: .8s;
}

.side-nav .navbar-nav .nav-item:nth-child(9) {
  transition-delay: .9s;
}

.side-menu.side-menu-active .side-nav .navbar-nav .nav-item {
  transform: translateY(0);
  opacity: 1;
}

.side-nav .navbar-nav .nav-link {
  display: inline-table;
  color: #fff;
  padding: 2px 0 3px 0 !important;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  position: relative;
  border-radius: 0;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.side-nav .navbar-nav .nav-link::after {
  content: "";
  left: 0;
  width: 0;
  bottom: 0;
  height: 2px;
  background: #fff;
  overflow: hidden;
  position: absolute;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
}

.side-nav .navbar-nav .nav-link:hover::after,
.side-nav .navbar-nav .nav-link:focus::after,
.side-nav .navbar-nav .nav-link.active::after {
  width: 100%;
}

.side-nav .navbar-nav .nav-link.active {
  background: transparent;
}


/*side menu footer */

.side-menu-footer .navbar-nav {
  transform: translateY(0);
}

.side-menu-footer p {
  color: #fff;
  font-size: 14px;
}


/* ===================================
    Banner
====================================== */
.banner-section{
  height: 100vh;
  width: 100%;
  background-color: #85aa1c;
}
.banner-section .banner-slider-row{
  height: 100vh;
}
.banner-section .banner-slider-row .text{
  margin-bottom: 50px;
}
.banner-section .svg-div{
  position: absolute;
  z-index: 1;
  right: 22%;
  top: -70%;
  height: 100%;
  width: 100%;
  transform: rotate(-46deg);
  transition: .8s ease;
}

.banner-section .banner-content{
  z-index: 2;
  padding-top: 7rem;
}

.banner-section .banner-content .heading{
  color: #fff;
}
.banner-section .banner-content .text{
  color: #fff;
}
.banner-section .img-area img{
  display: flex;
  justify-content: center;
  width: 60%;
  margin-left: auto;
}
.banner-section .social-icons {
  position: absolute;
  z-index: 3;
  top: 43.5%;
}

.banner-section .social-icons li{
  display: block;
}

/* ===================================
   About Section
====================================== */

.about-section{
  padding-top: 190px;
  padding-bottom: 190px;
  background-color: #f7f8fb;
}

.about-section .text-section span{
  color: #85aa1c;
  font-weight: 700;
}

.about-section .services{
  padding-top: 120px;
}
.about-section .top-col{
margin-bottom: 120px; 
}

.about-section .image{
display: flex;
justify-content: center;
}
.about-section .media .media-body{
  padding-top: 25px;
}
.about-section .media .media-body .subheading{ 
  text-transform: uppercase;
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 15px;
  font-family: 'Oswald', sans-serif;
}
.about-section .media .media-body .text{
  color: #515050; 
  font-size: 16px;

}

.about-section .media .heading{
  transition: all .5s ease;
  font-weight: 300;
  color: #85aa1c;
}
.about-section .media:hover{
cursor: pointer;
}
.about-section .media:hover .heading{
transform: translateY(20px);
transition: all .5s ease;
}

/* ===================================
   Work Section
====================================== */
.work-section{
  padding-top: 150px;
  padding-bottom: 150px;
}
/*Row-1*/
.work-section .row-1{
  padding-bottom: 100px;
}
.work-section  .row-1 .heading{
  margin-bottom: 0;
}
.work-section .row-1  .text{
  color: #686868;
  margin-top: 15px;
}
/*Row-2*/
.work-section .row-2 .img-section img{
  display: flex;
  justify-content: center;
  width: 100%; 
} 
/*Row-3*/
.work-section .row-2 .item .text-row{
  padding-left: 130px;
}
.work-section .row-2 .item .text-row {
  padding-top: 130px;
  text-align: left;
}
.work-section .row-2 .item .text-row .subheading{
  color: #373c48;
  font-size: 28px;
  margin-bottom: 10px;
}

.work-section .row-2 .item .text-row .text{
  color: #bfc4ce;
}
  /*Carousel buttons*/
.work-section .row-2{
  position: relative;
}
.work-section .icons {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 40%;
  z-index: 11;
}
.work-section  .icons i {
  font-size: 40px;
  color: #f6f6f6;
  cursor: pointer;
  transform: all .5s ease;
}

.work-section  .icons i:hover{
  color: #85aa1c;
  transition: all .5s ease;
}
.work-section  .icons .left-customPrevBtn{
  position: absolute;
  left: -3.5rem;
}
.work-section  .icons .right-customNextBtn{
  position: absolute;
  left: 75rem;
}

/* ===================================
   Skills Section
====================================== */
.skills-section{
  padding-top: 120px;
  padding-bottom: 150px;
  background-color: #f7f8fb;
}
/*Row-2*/
.skills-section .row-2{
  margin-top: 100px;
}
.skills-section .circular-wrap .circle{
  position: relative;
  max-width: 210px;
  display: inline-block;
}

.skills-section .circular-wrap .circle .counter-num {
  position: absolute;
  top: 50%;
  left: 50%;
  line-height: normal;
  font-weight: normal;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
.skills-section .circular-wrap .circle .counter-num {
  color: #505050;
  font-size: 1.875rem;
  font-weight: 300;
}

.skills-section .circular-wrap h5.text{
  max-width: 184px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  margin-top: 30px;
  line-height: 25px;
}
/* ===================================
    Reviews Section
====================================== */
.reviews-section{
  padding-top: 125px;
  padding-bottom: 125px;

}
.reviews-section .text-section .text{
  padding-right: 100px;  
  
}
.reviews-section .carousel-section .testimonial-image {
  width: 80px;
  height: 80px;
  display: block;
  margin: auto;
}
.reviews-section .carousel-section .testimonials .quote i {
  color: #85aa1c;
  font-style: italic;
  font-size: 30px;
}
.reviews-section .carousel-section .testimonials .text {
  text-align: center;
  margin-top: 34px;

}
.reviews-section .carousel-section .testimonials .subheading {
  font-size: 24px;
  margin-top: 25px;
}

/* ===================================
    Client-Section
====================================== */
.client-section {
  padding-bottom: 150px;
}
.client-section .owl-carousel .owl-item img{
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
/* ===================================
    Blog Section
====================================== */
.blog-section{
  padding-top: 170px;
  padding-bottom: 170px;
  background-color: #f7f8fb;
}
.blog-section  .text-section{
  padding-top: 25px;
}
.blog-section  .text-section .text{
  padding-right: 50px;
  margin-bottom: 50px;
}
/* ===================================
    Contact-Section
====================================== */
.contact-section{
  padding-top: 170px;
}
.contact-section .form-sec{
  padding-right: 60px;
}
.contact-section .heading{
  font-size:  40px;
}
.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{
  color: #18212e;
  line-height: 25px;
  font-size: 17px;
}
.contact-section .address-sec .media {
  margin-top: 40px;
}

.contact-section .address-sec .media i {
  font-size: 25px;
  color: #29234e;
}

.contact-section .address-sec .media-body {
  margin-left: 20px;
}

.contact-section .address-sec .media-body .text {
  margin-top: 0;
  margin-bottom: 0;
  color: #252525;
  font-size: 16px;
}

.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: 160px;
  padding-bottom: 120px;
}

footer .text{
  margin-top: 8px !important;
  font-size: 14px;
  color: #888888;
  text-align: center;
  padding-left: 55px;

}

footer .social-icons ul li a{
  color: #3c3f46;
}

/* ===================================
    StandAlone page
====================================== */
.standalone-navbar.navbar.navbar-top-default{
  height: 90px;
  background: #29234e;
}
.standalone-navbar.navbar.navbar-top-default .sidemenu_btn{
  top:32px;
}
/*Banner*/
.standalone-banner {
  background-color: #85aa1c; 
  height: 50vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  background-size: cover;
}
.standalone-banner .banner-text .heading{
  color: #fff;
  margin-bottom: 30px;
}
.standalone-banner .page-breadcrumb li {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.standalone-banner .page-breadcrumb li a {
  color: #fff;
  margin-right: 5px;
  transition: all 0.3s ease;
}
.standalone-banner .page-breadcrumb li i {
  color: #fff;
}
/*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-image:linear-gradient(to right, #85aa1c 30%, #350D82 70%);
}
.hover-effect:hover .standaloneoverlay {
  opacity: .4;
}
.overlayBottom {
  width: 100%;
  height: 0;
  bottom: 0;
  right: 0;
  cursor: pointer;
  background-image:linear-gradient(to right, #85aa1c 30%, #350D82 70%);
}
.hover-effect:hover .overlayBottom {
  height: 100%;
}

/* ===================================
     Media Queries
====================================== */

@media (width: 1920px){

.banner-section .img-area img{
  width: 100%;
}  
.banner-section .svg-div{
  top: -52%;
  transform: rotate(-54deg)

}
}
@media (width: 1600px){
.banner-section .img-area img{
  width: 90%;
}  
.banner-section .svg-div{
  top: -52%;
  transform: rotate(-54deg)
}
}
@media (max-width: 1200px){
  /*General*/
.heading{
  margin-bottom: 30px;
}
.subheading{
  margin-bottom: 30px;
}
/*Navbar*/
.navbar.navbar-top-default{
  height: 90px;
} 
.sidemenu_btn{
  right: 10px;
  top: 30px;
}
/*Side Menu*/
.side-menu{
  width: 50%;
}
.side-menu .side-nav{
  margin-top: 100px;
}
  /*Banner Section*/
.banner-section{
  height: auto;
}
.banner-section .banner-slider-row{
  height: auto;
}
.banner-section .svg-div{
  display: none;
}
.banner-section .banner-content{
  padding-top: 10rem;
}
.banner-section .button-center{
  margin-bottom: 50px;
}
/*About Section*/
.about-section .media .media-body .subheading{
  font-size: 26px;
}
/*Work Section*/
.work-section .heading br{
  display: none;
}
.work-section .row-2 .item .text-row{
  padding-left: 70px;
}
.work-section .icons{
  display: none;
}
/*Blog section*/
.blog-section .text-section{
  padding-left: 55px;
}
/*Contact Section*/
.contact-section .address-sec{
  padding-left: 0;
}
}
@media (max-width: 992px){
.wow {
  visibility: visible !important;
  animation: none !important;
}
  /*General*/
.heading{
  margin-bottom: 30px;
}
  /*Navbar*/
.navbar{
  background: #29234e;
}
.sidemenu_btn{
  top: 40px;
  right: 22px;
}
/*Side Menu*/
.side-menu{
  width: 55%;
}
/*Banner Section*/
.banner-section .banner-content{
  padding-top: 8rem;
}
.banner-section .img-area img{
  width: 72%;
}
.banner-section .button-center{
  margin-bottom: 30px;
}
.banner-section .banner-slider-row .text{
  margin-bottom: 30px;
}
/*About Section*/
.about-section .media{
  display: block;
  text-align: center;
  margin-top: 40px;
}
.about-section .media .mr-2{
  margin-right: 0 !important;
}
.about-section .media .media-body{
  padding-top: 0;
}
.about-section .services{
  padding-top: 0;
}
/*Wrok Section*/
.work-section .row-1 .heading{
  text-align: center;
  margin-bottom: 30px;
}
.work-section .row-1 .text{
  text-align: center;
  margin-top: 0;
}
.work-section .row-2 .item .text-row{
  padding-left: 0;
  text-align: center;
}
.work-section .row-2 .item .text-row .text{
  margin-bottom: 30px;
}
/*Skills Section*/
.skills-section .circular-wrap .circles{
  margin-bottom: 40px;
}
/*Reviews Section*/
.reviews-section .text-section{
  text-align: center;
  margin-bottom: 50px;
}
.reviews-section .text-section .heading br{
  display: none;
}
.reviews-section .text-section .text{
  padding-right: 0;
}
/*Blog Section*/
.blog-section .img-section{
  text-align: center;
}
.blog-section .text-section{
  padding-top: 60px;
  padding-left: 0;
  text-align: center;
}
.blog-section .text-section .text{
  padding-right: 0;
}
/*Contact Section*/
.contact-section .form-sec{
  text-align: center;
  padding-right: 0;
}
.contact-section .address-sec{
  text-align: center;
  padding-left: 0;
  padding-top: 60px;
}
.contact-section .address-sec .media{
  display: block;
}
.contact-section .address-sec .media i{
  margin-bottom: 20px;
}
.contact-section .address-sec .media-body{
  margin-left: 0;
}
/*Footer*/
footer .social-icons ul{
  text-align: center;
}
footer .text{
  padding-left: 0;
}
/*StandAlone Page*/

.standalone-banner .banner-text{
  text-align: center;
}
.main-page .standalone-row .row-text{
  padding-left: 0;
  margin-bottom: 40px;
}
.standalone-row:nth-child(2) .row-text{
  padding-right: 0;
}
.standalone-area .standalone-row{
  margin-bottom: 60px;
}
}
@media (max-width: 767px){
  /*General*/
.text{
    font-size: 16px;
}
.heading{
  font-size: 35px;
}
.heading br{
  display: none;
}
.text br{
  display: none;
  /*Navbar*/
}
.header-appear .navbar-top-default .sidemenu_btn{
  top: 25px;
}
.navbar.navbar-top-default{
  height: 70px;
} 
.navbar .navbar-brand img{
  width: 80%;
}
.sidemenu_btn {
  top: 25px;
  right: 10px;
}
/*Side Menu*/
.side-menu{
  width: 100%;
}
.side-menu .inner-wrapper{
  padding: 3rem 2rem;
}
/*Banner*/
.banner-section .heading{
  font-size: 45px;
}
.banner-section .img-area img{
  margin-left: 5%;
  margin-right: auto;
}
.banner-section .social-icons{
  display: none;
}
/*Footer*/
footer .text{
  font-size: 13px;
}
/*StandAlone Page */
.standalone-banner .banner-text .heading{
  font-size: 40px;
}

.main-page .standalone-heading .heading{
  font-size: 40px;
}
.main-page .standalone-area .heading{
  font-size: 32px;
}
}
@media (max-width: 370px){
  /*General*/
.heading{
  font-size: 32px;
}  
/*Side Menu*/
.side-menu .side-nav{
  margin-top: 75px;
}
/*Banner section*/
.banner-section .heading{
  font-size: 42px;
  margin-bottom: 15px;
}
.banner-section .banner-content{
  padding-top: 6rem;
}
.banner-section .banner-slider-row .text{
  margin-bottom: 15px;
}
.banner-section .img-area img{
  width: 48%;
}
/*About section*/
.about-section .media .media-body .subheading{
  font-size: 27px;
}
/*Contact Section*/
.contact-section .heading{
  font-size: 32px;
}
}