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

/*  
  - Fonts
  - Scrollbar
  - General   
  - Loader
  - Navbar
  - Side Menu
  - Banner
  - Evenets Section
  - Events Section-2
  - Pricing Section
  - Offers Section
  - Reviews Section
  - Blog Section
  - Contact Section
  - Media Queries
     
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500&amp;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: #89980a;
    width: 0;
    height: 25%;
    transition: .5s ease;
    cursor: pointer;
}
/*::-webkit-scrollbar-thumb:hover {
    background:#89980a;
}*/


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

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

span {
  font-weight: 400;
}

a {
  text-decoration: none;
}


/*Headings*/

.heading {
  font-size: 36px;
  color: #002450;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
}

.text {
  font-size: 18px;
  font-weight: 300;
  color: #494949;
  margin-bottom: 15px;
  font-family: 'Roboto', sans-serif;
}

.text-1{
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 15px;
  font-family: 'Open Sans', sans-serif;
}


/*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: #011321;
  height: 40px;
  line-height: 40px;
  width: 40px;
  border: 1px solid transparent;
  text-align: center;
}


/*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: #fefefe;
  border: 2px solid transparent;
  text-transform: capitalize;
  transition: all .5s ease !important;
}

.btn.button {
  font-size: 15px !important;
  font-weight: 500;
  color: #fefefe;
  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: #4f4f4f;
}

.btn.green-btn {
  background: #89980a;
  border-color: #89980a;
}

.btn.orange-btn {
  background: #dc3900;
  border-color: #dc3900;
}


/*Button hover*/

.btn.btn-hvr-green:hover {
  background-color: #89980a;
  border-color: #89980a;
  color: #fefefe;
}

.btn.btn-hvr-orange:hover {
  background-color: #dc3900;
  border-color: #dc3900;
  color: #fefefe;
}

/* ===================================
   Loader
====================================== */
.loader-bg {
  position: fixed;
  z-index: 99999;
  background-color: #ffffff;
  width: 100%;
  height: 100%;
}

.loader {
  border: 0 solid transparent;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.loader:before , .loader:after {
  content: '';
  border: 1em solid #89980a;
  border-radius: 50%;
  width: inherit;
  height: inherit;
  position: absolute;
  top: 0;
  left: 0;
  animation: load 2s linear infinite;
  opacity: 0;
}

.loader:before {
    animation-delay: .5s;
}
@keyframes load {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}
/* ===================================
    Navbar
====================================== */


/* nav top default */

.navbar.navbar-top-default {
  position: absolute;
  top: 0;
  z-index: 99;
  overflow: hidden;
  height: 90px;
  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: #2d2d2d;
  -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);
}

@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: 'Montserrat', sans-serif;
}

.navbar .navbar-nav {
  margin-left: auto;
  margin-right: auto;
}

.navbar .navbar-nav .nav-link.active {
  color: #89980a;
  transition: all .6s ease;
}

.navbar .navbar-nav .nav-link:hover {
  color: #89980a;
  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: #89980a;
}

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


/*side menu button*/

.sidemenu_btn {
  width: 36px;
  padding: 6px;
  right: 40px;
  top: 20px;
  z-index: 999;
  margin-top: 12px;
  margin-left: 16px;
  cursor: pointer;
  position: absolute;
  display: inline-block;
  transition: all .3s linear;
}

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

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

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

.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: #89980a;
  transform: translate3d(100%, 0, 0);
  transition: transform .5s ease;
  position: fixed;
  overflow: hidden;
}

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

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

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

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

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


/*Side overlay*/

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


/*side menu image*/

.sidemenu-image {
  position: absolute;
  top: 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 {
  transform: scale(0.9);
  overflow: hidden;
  transition: all .5s ease;
}


/*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: 38px;
  display: block;
}

.side-nav .navbar-nav .nav-item {
  opacity: 0;
  display: block;
  margin: 7px 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;
}

.side-menu-footer .banner-icons ul {
  margin-bottom: 0px;
}

.side-menu-footer .banner-icons ul li {
  display: inline-block;
}

.side-menu-footer .banner-icons ul li i {
  color: #fff;
}

.side-menu-footer .banner-icons ul li a {
  border-radius: 50%;
  color: #fff;
  height: 40px;
  line-height: 38px;
  width: 40px;
  border: 1px solid transparent;
  display: block;
  overflow: hidden;
  text-align: center;
}


/* ===================================
    Banner Section Start
====================================== */
/*Row-1*/
.banner-section .img-section{
  position: relative;
  width: 100%;
}
/*Row-2*/
.banner-section .row-2 .text-section{
  top: 27%;
  width: 100%;
  position: absolute;
  text-align: center;

  }
.banner-section .row-2 .text-section .text{
  margin-bottom: 25px;
  font-size: 24px;
  color: #fff;
  margin-bottom: 30px;
}
.banner-section .row-2 .text-section .heading{
  margin-bottom: 30px;
  font-weight: 700;
  color: #fff;
  font-size: 65px;

}
.banner-section .row-2 .text-section .button-center .btn.button{
  font-size: 12px !important;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}
/*Row-3*/
.green-box{
  background-color: #89980a;
}
.orange-box{
  background-color: #dc3900;
}
.banner-section .row-3 .card{
  padding: 60px 30px 60px 30px;
  position: absolute;
  bottom:30px;
}
.banner-section .row-3 .card-body{
  padding: 0;
}
.banner-section .row-3 .card .card-title{
  color: #fff;
  font-weight: 500;
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.banner-section .row-3 .card i{
  color: #fff; 
  font-size: 30px;
}


/* ===================================
    Events Section
====================================== */
.events-section{
  padding-top: 120px;
  padding-bottom: 120px;
}
/*Row-1*/
.events-section .row-1 .img-section img{
  border: 11px solid #f6f6f6;
  position: relative;
  z-index: 1;
}
.events-section .row-1 .img-section .rectangle{
  background-color: #89980a;
  width: 560px;
  height: 290px;
  left: 40px;
  top: 160px;
  position: absolute;
}
.events-section .row-1 .text-section{
  padding-top: 2rem;
}
.events-section .row-1 .text-section .heading{
  margin-top: 30px;
  margin-bottom: 30px;
}
.events-section .row-1 .text-section .subheading{
  color: #494949;
  font-size: 20px;
}

/*Row-2*/
.events-section .row-2{
  margin-top: 160px;
}
.events-section .circular-wrap .circle{
  position: relative;
  max-width: 210px;
  display: inline-block;
}

.events-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%);
}
.events-section .circular-wrap .circle .counter-num {
  color: #505050;
  font-size: 1.875rem;
  font-weight: 300;
}

.events-section .circular-wrap h5.text{
  max-width: 184px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  margin-top: 30px;
  line-height: 25px;
}
/* ===================================
    Events Section-2
====================================== */

.events-section-2 {
  background: url('../img/event-img-1.jpg');
  background-size: cover;
  height: 553px;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.events-section-2 .img-text{
  text-align: center;
}
.events-section-2 .img-text .heading{
  color: #fff;
  margin-bottom: 35px;
}

/* ===================================
    Pricing section
====================================== */
.pricing-section{
  padding-top: 120px;
  padding-bottom: 120px;
}

.pricing-section .section-heading .heading{
  margin-bottom: 30px;
}

.pricing-section .pricing-plans {
  margin-top: 90px;
}

.pricing-section .pricing-plans .single-price {
  padding-bottom: 30px;
  background-color: #fff;
  text-align: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.10);
}

.pricing-section .center.price-tag {
  color: #fff;
}

.pricing-section .price-tag .price {
  color: #002450;
  font-weight: 600;
  font-size: 36px;
  margin-top: 25px;
  margin-bottom: 25px;
}

.pricing-section .price-tag .heading {
  font-size: 18px;
  padding: 30px;
  color: #fff;
  font-weight: 500;
  background-color: #89980a;
}
.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;
}

.pricing-section  .active .price-tag .heading {
  padding: 50px;
  background-color: #dc3900;
}
/* ===================================
    Special Offers Section
====================================== */
.offers-section{
  padding-top: 120px;
  /*padding-bottom: 120px;*/
  background-color: #f6f6f6;
}
.offers-section .text-section{
  padding-top: 10rem;
}
.offers-section .text-section .heading{
  margin-bottom: 35px;
}
.offers-section .text-section .text{
  margin-bottom: 35px;
}

/* ===================================
    Reviews Section
====================================== */
.reviews-section{
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #89980a;
}


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

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

.reviews-section .testimonial-carousel .item p {
  text-align: center;
  margin-top: 35px;
  margin-bottom: 35px;
  color: #fff;
  font-size: 18px ;
  padding-left: 300px;
  padding-right: 300px;
}

.reviews-section .testimonial-carousel .item h5 {
  font-size: 24px;
  margin-top: 25px;
  color: #fff;
}
/* ===================================
    Blog Section Start
====================================== */
.blog-section{
  padding-top: 120px;
  padding-bottom: 120px;
}

.blog-section .heading{
  text-align: center;
  margin-bottom: 100px;
}

.blog-section .card{
  border: 1px solid transparent;
  border-radius: 16px;
  overflow:hidden;
  cursor: pointer;
}

.blog-section .card .date{
  color: #89980a;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}

.blog-section .card .card-body .heading{
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: left;
}
.blog-section .card .card-body .text{
  font-size: 16px;
  color: #9fa4af;
}
.blog-section .card.active{
  box-shadow: 0 0 15px rgb(0 0 0 / 25%);
}
.blog-section .card .card-body .organizer .img, .name{
  display: inline-block;

}
.blog-section .card .card-body .organizer .img img{
   transform: scale(1);
}
.blog-section .card .card-body .organizer .name .text{
  font-size: 15px;
  color: #dc3900;
  font-weight: 400;
  font-style: italic;
}
.blog-section .card img{
  transition: all 0.5s;
}
.blog-section .card:hover img{
  transform: scale(1.1);
  transition: all 0.5s ;
}
/* ===================================
   Contact-Section
====================================== */
.contact-section{
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dc3900;
}
.contact-section .logo-section{
  position: relative;
  bottom: 30px;
}
.contact-section .logo-section img{
  position: relative;
  z-index: 1;
  top: 95px;
  left: 35px;
}
.contact-section .logo-section .circle{
  background-color: #fff;
  width: 145px;
  height: 145px;
  border: 1px solid #fff;
  border-radius: 50%;
  margin-bottom: 30px;
}
.contact-section .logo-section .heading{
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.contact-section .logo-section .text-1{
  margin-bottom: 5px;
}

.contact-section .form-section {
padding-top: 60px;

}
.contact-form .form-control::placeholder {
color: #fff;
font-size: 14px;
font-weight: 300;
}
.contact-form textarea {
min-height: 110px;
resize: none;
}
.contact-section .contact-form .form-control {
border: none;
border-bottom: 1px solid #fff;
background: transparent;
font-weight: normal;
border-radius: 0;
box-shadow: none;
margin-bottom: 40px;
font-size: 16px;
transition: border .9s ease;
}
.contact-section h2{
font-size: 48px;
font-weight: 500;
}
.form-control:focus {
color: #fff;
box-shadow: 0 0 0 0.0rem transparent;
}
.contact-section .button {
width: 100%;
}


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

footer {
  width: 100%;
  float: left;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #f6f6f6;
}

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

footer .social-icons {
  text-align: center;
}
/* ===================================
    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: center;
}
.standalone-banner .heading{
  padding-bottom: 16px;
  font-size: 60px;
  font-weight: 700;
  color: #fff;
}

.page-breadcrumb li{
  display: inline-block;
  font-size: 18px;
  font-weight:600;
  color: #fff;
}
.page-breadcrumb li a{
  color:#fff; 
  margin-right: 5px;
  transition:all 0.3s ease;
}
.page-breadcrumb li i{
   color: #89980a;
}

/*MAIN PAGE START*/
.main-page{
  padding-top: 120px;
  padding-bottom: 120px;
}
.main-page .standalone-heading {
  padding-bottom: 100px;
}
.main-page .standalone-heading .heading{
  font-size: 40px;
}
.main-page  .subheading{
  color: #494949;
  font-weight: 500;
  font-size: 20px;
}
.main-page .standalone-area .heading{
 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:  #89980a;
}
.hover-effect:hover .standaloneoverlay {
  opacity: .4;
}
.overlayBottom {
  width: 100%;
  height: 0;
  bottom: 0;
  right: 0;
  cursor: pointer;
  background-color: #89980a;
}
.hover-effect:hover .overlayBottom {
  height: 100%;
}


/* ===================================
    Media Queries
====================================== */
@media (width: 1920px){
  /*Banner-Section*/
  .banner-section .row-3 .card{
    bottom: 135px;
  }
}


@media (max-width: 1200px){
  /*General*/
.heading{
  font-size: 35px;
}
/*Navbar*/
.navbar .navbar-nav .nav-link{
  font-size: 15px;
  margin-left: 8px;
}
.navbar .navbar-brand{
  margin-right: 0;
}
/*Side Menu*/
.side-menu{
  width: 50%;
}
.side-menu .side-nav {
  margin-top: 155px;
}
/*Banner Section*/
.banner-section .row-2 .text-section{
  top: 7%;
}
.banner-section .row-2 .text-section .heading{
  margin-bottom: 15px;
  font-size: 50px;
}
/*Events Section*/
.events-section .row-1 .img-section .rectangle{
  width: 450px;
  height: 300px;
  left: 50px;
  top: 75px;
}
.events-section .row-1 .text-section{
  padding-top: 0;
}
/*Pricing Section*/
.pricing-section .text br{
  display: none;
}
/*Reviews Section*/
.reviews-section .testimonial-carousel .item p{
  padding-left: 200px;
  padding-right: 200px;
}
}
@media (max-width: 992px){
/*Navbar*/
.sidemenu_btn{
  right: 25px;
}
/*Side Menu*/
.side-menu{
  width: 55%;
}
.side-menu .side-nav {
  margin-top: 85px;
}
/*Banner Section*/
.banner-section .row-2 .text-section{
  top: 14%;
}
.banner-section .row-3{
  padding-top: 6.5rem;
}
.banner-section .row-3 .card{
  position: relative;
  bottom: 0;
}
.banner-section .row-3 .card .card-title{
  font-size: 22px;
}
.banner-section .row-3 .card {
  padding: 60px 16px 60px 16px;
}
.banner-section .row-3 .card .text-1{
  font-size: 14px;
}
/*Events Estion*/
.events-section .row-1 .img-section img{
  width: 100%;
}
.events-section .row-1 .img-section .rectangle{
  width: 592px;
  height: 400px;
  left: 135px;
  top: 142px;
}
.events-section .row-1 .text-section{
  padding-top: 6rem;
}
.events-section .row-1 .text-section{
  text-align: center;
}
.events-section .row-1 .text-section .button-center{
  margin-top: 30px;
}
/*Pricing Section*/
.pricing-section .single-price{
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
.pricing-section .pricing-plans .single-price.active{
  padding-bottom: 30;
  transform: translateY(0);
  margin-top: 50px;
  margin-bottom: 50px;
}
/*Offers Section*/
.offers-section .text-section{
  padding-top: 0;
  padding-bottom: 3rem;
  text-align: center;
}
.offers-section .img-section{
  text-align: center;
}
/*Reviews Section*/
.reviews-section .testimonial-carousel .item p{
  padding-left: 0;
  padding-right: 0;
}
.blog-section .card.active{
  margin-top: 50px;
  margin-bottom: 50px;
}
/*Contact Section*/
.contact-section .logo-section{
  text-align: center;
}
.contact-section .logo-section img{
  left: 0;
}
.contact-section .logo-section .circle{
  margin-left: auto;
  margin-right: auto;
}
/*StandAlone Page*/
.standalone-area .standalone-row{
  margin-bottom: 60px;
}
.main-page .standalone-row .row-text{
  padding-left: 0;
  padding-bottom: 30px;
}
.standalone-row:nth-child(2) .row-text{
  padding-right: 0;
}
}
@media (max-width: 767px){
/*General*/
.heading{
  font-size: 29px;
}
.heading br{
  display: none;
}
.text {
  font-size: 16px;
}
.text br{
  display: none;
}
.text-1{
  font-size: 16px;
}
.text-1 br{
  display: none;
}
/*Navbar*/
.header-appear .navbar-top-default{
  height: 75px;
}

.sidemenu_btn{
  right: 10px;
  top: 12px;
}
/*Side Menu*/
.side-menu{
  width: 100%;
}
.side-menu .side-nav{
  margin-top: 70px;
}

  /*Banner Section*/
.banner-section .row-2 .text-section {
  top: 35%;
}
.banner-section .row-2 .text-section .heading{
  font-size: 38px;
  color: #002450;
}  
.banner-section .row-2 .text-section .text{
  font-size: 18px;
  color: #494949;
}
.banner-section .btn.white-btn{
  background: #89980a;
  border-color: #89980a;
}
.banner-section .row-3 {
  padding-top: 22rem;
}
.banner-section .row-3 .card{
  text-align: center;
}
.banner-section .row-3 .card.orange-box{
  margin-top: 40px;
  margin-bottom: 40px;
}
/*Events Section*/
.events-section .row-1 .img-section .rectangle{
  width: 325px;
  height: 228px;
  left: 44px;
  top: 43px;
}
/*Pricing Section*/
.pricing-section .single-price{
  width: 100%;
}

/*StandAlone Page*/
.standalone-banner .heading{
  font-size: 35px;
}
.main-page .standalone-heading .heading{
  font-size: 32px;
}
}

@media (max-width: 370px){

  /*Side Menu*/
.side-nav .navbar-nav .nav-link{
  font-size: 20px;
}
.side-menu-footer p{
  font-size: 13px;
}

  /*Banner section*/
.banner-section .row-2 .text-section{
  top: 42%;
}  
.events-section .row-1 .img-section .rectangle{
  left: 30px;
  top: 33px;
}
}