/*-----------------------------------------------------------------------------------

    Theme Name: Crizal - Onepage Consulting Template
    Description: Onepage Consulting Template
    Author: Chitrakoot Web
    Version: 4.0

-----------------------------------------------------------------------------------*/
/* ----------------------------------

Table of contents
        
    01. Common styles
    02. Section heading
    03. Navbar
    04. Header
    05. Sidebar
    06. Owl carousel
    07. About us
    08. Blog section
    09. Team
    10. Testimonial
    11. Price Table
    12. Tabs
    13. Contact and Newsletter
    14. Blog
    15. Footer
   
---------------------------------- */
/*============================== 
    Common Styles
================================*/
/* loader */
#preloader {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999999;
  transition: 0.3s ease opacity;
  text-align: center;
  width: 100%;
  height: 100%; }
  #preloader:before {
    content: "";
    width: 80px;
    height: 80px;
    border: 3px solid #09b850;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear; }
  #preloader:after {
    content: "";
    width: 80px;
    height: 80px;
    border: 3px solid #09b850;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-delay: 1s; }

@keyframes LoaderCicle {
  0% {
    width: 0;
    height: 0;
    opacity: 0; }
  10% {
    width: 10px;
    height: 10px;
    opacity: 1; }
  80% {
    width: 60px;
    height: 60px;
    opacity: 0.1; }
  100% {
    width: 70px;
    height: 70px;
    opacity: 0; } }
/* scroll to top */
.scroll-top-percentage {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  position: fixed;
  bottom: 40px;
  color: #fff;
  right: 50px;
  -webkit-transform: scale(0);
  transform: scale(0);
  display: -ms-grid;
  display: grid;
  place-items: center;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 100; }
  .scroll-top-percentage.active {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
    animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
    -webkit-transition: 0.3s;
    transition: 0.3s; }

@media screen and (max-width: 1199px) {
  .scroll-top-percentage {
    right: 30px;
    bottom: 20px; } }
#scroll-value {
  height: calc(100% - 6px);
  width: calc(100% - 6px);
  color: #fff;
  border-radius: 50%;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 600; }
  #scroll-value i {
    font-size: 20px; }

@-webkit-keyframes scrollToTop {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
    transform: translate3d(0, 80%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0); } }
@keyframes scrollToTop {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
    transform: translate3d(0, 80%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0); } }
/* theme color and basic options */
a:hover, a:active {
  color: #09b850;
  text-decoration: none; }

.primary-overlay[data-overlay-dark]:before {
  background: #09b850; }

.secondary-overlay[data-overlay-dark]:before {
  background: #14212B; }

.left-overlay-secondary[data-overlay-dark]:before {
  background: rgba(20, 33, 43, 0.76);
  background: linear-gradient(-90deg, transparent, #14212B 65%); }

.bg-secondary {
  background-color: #14212B !important; }

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

.text-primary {
  color: #09b850 !important; }

.text-secondary {
  color: #14212B !important; }

.text-white-hover:hover {
  color: #fff !important; }

.w-180px {
  width: 180px; }

.text-blue {
  color: #212849; }

.height-100vh {
  height: 100vh; }

.bg-img {
  background-size: cover;
  background-repeat: no-repeat; }

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

.bg-blue {
  background-color: #212849; }

.primary-overlay[data-overlay-dark]:before {
  background: #09b850; }

/* list-style */
.list-style li:first-child {
  padding-top: 0; }

/* button styles*/
.btn {
  display: inline-block;
  font-size: 14px;
  padding: 7px 18px;
  background: transparent;
  border: 2px solid #09b850;
  color: #09b850;
  letter-spacing: .5px;
  line-height: inherit;
  border-radius: 0;
  font-weight: 600;
  text-transform: uppercase;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out; }
  .btn:hover, .btn:active, .btn:focus {
    background: #09b850 !important;
    color: #fff !important;
    border: 2px solid #09b850 !important;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 8px !important; }
  .btn.fill {
    background: #09b850;
    color: #fff;
    border-color: #09b850; }
    .btn.fill:hover, .btn.fill:active, .btn.fill:focus {
      color: #09b850 !important;
      border: 2px solid #09b850 !important;
      background: transparent !important; }
  .btn.small {
    padding: 4px 16px; }

/* ===================================
    Section heading
====================================== */
.section-title {
  text-align: center;
  width: 50%;
  margin: 0 auto 75px auto; }
  .section-title span {
    color: #09b850;
    background: rgba(9, 184, 80, 0.15);
    padding: 5px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px; }

@media screen and (max-width: 991px) {
  .section-title {
    width: 70%;
    margin-bottom: 60px; } }
@media screen and (max-width: 767px) {
  .section-title {
    width: 100%;
    margin-bottom: 50px; } }
@media screen and (max-width: 575px) {
  .section-title {
    margin-bottom: 35px; }
    .section-title h2 {
      font-size: 24px;
      line-height: 36px; } }
/*============================== 
    Navbar
================================*/
/* logo */
.logo {
  padding: 10px 0;
  width: 155px; }

/* navbar */
.navbar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: transparent;
  z-index: 9999;
  min-height: 70px;
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .navbar .icon-bar {
    color: #fff; }
  .navbar.bg-black {
    background: #14212B;
    border-bottom: none; }
    .navbar.bg-black .navbar-nav .nav-link.active {
      color: #09b850; }
    .navbar.bg-black.nav-scroll .navbar-nav .nav-link {
      color: #fff; }
    .navbar.bg-black .navbar-nav .nav-link:hover, .navbar.bg-black.nav-scroll .navbar-nav .nav-link.active {
      color: #09b850; }
    .navbar.bg-black .navbar-nav .nav-link.btn.small:hover, .navbar.bg-black .navbar-nav .nav-link.btn.small.active {
      color: #fff; }
  .navbar .navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 700;
    color: #14212B;
    text-shadow: 0px 0 1px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
    margin: 0;
    padding: 10px 15px;
    transition: all .5s;
    text-align: left;
    text-transform: uppercase; }
    .navbar .navbar-nav .nav-link:hover {
      color: #09b850; }
    .navbar .navbar-nav .nav-link.active {
      color: #09b850;
      position: relative; }

.nav-scroll {
  background: #fff;
  box-shadow: 0 5px 10px -10px rgba(0, 0, 0, 0.6);
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  transition: transform .5s;
  transform: translateY(100px);
  z-index: 99; }
  .nav-scroll.bg-black .icon-bar {
    color: #fff; }
  .nav-scroll .icon-bar, .nav-scroll .navbar-nav .nav-link {
    color: #14212B; }

.navbar-toggler {
  background: #09b850;
  width: 40px;
  height: 35px;
  padding: 0;
  border-radius: 0;
  position: absolute;
  right: 15px;
  top: 21px;
  cursor: pointer;
  z-index: 12399994;
  border: none; }
  .navbar-toggler .icon-bar:after {
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
    top: 17px;
    border: 0;
    height: 2px;
    width: 19px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: 10px;
    display: block;
    content: ""; }
  .navbar-toggler .icon-bar:before {
    top: 17px;
    background: #fff;
    width: 19px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
    position: absolute;
    right: 10px;
    display: block;
    height: 2px;
    content: ""; }
  .navbar-toggler.collapsed .icon-bar:after {
    position: absolute;
    top: 17px;
    right: 10px;
    display: block;
    height: 8px;
    width: 20px;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    content: "";
    background: none;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0); }
  .navbar-toggler.collapsed .icon-bar:before {
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
    position: absolute;
    top: 11px;
    right: 10px;
    display: block;
    height: 2px;
    width: 20px;
    background: #fff;
    content: "";
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0); }

.nav-scroll .navbar-nav .logo {
  padding: 15px 0; }

@media screen and (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse.desktop-hide {
    display: none !important; } }
@media screen and (max-width: 1399px) {
  .navbar > .container {
    padding-right: 5.5rem !important; } }
@media screen and (max-width: 1199px) {
  .navbar .navbar-nav .nav-link {
    padding: 10px 12px; }
  .navbar .navbar-nav .btn.small {
    margin-left: 5px;
    padding: 4px 16px;
    margin-top: 4px; } }
@media screen and (max-width: 991px) {
  .logo {
    padding: 6px 0 7px 0; }

  .navbar {
    border: none; }
    .navbar .navbar-nav .nav-link {
      border-bottom: 1px solid rgba(0, 0, 0, 0.085);
      padding: 12px 15px;
      font-size: 14px; }
    .navbar.nav-scroll .navbar-nav .nav-link {
      border-bottom: 1px solid rgba(255, 255, 255, 0.085); }
    .navbar .navbar-nav .btn.small {
      margin: 10px 5px; }
    .navbar > .container {
      padding-right: 1rem !important;
      position: relative; }
    .navbar .navbar-collapse {
      background: rgba(255, 255, 255, 0.95);
      text-align: center; }
    .navbar.nav-scroll .navbar-collapse {
      background: #14212B;
      text-align: center; }
    .navbar .navbar-toggler {
      padding: 8px 0;
      text-align: right;
      width: 40px;
      top: 18px;
      box-shadow: none; }
    .navbar .nav-link {
      display: block; }
    .navbar .navbar-nav .active:after {
      width: 100%; }

  .nav-scroll .navbar-collapse .nav-link {
    color: #fff !important; }
  .nav-scroll .navbar-collapse .active {
    color: #09b850 !important; }
  .nav-scroll .navbar-collapse .btn.active {
    color: #fff !important; } }
/*============================== 
    Header
================================*/
.header {
  overflow: hidden; }
  .header .social-links a {
    display: inline-block;
    margin: 0 12px;
    font-size: 18px; }
    .header .social-links a:hover {
      opacity: 0.85; }
  .header .social-links:last-child {
    margin-right: 0; }
  .header .arrow {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 13px;
    z-index: 99; }
    .header .arrow a {
      color: #fff; }

.arrow a :hover {
  color: #09b850; }

.header .arrow i {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 32px; }
  .header .arrow i:after {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    width: 100%;
    height: 100%;
    background: #09b850;
    border-radius: 50%;
    z-index: -1;
    transition: all .2s; }
  .header .arrow i:hover:after {
    background: #fff;
    transform: scale(1.2);
    transition: all .5s; }

@media screen and (max-width: 991px) {
  .header {
    transition-timing-function: none;
    -moz-transition-timing-function: none;
    -webkit-transition-timing-function: none;
    -o-transition-timing-function: none;
    -ms-transition-timing-function: none;
    transition-duration: 0s;
    -moz-transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -o-transition-duration: 0s;
    -ms-transition-duration: 0s; }
    .header .social-links a {
      font-size: 16px; } }
/*============================== 
    Sidebar
================================*/
.side-menu {
  width: 30%;
  position: fixed;
  right: 0;
  top: 0;
  background: #09b850;
  z-index: 99999;
  height: 100%;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  -o-transition: -o-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease, -o-transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
  overflow: hidden; }
  .side-menu.left {
    left: 0;
    right: auto;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  .side-menu.black {
    background: #14212B; }
  .side-menu.side-menu-active, .side-menu.before-side {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  .side-menu .navbar-brand {
    margin: 0 0 2.5rem 0; }

/*side overlay*/
#close_sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  -webkit-transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  -o-transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  display: none;
  z-index: 9999;
  opacity: 0.4; }

/*side clode btn*/
.side-menu .btn-close {
  height: 33px;
  width: 33px;
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 30px;
  right: 15px;
  cursor: pointer; }
.side-menu.before-side .btn-close {
  display: none; }
.side-menu .btn-close:before, .side-menu .btn-close:after {
  position: absolute;
  left: 16px;
  content: ' ';
  height: 24px;
  width: 2px;
  background: #fff;
  top: 5px; }
.side-menu .btn-close:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg); }
.side-menu .btn-close:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg); }

/*side open btn*/
.sidemenu_btn {
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
  width: 36px;
  padding: 6px;
  margin-right: 1rem;
  position: absolute;
  right: 25px;
  top: 26px;
  z-index: 99; }
  .sidemenu_btn.left {
    left: 15px;
    right: auto; }
  .sidemenu_btn > span {
    height: 2px;
    width: 100%;
    background: #09b850;
    display: block; }
    .sidemenu_btn > span:nth-child(2) {
      margin: 4px 0; }

.nav-scroll .sidemenu_btn > span {
  background: #14212B; }

.bg-black.nav-scroll .sidemenu_btn > span {
  background: #fff; }

.bg-white .sidemenu_btn > span, .bg-white.nav-scroll .sidemenu_btn > span {
  background: #14212B; }

.side-menu .inner-wrapper {
  padding: 3.5rem 5rem;
  height: 100%;
  position: relative;
  overflow-y: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
.side-menu .side-nav {
  margin-bottom: 30px;
  display: block; }

.side-nav .navbar-nav .nav-item {
  display: block;
  margin: 10px 0;
  padding: 0 !important;
  opacity: 0;
  -webkit-transition: all 0.8s ease 500ms;
  -o-transition: all 0.8s ease 500ms;
  transition: all 0.8s ease 500ms;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px); }
  .side-nav .navbar-nav .nav-item:first-child {
    -webkit-transition-delay: .1s;
    -o-transition-delay: .1s;
    transition-delay: .1s; }
  .side-nav .navbar-nav .nav-item:nth-child(2) {
    -webkit-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s; }
  .side-nav .navbar-nav .nav-item:nth-child(3) {
    -webkit-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s; }
  .side-nav .navbar-nav .nav-item:nth-child(4) {
    -webkit-transition-delay: .4s;
    -o-transition-delay: .4s;
    transition-delay: .4s; }
  .side-nav .navbar-nav .nav-item:nth-child(5) {
    -webkit-transition-delay: .5s;
    -o-transition-delay: .5s;
    transition-delay: .5s; }
  .side-nav .navbar-nav .nav-item:nth-child(6) {
    -webkit-transition-delay: .6s;
    -o-transition-delay: .6s;
    transition-delay: .6s; }
  .side-nav .navbar-nav .nav-item:nth-child(7) {
    -webkit-transition-delay: .7s;
    -o-transition-delay: .7s;
    transition-delay: .7s; }
  .side-nav .navbar-nav .nav-item:nth-child(8) {
    -webkit-transition-delay: .8s;
    -o-transition-delay: .8s;
    transition-delay: .8s; }
  .side-nav .navbar-nav .nav-item:nth-child(9) {
    -webkit-transition-delay: .9s;
    -o-transition-delay: .9s;
    transition-delay: .9s; }

.side-menu.side-menu-active .side-nav .navbar-nav .nav-item {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  opacity: 1; }

.side-nav .navbar-nav .nav-link {
  display: inline-table;
  color: #fff;
  padding: 2px 0 3px 0 !important;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: normal;
  position: relative;
  -webkit-border-radius: 0;
  border-radius: 0; }
  .side-nav .navbar-nav .nav-link:after {
    content: "";
    position: absolute;
    background: #fff;
    display: inline-block;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
    -o-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
    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 {
    width: 100%; }
  .side-nav .navbar-nav .nav-link.active {
    background: transparent; }
    .side-nav .navbar-nav .nav-link.active:after {
      width: 100%; }

.side-menu .social-links a {
  color: #fff; }
  .side-menu .social-links a:hover {
    opacity: 0.65; }

@media screen and (max-width: 1399px) {
  .sidemenu_btn {
    margin-right: 0; } }
/*============================== 
    Owl carousel
================================*/
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 30px;
  text-align: center; }

.owl-carousel .owl-item img {
  width: auto;
  display: inline-block; }

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  cursor: pointer;
  margin-left: 12px; }
  .owl-theme .owl-dots .owl-dot:first-child {
    margin-left: 0; }
  .owl-theme .owl-dots .owl-dot span {
    display: inline-block;
    width: 16px;
    height: 16px;
    box-sizing: border-box;
    background-color: #fff;
    border: 3px solid transparent;
    border-radius: 50%;
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    transition: .3s;
    margin: 0; }
  .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background-color: transparent;
    border-color: #fff;
    -webkit-transform: scale(0.9);
    transform: scale(0.9); }

@media screen and (max-width: 1199px) {
  .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 35px; } }
/*============================== 
    About us
================================*/
.about-project {
  position: absolute;
  z-index: 1;
  right: 10px;
  top: 57%;
  color: #fff;
  text-align: center;
  width: 150px;
  height: 150px;
  padding: 40px 0; }
  .about-project .countup:after, .about-project .count-no:after {
    content: "+";
    font-size: 24px;
    margin-left: 2px;
    vertical-align: top; }

@media screen and (max-width: 1199px) {
  .about-project {
    right: -15px;
    width: 140px;
    height: 140px;
    padding: 35px 0; } }
@media screen and (max-width: 991px) {
  .about-project {
    right: 45px; } }
@media screen and (max-width: 767px) {
  .about-project {
    right: -45px;
    width: 135px;
    height: 135px;
    padding: 35px 0; }
    .about-project > div {
      letter-spacing: 0; } }
@media screen and (max-width: 575px) {
  .about-project {
    right: -2px;
    width: 115px;
    height: 110px;
    padding: 20px 0; } }
/*============================== 
    Blog section
================================*/
.blog-post-listing {
  margin-bottom: 0; }
  .blog-post-listing > li {
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.075);
    padding-bottom: 35px; }
    .blog-post-listing > li:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none; }
  .blog-post-listing .post-date {
    max-width: 70px;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    background: #fff;
    padding: 10px 0 15px 0px;
    border: 1px solid rgba(0, 0, 0, 0.075); }
  .blog-post-listing .p-date {
    display: block;
    font-size: 22px;
    color: #09b850;
    padding-bottom: 8px; }
  .blog-post-listing .p-month {
    display: block;
    line-height: 20px; }
  .blog-post-listing .post-info {
    width: 100%;
    max-width: 350px;
    float: left;
    padding-left: 20px; }
  .blog-post-listing .post-author {
    font-weight: normal;
    font-size: 12px;
    padding: 0px;
    display: inline-block;
    color: #14212B; }
  .blog-post-listing .post-meta li {
    font-weight: normal;
    font-size: 12px;
    padding: 0px;
    display: inline-block;
    color: #14212B; }
    .blog-post-listing .post-meta li i {
      color: #6f6f6f;
      margin: 0 5px; }

@media screen and (max-width: 1199px) {
  .blog-post-listing .post-info {
    max-width: 300px; } }
@media screen and (max-width: 991px) {
  .blog-post-listing .post-info {
    max-width: 470px; } }
@media screen and (max-width: 767px) {
  .blog-post-listing .post-info {
    max-width: 440px; } }
@media screen and (max-width: 480px) {
  .blog-post-listing .post-info {
    max-width: 380px; } }
@media screen and (max-width: 320px) {
  .blog-post-listing .p-date {
    font-size: 18px;
    padding-bottom: 0; }
  .blog-post-listing .post-date {
    max-width: 62px; }
  .blog-post-listing .post-info {
    max-width: 228px; } }
/*============================== 
    Team
================================*/
.team-block:hover .team-hover, .team-block:hover .image::before {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px); }
.team-block .image {
  position: relative;
  overflow: hidden; }
  .team-block .image img {
    border-radius: 3px; }
  .team-block .image::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #09b850;
    background: linear-gradient(0deg, #09b850 0%, rgba(9, 184, 80, 0) 100%);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0; }
.team-block .team-hover {
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease; }

/*============================== 
    Testimonial
================================*/
.testimonial p {
  font-size: 26px;
  color: #fff;
  line-height: 48px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 50px;
  padding-top: 20px;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.4); }
  .testimonial p:before {
    content: '\f10e';
    font-family: "Font Awesome 5 Free";
    font-size: 90px;
    position: absolute;
    line-height: normal;
    opacity: 0.15;
    top: -7px;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-weight: 700; }
.testimonial small {
  letter-spacing: 1px; }

@media screen and (max-width: 1199px) {
  .testimonial p {
    font-size: 24px;
    margin-bottom: 35px; }
    .testimonial p:before {
      top: 0;
      font-size: 75px; } }
@media screen and (max-width: 767px) {
  .testimonial p {
    font-size: 22px;
    margin-bottom: 30px;
    line-height: 42px; }
    .testimonial p:before {
      top: 0;
      font-size: 60px; } }
@media screen and (max-width: 575px) {
  .testimonial p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 36px; }
    .testimonial p:before {
      top: 0;
      font-size: 48px; } }
/*============================== 
    Price Table
================================*/
.price .item {
  padding: 30px 0;
  background: #fff;
  border-radius: 5px;
  transition: all .3s; }
  .price .item:hover {
    box-shadow: 0px 5px 40px 0px rgba(148, 146, 245, 0.2); }
.price .type {
  margin-bottom: 30px; }
  .price .type .icon {
    font-size: 45px;
    color: #d6d5d5;
    margin-bottom: 10px; }
  .price .type h4 {
    font-size: 25px; }
.price .value {
  padding: 30px 0;
  position: relative; }
  .price .value:before, .price .value:after {
    content: '';
    background: #eee;
    width: 70%;
    height: 1px;
    position: absolute;
    left: 15%; }
  .price .value:before {
    top: 0; }
  .price .value:after {
    bottom: 0; }
  .price .value h3 {
    display: inline-block;
    padding-right: 10px;
    font-size: 50px;
    font-weight: 700;
    position: relative; }
    .price .value h3 span {
      font-size: 14px;
      position: absolute;
      top: 5px;
      right: 0; }
  .price .value .per {
    font-size: 13px;
    color: #09b850; }
.price .features {
  padding: 15px 0; }
  .price .features li {
    margin: 15px 0; }
.price .order {
  padding-top: 15px;
  position: relative; }
.price .active {
  box-shadow: 0px 5px 40px 0px rgba(0, 0, 0, 0.1); }

/* ===================================
    Tabs
====================================== */
ul.resp-tabs-list {
  margin: 0px;
  padding: 0px; }

.resp-tabs-list li {
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  padding: 13px 15px;
  margin: 0;
  list-style: none;
  cursor: pointer; }
  .resp-tabs-list li:last-child {
    margin-right: 0; }
  .resp-tabs-list li i {
    font-size: 20px;
    padding-right: 5px;
    vertical-align: text-bottom; }

.resp-tabs-container {
  padding: 0px;
  background-color: #fff;
  clear: left; }

.resp-tab-content {
  display: none;
  padding: 20px; }

.resp-tabs-list li.resp-tab-active {
  background-color: #fff;
  color: #09b850; }

.resp-content-active, .resp-accordion-active {
  display: block; }

.resp-tab-content {
  float: left;
  width: 100%; }

h2.resp-accordion {
  cursor: pointer;
  display: none;
  font-size: 14px;
  border: 1px solid #c1c1c1;
  border-top: 0px solid #c1c1c1;
  margin: 0px;
  padding: 14px 15px;
  float: left;
  width: 100%; }
h2.resp-tab-active {
  border-bottom: 0px solid #c1c1c1 !important;
  background-color: #09b850 !important;
  color: #fff; }
h2.resp-tab-title:last-child {
  border-bottom: 12px solid #c1c1c1 !important;
  background: blue; }

.resp-arrow {
  border-color: transparent #14212B #14212B transparent;
  border-style: solid;
  border-width: 0 1px 1px 0;
  float: right;
  display: block;
  height: 8px;
  transform: rotate(45deg);
  width: 8px;
  margin-top: 4px; }

h2.resp-tab-active span.resp-arrow {
  border-color: #fff transparent transparent #fff;
  border-style: solid;
  border-width: 1px 0 0 1px;
  float: right;
  display: block;
  height: 8px;
  transform: rotate(45deg);
  width: 8px;
  margin-top: 7px; }

/* accordion styles */
.resp-easy-accordion h2.resp-accordion {
  display: block; }
.resp-easy-accordion .resp-tab-content {
  border: 1px solid #c1c1c1; }
  .resp-easy-accordion .resp-tab-content:last-child {
    border-bottom: 1px solid #c1c1c1; }

.resp-jfit {
  width: 100%;
  margin: 0px; }

.resp-tab-content-active {
  display: block;
  border-color: #09b850 !important; }

h2.resp-accordion:first-child {
  border-top: 1px solid #c1c1c1; }
h2.resp-accordion.resp-tab-active {
  border-color: #09b850 !important; }

/* change the breakpoint to set the accordion */
@media screen and (max-width: 767px) {
  ul.resp-tabs-list {
    display: none !important; }

  h2.resp-accordion {
    display: block; }
    h2.resp-accordion i {
      margin-right: 8px;
      font-size: 18px; }

  .resp-accordion-closed {
    display: none !important; }

  .resp-tab-content {
    background-color: #fff; } }
/* tab style-01 */
.tab-style .resp-tabs-list li.resp-tab-active {
  color: #09b850; }
  .tab-style .resp-tabs-list li.resp-tab-active:after {
    content: "";
    background: #09b850;
    height: 1px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -1px; }
.tab-style ul.resp-tabs-list {
  border-bottom: 1px solid #d2d4d6;
  display: table;
  width: 100%; }
.tab-style .resp-tab-content-active {
  border: none; }
.tab-style .resp-tab-content {
  padding: 30px 0 0 0; }
.tab-style .resp-tabs-list li {
  position: relative;
  display: table-cell;
  text-align: center;
  text-transform: uppercase; }

@media screen and (max-width: 767px) {
  .tab-style .resp-tab-content {
    padding: 25px;
    border: 1px solid; } }
/*============================== 
    Contact and Newsletter
================================*/
.quform-input {
  position: relative; }

.quform-element > label {
  font-weight: normal;
  padding-bottom: 5px;
  margin-bottom: 0;
  color: #616161; }
  .quform-element > label .quform-required {
    color: #cc0101;
    font-size: 10px; }

.quform-inner input {
  width: 100%; }

.quform-elements .quform-element textarea {
  margin-bottom: 0;
  padding: 12px 15px;
  vertical-align: top; }
.quform-elements .quform-element select {
  margin-bottom: 0;
  padding: 12px 15px; }

.quform-errors {
  padding: 0;
  margin: 0;
  line-height: normal; }
  .quform-errors > .quform-error {
    padding: 0;
    background: none;
    border: none;
    float: none;
    color: #f5543f;
    font-size: 11px;
    line-height: normal; }

.quform-outer-no-js .quform-error {
  padding: 0;
  background: none;
  border: none;
  float: none;
  color: #f5543f;
  font-size: 11px;
  line-height: normal; }

.quform-has-error input, .quform-has-error textarea, .quform-has-error select, .quform-has-error input[type=file], .quform-has-error .custom-file-label {
  border-color: #f5543f; }

.quform-success-message, .quform-outer-no-js .quform-success-message {
  padding: 0.75rem 1.25rem 0.75rem 3rem; }

.quform-input .quform-errors-wrap {
  position: absolute;
  right: 8px;
  top: 0;
  line-height: normal;
  z-index: 9; }

.quform-submit-inner {
  float: none; }

.quform-loading-wrap {
  float: none; }
  .quform-loading-wrap .quform-loading {
    display: inline-block; }

.form-control:focus {
  color: #495057;
  background-color: #ffffff;
  border-color: #09b850;
  outline: 0;
  box-shadow: none; }

.form-group {
  margin-bottom: 1rem; }
  .form-group label {
    margin-bottom: .5rem; }

.light-validation .quform-errors > .quform-error {
  color: #fff; }

/* newsletter */
.newsletter-form .quform-elements {
  position: relative; }
.newsletter-form .quform-submit-inner {
  position: absolute;
  right: 0;
  top: 1px;
  width: auto;
  background: #f5f5f5;
  height: 48px;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  -webkit-border-top-right-radius: 0.25em;
  -webkit-border-bottom-right-radius: 0.25em;
  -moz-border-radius-topright: 0.25em;
  -moz-border-radius-bottomright: 0.25em;
  border-top-right-radius: 0.25em;
  border-bottom-right-radius: 0.25em; }
.newsletter-form .quform-loading-wrap {
  margin-top: 15px;
  margin-bottom: 0;
  margin-left: 0; }
.newsletter-form input {
  border: 1px solid rgba(0, 0, 0, 0.1);
  height: 50px;
  padding: 0.5rem 4rem 0.5rem 1rem;
  font-size: 14px; }
.newsletter-form .quform-submit-inner .btn {
  min-width: auto;
  border: none !important;
  box-shadow: none !important;
  padding: 7px 18px;
  border-radius: .25rem; }
  .newsletter-form .quform-submit-inner .btn:hover, .newsletter-form .quform-submit-inner .btn:active, .newsletter-form .quform-submit-inner .btn:focus {
    background: #f5f5f5 !important;
    color: #09b850 !important;
    border: none !important; }
.newsletter-form .quform-has-error input, .newsletter-form .quform-has-error textarea, .newsletter-form .quform-has-error select {
  border-color: #f5543f; }
.newsletter-form .quform-input .quform-errors-wrap {
  right: 15px; }
.newsletter-form i {
  font-size: 1.2rem;
  line-height: 2rem; }

/*============================== 
    Blog
================================*/
.blog .item {
  box-shadow: 0px 5px 35px 0px rgba(148, 146, 245, 0.15);
  border-radius: 5px; }
  .blog .item .post-img {
    position: relative;
    overflow: hidden; }
    .blog .item .post-img:hover img {
      transform: scale(1.1); }
    .blog .item .post-img img {
      width: 100%;
      transition: all .5s; }
  .blog .item .content {
    padding: 30px;
    background: #fff;
    text-align: left; }
    .blog .item .content .tag {
      font-weight: 500;
      font-size: 12px;
      margin-bottom: 5px;
      letter-spacing: 1px; }
    .blog .item .content .read-more {
      margin-top: 20px;
      font-weight: 700; }
      .blog .item .content .read-more:hover {
        color: #09b850;
        text-decoration: none; }
    .blog .item .content h6 {
      line-height: normal;
      text-transform: inherit;
      margin-bottom: 2px; }

.blog-nav {
  position: static !important;
  background: #fff !important;
  margin: 0;
  top: 0;
  transform: translateY(0px); }
  .blog-nav .logo {
    color: #1c1c1c !important; }
  .blog-nav .navbar-nav .nav-link, .blog-nav .icon-bar {
    color: #14212B; }

.blog-header {
  background: #14212B;
  position: relative; }
  .blog-header h2 {
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 15px; }
  .blog-header a {
    position: relative;
    color: #d5d5d5; }
    .blog-header a:after {
      content: '/';
      position: relative;
      margin: 0 10px; }
    .blog-header a:last-child:after {
      display: none; }
    .blog-header a:hover {
      color: #fff; }
    .blog-header a.active {
      color: #09b850; }

.blogs .posts .comments-area .comment-box {
  padding-bottom: 30px;
  margin-bottom: 50px;
  border-bottom: 1px solid #eee; }
  .blogs .posts .comments-area .comment-box:nth-child(odd) {
    margin-left: 80px; }
  .blogs .posts .comments-area .comment-box:last-child {
    margin-bottom: 30px; }
  .blogs .posts .comments-area .comment-box .author-thumb {
    width: 80px;
    float: left; }
  .blogs .posts .comments-area .comment-box .comment-info {
    margin-left: 100px;
    font-size: 16px; }
    .blogs .posts .comments-area .comment-box .comment-info h6 {
      font-size: 17px;
      font-weight: 600;
      margin-bottom: 10px; }
    .blogs .posts .comments-area .comment-box .comment-info .reply {
      margin-top: 10px;
      font-weight: 600; }
      .blogs .posts .comments-area .comment-box .comment-info .reply i {
        padding-right: 5px;
        font-size: 12px; }
.blogs .posts .pagination {
  border-radius: 0;
  padding: 0;
  margin: 0; }
  .blogs .posts .pagination ul {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    margin: 0 auto;
    padding: 0; }
  .blogs .posts .pagination li {
    display: inline; }
  .blogs .posts .pagination a {
    float: left;
    padding: 0 18px;
    line-height: 40px;
    text-decoration: none;
    border: 1px solid #dbdbdb;
    border-left-width: 0;
    background: #fff; }
    .blogs .posts .pagination a:hover {
      background-color: #14212B;
      color: #fff; }
  .blogs .posts .pagination .active a {
    background-color: #f7f7f7;
    color: #999;
    cursor: default; }
  .blogs .posts .pagination .disabled span {
    color: #999;
    background-color: transparent;
    cursor: default; }
  .blogs .posts .pagination .disabled a {
    color: #999;
    background-color: transparent;
    cursor: default; }
    .blogs .posts .pagination .disabled a:hover {
      color: #999;
      background-color: transparent;
      cursor: default; }
  .blogs .posts .pagination li:first-child a {
    border-left-width: 1px; }

/* blog list-simple */
.blog-list-simple {
  margin: 0 0 30px 0;
  padding-bottom: 30px; }
  .blog-list-simple:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0; }

.blog-list-simple-text > span {
  color: #09b850;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px; }
.blog-list-simple-text p {
  border-top: 1px solid #ececec;
  font-size: 16px;
  margin-bottom: 0;
  padding: 15px 0; }
.blog-list-simple-text .meta {
  margin: 0 0 5px 0; }
.blog-list-simple-text li {
  display: inline-block;
  font-size: 12px;
  color: #777;
  margin: 0 5px; }
.blog-list-simple-text h4 {
  color: #14212B;
  font-size: 24px;
  font-weight: 500;
  margin: 5px 0;
  line-height: normal; }
  .blog-list-simple-text h4 a {
    color: #1b1644; }
    .blog-list-simple-text h4 a:hover {
      color: #09b850; }
.blog-list-simple-text ul {
  margin: 10px 0; }
  .blog-list-simple-text ul li {
    color: #999;
    font-size: 14px;
    font-weight: 500;
    padding: 3px 0; }
    .blog-list-simple-text ul li i {
      color: #09b850;
      margin-right: 5px;
      font-size: 14px; }

/* blogs post */
.blogs .post {
  margin-bottom: 50px; }
  .blogs .post .content {
    padding: 30px;
    background: #fafafa; }
    .blogs .post .content .post-title h5 a {
      color: #14212B; }
      .blogs .post .content .post-title h5 a:hover {
        color: #00bcd1; }
    .blogs .post .content .meta {
      margin-bottom: 15px; }
      .blogs .post .content .meta li {
        display: inline-block;
        margin: 0 5px; }
    .blogs .post .content .special {
      padding: 15px;
      margin: 30px 0;
      border-left: 2px solid #111;
      background: #f7f7f7; }
    .blogs .post .content .btn {
      border-color: #6f6f6f;
      color: #6f6f6f;
      min-width: auto;
      padding: 6px 20px;
      font-size: 12px; }
      .blogs .post .content .btn:hover {
        color: #fff;
        border-color: #00bcd1; }
  .blogs .post .share-post {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed #ddd;
    text-align: left; }
    .blogs .post .share-post span {
      font-weight: 700; }
    .blogs .post .share-post ul {
      float: right; }
      .blogs .post .share-post ul li {
        display: inline-block;
        margin: 0 10px; }
  .blogs .post .post-img img {
    width: 100%; }
.blogs .posts .title-g h3 {
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 10px; }
.blogs .comments-area .comment-box {
  padding-bottom: 30px;
  margin-bottom: 50px;
  border-bottom: 1px solid #eee; }
  .blogs .comments-area .comment-box:nth-child(odd) {
    margin-left: 80px; }
  .blogs .comments-area .comment-box:last-child {
    margin-bottom: 30px; }
.blogs .comment-box .author-thumb {
  width: 80px;
  float: left; }
.blogs .comment-box .comment-info {
  margin-left: 100px; }
  .blogs .comment-box .comment-info h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px; }
  .blogs .comment-box .comment-info .reply {
    margin-top: 10px;
    font-weight: 600; }
    .blogs .comment-box .comment-info .reply i {
      padding-right: 5px;
      font-size: 12px; }

/* pagination */
.pagination {
  border-radius: 0;
  padding: 0;
  margin: 0; }
  .pagination ul {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    margin: 0 auto;
    padding: 0; }
  .pagination li {
    display: inline; }
  .pagination a {
    float: left;
    padding: 0 15px;
    line-height: 40px;
    text-decoration: none;
    border: 1px solid #dbdbdb;
    border-left-width: 0;
    background: #fff; }
    .pagination a:hover {
      background-color: #14212B;
      color: #fff; }
  .pagination .active a {
    background-color: #f7f7f7;
    color: #999;
    cursor: default; }
  .pagination .disabled span {
    color: #999;
    background-color: transparent;
    cursor: default; }
  .pagination .disabled a {
    color: #999;
    background-color: transparent;
    cursor: default; }
    .pagination .disabled a:hover {
      color: #999;
      background-color: transparent;
      cursor: default; }
  .pagination li:first-child a {
    border-left-width: 1px; }

.blockquote {
  background: #f1f1f1;
  border-left: 4px solid #00bcd1;
  font-size: 16px;
  font-weight: 500;
  margin: 25px 0;
  padding: 20px 30px 30px; }
  .blockquote p {
    font-size: 15px;
    font-weight: 500;
    line-height: 190%;
    color: #14212B;
    letter-spacing: .5px; }
  .blockquote h4 {
    font-size: 20px;
    font-weight: 400;
    color: #14212B;
    letter-spacing: .5px; }

.side-bar .widget {
  margin-bottom: 30px; }
  .side-bar .widget:last-child {
    margin-bottom: 0; }
  .side-bar .widget .widget-title h6 {
    position: relative;
    padding-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px; }
    .side-bar .widget .widget-title h6:after {
      content: '';
      width: 30px;
      height: 1px;
      background: #09b850;
      position: absolute;
      bottom: 0;
      left: 0; }
  .side-bar .widget li {
    position: relative;
    padding: 0 0 0 12px;
    margin: 0 0 9px 0;
    font-size: 15px;
    color: #6f6f6f; }
    .side-bar .widget li:last-child {
      margin: 0; }
    .side-bar .widget li:after {
      content: "";
      width: 5px;
      height: 1px;
      background-color: #6f6f6f;
      position: absolute;
      top: 12px;
      left: 0; }
  .side-bar .widget .social-listing {
    margin-bottom: 0; }
    .side-bar .widget .social-listing li {
      list-style: none;
      display: inline-block; }
      .side-bar .widget .social-listing li:after {
        background: none; }
      .side-bar .widget .social-listing li:first-child {
        padding-left: 0; }
.side-bar .search form input {
  width: calc(100% - 50px);
  height: 50px;
  padding: 0 10px;
  margin: 0;
  border: 1px solid #d1d1d1;
  background: #f7f7f7; }
.side-bar .search form button {
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  background: #09b850;
  border: 0;
  float: right;
  border-radius: 0;
  padding: 0; }
  .side-bar .search form button:hover:before {
    border-radius: 0;
    padding: 0; }

@media screen and (max-width: 991px) {
  .blog-nav.navbar .navbar-collapse {
    background: #14212B; }
  .blog-nav .navbar-nav .nav-link {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.085); } }
@media screen and (max-width: 767px) {
  .blog-list-simple {
    margin-bottom: 20px;
    padding-bottom: 20px; }

  .blogs .posts .post .content {
    padding: 20px; }
    .blogs .posts .post .content .post-title h5 {
      font-size: 22px; } }
/*============================== 
    Footer
================================*/
footer .footer-topbar {
  border-bottom: 1px solid rgba(0, 0, 0, 0.075);
  padding: 50px 0; }
  footer .footer-topbar h4, footer .footer-topbar p {
    color: #fff; }
footer .footer-bar {
  margin-top: 55px; }
footer .footer-top {
  padding: 70px 0;
  background-color: #fff; }
footer h3 {
  font-size: 18px;
  font-weight: 600; }
footer p {
  margin-bottom: 0; }

.footer-social ul {
  margin-bottom: 0; }
.footer-social li {
  text-align: center;
  margin-right: 5px;
  display: inline-block; }
  .footer-social li:last-child {
    margin-right: 0; }
  .footer-social li a {
    background: #fff;
    border: 1px solid #09b850;
    color: #09b850;
    border-radius: 3px;
    height: 35px;
    width: 35px;
    line-height: 35px;
    display: inline-block; }
    .footer-social li a:hover {
      background: #09b850;
      color: #fff; }

@media screen and (max-width: 1199px) {
  footer .footer-top {
    padding: 50px 0; } }
/* scroll to top */
.scroll-to-top {
  font-size: 20px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  border-radius: 50%;
  background: #000;
  border: 1px solid #2a2a2a;
  width: 35px;
  height: 35px;
  line-height: 30px;
  z-index: 9999;
  outline: 0;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  -ms-transition: all .3s ease; }
  .scroll-to-top i {
    color: #fff; }
  .scroll-to-top:hover {
    color: #282b2d;
    background: #fff; }
    .scroll-to-top:hover i {
      color: #282b2d; }
  .scroll-to-top:visited {
    color: #282b2d;
    text-decoration: none; }

/*# sourceMappingURL=style.css.map */
