@charset "utf-8";
/* CSS Document */
.space {
    padding: 80px 0px;
}
.text-justify {
    text-align: justify;
}
.text-white {
    color: #FFFFFF;
}
.space-40 {
    padding: 40px 0px;
}
.space-20{
    padding: 20px 0px;
}
.bg-1{
    background-color: #233c81;
background-image: url("https://www.transparenttextures.com/patterns/dark-mosaic.png");
/* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
}
.serviceBox{
    color:#fff;
    background-color: #fff;
    font-family:'Poppins', sans-serif;
    text-align: center;
    padding: 40px 0 20px;
    border-radius: 25px;
    box-shadow: 0 5px 8px rgba(0,0,0,0.3);
}
.serviceBox .title{
    color: #fff;
    background: #0063A6;
    font-size: 20px;
    font-weight: 300;
    text-transform: capitalize;
    padding: 10px 15px;
    box-shadow: inset 0 5px 10px rgba(0,0,0,0.4);
    position: relative;
    margin: 0 0 20px;
}
.serviceBox .title:before{
    content: "";
    background: #0063A6;
    border-radius: 25px 5px 5px 25px;
    position: absolute;
    top: -10px;
    left: -7px;
    bottom: -10px;
    right: 100%;
}
.serviceBox .service-icon{
    color: #0063A6;
    font-size: 35px;
    line-height: 65px;
    width: 85px;
    height: 85px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 2px solid #0063A6;
    position: relative;
    z-index: 1;
}
.serviceBox .service-icon i{ line-height:inherit; }
.serviceBox .service-icon:before{
    content: "";
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 8px rgba(0,0,0,0.4);
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    z-index: -1;
}
.serviceBox .description{
    color: #888;
    font-size: 14px;
    line-height: 25px;
    margin: 0 25px;
}
.blog1-padding {
  padding: 17px 20px;
}
@media only screen and (max-width: 1199px){
    .serviceBox{ margin: 0 0 30px; }}
@media screen and (max-width: 424px) {
  .mobile-header.mobile-header.homepagesmall {
    background: #dbe6ff;
    position: fixed;
  }
}

.buttonnew {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding: 7px 13px;
    border: 1px solid #2578a3;
    border-radius: 6px;
    background: #218EEA;
    font: normal normal 20px;
    color: #ffffff;
    text-decoration: none;
}
.buttonnew:hover,
.buttonnew:focus {
    border: 1px solid #2e96cc;
    background:#017DF8;
    color: #ffffff;
    text-decoration: none;
}
.space-20 {
    padding: 25px 0px;
}
.panel-body {
  padding: 15px;
  border: 1px solid grey;
}
.form-group {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.background-123 {

    background-color: #EFF7FF;
}

.act-123 
{
    /* background-color: white; */
    border : 1px solid #233C81;
    padding: 3%;
    border-radius: 10%;
}

.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%);
		}
	}
}
/*******************************/
	  
	  