
/* ===================================
    Table of Content
====================================== */

/*- Fonts
  - Scrollbar
  - General   
  - Loader
  - Navbar
  - Side-Menu
  - Banner
  - About-us Section
  - Services Section
  - Portfolio-Section
  - Testimonials-Section
  - contact-Section
  - Footer
  - StandAlone Page
  - Media Queries
*/

/* ===================================
    Fonts
====================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

/* ===================================
    Scrollbar
====================================== */

::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
width: 12px;
background: white;
border-left: 0 solid white;
border-right: 0 solid white;
}
::-webkit-scrollbar-thumb {
background: #6c63ff;
width: 0;
height: 25%;
transition: .5s ease;
cursor: pointer;
}

/* ===================================
    General
====================================== */

body{
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
}

a{
  text-decoration: none;
}

/*Text Classes*/
.heading{
  font-size: 36px;
  color: #000;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.subheading{
  font-size: 18px;
  color: #ff6584;
  font-weight: 400;
  margin-bottom: 0;
}

.text{
  font-size: 20px;
  color: #505050; 
  font-weight:400;
  line-height: 32px;
}
/*Social Icons*/

.social-icons ul {
  margin-bottom: 0;
}
.social-icons ul li {
  font-size: 15px;
  display: inline-block;
  margin-right: 5px;
  margin-left: 5px;
  list-style: none;
}
.social-icons ul li a {
  /*overflow: hidden;*/
  border-radius: 50%;
  display: block;
  color: #000;
  height: 40px;
  line-height: 40px;
  width: 40px;
  border: 1px solid transparent;
  text-align: center;
}

/*Social icons background hover*/
.icon-hover:hover {color: #fff !important; transition: all 0.5s ease; background-color: #000;}

.facebook-hover:hover {color: #fff !important; transition: all 0.5s ease; background-color: #4267B2;}
.twitter-hover:hover {color: #fff !important; transition: all 0.5s ease; background-color: #1DA1F2;}
.google-plus-hover:hover {color: #fff !important; transition: all 0.5s ease;background-color: #db4a39;}
.linked-in-hover:hover {color: #fff !important; 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 !important; transition: all 0.5s ease; background-color: #D44638;}

/*Button*/

.btn {
  z-index: 2;
  letter-spacing: .5px;
  border-radius: 0;
  font-weight: 600;
  overflow: hidden;
  position: absolute;
  line-height: inherit;
  display: inline-block;
  color: #202020;
  border: 2px solid transparent;
  text-transform: uppercase;
  transition: all .5s ease !important;
}

.btn.button {
  font-size: 16px !important;
  font-weight: 600;
  color: #202020;
  padding: 6px 35px !important;
  line-height: 1.8em !important;
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
  text-transform: uppercase;
}

.btn.btn-rounded {
  border-radius: 50px;
}

/*Buttons*/
.btn.pink-btn { background: #ff6584; border-color: #ff6584; color: #fff; }
.btn.blue-btn{ background: #6c63ff; border-color:  #6c63ff; color: #fff; }
/*.btn.black-btn{ background: #202020; border-color:  #202020; color: #fff; }*/
/*Buttons Hovers*/
.btn.btn-hvr-green:hover { background-color:transparent; border-color: #5bbdbb; color: #fff; }
.btn.btn-hvr-pink:hover { background-color: transparent; border-color: #ff6584; color: #fff; }
/*.btn.btn-hvr-red:hover { background-color: transparent; border-color: #b82619; color: #fff; }*/

.btn.btn-green::before,
.btn.btn-green::after {
  background: #5bbdbb;
  content: '';
  position: absolute;
  z-index: -1;
}

.btn.btn-pink::before,
.btn.btn-pink::after {
  background: #ff6584;
  content: '';
  position: absolute;
  z-index: -1;
}


/*Button Hover*/
.btn,
.btn::after {

  transition: all 0.3s;
}

.btn-1::after { height: 0; left: 0; bottom: 0; width: 100%; }
.btn-1:hover:after { height: 100%; } 

/*Image Overlay*/

.overlay-image {
  position: relative;
  overflow: hidden;
}
.overlay-image img {
  transition: all 0.7s;
}

.overlay-image:hover img {
  transform: scale(1.1);
  transition: all 0.7s;
}

.overlay-image:hover {
  cursor: pointer;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient( rgba(255,255,255, 0.9), rgba(255,255,255, 0.9));
  opacity: 1;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: .7s ease;
}

.overlay-image:hover .overlay {
  transform: scale(1);
}
/* ===================================
    Loader
====================================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: #ffffff;
    /*background:linear-gradient(45deg, rgb(53, 13, 130) 0%, rgba(128, 33, 181, 1) 50%);*/
    z-index: 9999;
}
.dot-container {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
    filter: url('#goo');
    animation: rotate-move 2s ease-in-out infinite;
}

.dot {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #6c63ff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.dot-3 {
    background-color: #6c63ff;
    animation: dot-3-move 2s ease infinite, index 6s ease infinite;
}

.dot-2 {
    background-color: #5bbdbb;
    animation: dot-2-move 2s ease infinite, index 6s -4s ease infinite;
}

.dot-1 {
    background-color: #ff6584;
    animation: dot-1-move 2s ease infinite, index 6s -2s ease infinite;
}

@keyframes dot-3-move {
    20% {transform: scale(1)}
    45% {transform: translateY(-18px) scale(.45)}
    60% {transform: translateY(-90px) scale(.45)}
    80% {transform: translateY(-90px) scale(.45)}
    100% {transform: translateY(0px) scale(1)}
}

@keyframes dot-2-move {
    20% {transform: scale(1)}
    45% {transform: translate(-16px, 12px) scale(.45)}
    60% {transform: translate(-80px, 60px) scale(.45)}
    80% {transform: translate(-80px, 60px) scale(.45)}
    100% {transform: translateY(0px) scale(1)}
}

@keyframes dot-1-move {
    20% {transform: scale(1)}
    45% {transform: translate(16px, 12px) scale(.45)}
    60% {transform: translate(80px, 60px) scale(.45)}
    80% {transform: translate(80px, 60px) scale(.45)}
    100% {transform: translateY(0px) scale(1)}
}

@keyframes rotate-move {
    55% {transform: translate(-50%, -50%) rotate(0deg)}
    80% {transform: translate(-50%, -50%) rotate(360deg)}
    100% {transform: translate(-50%, -50%) rotate(360deg)}
}

@keyframes index {
    0%, 100% {z-index: 3}
    33.3% {z-index: 2}
    66.6% {z-index: 1}
}

/* ===================================
    Navbar
====================================== */

.navbar-top-default {
  position: absolute;
  top: 0;
  z-index: 99;
  overflow: hidden;
  height: 140px;
  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: #FFFFFF;
}


.header-appear .navbar-top-default {
  height: 140px;
  position: fixed;
  z-index: 999;
  background: #ffffff;
  -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);
}
.navbar .navbar-brand{
	padding-top: 0;
	padding-bottom: 0;
}

.navbar .navbar-brand img {
  width: 100%;
}
.navbar .navbar-nav{
  margin-left: 3rem;
}
.navbar .navbar-nav .nav-link {
  padding: 24px 16px;
  display: block;
}


.navbar .navbar-nav .nav-item {
  font-size: 18px;
  color: #505050;
}

.navbar .navbar-nav .nav-link {
  color: #505050;
  margin-right: 25px;
  transition: .5s ease;
  border-bottom: solid 3px transparent;
}

.navbar .navbar-nav .nav-link.active
 {
  color: #ff7b96;
  transition: .8s ease;
}

.navbar .navbar-nav .nav-link:hover{
  color: #53dfd7;
}
/*Navbar Social icons*/
.navbar .social-icons ul li{
  margin-right: 0; 
  margin-left: 0;
  font-size: 14px;
}
.navbar .social-icons ul li a{
  height: 30px;
  line-height: 30px;
  width: 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; }
}

/*side menu button */

.sidemenu_btn {
  width: 36px;
  padding: 6px;
  right: 40px;
  top: 44px;
  z-index: 999;
  margin-top: 12px;
  margin-right: 16px;
  cursor: pointer;
  position: absolute;
  display: inline-block;
  transition: all .3s linear;
}

.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;
}

/* ===================================
    Side Menu
====================================== */

.side-menu {
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  z-index: 9990;
  background: #ffffff;
  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.4;
  background-color: #000;
  position: fixed;
  transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
}


/*side menu image*/

.image {
  position: absolute;
  top: 30px;
}


/*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: #032a58;
  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: 4.5rem 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: 30px;
  margin-top: 30px;
  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: #505050;
  padding: 2px 0 3px 0 !important;
  font-size: 24px;
  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: #505050;
  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: #18191d;
  font-size: 15px;
}

.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: #18191d;
}

.side-menu-footer .banner-icons ul li a:hover {
  background-color: #18191d;
  transition: all .8s ease;
}

.side-menu-footer .banner-icons ul li a {
  border-radius: 50%;
  color: #fff;
  height: 40px;
  line-height: 42px;
  width: 40px;
  border: 1px solid transparent;
  display: block;
  overflow: hidden;
  text-align: center;
}

.side-menu-footer .banner-icons ul li a:hover i {
  color: #fff;
}

/* ===================================
    Banner-Section
====================================== */
.banner-section{
  background: url('../img/banner-img.jpg');
  background-repeat: repeat;
  height: 90vh;
  display: flex;
  align-items: center; 
}
.banner-section .text-section{
  padding-top: 12rem;
}
.banner-section .text-section .subheading{
  margin-bottom: 20px;
}
.banner-section .text-section .heading{
  margin-bottom: 20px;
}
.banner-section .text-section .text{
  margin-bottom: 20px;
}
.banner-section .img-section{
	padding-top: 2rem;
}

.banner-section .img-section img{
  z-index: 1;
  width: 100%;
  top: 200px;
  left: 170px;  
  position: relative;
}
.banner-section .img-section .circle{
	background-color: #6c63ff;
	width: 355px;
	height: 355px;
	border: 1px solid #6c63ff;
	border-radius: 50%;
	position: absolute;
	top: 182px;
    right: 0px;
}
.banner-section .media i {
  overflow: hidden;
  border-radius: 50%;
  color: #011321;
  height: 30px;
  line-height: 28px;
  width: 30px;
  border: 1px solid #000;
  text-align: center;
  font-size: 10px;
  transition: .5s ease;
}
.banner-section .media .media-body{
  color: #000;
  margin-left: 10px;
}
.banner-section .media:hover i{
  color:#fff; 
  border: 1px solid #000;
  background-color: #000;
  transition: .5s ease;
}
.banner-section .media:hover{
  cursor: pointer;
  transition: .5s ease;
}
.banner-section .media{
  width: 160px;
  height: 50px;
  padding:10px 12px 10px 0;
  background-color: transparent;
}
/* ===================================
    About-us Section
====================================== */
.about-us{
  padding-top: 140px;
  position: relative;
}


.about-us .row-1 .about-col  .text{
  color: #888888;
}
.about-us .about-col .heading{
  font-size: 24px;
  font-weight: 600;
  padding-top: 35px;
  padding-bottom: 35px;
}
.about-us .about-col a{
  overflow: hidden;
  border-radius: 50%;
  color: #6c63ff;
  display: block;
  height: 45px;
  line-height: 50px;
  width: 45px;
  border: 1px solid transparent;
  text-align: center;
  font-size: 30px;
  background-color: transparent;
  transition: .5s ease;
  box-shadow: 0 0 10px rgb(0 0 0 / 25%);   
}
.about-us .about-col .icon-2{
  color: #53dfd7;
}
.about-us .about-col .icon-3{
  color: #ff7b96;
}
.about-us .about-col:hover{
  cursor: pointer;
}
.about-us .about-col:hover .icon-1{
  background-color: #6c63ff;
  color: #fff;
}
.about-us .about-col:hover .icon-2{
   background-color: #53dfd7;
   color: #fff;
}
.about-us .about-col:hover .icon-3{
   background-color: #ff7b96;
   color: #fff;
}
.about-us .image img{
    display: flex;
    width: 45%;
    justify-content: center;

}
.about-us .image{
  position: absolute;
  top: 54%;
}
.about-us .row-2{
  padding-top: 150px;
}
.about-us .row-2 .text-section{
	padding-left: 50px;
	padding-top: 35px; 
}
.about-us .row-2 .text-section .heading{
  margin-top: 25px;
  margin-bottom: 25px;

}
.about-us .row-2 .text-section .subheading{
  color: #5bbdbb;
}

/* ===================================
    Services-Section
====================================== */
.services-section {
  padding-top: 140px;
  position: relative;
}
.services-section .circular-wrap {
  border: 2px solid #e6e6e6;
  padding: 60px;
}
.services-section .circular-wrap .circle{
  position: relative;
  max-width: 210px;
  display: inline-block;
}

.services-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%);
}
.services-section .circular-wrap .circle .counter-num {
  color: #505050;
  font-size: 1.875rem;
  font-weight: 300;
}

.services-section .circular-wrap h5.text{
  max-width: 184px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  margin-top: 30px;
  line-height: 25px;
}
.services-section .image img{
  display: flex;
  width: 50%;
  justify-content: center;
  margin-right: 0;

}
.services-section .image{
  position: absolute;
  top: 42%;
  right: -12%;
}

/*Row-2*/
.services-section .row-2{
  padding-top: 120px;
}

.services-section .row-2 .text-section{
  padding-top: 50px;
  padding-right: 50px;
}
.services-section .row-2 .text-section .heading{
  margin-top: 25px;
  margin-bottom: 25px;
}
.services-section .row-2 .text-section .subheading{
  color: #5bbdbb;
}

/*Row-3*/
.services-section .row-3{
  padding-top: 150px;
  padding-bottom: 60px;
}
.services-section .row-3 .text-section{
	padding-left: 50px;
	padding-top: 50px;
}
.services-section .row-3 .heading{
  margin-top: 25px;
  margin-bottom: 25px;
}

/* ===================================
    Portfolio-Section
====================================== */
.portfolio-section{
  padding-top: 140px;
}

.portfolio-section .container {
  max-width: 1140px;
}
.portfolio-section .heading{
  margin-bottom: 0;
}
.cbp-wrapper-outer {
    overflow: visible;
}
.cbp-l-loadMore-button .cbp-l-loadMore-link,
.cbp-l-loadMore-button .cbp-l-loadMore-button-link {
  padding: 12px 32px;
}
.cbp-l-loadMore-button .cbp-l-loadMore-link,
.cbp-l-loadMore-button .cbp-l-loadMore-button-link,
.cbp-l-loadMore-button .cbp-l-loadMore-link:hover,
.cbp-l-loadMore-button .cbp-l-loadMore-button-link:hover,
.cbp-l-loadMore-button .cbp-l-loadMore-link:focus,
.cbp-l-loadMore-button .cbp-l-loadMore-button-link:focus{
  color: #fff;
}

.cbp-l-filters-button .cbp-filter-item {
  background: transparent;
  padding: 0;
  margin: 0;
  border: none;
  color: #202020;
  font-size: 12px;
  font-weight: 600;
  margin-right: 35px;
}

.cbp-l-filters-button .cbp-filter-item.cbp-filter-item-active {
  color: #5bbdbb;
  background: transparent;
  border-bottom: solid 3px #5bbdbb;

}
.cbp-l-filters-button .cbp-filter-item,
.cbp-item.even{
  -webkit-transition: 300ms all ease;
  -o-transition: 300ms all ease;
  transition: 300ms all ease;
}
.cbp-item.even {
  margin-top: -190px;
}
.cbp-l-grid-mosaic .cbp-caption-activeWrap {
  background: rgba(133,203,202, 0.8);

}
.cbp-l-caption-title {
  color: #ffffff !important;
  font-weight: 400 !important;
  font-size: 15px !important;
}
.portfolio-detail-text {
  color: #FFFFFF;
  font-style: italic;
}
.portfolio-hover-effect .hover-text{
  padding-left: 3%;
  padding-bottom: 2%;
}
.portfolio-hover-effect .portfolio-inner-content{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.portfolio-hover-effect .portfolio-inner-content span{
  background-color: #FFFFFF;
  height: 3px;
  width: 70px;
  display: block;
}
.portfolio-hover-effect .portfolio-inner-content span:nth-child(2){
  transform: rotate(90deg);
}
.portfolio-hover-effect .hover-text .p-hover-title{
  font-size: 20px;
  color: #FFFFFF;
  font-weight: 500;
  margin-bottom: 0;
}
.portfolio-hover-effect .hover-text .p-hover-des{
  font-size: 14px;
  color: #FFFFFF;
}
#js-loadMore-lightbox-gallery {
  margin-top: 45px;
}
#js-loadMore-lightbox-gallery.active {
  margin-top: -150px;
  position: relative;
}
#js-loadMore-lightbox-gallery.active-outer {
  margin-top: -250px;
}
.cbp-caption-active .cbp-caption-activeWrap {
  width: 94%;
  position: absolute;
  z-index: 2;
  height: 94%;
}
.cbp-caption-active .cbp-caption-activeWrap:hover .text-data{
  z-index: -1 !important;
}

.cbp-caption-zoom .cbp-caption-activeWrap {
  opacity: 0;
  top: 3%;
  left: 3%;
}

.portfolio-foot-detail{
  padding-bottom: 2%;
}
.portfolio-foot-detail .p-text{
  color: #202020;
  font-size: 15px;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 8px;
}
.portfolio-foot-detail .p-text:last-child{
  margin-bottom: 0;
}
.portfolio-foot-detail .p-num{
  font-size: 50px;
  font-weight: 700;
}
/* ===================================
    Testimonials-Section
====================================== */
 .testimonials-section{
  padding-top: 140px;
  padding-bottom: 20px;
  position: relative;
 }

.testimonials-section  {
  
}
.testimonials-section  .image {
  position: absolute;
  top: 32%;
}
.testimonials-section  .image img{
  display: flex;
  width: 40%;
  justify-content: center;
}

.testimonials-section .testimonial-box {
  padding: 80px 65px 80px 65px;
  border: 2px solid #ebebeb;
}

.testimonial-box .testimonial-image {
  width: 80px;
  height: 80px;
  display: block;
  margin: auto;
}

.testimonial-box .testimonials .quote i {
  color: #ff6584;
  font-style: italic;
  font-size: 20px;
}
.testimonial-box .testimonials .text{
  font-size: 18px;
  margin-top: 25px;
  color: #3c3c3c;
}
.testimonial-box .testimonials .subheading{
  color: #5bbdbb;
  margin-top: 25px;
}

/* ===================================
    Contact-Section
====================================== */

.contact-section{
  padding-top: 140px;
}

.contact-section .text-section .heading{
  margin-top: 35px;
  margin-bottom: 35px;
}
.contact-section .text-section .text{
  font-size: 15px;
  color: #535353;
}

.contact-section .text-section .media .media-body .text{
  font-size: 14px;
  color: #535353;
}
.contact-section .text-section .contact-detail .subheading{
  color: #78c7c5;
  margin-top: 10px;
  margin-bottom: 35px;
}
.contact-section .text-section .media i{
  font-size: 25px;
}

.contact-section .text-section .contact-detail.contact-detail-1{
	padding-right: 30px;
}
.contact-section .text-section .contact-detail.contact-detail-2{
	padding-left: 30px;
}
.contact-section .text-section .media.center-med{
  margin-top: 30px;
  margin-bottom: 30px;
}
.contact-section .form-section .heading{
  margin-bottom: 35px;
  font-weight: 600;
  font-size: 30px;
}
.contact-section .form-section .text{
  font-size: 15px;
  color: #535353;
  margin-bottom: 35px;
}
.contact-section .form-section .button-center{
  margin-left: 14px;
  margin-top: 25px
}
.contact-section .form-section{
  padding-bottom: 75px;
}

.contact-section .form-section .form-control:focus{
  border-color: #797979;
  outline: 0;
  box-shadow: 0 0 0 0.2rem transparent;
}

/* ===================================
    Footer
====================================== */

footer {
  padding-bottom: 120px;
}

footer .text{
  margin-top: 13px !important;
  font-size: 13px;
  text-align: right;
}
footer .social-icons{
	padding-top: 75px;
}
footer .text{
	padding-top: 75px;
}

/* ===================================
    StandAlone page
====================================== */

/*Banner*/
.standalone-banner{
  background: url('../img/stanalone-banner.jpg');
  height: 60vh;
  background-size: cover;
  display: flex;
  align-items: center;    
}
.standalone-banner .banner-text{
  /*padding-top: 12rem;*/
  padding-top: 11rem;
  padding-left: 0;
  padding-right: 0;
}
.standalone-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: #6c63ff;
}
.standalone-banner .banner-img .banner-circle{
    background-color: #6c63ff;
    width: 195px;
    height: 195px;
    border: 1px solid #6c63ff;
    border-radius: 50%;
    position: absolute;
    top: 156px;
    right: 0px;

}
.standalone-banner .banner-img{
  padding-top: 7rem;
}
.standalone-banner .banner-img img {
    position: relative;
    z-index: 2;
    /*margin-left: 90px;*/
    display: flex;
    width: 50%;
    justify-content: center;
    top: 8px;
    float: right;
}


/*MAIN PAGE START*/
.main-page{
  padding-top: 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:  #6c63ff;
}
.hover-effect:hover .standaloneoverlay {
  opacity: .4;
}
.overlayBottom {
  width: 100%;
  height: 0;
  top: 0;
  right: 0;
  cursor: pointer;
  background-color: #6c63ff;
}
.hover-effect:hover .overlayBottom {
  height: 100%;
}
footer .footer-text{
  text-align: right;
  padding-left: 0;
}

/* ===================================
    Media Queries
====================================== */

@media (width: 1920px){
/*Banner Section*/
.banner-section{
	height: 80vh;
}
/*About-us*/
.about-us .image{
  top:35%;
}
.about-us .image img{
    width: 100%;
}
/*Services Section*/
.services-section .image img{
width: 100%;
}
/*Testimonials Section*/
.testimonials-section .image img{
  width: 100%;
}

/*StandAlone Page*/
.standalone-banner{
	height: 50vh;
}
}
@media (max-width: 1200px){
 .text{
  font-size: 18px;
 } 
 /*Side Menu*/
.side-menu{
  width: 50%;
}
 /*navbar*/
.navbar .navbar-nav .nav-link{
  margin-right: 7px;
}
.navbar .navbar-nav{
  margin-left: 2rem;
}
.navbar .social-icons{
  margin-right: 3rem;
}
.sidemenu_btn{
  right:0;
}
/*Banner Section*/
.banner-section .img-section .circle{
  width: 290px;
  height: 290px;
  top: 180px;
  right: 0;
}
/*About-us section*/
.about-us{
  padding-bottom: 0;
}
.about-us .image img{
  display: none;
}

/*Services Section*/
.services-section .image img{
  display: none;
}
.services-section .row-3 .img-section img{
  width: 90%;
}
/*Testimonials section*/
.testimonials-section .image img{
  display: none;
}
.testimonials-section .testimonial-box{
  margin-left: 0px;
  margin-right: 0px;
}
  /*Protfolio Section*/
.portfolio-section .heading {
  display: flex;
  justify-content: center;
  width: 100%;
  text-align: center;
  margin-left: 15.5rem;
}
.portfolio-section .cbp-l-filters-button{
  display: flex;
  justify-content: center;
  width: 100%;
}    
#js-loadMore-lightbox-gallery.active{
	margin-top: 30px;
}
.portfolio-section .portfolio-text{
	margin-left: 15px;
}
.portfolio-section .portfolio-btn{
	margin-left: 30rem;
}
/*StandAlone page*/
.standalone-banner .banner-text{
	padding-top: 16rem;
}
.standalone-banner .banner-img img{
	margin-left: 0;
	width: 100%;
}
.standalone-banner .banner-img .banner-circle{
    top: 185px;
    right: -16px;
    width: 360px;
    height: 360px;

}
.standalone-banner .heading{
	font-size: 50px;
}
}
@media (max-width: 992px){
/*WoW Animation*/
.wow {
  visibility: visible !important;
  animation: none !important;
}
  /*navbar*/
header .navbar  .social-icons{
  display: none;
}
.navbar .navbar-nav {
  margin-left: 1rem;
}
.navbar .navbar-nav .nav-link{
  padding: 24px 10px;
  margin-right: 10px;
}

/*Side Menu*/
.side-menu{
  width: 55%;
}
/*Banner section*/
.banner-section{
	height: 100vh;
}
.banner-section .text-section{
  text-align: center;
}
.banner-section .media{
  text-align: center;
  display: block;
  width: 100%;
}
.banner-section .media .media-body{
  margin-left: 0;
}
.banner-section .img-section img{
    width: 75%;
    top: 22px;
    left: 90px;
}

.banner-section .img-section .circle{
  width: 375px;
  height: 375px;
  top: 110px;
  right: 55px;
}
/*About-us Section*/
.about-us .row-1{
  padding-bottom: 0;
}

.about-us .about-col a{
  margin-left: auto;
  margin-right: auto;
}
.about-us .about-col{
  text-align: center;
}

.about-us .about-col .heading{
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}
.about-us .about-col.about-col-2{
	margin-top: 50px;
  margin-bottom: 50px;
}
.about-us .row-2 .img-section img{
  width: 100%;
}
.about-us .row-2 .text-section{
  text-align: center;
  padding-top: 0;
  margin-bottom: 50px;
  padding-left: 0px;
}

/*Services Section*/
.services-section .circular-wrap .circles{
  margin-bottom: 50px;
}
.services-section .row-2 .img-section img{
  width: 100%;
  margin-left: 30px;
}
.services-section .circular-wrap .circles:last-child{
  margin-bottom: 0;
}
.services-section .row-2 .text-section{
  text-align: center;
  padding-top: 0;
  margin-bottom: 60px;
  padding-right: 0;
}
.services-section .row-3{
	padding-bottom: 0;
}
.services-section .row-3 .text-section{
  margin-bottom: 60px;
  padding-top: 0;
  padding-left: 0;
  text-align: center;
}
.services-section .row-2 .img-section img{
  width: 100%;
  margin-left: 0; 
}
.services-section .row-3 .img-section img{
  width: 100%;
}
/*Portfolio Section*/
.portfolio-section .portfolio-text{
  margin-left: 0;
}
.portfolio-section .heading {
  margin-left: 0;
}  

.portfolio-section .portfolio-text{
  margin-left: 0px;
}
.portfolio-section .portfolio-btn{
  margin-left: 0rem;
}
.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;
}
/*Testimonials Section*/
.testimonials-section .testimonial-box{
  margin-left: 0;
  margin-right: 0;
  padding: 80px 15px 80px 15px;

}
/*Contact-section*/
.contact-section .text-section{
  text-align: center;
}
.contact-section .text-section .media{
  display: block;
}
.contact-section .text-section .media i{
  margin-right:0 !important;
}
.contact-section .text-section .contact-detail{
  margin-bottom: 60px;
}
.contact-section .text-section .contact-detail.contact-detail-1{
	padding-right: 0;
}
.contact-section .text-section .contact-detail.contact-detail-2{
	padding-left: 0;
}
.contact-section .form-section{
  text-align: center;
}
.contact-section .form-section .button-center{
  text-align: center;
  width: 100%;
  margin-left: 0;
}
.border-bottom {
  display: none;
}
.contact-section .form-section{
  padding-bottom: 0;
}
/*Footer*/
footer .social-icons{
  text-align: center;
}
footer .text{
  text-align: center;
  padding-top: 0;
}
/*StandAlone*/
.standalone-banner{
  height: 75vh;
}
.standalone-banner .heading{
	font-size: 36px;
}
.standalone-banner .banner-text{
  padding-top: 7rem;
  text-align: center;
}
.standalone-banner .banner-img{
  padding-top: 0.5rem;
}
.standalone-banner .banner-img img{
  width: 70%;
  float: none;
  margin-left: auto;
  margin-right: auto;
}
.standalone-banner .banner-img .banner-circle{
    width: 335px;
    height: 335px;
    top: 80px;
    right: 100px;
}
.standalone-area .standalone-row{
  margin-bottom: 70px;
}
.main-page .standalone-row .row-text{
  padding-left: 0;
  margin-bottom: 10px;
}
.standalone-row:nth-child(2) .row-text{
  padding-right: 0;
  margin-bottom: 10px;
}
}
@media (max-width: 767px){
.text{
  font-size: 16px;
}
/*Navbar*/
.navbar{
  height: 70px;
}
.header-appear .navbar-top-default{
  height: 70px;
}
.navbar .navbar-brand{
  padding-top: 0;
  padding-bottom: 0;
}
.navbar .navbar-brand img{
  width: 90%;
}
.navbar .sidemenu_btn{
    top: 15px;
}

/*Side menu*/
.side-menu .inner-wrapper{
  padding: 4.5rem 3rem;
}
.side-menu{
  width: 100%;
}
/*Banner section*/
.banner-section .text-section{
  padding-top: 5rem;
}
.banner-section .text-section .heading br{
  display: none;
}
.banner-section .text-section .heading{
  font-size: 34px;
  margin-bottom: 25px;
}
.banner-section .text-section .subheading{
	margin-bottom: 25px;
}
.banner-section .text-section .text{
	margin-bottom: 25px;
}
.banner-section .img-section .circle{
    width: 240px;
    height: 240px;
    top: 100px;
    right: 0px;

}
.banner-section .img-section img{
  width: 100%;
  left: 0;
}

/*About-us Section*/
.about-us .row-2 .img-section img{
  width: 100%; 
  margin-left: 0px;
}
.about-us .row-2 .text-section .heading br{
  display: none;
}
.about-us .row-2 .text-section .heading{
  font-size: 29px;
}
/*services section*/
.services-section .text-section .heading br{
  display: none;
}
.services-section .text-section .heading{
 font-size: 29px;
}
.services-section .circular-wrap{
	border:none;
}

/*Portfolio Section*/
.portfolio-section .heading{
  font-size: 29px;
}
.portfolio-section .heading br{
  display: none;
}
.portfolio-section .btn.button{
  padding: 9px 23px !important;
}
.portfolio-foot-detail .p-text{
  font-size: 11px;
}
.cbp-l-filters-button .cbp-filter-item{
  font-size: 10px;
  margin-right: 12px;
}
/*Contact section*/
.contact-section .text-section .heading{
  font-size: 29px;
}
.contact-section .form-section .heading{
  font-size: 29px;
}
/*StandAlone Page*/

.standalone-banner .banner-text{
  padding-top: 30px;
}
.standalone-banner .banner-img img{
  margin-left: 0;
  width: 100%;
}
.standalone-banner .banner-img .banner-circle{
  width: 265px;
  height: 265px;
  top: 68px;
  right: 0;
}
.main-page .standalone-heading .heading{
  font-size: 36px;
}
.main-page .standalone-area .heading{
  font-size: 30px;
}
}

@media (max-width: 370px){
  /*Navbar*/
.navbar .navbar-brand img{
    width: 85%;
  }
/*Banner Section*/
.banner-section .img-section img {
  left: 55px;
  top: 2px;
}
.banner-section .text-section .subheading{
  margin-bottom: 15px;
}
.banner-section .text-section .heading{
  font-size: 32px;
  margin-bottom: 15px;
}
.banner-section .text-section .text{
  margin-bottom: 15px;
}
.banner-section .img-section .circle {
  width: 175px;
  height: 175px;
  top: 61px;
  right: 20px;
}
.banner-section .img-section img{
  width: 75%;
}

/*Portfolio section*/
.portfolio-section .btn.button{
 padding: 9px 20px !important;
}
.portfolio-foot-detail .p-text{
  font-size: 10px;
}
/*StandAlone Banner*/
.standalone-banner{
  height: 85vh;
}
.standalone-banner .banner-text{
  padding-top: 60px;
}
.standalone-banner .heading{
  font-size: 34px;
}
.standalone-banner .banner-img .banner-circle{
  width: 250px;
  height: 250px;
  top: 47px;
}
}



