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

/*  
    - Google Fonts
    - Scrollbar
    - General   
    - Loader
    - Navbar
    - Side Menu
    - Banner
    - About Section
    - Counter section
    - Portfolio Section
    - Team Section
    - Testimonials Section
    - Blog Section
    - Contact Section
    - Footer
    - StandAlone Page
    - Media Queries

   
*/

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400;500;600;700;800&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&amp;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, #00adc9  40%, #00e0ce  60%);
width: 0;
height: 25%;
transition: .5s ease;
cursor: pointer;
}


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


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

span {
  font-weight: 400;
}

a {
  text-decoration: none;
}


/*Headings*/

.heading {
  font-size: 48px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 25px; 
}

.subheading { 
  font-size: 18px;
  color: #454545;
  font-weight: 400;
  margin-bottom: 25px;
  font-family: 'Open Sans', sans-serif;
}

.text {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 25px;
  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: #fff;
  height: 40px;
  line-height: 40px;
  width: 40px;
  border: 1px solid transparent;
  text-align: center;
}

/*Social icons hover*/

.facebook-hover:hover {color: #4267B2; transition: all 0.5s ease; background-color: #fff;}
.twitter-hover:hover {color: #1DA1F2; transition: all 0.5s ease; background-color: #fff;}
.google-plus-hover:hover {color: #db4a39; transition: all 0.5s ease;background-color: #fff;}
.linked-in-hover:hover {color: #2867B2; transition: all 0.5s ease; background-color: #fff;}
.instagram-hover:hover {color: #C13584; transition: all 0.5s ease; background-color: #fff;}
.gmail-hover:hover {color: #D44638; transition: all 0.5s ease; background-color: #fff;}
/*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 27px !important;
  line-height: 1.8em !important;
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
  font-family: 'Raleway', sans-serif;
}

.btn.btn-rounded {
  border-radius: 50px;
}

.btn.blue-btn {
  background:  #00abc9;
  border-color:  #00abc9;
  color: #fff;
}

.btn.red-btn {
  background:  #cb342b;
  border-color:  transparent;
  color: #fff;
}

.btn.white-btn {
  background:  #fff;
  border-color:  transparent;
  color: #00bccb;
}

.btn.white-btn-1 {
  background:  #fff;
  border-color:  transparent;
  color: #cb342b;
}
  

/*Button hover*/

.btn.btn-hvr-red:hover {
  background-color: #cb342b;
  border-color: #cb342b;
  color: #fff;
}

.btn.btn-hvr-blue:hover {
  background-image: linear-gradient(to right, #00e0ce 30%, #00adc9 70%);
  /*background-color: #cb342b;*/
  border-color: transparent;
  color: #fff;
}

/* ===================================
   Loader
====================================== */
.loader {
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 111111;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #fff;
}
.loader-spinner {
  width: 75px;
  height: 75px;
  margin: 0;
  background: transparent;
  border-top: 4px solid #50c2cb;
  border-right: 4px solid transparent;
  border-radius: 50%;
  animation: 1s spin 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);
    }
}

/* ===================================
    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-color: #fff;
  -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: 15px;
  color: #4f4f4f;
  font-weight: 600;
  padding: 6px 6px;
  margin-left: 45px;
  transition: .5s ease;
  transition: all .6s ease;
  border: 2px solid transparent;
  display: block;
  font-family: 'Raleway', sans-serif;
}

.navbar .navbar-nav {
  margin-left: auto;
}
.navbar .navbar-nav .nav-link.non-active{
  color: #4f4f4f !important;
}
.navbar .navbar-nav .nav-link.active { 
  color: #cb342b;
  transition: all .6s ease;
}

.navbar .navbar-nav .nav-link:hover {
  color: #4f4f4f;
  cursor: pointer;
  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: #4f4f4f;
}

.navbar .navbar-nav .button {
  margin-left: 30px;
}

/*Search icon*/
.search {
  vertical-align: sub;
}

.open_search {
  cursor: pointer;
  color: #4f4f4f;
  display: inline-block;
  padding: 10px;
  font-size: 18px;
  margin-left: 30px;
  position: relative;
}

.search_block {
  opacity: 0;
  display: none;
  text-align: center;
  height: 0;
  position: fixed;
  top: 50%;
  left: 35%;
  z-index: 1024;
  margin-top: -41px;
  margin-left: -150px;
}

.search_block.visible {
  opacity: 1;
  display: inline-block;
  height: auto;
}

.search_block.visible .search_box {
  opacity: 1;
  top: 0;
  transform: scale(1);
}

.search_block .overlayer {
  background-color: #00abc9;
  position: fixed;
  cursor: url(../img/overlay-close.png), auto;
  opacity: 0.9;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

input,
select,
textarea {
  background-color: transparent !important;
  font-size: 20px;
}

.inner input,
select,
textarea::placeholder {
  color: #FFFFFF !important;
}

input::-webkit-input-placeholder {
  color: #FFFFFF !important;
}

input:-moz-placeholder {
  /* Firefox 18- */
  color: #FFFFFF !important;
}

input::-moz-placeholder {
  /* Firefox 19+ */
  color: #FFFFFF !important;
}

input:-ms-input-placeholder {
  color: #FFFFFF !important;
}

.search_box {
  background-color: transparent;
  opacity: 0;
  display: inline-block;
  padding: 10px;
  position: relative;
  text-align: center;
  top: -120px;
  transform: scale(1.05);
  transition: all 0.4s ease 0s;
  z-index: 10;
}

.search_box .search_input {
  border: 3px solid transparent;
  border-bottom: 1px solid;
  box-sizing: border-box;
  display: inline-block;
  height: 80px;
  line-height: 2;
  min-width: 700px;
  outline: medium none;
  padding: 10px 10px 10px 0px;
  width: 700px;
  transition: all 0.45s ease 0s;
  -webkit-appearance: none;
  border-radius: 0;
}

.search-form .search-input {
  font-size: 30px;
  font-weight: 200;
}

#search ::placeholder {
  color: #FFFFFF;
  opacity: 1;
}

.search_icon {
  background-color: transparent;
  border: medium none;
  color: #FFFFFF;
  font-size: 28px;
  left: 93%;
  line-height: 38PX;
  padding: 8px;
  position: absolute;
  top: 28px;
}

.search_icon:hover {
  color: #FFFFFF;
}

.search_icon:focus {
  color: #FFFFFF;
}

::-webkit-input-placeholder {
  color: #999;
  font-style: normal;
}

:-moz-placeholder {
  color: #999;
  font-style: normal;
}

::-moz-placeholder {
  color: #999;
  font-style: normal;
}

:-ms-input-placeholder {
  color: #999;
  font-style: normal;
}

input,
select,
textarea {
  margin: 0;
}


/*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: #4f4f4f;
  display: block;
  margin: auto;
  transition: .5s ease;
}

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

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

.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-image: linear-gradient(to right, #00e0ce 20%,  #00adc9 100%);
  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: 45px;
}


/*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: 4rem 3rem;
  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: 35px;
  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;
  line-height: normal;
  position: relative;
  border-radius: 0;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;  
}

.side-nav .navbar-nav .nav-link::after {
  content: "";
  left: 0;
  width: 0;
  bottom: 0;
  height: 2px;
  background: #fff;
  overflow: hidden;
  position: absolute;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
}

.side-nav .navbar-nav .nav-link:hover::after,
.side-nav .navbar-nav .nav-link:focus::after,
.side-nav .navbar-nav .nav-link.active::after {
  width: 100%;
}

.side-nav .navbar-nav .nav-link.active {
  background: transparent;
}


/*side menu footer */

.side-menu-footer .navbar-nav {
  transform: translateY(0);
}

.side-menu-footer .text {
  font-size: 14px;
}


/* ===================================
    Banner 
====================================== */
.banner{
  background-image: url('../img/banner.jpg');  
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  /*position: relative;*/
  background-repeat: no-repeat;
}

.banner .banner-caption .heading{
  font-size: 74.23px;
  color: #cb342b;
  margin-bottom: 5px;
}

.banner .banner-caption .text{
  color: #4f4f4f;
  font-size: 30px;
  margin-bottom: 50px;
}

/* ===================================
    About Section
====================================== */
.about-section{
  padding-top: 120px;
  background-image: linear-gradient(to right, #00e0ce 30%, #00adc9 70%);
}
.about-section .img-col{
  display: flex;
  justify-content: center;
  width: 92%;
}
.about-section .text-col{
  padding-left: 20px;
}
.about-section .text-col .subheading{
  color: #fff;
  font-size: 24px;
}


/* ===================================
    Counter Section
====================================== */

.counter-section .num_counter{
  background-color: #fff;
  padding-top: 120px;
  padding-bottom: 120px;
}
.counter-section .num_counter .subheading {
  font-size: 36px;
  margin-bottom: 15px;
  color: #cb342b;
  font-weight: 500;
}


.counter-section .num_counter {
  padding-top: 90px;
}

.counter-section .counter i {
  font-size: 36px;
  color: #011321;
}

.counter-section .num_counter .counter .text {
  text-transform: uppercase;
  margin-bottom: 0;
  color: #18191d;
  font-weight: 600;

}

/*Red Text Section*/
.counter-section .text-row{
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #cb342b;
}

.counter-section .text-row .subheading{
  color: #fff;
}

.counter-section .text-row .heading{
  font-weight: 300;
  font-size: 42px;
}

/* ===================================
    Portfolio Section
====================================== */
.portfolio-section{
  padding-top: 120px;
  padding-bottom: 120px;
}

.portfolio-section .heading-col .heading{
  color: #4f4f4f;
}
.portfolio-section .heading-col .text{
  color: #7e8186;
  margin-bottom: 70px;
  padding-left: 240px;
  padding-right: 240px;
}

/*Gallery*/

.portfolio-section .port {
  text-align: center; 
  margin: 0 auto;
  max-width: 600px; 
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  background-color: #39c5de;
  font-size: 14px;
  color: #fff !important;
  cursor: pointer;
}
.portfolio-section .owl-carousel .owl-stage-outer{
  cursor: pointer;
}
.portfolio-section .nav-pills .nav-link {
  margin-left: 10px; 
  border: 1px solid #e1e1e1;
  cursor: pointer;
  font-weight: 600;
  color: #3c3f46;
  padding: .5rem 2rem;
  border-radius: 0px;
  font-family: 'Open Sans', sans-serif;
}
.portfolio-section .da-thumbs li {
  margin: 1px;
  width: 33.1%;
  position: relative;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.portfolio-section .da-thumbs{
  z-index: 1;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.portfolio-section .da-thumbs>li{
  display: block;
  position: relative;

}
.portfolio-section .da-thumbs >li {
  overflow: hidden;
}

.portfolio-section .da-thumbs >li .overlay h4 {
  color: #ffffff;
  font-size: 22px;
}

.portfolio-section .da-thumbs >li .overlay {
  position: absolute;
  background: rgba(57, 197, 222, 0.81);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  top: 100%;
  z-index: 2;
}
.portfolio-section .da-thumbs >li .overlay .text-icon{
  display: block;
}
.portfolio-section .da-thumbs >li .overlay .search-icon {    
  border: 1px solid white;
  border-radius: 50%;
  display: inline-block;
  color: #ffffff;
  padding: 5px 10px;
  margin-bottom: 10px;
}

/* ===================================
    Team Section
====================================== */

.team-section .team-row{
  background-color: #f6f6f6;
  padding-top: 120px;
  padding-bottom: 120px;
}
.team-section .heading-col{
  padding-bottom: 120px;
}
.team-section .heading-col .heading{
  color: #3c3f46;
}
.team-section .heading-col .text{
  color: #1f1f1f;
  padding-left: 250px;
  padding-right: 250px;
}

/*Carousel*/
.team-section .team-carousel .card{
  border: 1px solid transparent;
  background-color: transparent;
}

.team-section .team-carousel .card .heading{
  color: #333333;
  font-size: 22px;
  margin-bottom: 10px;
}

.team-section .team-carousel .card .text{
  color: #666666;
}

/*Owl Carousel Buttons*/
.team-section  .owl-carousel button.owl-dot.active{
  background-color: #00dfce;
}
.team-section .team-carousel button:focus {
  outline: 1px solid rgba(0,0,0,.075);
}
.team-section .owl-carousel .owl-nav button.owl-next, 
.owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
  background: #dddddd;
  border: none;
  font: inherit;
  width: 10px;
  margin-left: 20px;
  height: 12px;
  border-radius: 50%;
  margin-top: 50px;
}

/*images Overlay*/

.team-section .team-carousel .card .overlay-image {
  position: relative;
  overflow: hidden;
}

.team-section .team-carousel .card .overlay-image img {
  transition: all 0.7s ease;
}

.team-section .team-carousel .card .overlay-image:hover img {
  transform: scale(1.1);
  transition: all 0.7s;
}

.team-section .team-carousel .card .overlay-image:hover {
  cursor: pointer;
}

.team-section .team-carousel .card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient( rgba(32, 32, 32, 0.8), rgba(32, 32, 32, 0.8));
  opacity: 1;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: .7s ease;
}

.team-section .team-carousel .card .overlay-image:hover .overlay {
  transform: scale(1);
}

.team-section .team-carousel .card .overlay-image .icons {
  color: white;
  opacity: 1;
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.team-section .team-carousel .card  .overlay-image .icons ul{
  padding-left: 0;
}
.team-section .team-carousel .card .overlay-image .icons ul li{
  list-style: none;
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
}
.team-section .team-carousel .card .overlay-image .icons ul li i{
  font-size: 14px;
}
.team-section .team-carousel .card .overlay-image .icons ul li .facebook:hover{
  color: #4267B2;
}
.team-section .team-carousel .card .overlay-image .icons ul li .google:hover{
  color: #db4a39;
}
.team-section .team-carousel .card .overlay-image .icons ul li .twitter:hover{
  color: #1DA1F2;
}
.team-section .team-carousel .card .overlay-image .icons ul li .instagram:hover{
  color: #C13584;
}

/*Team Section Text Row*/
.team-section .text-row{
  padding-top: 150px;
  padding-bottom: 120px;
}
.team-section .text-row .heading{
  color: #000;
  font-size: 42px;
  font-weight: 300;
}

/* ===================================
    Reviews Section
====================================== */
.reviews-section{
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: linear-gradient(to right, #00e0ce 30%, #00adc9 70%);
}

.reviews-section .blog-reviews-carousel .item .text {
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 55px;
  padding-left: 200px;
  padding-right: 200px;
}

.reviews-section .blog-reviews-carousel .item .star-icons{
  padding-left: 0;
  margin-bottom: 0;
}
.reviews-section .blog-reviews-carousel .item .star-icons li{
  list-style: none;
  display: inline-block;
}
.reviews-section .blog-reviews-carousel .item .star-icons li i{
  color: #fff83c;
}
.reviews-section .carousel-section .icons  i {
  overflow: hidden;
  border-radius: 50%;
  color: #fff;
  height: 30px;
  line-height: 30px;
  width: 30px;
  border: 1px solid #fff;
  text-align: center;
  font-size: 12px;
  transition: .5s ease;
}
.reviews-section .carousel-section{
  position: relative;
}
.reviews-section .carousel-section .icons {
  position: absolute;
   bottom: 12rem;
  z-index: 11;
}
.reviews-section  .icons .left-customPrevBtn{
  position: absolute;
}
.reviews-section .icons .right-customNextBtn{
  position: absolute;
  left: 67.5rem;
}

/* ===================================
    Blog Section
====================================== */
.blog-section{
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f6f6f6;
}
/*Heading*/
.blog-section .heading-col{
  position: relative;
}
.blog-section .heading-col .subheading{
  font-size: 14px;
  color: #cb342b;
}
.blog-section .heading-col .heading{
  color: #00abc9;
  margin-bottom: 0;
}
.blog-section .heading-col .small-line{
  width: 20px;
  text-align: center;
  position: absolute;
  border-top: 2px solid #000;
}
.blog-section .heading-col .large-line{
  width: 35px;
  left: 34.3rem;
  position: absolute;
  margin-right: 10px;
  bottom:-7px;
  border-top: 2px solid #000;
}
/*Blog Columns*/
.blog-section .blogs-row{
  margin-top: 100px;
}
.blog-section .blogs-row .card{
  position: relative;
}
.blog-section .blogs-row .card .card-body{
  padding-top: 3.5rem;
}
.blog-section .blogs-row .card .card-body .author-img{
  position: absolute;
  bottom: 195px;
  border: 3px solid #fff;
  border-radius: 50%;
  z-index: 1;
}
.blog-section .blogs-row .card:hover .card-body .heading{
  transition: all .5s ease;
  color: #cb342b;
}

.blog-section .blogs-row .card .card-body .heading{
  font-size: 18px;
  margin-bottom: 5px;
  color:#313131;
}

.blog-section .blogs-row .card .card-body .text{
  font-size: 13px;
  color:#969595;
}
.blog-section .blogs-row ul{
  padding-left: 0;
}
.blog-section .blogs-row .card .card-body ul li{
  display: inline-block;
  list-style: none;
  color:#969595;
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
}
/*gallery-blog*/
.blog-section .blogs-row .gallery-blog .card .icons {
  position: absolute;
   top: 40%;
  z-index: 11;
}
.blog-section .blogs-row .gallery-blog .card .left-customPrevBtn{
  position: absolute;
  border: 1px solid #fff;
  width: 60px;
  border-radius: 25px;
  color: #fff;
  left: 13rem;
  text-align: center;
  background-color: rgb(255,255,255, 0.3);
}
.blog-section .blogs-row .gallery-blog .card .right-customNextBtn{
  position: absolute;
  left: 17.5rem;
  border:1px solid #fff;
  width: 60px;
  border-radius: 25px;
  color: #fff;
  text-align: center;
  background-color: rgb(255,255,255, 0.3);
}

.blog-section .blogs-row .gallery-blog .card  .left-customPrevBtn:hover{
  background-color: #2db6ce;
  border:1px solid #2db6ce;
  transition: .5s ease;
  cursor: pointer;
}
.blog-section .blogs-row .gallery-blog .card  .right-customNextBtn:hover{
  background-color: #2db6ce;
  border:1px solid #2db6ce;
  transition: .5s ease;
  cursor: pointer;
}

/*Video Blog*/
.blog-section .blogs-row .video-blog .card .video-icon{
  text-align: center;
}
.blog-section .blogs-row .video-blog .card .video-icon i {
  overflow: hidden;
  background-color: rgb(255,255,255, 0.3);
  border-radius: 50%;
  color: #fff;
  height: 50px;
  line-height: 48px;
  width: 50px;
  border: 1px solid #fff;
  text-align: center;
  font-size: 20px;
  transition: .5s ease;
  position: absolute;
  top: 80px;
  left: 45%;
  padding-left: 5px;
}
.blog-section .blogs-row .video-blog .card .video-icon:hover i{
  border: 1px solid #2db6ce;
  background-color: #2db6ce;
  transition: .5s ease;
}

/*Share Buttons*/
.blog-section .blogs-row .share-buttons{
  padding-top: 10px;
}
.blog-section .blogs-row .share-buttons ul li{
   font-size: 10px;
  display: inline-block;
  list-style: none;
  font-family: 'Open Sans', sans-serif;
}
.blog-section .blogs-row .share-buttons ul li .buttons{
  /*overflow: hidden;*/
  border-radius: 25px;
  display: block;
  color: #969595;
  height: 35px;
  line-height: 35px;
   width: 80px;
  border: 1px solid transparent;
  text-align: center;
  background-color: rgb(255, 255, 255, 0.3);
}
.blog-section .blogs-row .share-buttons ul li .buttons:hover{
  background-color: #2db6ce;
  color: #fff;
  cursor: pointer;
}

/* ===================================
    Contact Section
====================================== */
.contact-section{
  padding-top: 120px;
  padding-bottom: 120px;
}
.contact-section .contact-info-sec .heading{
  color: #00abc9;
  margin-bottom: 35px;
}
.contact-section .contact-info-sec .subheading{
  margin-bottom: 10px;
  color: #cb342b;
}
.contact-section .contact-info-sec  .small-line{
  width: 20px;
  text-align: center;
  position: absolute;
  border-top: 2px solid #000;
  top: 88px;
  left: 20px;
}
.contact-section .contact-info-sec  .large-line{
  width: 35px;
  left: 0.3rem;
  position: relative;
  margin-right: 10px;
  bottom: 45px;
  border-top: 2px solid #000;
}
/*Form*/
.contact-section .contact-form .form-control {
  border: none;
  padding: 0;
  border-bottom: 1px solid #9b9b9b;
  background: transparent;
  font-weight: normal;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 30px;
  color: #212121;
  font-size: 14px;
  transition: border .9s ease;
}

.contact-section .contact-form .form-control:focus {
  color: #212121;
  border-color: #212121;
  outline: 0;
  box-shadow: 0 0 0 0.2rem transparent;
}
.contact-section .contact-form .form-control::placeholder {
  color: #808080 !important;
}


/*Button*/

.contact-section .contact-info-sec .button-center {
  margin-top: 15px;
  width:100%;
  margin-left: 15px;
  margin-right: 15px;
}

.contact-section .contact-info-sec .button-center .btn{
  width:100%;
}
/*Address*/
.contact-section .address-section{
  background-color: #f6f6f6;
  margin-top: 40px;
  padding: 15px 10px 15px 10px;
}
.contact-section .address-section .media{
  margin-top: 15px;
  margin-bottom: 15px;
}
.contact-section .address-section .media i{
  color: #cb342b;
  font-size: 16px;
}
.contact-section .address-section .media .subheading{
  color: #00abc9;
  font-size: 15px;
  margin-bottom: 10px;
}
.contact-section .address-section .media .text{
  font-size: 13px;
  color: #9b9b9b;
}

/*Map Section*/
.google-map{
  float: left;
  width: 100%;
 
}

.mapouter {
  position: relative;
  text-align: right;
  height: 100%;
  width: 100%;
}

.gmap_canvas {
  overflow:hidden;
  background:none!important;
  height:100%;
  width:100%;
}

.map{
  filter: grayscale(100%);
}
.google-map .gm-style .place-card-large{
  display: none;
}
/* ===================================
     Footer
====================================== */

footer {
  padding: 50px 0;
  background-image: linear-gradient(to right, #00e0ce 30%, #00adc9 70%);
}

footer .social-icons ul {
  margin-bottom: 0;
  text-align: right;
}

.social-icons ul li {
  display: inline-block;
}

footer .social-icons ul li a{
   height: 40px;
  line-height: 42px;
  width: 40px;
   font-size: 15px;
}

footer .text {
  margin-top: 8px !important;
  font-size: 14px;
}
/* ===================================
    StandAlone Pgae
====================================== */
.standalone-banner{
  background-image: url('../img/standalone-banner.jpg');
  height: 55vh;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center; 

}

.standalone-banner .banner-text .heading {
  font-size: 74.23px;
  color: #cb342b;
  text-align: left;
}
.standalone-banner .banner-text .page-breadcrumb{
  text-align: left;
}
.standalone-banner .page-breadcrumb li {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: #4f4f4f;
   text-align: left;
}

.standalone-banner .page-breadcrumb li a {
  color: #4f4f4f;
  margin-right: 5px;
  transition: all 0.3s ease;
}

.standalone-banner .page-breadcrumb li i {
  color: #4f4f4f;
}

/*Main Page Start*/
.standalone-area{
  padding-bottom: 120px;
}
.main-page{
  padding-top: 120px;
}
.main-page .standalone-heading{
  padding-bottom: 100px;
}
.main-page  .heading{
  color: #cb342b;
  margin-bottom: 10px;
}
.main-page .subheading{
  margin-bottom: 10px;
  color: #4f4f4f;
}
.main-page .text{
  color: #4f4f4f;
}
 
.main-page .standalone-heading .heading{
 font-size:50px;
 margin-bottom: 20px;
}
.main-page .row-image{
  position: relative;
}

.main-page .row-image img {
  width: 100%;
  height: 100%;
  display: block;
}
.main-page .standalone-area .standalone-row{
  margin-bottom: 40px;
}
.main-page .standalone-area .standalone-row:last-child{
  margin-bottom: 0px;
}
.main-page .standalone-row .row-text{
  padding-left: 30px;
  text-align: center;
 }  

.main-page .standalone-row:nth-child(2) .row-text{
  padding-left: 0;
  padding-right: 30px;
}

/*Image Hover*/

.hover-effect::before,
.hover-effect::after {
  content: "";
  background: #00adc9;
  height: 0;
  width: 0;
  z-index: 1;
  position: absolute;
  -webkit-transition-duration: 1.3s !important;
  -o-transition-duration: 1.3s;
  transition-duration: 1.3s !important;
}

.hover-effect::before {
  right: 0;
  opacity: 1;
  bottom: 0;
}

.hover-effect::after {
  top: 0;
  opacity: .7;
  left: 0;
}

.hover-effect:hover::after,
.hover-effect:hover::before {
  height: 100%;
  opacity: 0;
  width: 100%;
}
/* ===================================
     Media Queries
====================================== */
@media (max-width: 1200px){
  /*Navbar*/
  .sidemenu_btn{
    right: 13px;
  }
  /*Banner Section*/
.banner{
  background-size: contain;
  margin-top: 5.7rem;
  height: 94vh;
}
.banner .banner-caption {
  text-align: center;
  position: relative;
  top: 19rem;
}
/*About Section*/
.about-section .text-col{
  padding-top: 0;
}
.about-section .img-col{
  width: 100%;
}
  /*Reviews Section*/
.reviews-section .icons .right-customNextBtn{
  left: 55.5rem;
}
/*Blog Section*/
.blog-section .heading-col .large-line{
  left: 28.6rem;
}
.blog-section .blogs-row .share-buttons ul li .buttons{
  width: 69px;
}
.blog-section .blogs-row .share-buttons ul li .buttons.ml-3{
  margin-left: 0 !important;
}
/*StandAlone Page*/
.standalone-banner{
  background-size: contain;
  margin-top: 5.6rem;
}
.standalone-banner .banner-text{
  position: relative;
  top: 13rem;
}
.standalone-banner .banner-text .heading{
  text-align: center;
}
.standalone-banner .banner-text .page-breadcrumb{
  text-align: center;
}
}
@media (max-width: 992px){
  /*WOW Animation*/
.wow {
  visibility: visible !important;
  animation: none !important;
}
  /*Navbar*/
  .sidemenu_btn{
    right: 18px;
  }
  /*Side Menu*/
  .side-menu{
    width: 55%;
  }
  /*Banner*/

.banner .banner-caption{
  top: 13rem;
}
/*About Section*/
.about-section .text-col{
  padding-bottom: 50px;
  padding-top: 0;
  padding-left: 0;
  text-align: center;
}
.about-section .img-col{
  width: 100%;
}
/*Counter Section*/
.counter-section .counter{
  margin-top: 20px;
  margin-bottom: 20px;
}
/*Portfolio Section*/
 .portfolio-section .heading-col .text{
  padding-left: 0px;
  padding-right: 0px;
 } 
 .portfolio-section .nav-pills .nav-link{
  margin-bottom: 10px;
  padding: .3rem .6rem;
 }
.portfolio-section .da-thumbs li {
  width: 100%;
  margin-bottom: 50px;
}
.portfolio-section .da-thumbs li img{
  width: 100%;
}
 /*Team Section*/
 .team-section .heading-col{
  padding-bottom: 75px;
}
 /*Reviews Section*/
  .reviews-section .carousel-section .icons{
    display: none;
  }
.reviews-section .blog-reviews-carousel .item .text{
    padding-left: 0px;
    padding-right: 0px;
  }
  .team-section .heading-col .text{
    padding-left: 0px;
    padding-right: 0px;
  }
  /*Blog Section*/
  .blog-section .blogs-row .gallery-blog .card .icons{
    display: none;
  }
  .blog-section .heading-col .large-line{
    left: 21.2rem;
  }
  .blog-section .blogs-row .share-buttons ul li .buttons{
  width: 78px;
  }
  .blog-section .blogs-row .video-blog{
    margin-left: auto;
    margin-right: auto;
  }
  /*Contact Section*/
  .contact-section .address-section{
    margin-bottom: 50px;
  }
  .contact-section  .contact-info-sec .heading, .subheading{
    text-align: center;
  }
  .contact-section  .contact-info-sec .large-line{
      left: 20.5rem;
  }
  .contact-section .contact-info-sec .small-line{
    left: 21.8rem;
  }
  .contact-section .address-section .media{
    display: block;
    text-align: center;
  }
  /*Footer*/
  footer .text{
    text-align: center;
  }
  footer .social-icons ul{
    text-align: center;
  }
  /*StandAlone Page*/
.standalone-banner .banner-text{
  top: 11rem;
}  
.main-page .standalone-area .standalone-row{
  margin-bottom: 60px;
}
.main-page .standalone-row .row-text{
  padding-left: 0;
  padding-bottom: 40px;
}
.main-page .standalone-row:nth-child(2) .row-text{
  padding-right: 0;
}
}
@media (max-width: 767px){
  /*General*/
  .heading{
    font-size: 38px;
  }
  /*Navbar*/
.navbar.navbar-top-default{
  height: 60px;
}
.navbar.navbar-top-default .navbar-brand{
  padding-top: 0;
}
.sidemenu_btn{
  right: 15px;
  margin-top: 0px;
}
/*Side Menu*/
.side-menu{
  width: 100%;
}
/*Banner*/
.banner{
  height: 80vh;
  margin-top: 3.7rem;
}
.banner .banner-caption .heading{
  font-size: 50.23px;
}
.banner .banner-caption{
  position: relative;
  top: 8rem;
}
.banner .banner-caption .text{
  font-size: 25px;
}
/*Counter Section*/
.counter-section .text-row .heading{
  font-size: 35px;
}
/*Team Section*/
.team-section .text-row .heading{
  font-size: 35px;
}
/*Blog Section*/
.blog-section .heading-col .small-line, .large-line{
  display: none;
}
/*Contact Section*/
.contact-section .contact-info-sec .small-line, .large-line{
  display: none;
}
  /*Blog Section*/
.blog-section .heading-col .large-line{
  left: 10.4rem;
  }
/*Footer*/
footer .text{
  font-size: 12px;
}
/*StandAlone Page*/
.standalone-banner{
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 3.7rem;
}
.standalone-banner .banner-text{
  top: 5rem;
}
.main-page{
  padding-top: 0;
}
.standalone-banner .banner-text .heading{
  font-size: 38px;
}
.main-page .standalone-heading .heading{
  font-size: 40px;
}
.main-page .text{
  font-size: 16px;
}
.main-page .standalone-area .heading{
  font-size: 30px;
}
}

@media (max-width: 370px){
/*Navbar*/
.sidemenu_btn{
  right: 10px;
}
}