/********** Template CSS **********/
:root {
  --primary: #348e38;
  --secondary: #525368;
  --light: #e8f5e9;
  --dark: #0f4229;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
  font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
  font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
  font-weight: 500 !important;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  transition: 0.5s;
  font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
  color: var(--light);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  /* transition: 0.5s; */
}

.navbar .navbar-brand,
.navbar a.btn {
  height: 59px;
}

.navbar .navbar-nav .nav-link {
  margin-right: 35px;
  padding: 25px 0;
  /* color: var(--dark); */
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  /* color: var(--primary); */
  color: #febd59;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #eeeeee;
    background-color: #004aad;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(15, 66, 41, 0.6);
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  background-color: var(--primary);
  border: 10px solid var(--primary);
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.page-about {
  background:
    url(../img/carousel-3.jpg) center center no-repeat;
  background-size: cover;
}
.page-blog {
  background: 
    url(../img/carousel-blog.jpg) center center no-repeat;
  background-size: cover;
}
.page-plans {
  background: 
    url(../img/carousel-plans.jpg) center center no-repeat;
  background-size: cover;
}

.page-project{
  background: 
  url(../img/carousel-project.jpg) center center no-repeat;
background-size: cover;
}

.page-gallery{
  background: 
  url(../img/carousel-gallery.jpg) center center no-repeat;
background-size: cover;
}

.page-contact {
  background: 
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: 18px;
  color: var(--light);
  font-weight: bold;
}

/*** Top Feature ***/
@media (min-width: 991.98px) {
  .top-feature {
    position: relative;
    margin-top: -80px;
    z-index: 1;
  }
}

/*** Facts & Quote ***/
.facts,
.quote {
  background: rgba(15, 66, 41, 0.6);
}

/*** Service ***/
.service-item {
  position: relative;
  text-align: center;
}

.service-item .service-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}

.service-item .service-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  object-fit: cover;
  transform: scale(1.2);
  transition: 0.3s;
  z-index: -1;
}

.service-item:hover .service-img img {
  transform: scale(1);
}

.service-item .service-text {
  background: #ffffff;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.service-item:hover .service-text {
  background: rgba(15, 66, 41, 0.6);
}

.service-item .service-text h4,
.service-item .service-text p {
  transition: 0.3;
}

.service-item:hover .service-text h4 {
  color: #ffffff;
}

.service-item:hover .service-text p {
  color: var(--light);
}

.service-item .service-text .btn-square {
  width: 100px;
  height: 100px;
  background: transparent;
  transition: 0.5s;
}

.service-item:hover .service-text .btn-square {
  background: var(--light);
}

.service-item .service-text .btn {
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  color: var(--dark);
  background: var(--light);
  white-space: nowrap;
  overflow: hidden;
  transition: 0.3s;
}

.service-item:hover .service-text .btn {
  width: 112px;
}

/*** Project Portfolio ***/
#portfolio-flters {
  display: inline-block;
  background: var(--light);
  padding: 10px 15px;
}

#portfolio-flters li {
  display: inline-block;
  font-weight: 500;
  color:#000;
  cursor: pointer;
  transition: 0.5s;
  border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
  color: #004aad;
  border-color: #f8b957;
}

.portfolio-inner {
  position: relative;
  overflow: hidden;
}

.portfolio-inner::before,
.portfolio-inner::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background:#0000007d;
  transition: 0.5s;
}

.portfolio-inner::after {
  left: auto;
  right: 0;
}

.portfolio-inner:hover::before,
.portfolio-inner:hover::after {
  width: 50%;
}

.portfolio-inner .portfolio-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 3;
  opacity: 0;
}

.portfolio-inner:hover .portfolio-text {
  transition-delay: 0.3s;
  opacity: 1;
}

.portfolio-inner .portfolio-text .btn {
  background: var(--light);
  color: #004aad;
}

.portfolio-inner .portfolio-text .btn:hover {
  background: #004aad;
  color: var(--light);
}

/*** Team ***/
.team-item {
  position: relative;
  overflow: hidden;
}

.team-item .team-text {
  position: absolute;
  width: calc(100% - 45px);
  left: -100%;
  bottom: 45px;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 0 4px 4px 0;
  opacity: 0;
  transition: 0.5s;
}

.team-item:hover .team-text {
  left: 0;
  opacity: 1;
}

.team-item .team-social .btn {
  background: var(--light);
  color: #004aad;
}

.team-item .team-social .btn:hover {
  background: #004aad;
  color: var(--light);
}

.team-item .team-img .team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 3;
  opacity: 0;
}

.team-item:hover .team-img .team-social {
  transition-delay: 0.3s;
  opacity: 1;
}

/*** Testimonial ***/

.testimonial-carousel .owl-item img {
  width: 100px;
  height: 100px;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin-right: 15px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F3B95B;
  background: var(--light);
  border-radius: 4px;
  font-size: 22px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: #004aad;
  color: var(--light);
}

/*** Footer ***/
.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color:#fff;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: #f4b95b;
  letter-spacing: 1px;
  box-shadow: none;
}

.copyright {
  color: var(--light);
  background:#febf57;
}

.copyright a {
  color: #ffffff;
}

.copyright a:hover {
  color: #f4b95b;
}
.spacers a:hover{
     color:#004aad;
}

/* .nav {
    display: block;

    margin: 0; 
    padding: 0;
}

.nav li {
    display: inline-block;
    list-style: none;
}

.nav .button-dropdown {
    position: relative;
}

.nav li a {
    display: block;
    color: #333;
    background-color: #fff;
    padding: 10px 20px;
    text-decoration: none;
}

.nav li a span {
    display: inline-block;
    margin-left: 5px;
    font-size: 10px;
    color: #999;
}

.nav li a:hover, .nav li a.dropdown-toggle.active {
    background-color: #004AAD;
    color: #fff;
}

.nav li a:hover span, .nav li a.dropdown-toggle.active span {
    color: #fff;
}

.nav li .dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    padding: 0;
    margin: 0;
    margin-top: 3px;
    text-align: left;
}

.nav li .dropdown-menu.active {
    display: block;
}

.nav li .dropdown-menu a {
    width: 150px;
} */

/* .container {
  padding: 0 60px;
}

.sub-container {
  padding-top: 30px;
  width: 100%;
  position: relative;
}

.logo {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 0;
  content: "";
  margin-left: -100px;
  text-align: center;
}

.nav-menu ul {
  text-align: right;
  list-style-type: none;
}

.nav-menu ul li:nth-child(1) {
  float: left;
}
.nav-menu ul li:nth-child(2) {
  float: left;
}
.nav-menu ul li:nth-child(3) {
  float: left;
}

.nav-menu ul li {
  margin: 0 15px;
  float: none;
  display: inline-block;
  margin-bottom: 10px;
}

.nav-menu ul li:nth-child(1) {
  float: left;
}

.nav-menu ul li a {
  font-size: 18px;
  text-decoration: none;
  text-transform: uppercase;
  color: #000000;
  font-weight: 500;
}

.nav-menu ul li a:hover {
  color: #004aad;
}



.wrapper {
  margin: 30px 0;
  padding: 0 75px;
  display: flex;
  color: #ffffff;
}

.title-left-img {
  width: 90%;
  height: 60%;
  border-radius: 10px;
}

.left-column {
  width: 70%;
  text-align: center;
}

.left-column h3 {
  font-size: 35px;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
  color: black;
}

.left-column p {
  color: black;
}

.center-column {
  width: 30%;
  background: green;
}

.description-article {
  font-size: 18px;
}

.author {
  color: #828282;
  margin-top: 30px;
  font-size: 13px;
} */

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
  width: 100%;
  height: 100vh;
  background: url(https://images.pexels.com/photos/34085/pexels-photo.jpg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260)
    top center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

#intro:before {
  content: "";
  background: rgba(20, 12, 10, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#intro .intro-container {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 90px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}

#intro h1 {
  color: #fff;
  /* font-family: "Raleway", sans-serif; */
  font-size: 56px;
  font-weight: 600;
  text-transform: uppercase;
}

#intro h1 span {
  color: #f82249;
}

#intro p {
  color: #ebebeb;
  font-weight: 700;
  font-size: 20px;
}

#intro .scrollTo-btn {
  /* font-family: "Raleway", sans-serif; */
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #df902a;
}

#intro .scrollTo-btn:hover {
  background: #df902a;
  text-decoration: none;
  color: #fff;
}

@-webkit-keyframes pulsate-btn {
  0% {
    -webkit-transform: scale(0.6, 0.6);
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    -webkit-transform: scale(0.6, 0.6);
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

@media (min-width: 1024px) {
  #intro {
    background-attachment: fixed;
  }

  @media (max-width: 991px) {
    #header {
      background: rgba(6, 12, 34, 0.98);
      height: 70px;
      padding: 15px 0;
      transition: all 0.5s;
    }

    #nav-menu-container {
      display: none;
    }

    #intro .intro-container {
      top: 70px;
    }

    #intro h1 {
      font-size: 34px;
    }

    #intro p {
      font-size: 16px;
    }
  }
}
  /* body {
    font-family: 'Lora';
    background-color: rgba(255, 241, 224, 0.2);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
  } */

  p {
    line-height: 1.75;
  }

  .text-faded {
    color: rgba(255, 255, 255, 0.3);
  }

  .page-section {
    margin-top: 5rem;
    margin-bottom: 4rem;
  }

  .section-heading {
    text-transform: uppercase;
  }

  .bg-faded {
    background-color: rgba(255, 255, 255, 0.85);
  }

  @media (min-width: 992px) {
    .about .about-img {
      width: 55%;
      float: right;
    }
    .about .about-text {
      left: 0;
      width: 60%;
      margin-top: 3rem;
      position: absolute;
    }
    .about .about-text .about-button {
      width: 100%;
      left: 0;
      position: absolute;
      bottom: -2rem;
    }
  }

  @media (min-width: 1200px) {
    .about .about-text {
      width: 45%;
      /* position:relative; */
      /* left:159px; */
      margin-left: 159px;
    }
  }

  @media (min-width: 992px) {
    .about-heading .about-heading-img {
      position: relative;
      z-index: 0;
    }
    .about-heading .about-heading-content {
      margin-top: -5rem;
      position: relative;
      z-index: 1;
    }
 
  }

  .text-primary {
    color: #004aad !important;
  }

  .bg-primary {
    background-color: #e6a756 !important;
  }

  .font-weight-light {
    font-weight: 100 !important;
  }

  /*--------------------------------------------------------------
  # Speakers Section
  --------------------------------------------------------------*/

  #featured {
    padding: 60px 0 30px 0;
  }

  #featured .featured {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
  }

  #featured .featured .details {
    background: rgba(6, 12, 34, 0.76);
    position: absolute;
    left: 0;
    bottom: -30px;
    right: 0;
    text-align: center;
    padding-top: 10px;
    transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
  }

  #featured .featured .details h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
  }

  #featured .featured .details p {
    color: #fff;
    font-size: 15px;
    margin-bottom: 10px;
    font-style: italic;
  }

  #featured .featured .details .detailLink {
    height: 30px;
  }

  #featured .featured .details a {
    color: #fff;
  }

  #featured .featured .details a:hover {
    color: rgba(247, 249, 253, 0.8);
    text-decoration: none;
  }

  #featured .featured:hover .details {
    bottom: 0;
  }

  .details h2 {
    color: #112363;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  #featured .details .detailLink {
    margin-bottom: 15px;
  }

  #featured .details .detailLink a {
    background: #e9edfb;
    color: #112363;
    line-height: 1;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding-top: 9px;
  }

  .details .detailLink a:hover {
    background: #f82249;
    color: #fff;
  }

  .details .detailLink a i {
    font-size: 18px;
  }

  .details p {
    color: #112363;
    font-size: 15px;
    margin-bottom: 10px;
  }
  .section-heading {
    font-size: 30px;
    line-height: 1.2em;
    /* letter-spacing: -.05em; */
    font-weight: 800;
    color: #000000;
    /* margin-bottom: 40px; */
    padding-top: 20px;
    padding-bottom: 5px;
    position: relative;
    text-align: center;
  }

  .section-heading:after {
    content: "";
    display: block;
    vertical-align: bottom;
    width: 30px;
    height: 6px;
    background: #febd59;
    border-radius: 3px;
    margin-bottom: 10px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
  }



  .con_service_item_three p {
    margin-bottom: 0;
  }
  .con_service_item_three h4 {
    font-size: 20px;
    color: #1b232c;
    font-weight: 600;
    text-transform: uppercase;
  }
  .line_bottom {
    width: 60px;
    height: 4px;
    background: #f8b957;
    display: block;
    margin-bottom: 26px;
  }
  .con_service_item_three .line_bottom {
    display: inline-block;
    margin-top: 22px;
    margin-bottom: 18px;
  }
  .icon_img {
    height: 55px;
  }
  .con_service_item_three {
    text-align: center;
    padding: 50px 45px;
    border: 5px solid #004aad;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    cursor: pointer;
    margin-bottom: 30px;
  }
  .con_service_area_three {
    padding: 20px;
  }
  .con_service_item_three:hover {
    -webkit-box-shadow: 0px 30px 50px 0px rgba(31, 45, 48, 0.1);
    box-shadow: 0px 0px 20px 0px #173E76;
  }
  .home_3 .service-block-one .inner-box .lower-content h3 a {
    color: #22244d;
  }
  .service-block-one .inner-box .lower-content h3 {
    display: block;
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 11px;
  }
  .service-block-one .inner-box .lower-content {
    position: relative;
    display: block;
    padding: 29px 15px 27px 30px;
  }
  .service-block-one .inner-box .image-box .image {
    position: relative;
    display: block;
    overflow: hidden;
    background: #16436f;
  }
  .service-block-one .inner-box .image-box .image {
    position: relative;
    display: block;
    overflow: hidden;
    background: #16436f;
  }
  .service-block-one .inner-box {
    position: relative;
    display: block;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 5px 15px 0px #e4e9ea;
  }
  .space
  {
    height:100px;
  }
  @media (max-width: 600px) {
    .space
    {
      height:90px;
    }
    .page-section {
      margin-top: 0rem;
      margin-bottom: 4rem;
    }
    .py-5 {
      padding-top: 2rem !important;
      padding-bottom: 2rem !important;
    }
  }





  /* body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
} */
.card {
    /* position: absolute; */
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 300px;
    height: 300px;
    /* background: #262626; */
    overflow: hidden;
}
.card .imgbx,
.card .details {
    width: 100%;
    height: 100%;
    position: absolute;
    box-sizing: border-box;
    transition: .5s;
}
.card .imgbx {
    top: 0;
    left: 0;
}
.card:hover .imgbx {
    top: 0;
    left: -100%;
}
.card .imgbx img {
    width: 100%;
}
.card .details {
    background: #262626;
    top: 0;
    left: 100%;
    padding: 90px 30px;
}
.card:hover .details {
    top: 0;
    left: 0%;
}
.card .details h2 {
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0 0 10px;
    /* border-bottom: 2px solid #fff; */

}
.card .details p {
    margin: 20px 0 0;
    color: #fff;
}
.text-white1
{
  color:#fff;
}
.btn-primary1
{
position:relative;
left:50px;
}


.img-fluid1 {
  /* Ensure a smooth transition with a duration of 0.3 seconds */
  transition: transform 0.3s ease-in-out;
  height:300px;
  width:300px;
}
.img-fluid2 {
  /* Ensure a smooth transition with a duration of 0.3 seconds */
  /* transition: transform 0.3s ease-in-out; */
  height:300px;
  width:300px;
}

.img-fluid1:hover {
  /* Apply a 1.1x zoom-in effect on hover */
  transform: scale(1.1);
}


.place
{
  margin-top: 84px;
}
.list1 {
  position: relative;
  left: 80px;
  text-align: start;
}





.ice { display: inline-block; font: normal normal normal 14px/1 FontAwesome; font-size: inherit; text-rendering: auto; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;}
.sf_icon i, .sf_icon span { display: block; color: #fff;}
.sf_icon { right: 0; top: 8px; width: 70px; padding: 10px; position: absolute; text-align: center;}
.sf_cnt, .sf_call, .watsapp_call { position: relative; float: right; width: 68px; height: 65px; display: block; margin: 0; color: #fff; background: #337ab7; transition: width, 0.3s;}
.watsapp_call { background: #29C709; margin-top: 10px;}
.watsapp_call { background: #29C709; padding-top: 25px; font-size: 18px;}
.sf_cnt, .sf_call, .watsapp_call { position: relative; float: right; width: 68px; height: 65px; display: block; margin: 0; color: #fff; background: #337ab7; transition: width, 0.3s;}
.sf_icon i, .sf_icon span { display: block; color: #fff;}
.sf_icon span { font-weight: 200; font-size: 12px;}
.ice { display: inline-block; font: normal normal normal 14px/1 FontAwesome; font-size: inherit; text-rendering: auto; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;}
.sf_icon i, .sf_icon span { display: block; color: #fff;}
p { margin-top: 0; margin-bottom: 1rem;}
.sf_icon { right: 0; top: 8px; width: 70px; padding: 10px; position: absolute; text-align: center;}
.sf_text { display: block; width: 250px; padding: 12px 70px 0 20px; position: absolute; font-size: 14px; text-align: left; top: 0; right: -250px; font-weight: 300; z-index: -1; height: 68px; background: #29C709; transition: all .5s; -webkit-box-shadow: 0 10px 6px -6px #777 !important; -moz-box-shadow: 0 10px 6px -6px #777 !important; box-shadow: 0 10px 6px -6px #777 !important; transform: skew(-20deg, 0deg); -webkit-transform: skew(-20deg, 0deg); -moz-transform: skew(-12deg, 0deg); -ms-transform: skew(-12deg, 0deg);}
a { color: black; transition: all 0.3s ease; text-decoration: none !important; outline: none !important;}
.sf_cnt, .sf_call, .watsapp_call { position: relative; float: right; width: 68px; height: 65px; display: block; margin: 0; color: #fff; background: #29C709; transition: width, 0.3s;}
div { display: block;}
.side_fix { position: fixed; top: 250px; right: 0; width: 70px; z-index: 999;}
/* .side_fix1 { position: fixed; top: 330px; right: 0; width: 70px; z-index: 999;} */
.side_fix2 { position: fixed; top: 410px; right: 0; width: 70px; z-index: 999;}
.side_fix a:hover .sf_text {
  right: 0;
  color: #fff;
  transition: all .5s;
}

