@charset "utf-8";
/* CSS Document */
.space {
    padding: 70px 0px;
}
.font-45 {font-size: 45px;}

@media (max-width: 767px) {
  .menu-tabs .menu-col.img-col .image {
    position: relative;
    display: block;      /* full width on mobile */
    margin-top: 25px;    /* smaller gap */
    width: 100%;         /* make image responsive */
  }
 .main-header .main-box .logo-box .logo img{
  position: relative;
  display: block;
  height: 70px;
  z-index: 1;
}
    .hidden{
    display: none !important;
}
    .scrolling-banner-section .content {
  position: relative;
  text-align: center;
  margin-bottom: 50px;
  margin-top: 50px;
}
}
.hidden{
    display: none !important;
}
.header-title{
  font-size: 55px;
  letter-spacing: -1px;
}
.scrolling-banner-section .content h1 {
  position: relative;
  margin-bottom: 15px;
    font-size: 45px;
    font-weight: 600;
}
@media only screen and (max-width: 479px) {
.scrolling-banner-section .content h1 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 767px) {
 .scrolling-banner-section .content h1 {
    font-size: 35px;
  }
}
.menu-border {
    border-radius: 50%;
}

.social-container {
  position: fixed;
  bottom: 120px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-btn {
  width: 55px;
  height: 55px;
  background: #0077ff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 22px;
  transition: 0.3s;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.4s ease;
}

.social-icons.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(-5px);
}

.social-icons a {
  width: 50px;
  height: 50px;
  background: #111;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.social-icons a:nth-child(2) {
  background: #25D366; /* WhatsApp */
}

.social-icons a:nth-child(1) {
  background: #0d6efd; /* Call */
}

.social-icons a:nth-child(3) {
  background: #ff3d3d; /* Email */
}

@media(max-width: 600px) {
  .main-btn, .social-icons a {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}



.clmenu{
  z-index:999;
  position:fixed;
  padding:0;
  margin:0;
  list-style-type:none;
  .share{
    i.fa{
      height:50px;
      width:50px;
      text-align:center;
      line-height:50px;
      background-color: #fff;
      border-radius:2px;
    }
    &:hover{
      &.bottom {
        .clsubmenu{
          @for $i from 1 through 5{
            li:nth-child(#{$i}){
              opacity:1;
              top:#{$i*50}px;
              transform:rotate(0deg);
              border-top:1px dashed darken($white,20%);
              transition-delay:#{$i*0.08}s;
            }
          }
        }
      }
      &.left{
        .clsubmenu{
          @for $i from 1 through 5{
            li:nth-child(#{$i}){
              opacity:1;
              left:#{-$i*51}px;
              transform:rotate(0deg);
              transition-delay:#{$i*0.5}s;
              border-right:1px dashed darken($white,20%);
            }
          }
        } 
      }
      &.right{
        .clsubmenu{
          @for $i from 1 through 5{
            li:nth-child(#{$i}){
              opacity:1;
              left:#{$i*50}px;
              transform:rotate(0deg);
              transition-delay:#{$i*0.08}s;
              border-left:1px dashed darken($white,20%);
            }
          }
        }
      }
      &.top{
        .clsubmenu{
          @for $i from 1 through 5{
            li:nth-child(#{$i}){
              opacity:1;
              top:#{-$i*51}px;
               transition-delay:#{$i*0.08}s;
              transform:rotateY(0deg);
              border-bottom:1px dashed darken($white,15%);
            }
          }
        }
      }
    }
  }
  .clsubmenu{
    list-style-type:none;
    padding:0;
    margin:0;
    li{
      transition:all ease-in-out 0.5s;
      position:absolute;
      top: 0;
      left: 0;
      z-index:-1;
      opacity:0;
      a{
        color: #212121;
        &:hover{
          i.fa{
            color:#fff;
          }
          &.facebook{
            i.fa{
               background-color: #3b5999;
            }
          }
          &.twitter{
            i.fa{
              background-color: #55acee;
            }
          }
          &.googlePlus{
            i.fa{
              background-color: #dd4b39;
            }
          }
          &.instagram{
            i.fa{
              background-color: #e4405f;
            }
          }
        }
      }
    }
    @for $i from 1 through 4{
      li:nth-child(#{$i}){
        transform:rotateX(#{$i*45}deg);
      }
    }
    
  }
  &.topLeft{
    top:10px;
    left:10px;
  }
  &.topRight{
    top:10px;
    right:10px;
  }
  &.bottomLeft{
    bottom:10px;
    left:10px;
  }
  &.bottomRight{
    bottom:10px;
    right:10px;
  }
}


/********************************/
.codepen_profile {
 --pens-link-color:#ffffff;
  --pens-link-bgColor:#212121;
	position: fixed;
	bottom: 56px;
	right: 56px;
	margin: auto;
	display: inline-flex;
	font-size: 2rem;
	text-decoration: none;
	border-radius: 500px;
	background-color:var(--pens-link-bgColor);
	color: var(--pens-link-color);
  border:4px solid #ffffff;
	height: 56px;
	width: 56px;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	animation: animate 1500ms ease infinite;
  z-index:999999;
  &:hover{
    text-decoration:none;
    color:var(--pens-link-color);
  }
	@keyframes animate {
		0%,
		100% {
			transform: translatey(-10%);
		}
		50% {
			transform: translatey(10%);
		}
	}
}
/*******************************/
	  
	  
	  
	  
	  
	  
	  @media only screen and (max-width: 479px) {
  .sub_text {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .sub_text {
    display: none;
  }
}

	@media only screen and (max-width: 479px) {
  .inner-banner h1, .inner-banner .title {
    font-size: 21px;
    line-height: 0;
  }
}