/*--
    Common Css
--*/
* {
    box-sizing: border-box;
}
html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 25px;
    color: #3b4045;
    font:14px/22px 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
}
.content {
    min-height: calc(100% - 104px);
}
.clear {
    clear: both;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 300;
    margin: 0px;
}
h2 {
  font-size: 30px;
  line-height: 35px;
}
h3 {
    font-size: 23px;
    line-height: 25px;
}
h4 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
}
p {
    font-size: 16px;
    line-height: 25px;
    margin: 0px;
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}

a:focus,
.btn:focus,
.btn:active:focus {
    box-shadow: none;
    outline: 0 none;
}
a,
a:active,
a:focus,
a:active {
    text-decoration: none;
}

.section {
    padding: 60px 0;
}

.section:first-child {
    padding-top: 100px;
}

.p-h2 h2 {
}
/*--
    custom heading
--*/

.heading {
    text-align: center;
    color: #777777;
}
.heading .title {
    color: #3c3c3c;
    padding-bottom: 30px;
    text-transform: capitalize;
    font-weight: 300;
    font-size: 40px;
    line-height: 40px;
}
.heading p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
}

.sub-heading {
    margin-bottom: 30px;
}

.sub-heading h3 {
    font-size: 30px;
    line-height: 40px;
}

.sub-heading h3 small {
    font-weight: 300;
}

.sub-heading h4 {
    font-size: 25px;
    margin-bottom: 15px;
}

.sub-heading > p {
    font-size: 14px;
    color: #777;
}

.btn {
    border-radius: 0;
}

.btn-home {
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 0px;
  color: #fff;
  font-size: 18px;
  padding: 10px 40px;
  margin-top: 30px;
}

.btn-home:hover,
.btn-home:focus {
    background-color: #fff;
    color: #555;
}

.btn-home2 {
    border: 1px solid #adadad;
    color: #000;
}
.btn-home2:hover {
    color: #fff !important;
    border: 1px solid #fff;
    background: #1f99af !important;
}

.btn-border {
    border: 1px solid #fff;
    padding: 13px 40px;
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    text-shadow: none;
}


/* Sweep To Right */
.hover-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.hover-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2098d1;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.hover-right:hover,
.hover-right:focus,
.hover-right:active {
    color: white;
}
.hover-right:hover:before,
.hover-right:focus:before,
.hover-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}


/*Preloader*/

#preloader {
    background-color: #fff;
    bottom: auto;
    height: 100%;
    left: auto;
    position: fixed;
    right: auto;
    top: auto;
    width: 100%;
    z-index: 9999;
}

.book {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  position: relative;
  margin: 0 auto;
  border: 5px solid #ecf0f1;
  width: 100px;
  height: 60px;
}

.book__page {
  position: absolute;
  left: 50%;
  top: -5px;
  margin: 0 auto;
  border-top: 5px solid #ecf0f1;
  border-bottom: 5px solid #ecf0f1;
  border-right: 5px solid #ecf0f1;
  background: #41aba0;
  width: 50px;
  height: 60px;
  -webkit-transform-origin: 0% 50%;
      -ms-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-animation: flip 1.2s infinite linear;
          animation: flip 1.2s infinite linear;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.book__page:nth-child(1) {
  z-index: -1;
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.book__page:nth-child(2) {
  z-index: -2;
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}
.book__page:nth-child(3) {
  z-index: -3;
  -webkit-animation-delay: 4.2s;
          animation-delay: 4.2s;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(600px) rotateY(0deg);
            transform: perspective(600px) rotateY(0deg);
  }
  20% {
    background: #41aba0;
  }
  29.9% {
    background: #41aba0;
  }
  30% {
    -webkit-transform: perspective(200px) rotateY(-90deg);
            transform: perspective(200px) rotateY(-90deg);
    background: #41aba0;
  }
  54.999% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  60% {
    -webkit-transform: perspective(200px) rotateY(-180deg);
            transform: perspective(200px) rotateY(-180deg);
    background: #41aba0;
  }
  100% {
    -webkit-transform: perspective(200px) rotateY(-180deg);
            transform: perspective(200px) rotateY(-180deg);
    background: #41aba0;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(600px) rotateY(0deg);
            transform: perspective(600px) rotateY(0deg);
  }
  20% {
    background: #41aba0;
  }
  29.9% {
    background: #41aba0;
  }
  30% {
    -webkit-transform: perspective(200px) rotateY(-90deg);
            transform: perspective(200px) rotateY(-90deg);
    background: #41aba0;
  }
  54.999% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  60% {
    -webkit-transform: perspective(200px) rotateY(-180deg);
            transform: perspective(200px) rotateY(-180deg);
    background: #41aba0;
  }
  100% {
    -webkit-transform: perspective(200px) rotateY(-180deg);
            transform: perspective(200px) rotateY(-180deg);
    background: #41aba0;
  }
}



/*--
    #hero-area start
--*/




#hero-area {
  padding:180px 0;
    background: rgba(0, 0, 0, 0) linear-gradient(135deg, #1f99af 33%, #79bf80 100%);
}
#hero-area .block {
  padding-top: 100px;
}
#hero-area .block .slogan {
    line-height: 56px;
    color: #fff;
    margin-bottom: 35px;
    text-transform: uppercase;
    font-size: 37px;
    letter-spacing: 4px;
    position: relative;
}
#hero-area .block .slogan:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  background: #fff;
  height: 3px;
  width: 110px;

}




.navbar-default {
    padding:20px;
}



/* #hero-area  */
.animated .logo-2, .animated-force .logo-2 {
    display: block!important;
}
.logo-2 {
    display: none!important;
    height: 60px;
}
.animated .logo-1, .animated-force .logo-1 {
    display: none!important;
}
.logo-1 {
    height: 60px;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus,
.navbar-default.animated .navbar-nav > li > a:hover, .navbar-default.animated-force .navbar-nav > li > a:hover {
    color: #009ee5;
}
.navbar-default {
    background-color: transparent;
    -webkit-transition: all 0.3s ease-in-out 0s;
       -moz-transition: all 0.3s ease-in-out 0s;
        -ms-transition: all 0.3s ease-in-out 0s;
         -o-transition: all 0.3s ease-in-out 0s;
            transition: all 0.3s ease-in-out 0s;
}

.navbar-default.animated, .navbar-default.animated-force {
    background-color: #fff;
    box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.15);
    padding:10px;
}




.navbar-default {
    background-color: transparent;
    border: 0;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.navbar-default .navbar-brand {
    color: #777;
    margin-top: -5px;
    padding: 0;
}
.navbar-default .navbar-nav > li > a,
.navbar-default .navbar-nav > li > a:hover {
    color: #fff;
    position: relative;
}
.navbar-default.animated .navbar-nav > li > a,
.navbar-default.animated .navbar-nav > li > a:hover,
.navbar-default.animated-force .navbar-nav > li > a,
.navbar-default.animated-force .navbar-nav > li > a:hover {
    color: #000;
}
.navbar-default .navbar-nav > li.current > a {
    color: #fff;
}
.navbar-default.animated .navbar-nav > li.current > a,
.navbar-default.animated-force .navbar-nav > li.current > a {
    color: #1f99af;
}
#hero-area .navbar-default .navbar-nav {
    padding-top: 11px;
    padding-right: 60px;
}
#hero-area .navbar-default .navbar-nav li {
    padding: 0px 15px;
}
#hero-area .navbar-default .navbar-nav li a {
    color: #fff;
    padding: 10px 0px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
}
#hero-area .navbar-default .navbar-nav li a:hover {
    position: relative;
    color: #fff;
}
#hero-area .navbar-default .navbar-nav li a:hover:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #fff;
}
#hero-area .navbar-default .navbar-nav > .active > a,
#hero-area .navbar-default .navbar-nav > .active > a:hover,
#hero-area .navbar-default .navbar-nav > .active > a:focus {
    position: relative;
    background: none;
    color: #fff;
}
#hero-area .navbar-default .navbar-nav > .active > a:before,
#hero-area .navbar-default .navbar-nav > .active > a:hover:before,
#hero-area .navbar-default .navbar-nav > .active > a:focus:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #fff;
}
#hero-area .block {
}
#hero-area .block h2,
#hero-area .block p {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
}

#hero-area .block .counter {
    background: rgba(255, 255, 255, 0.2);
    padding:18px;
}

#hero-area .block .counter h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 5px;
    padding-bottom: 19px;
    text-align: center;
}
#hero-area .block .counter ul li {
    background-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    display: inline-block;
    line-height: 25px;
    padding: 25px 28px 20px;
    text-align: center;
    width: 49%;
    margin-bottom: 3px;
}
#hero-area .block .counter ul li span {
    display: block;
    font-size: 16px;
    font-weight: 300;
}
#hero-area .block .counter ul li .digit {
    display: inline-block;
    font-size: 50px;
    font-weight: 300;
    line-height: 50px;
    position: relative;
    overflow: hidden;
    height: 60px;
}
#hero-area .block .counter ul li .dash_social {
    display: inline-block;
    font-size: 50px;
    font-weight: 300;
    line-height: 50px;
    position: relative;
    overflow: hidden;
    height: 60px;
}
#hero-area .block .counter ul li .dash_social_small {
    display: inline-block;
    position: relative;
    overflow: hidden;
    height: 60px;
}
#hero-area .block .counter ul li .dash_social_small i {
    font-size: 20px;
    width: 25px;
    height: 25px;
    display: inline-block;
}
span.underlined {
    position: relative;
}
span.underlined::before {
    content: "";
    width: 100%;
    height: 2px;
    bottom: -4px;
    left: 0;
    position: absolute;
    background: #fff;
}
/*--
    service start
--*/

#service {
    text-align: center;
    background: #f9f9f9;
}

.service {
    text-align: left;
}
.service .caption {
    text-align: center;
}
.service .caption h3 {
    margin: 0 0 10px;
    color: #333333;
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: normal;
    text-transform: uppercase;
}

.service .icon-box {
    display: inline-block;
    margin-bottom: 15px;
    overflow-y: hidden;
    position: relative;
    width: 100%;
}
.service .icon-box:before {
    display: block;
    content: '';
    position: relative;
    top: 75px;
    width: 100px;
    height: 1px;
    display: block;
    margin: 0 auto;
    background-color: #cbcbcd;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -khtml-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}
.service .icon-box .icon {
    background-color: #26282b;
    border-radius: 5px;
    display: inline-block;
    height: 75px;
    left: 36%;
    position: relative;
    top: 12px;
    width: 75px;
    -webkit-transform: rotate(50deg);
       -moz-transform: rotate(50deg);
        -ms-transform: rotate(50deg);
         -o-transform: rotate(50deg);
            transform: rotate(50deg);
background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#8ec64e), color-stop(100%,#41aba0));
  background: -webkit-linear-gradient(-45deg, #8ec64e 0%,#41aba0 100%);
  background: -o-linear-gradient(-45deg, #8ec64e 0%,#41aba0 100%);
  background: -ms-linear-gradient(-45deg, #8ec64e 0%,#41aba0 100%);
  background: linear-gradient(135deg, #8ec64e 0%,#41aba0 100%);
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -khtml-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.service:hover .icon-box .icon {
    background-color: #41aba0;
}

.service .icon-box .icon i {
    color: #fff;
    font-size: 30px;
    height: 75px;
    line-height: 70px;
    text-align: center;
    width: 75px;
    display: inline-block;
    -webkit-transform: rotate(-50deg);
       -moz-transform: rotate(-50deg);
        -ms-transform: rotate(-50deg);
         -o-transform: rotate(-50deg);
            transform: rotate(-50deg);
}

#service .thumbnail {
    border: 2px solid #DEDEDE;
    border-radius: 0px;
    padding: 40px 0;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
#service .thumbnail:hover {
    background-color: #41aba0;
    border: 2px solid #41aba0;
    opacity: 1;
}
.thumbnail .icon {
    font-size: 50px;
}
#service .thumbnail:hover .icon,
#service .thumbnail:hover .caption h3,
#service .thumbnail:hover .caption p {
    color: #fff;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}
#service .thumbnail img {
    padding-bottom: 30px;
}
#service .thumbnail .img-adjust {
    margin-top: 10px;
    position: relative;
}
#service .thumbnail .caption h3 {
    color: #333333;
    font-weight: 300;
    font-size: 25px;
    padding-bottom: 22px;
}
#service .caption p {
    line-height: 1.5;
    font-size: 15px;
    color: #7e7e7e;
}
/*--
    About start
--*/

#about .sub-heading {
  font-size: 26px !important;
  font-weight: 300;
  line-height: 36px;
  color: #7e7e7e;
  margin-top: 20px;
}
#about .heading p {
    font-size: 18px;
    color: #898989;
}
#about .block p {
    font-size: 15px;
    color: #7e7e7e;
    line-height: 30px;
}
#about .block .bottom-text {
    padding-right: 20px;
}
#about .block img {
    width: 100%;
}



.init-slider .owl-dots {
    margin-top: 3px;
    position: relative;
    text-align: center;
    z-index: 9;
}

.init-slider .owl-dot {
    background-color: #000;
    border-radius: 50px;
    display: inline-block;
    height: 10px;
    margin: 0 5px;
    opacity: 0.3;
    width: 10px;
    -webkit-transition: all 0.3s ease 0s;
       -moz-transition: all 0.3s ease 0s;
         -o-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;
}

.init-slider .owl-dot.active {
    opacity: 1;
}


/*--
    call-to-action start
--*/

#call-to-action {
    padding: 70px 0px;
    position: relative;
    border-top: 1px solid #eee;
    color: #fff;
}

#call-to-action .heading {
    padding-bottom: 20px;
}

#call-to-action .block h2 {
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
}
#call-to-action .block p {
    font-size: 15px;
    padding-right: 30px;
    color: #9F9F9F;
}
#call-to-action .block input {
    width: 40%;
    height: 40px;
    border-radius: 0;
    display: inline-block;
    box-shadow: none;
    vertical-align: middle;
}

#contact {
    background: url(../../images/section-bg3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}
#contact .title,
#contact p {
    color: #fff;
}
hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 0 0 24px 0;
    width: 100%;
}
.address {

}
.address p {
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 22px;
  color: #666;
}
#contact .form-group {
    /* background-color: #f4f4f4;
    margin: 0 auto;
    padding: 80px 100px 55px;
    width: 650px;
    box-shadow: 0 4px 40px  rgba(0, 0, 0, 0.2); */
}
.input-field .form-control {
    height: 38px;
    margin: 0 auto;
    border-radius: 0px;
    border: 1px solid #DEDEDE;
    box-shadow: none;
    background: #f5f5f5;
    border: none;
    width: 100%;
    height: 50px;
    padding-left: 20px;
    font-weight: 500;
    margin-bottom: 0;
    border-radius: 0;
}
.btn-send {
    line-height: 48px;
    background: linear-gradient(135deg, #1f99af 70%, #79bf80 100%);
    color: #fff;
    width: 100%;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 0;
    margin-top: 20px;
    text-transform: none;
    font-size: 20px;
    font-weight: normal;
}

.btn-send:active,
.btn-send:hover {
    color: #fff;
    background: #1f99af;
}

.input-field label {
    color: rgba(237, 28, 36, 0.7);
}
.form-group .input-field + .input-field {
    margin-top: 20px;
}
.input-field textarea.form-control {
    height: 160px;
    margin: 0 auto;
    box-shadow: none;
}
.form-group {
    margin-top: 20px;
}
.form-group .btn-submit {
    border: 0 none;
    border-radius: 0;
    color: #fff;
    padding:10px 20px;
    font-size: 15px;
    background: -webkit-gradient(linear, right top, right bottom, color-stop(0%,#8ec64e), color-stop(100%,#41aba0));
}
#contact .block .btn span {
    padding-left: 23px;

}
#success,
#error {
    display: none;
}
footer {
    text-align: center;
    background: #293333;
    padding: 27px 0px;
}
footer p {
    font-weight: 300;
    font-size: 12px;
    color: #dfdfdf;
    letter-spacing: 3px;
}
footer p a {
  color: #fff;
}
footer p a:hover {
  color: #fff;
}

#terms h3 {
    margin-top: 20px;
    margin-bottom: 6px;
}

#terms ul {
    list-style-type: disc;
    padding-left: 40px;
    margin-top: 14px;
    margin-bottom: 14px;
}
#terms ul li {

}

#pricing {
    padding-bottom: 30px;
}

.pricing {
    width: 540px;
    width: 540px;
    margin: 0 auto;
}
.pricing-item {
    width: 230px;
    height: 385px;
    float: left;
    border: 1px solid #cbcbcd;
    box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.15);
    margin-left: 20px;
    margin-right: 20px;
}
.pricing-header {
    height: 120px;
    border-bottom: 1px solid #cbcbcd;
    position: relative;
}
.pricing-rectangle {
    width: 60px;
    height: 60px;
    border: 1px solid #272727;
    transform: rotate(45deg);
    left: 50%;
    margin-left: -30px;
    top: 29px;
    position: absolute;
    z-index: 1;
}
.pricing-rectangle-full {
    background: linear-gradient(90deg, #1f99af 50%,rgba(121,191,128,1) 100%);
    border: none;
}

.pricing-text {
    line-height: 70px;
    font-size: 17px;
    font-family: 'Lato';
    text-align: center;
    position: absolute;
    color: #272727;
    left: 50%;
    margin-left: -24px;
    top: 24px;
    text-transform: uppercase;
    z-index: 2;
}
.pricing-text-full {
    color: #fff;
    margin-left: -19px;
}

.pricing-price {
    background: #f9f9f9;
    text-align: center;
    font-size: 28px;
    padding: 15px;
    border-bottom: 1px solid #cbcbcd;
}
.pricing-price span {
    display: block;
    font-size: 15px;
    color: #999;
    margin-top: 3px;
}

.pricing-features {
    padding: 20px;
    font-size: 15px;
    line-height: 27px;
    text-align: center;
}

.pricing-button {
    width: 150px;
    color: #fff;
    font-family: 'Lato';
    background: linear-gradient(135deg, #1f99af 70%, #79bf80 100%);
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 10px;
    padding-right: 10px;
    border: none;
    margin: 0 auto;
    margin-top: 27px;
    display: block;
    line-height: 30px;
    font-size: 20px;
    text-align: center;
    transition: none;
}
.pricing-button:active,
.pricing-button:focus,
.pricing-button:hover {
    text-decoration: none;
    color: #fff;
    background: #1f99af;
}
.pricing-button.pricing-button-white {
    background: #fff;
    border: 1px solid #adadad;
    color: #000;
}
.pricing-button-full {
    margin-top: 0;
}

.btn-menu {
    margin-top: 11px;
    font-size: 14px;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    margin-left: 20px;
    border: 1px solid #fff;
}
.btn-menu:hover {
    background: #fff !important;
    color: #555 !important;
}
.navbar-fixed-top.animated .btn-menu, .navbar-fixed-top.animated-force .btn-menu {
    border: 1px solid #adadad;
    color: #000;
}
.navbar-fixed-top.animated .btn-menu:hover, .navbar-fixed-top.animated-force .btn-menu:hover {
    color: #fff !important;
    border: 1px solid #fff;
    background: #1f99af !important;
}

.service .icon-box {
    height: 80px;
}
.service .icon-box:before {
    top: 79px;
}
.service .icon-box .icon {
    background: linear-gradient(90deg, #1f99af 50%,rgba(121,191,128,1) 100%);
    border-radius: 0;
    top: 14px;
}

.form-group .btn-submit {
    background: linear-gradient(135deg, #1f99af 70%, #79bf80 100%);
}

.what-heading {
    padding-bottom: 10px;
}

#about h3 {
    margin-top: 0;
}

.what-focus {
    text-align: center;
}

.what-list {
    margin: 20px;
}

.what-list li {
    font-size: 20px;
    text-transform: uppercase;
}

.what-list .li-and {
    position: relative;
    font-size: 16px;
    color: #1f99af;
    text-transform: none;
    text-align: center;
    margin: 15px 0;
}

.what-list .li-and:before {
    content: "";
    position: absolute;
    z-index: 1;
    width: 200px;
    height: 1px;
    background: #1f99af;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.what-list .li-and span {
    background: #fff;
    display: inline-block;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.color-red {
    color: #e6567a;
}

.color-blue {
    color: #1f99af;
}

.semi-bold {
    font-weight: 500;
}

.white-link {
    color: #fff;
    text-decoration: underline;
}
.white-link:hover {
    color: #fff;
}

#pricing .get-started-big {
    font-size: 22px;
    padding: 10px 50px;
    transition: none;
}

#pricing .get-started-big:hover {
    background: #1f99af;
}



#blog {
    background: #f9f9f9;
    padding-top: 135px;
}

.article-content {
    max-width: 600px;
}

.blog-article .article-content {
    max-width: 100%;
}

.blog-article .article-content--small {
    max-width: 800px;
    margin: 0 auto;
}

.article-title {
    color: #222;
    margin-bottom: 20px;
    position: relative;
}
.article-title span,
.article-title a {
    color: #222;
    display: inline-block;
    position: relative;
}
.article-title a:hover {
    text-decoration: none;
}
.article-title span:before,
.article-title a:before {
    content: "";
    position: absolute;
    background: #222;
    width: 50%;
    height: 1px;
    bottom: -10px;
    left: 0;
}
.blog-article .article-title {
    text-align: center;
    margin-bottom: 50px;
}
.blog-article .article-title span:before,
.blog-article .article-title a:before {
    left: 50%;
    transform: translate(-50%);
    bottom: -20px;
}

#blog p {
    font-size: 18px;
    margin: 20px 0;
}

#blog ol {
    margin-top: 30px;
    font-size: 20px;
}
#blog ol.small,
#blog ul {
    padding-left: 50px;
    margin-top: 10px;
    list-style-type: initial;
    font-size: 16px;
    line-height: 26px;
}
#blog ol.small {
    list-style-type: decimal;
}

#blog img {
    max-width: 100%;
}

#blog .under-list {
    margin: 0 20px;
}
#blog .under-list img {
    max-width: 300px;
    margin: 10px;
}

#blog .image-right {
    float: right;
    width: 500px;
    margin-left: 20px;
    margin-top: 15px;
}

#blog .image-right--small {
    width: 250px;
}

#blog .image-left {
    float: left;
    width: 500px;
    margin-right: 20px;
    margin-top: 15px;
}

#blog .image-left--small {
    width: 250px;
}

.free-access {
    position: fixed;
    z-index: 10;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 50px;
    width: 100%;
    max-width: 1170px;
    background: #fff;
    font-size: 16px;
    text-align: center;
    box-shadow: 2px 6px 100px -9px #716a6a;
}
.free-access span {
    display: inline-block;
    position: relative;
    top: 5px;
}

.close-free-access {
    position: absolute;
    right: 13px;
    top: 13px;
    color: #000;
    text-decoration: none;
}
.close-free-access:focus,
.close-free-access:active,
.close-free-access:hover {
    color: #000;
    text-decoration: none;
}

.slogan {

}

h1 {
    margin: 0;
    text-indent: -9999px;
    line-height: 0;
}

#free-access {
    background: #efefef;
    text-align: center;
}

.garga:before {
	content: attr(data-user) "\0040";
}

.garga:after {
	content: attr(data-domain);
}

.g-recaptcha {
	margin-top: 20px;
}

.footer-social {
    font-size: 18px;
    position: relative;
    top: 2px;
    margin-left: 3px;
}

.section-link {
    display: block;
    position: relative;
    top: -60px;
}

.mt-0 {
  margin-top: 0px; }

.pt-0 {
  padding-top: 0px; }

.mb-0 {
  margin-bottom: 0px; }

.pb-0 {
  padding-bottom: 0px; }

.ml-0 {
  margin-left: 0px; }

.pl-0 {
  padding-left: 0px; }

.mr-0 {
  margin-right: 0px; }

.pr-0 {
  padding-right: 0px; }

.mt-5 {
  margin-top: 5px; }

.pt-5 {
  padding-top: 5px; }

.mb-5 {
  margin-bottom: 5px; }

.pb-5 {
  padding-bottom: 5px; }

.ml-5 {
  margin-left: 5px; }

.pl-5 {
  padding-left: 5px; }

.mr-5 {
  margin-right: 5px; }

.pr-5 {
  padding-right: 5px; }

.mt-10 {
  margin-top: 10px; }

.pt-10 {
  padding-top: 10px; }

.mb-10 {
  margin-bottom: 10px; }

.pb-10 {
  padding-bottom: 10px; }

.ml-10 {
  margin-left: 10px; }

.pl-10 {
  padding-left: 10px; }

.mr-10 {
  margin-right: 10px; }

.pr-10 {
  padding-right: 10px; }

.mt-15 {
  margin-top: 15px; }

.pt-15 {
  padding-top: 15px; }

.mb-15 {
  margin-bottom: 15px; }

.pb-15 {
  padding-bottom: 15px; }

.ml-15 {
  margin-left: 15px; }

.pl-15 {
  padding-left: 15px; }

.mr-15 {
  margin-right: 15px; }

.pr-15 {
  padding-right: 15px; }

.mt-20 {
  margin-top: 20px; }

.pt-20 {
  padding-top: 20px; }

.mb-20 {
  margin-bottom: 20px; }

.pb-20 {
  padding-bottom: 20px; }

.ml-20 {
  margin-left: 20px; }

.pl-20 {
  padding-left: 20px; }

.mr-20 {
  margin-right: 20px; }

.pr-20 {
  padding-right: 20px; }

.mt-25 {
  margin-top: 25px; }

.pt-25 {
  padding-top: 25px; }

.mb-25 {
  margin-bottom: 25px; }

.pb-25 {
  padding-bottom: 25px; }

.ml-25 {
  margin-left: 25px; }

.pl-25 {
  padding-left: 25px; }

.mr-25 {
  margin-right: 25px; }

.pr-25 {
  padding-right: 25px; }

.mt-30 {
  margin-top: 30px; }

.pt-30 {
  padding-top: 30px; }

.mb-30 {
  margin-bottom: 30px; }

.pb-30 {
  padding-bottom: 30px; }

.ml-30 {
  margin-left: 30px; }

.pl-30 {
  padding-left: 30px; }

.mr-30 {
  margin-right: 30px; }

.pr-30 {
  padding-right: 30px; }

.mt-35 {
  margin-top: 35px; }

.pt-35 {
  padding-top: 35px; }

.mb-35 {
  margin-bottom: 35px; }

.pb-35 {
  padding-bottom: 35px; }

.ml-35 {
  margin-left: 35px; }

.pl-35 {
  padding-left: 35px; }

.mr-35 {
  margin-right: 35px; }

.pr-35 {
  padding-right: 35px; }

.mt-40 {
  margin-top: 40px; }

.pt-40 {
  padding-top: 40px; }

.mb-40 {
  margin-bottom: 40px; }

.pb-40 {
  padding-bottom: 40px; }

.ml-40 {
  margin-left: 40px; }

.pl-40 {
  padding-left: 40px; }

.mr-40 {
  margin-right: 40px; }

.pr-40 {
  padding-right: 40px; }

.mt-45 {
  margin-top: 45px; }

.pt-45 {
  padding-top: 45px; }

.mb-45 {
  margin-bottom: 45px; }

.pb-45 {
  padding-bottom: 45px; }

.ml-45 {
  margin-left: 45px; }

.pl-45 {
  padding-left: 45px; }

.mr-45 {
  margin-right: 45px; }

.pr-45 {
  padding-right: 45px; }

.mt-50 {
  margin-top: 50px; }

.pt-50 {
  padding-top: 50px; }

.mb-50 {
  margin-bottom: 50px; }

.pb-50 {
  padding-bottom: 50px; }

.ml-50 {
  margin-left: 50px; }

.pl-50 {
  padding-left: 50px; }

.mr-50 {
  margin-right: 50px; }

.pr-50 {
  padding-right: 50px; }

.mt-55 {
  margin-top: 55px; }

.pt-55 {
  padding-top: 55px; }

.mb-55 {
  margin-bottom: 55px; }

.pb-55 {
  padding-bottom: 55px; }

.ml-55 {
  margin-left: 55px; }

.pl-55 {
  padding-left: 55px; }

.mr-55 {
  margin-right: 55px; }

.pr-55 {
  padding-right: 55px; }

.mt-60 {
  margin-top: 60px; }

.pt-60 {
  padding-top: 60px; }

.mb-60 {
  margin-bottom: 60px; }

.pb-60 {
  padding-bottom: 60px; }

.ml-60 {
  margin-left: 60px; }

.pl-60 {
  padding-left: 60px; }

.mr-60 {
  margin-right: 60px; }

.pr-60 {
  padding-right: 60px; }

.mt-65 {
  margin-top: 65px; }

.pt-65 {
  padding-top: 65px; }

.mb-65 {
  margin-bottom: 65px; }

.pb-65 {
  padding-bottom: 65px; }

.ml-65 {
  margin-left: 65px; }

.pl-65 {
  padding-left: 65px; }

.mr-65 {
  margin-right: 65px; }

.pr-65 {
  padding-right: 65px; }

.mt-70 {
  margin-top: 70px; }

.pt-70 {
  padding-top: 70px; }

.mb-70 {
  margin-bottom: 70px; }

.pb-70 {
  padding-bottom: 70px; }

.ml-70 {
  margin-left: 70px; }

.pl-70 {
  padding-left: 70px; }

.mr-70 {
  margin-right: 70px; }

.pr-70 {
  padding-right: 70px; }

.mt-75 {
  margin-top: 75px; }

.pt-75 {
  padding-top: 75px; }

.mb-75 {
  margin-bottom: 75px; }

.pb-75 {
  padding-bottom: 75px; }

.ml-75 {
  margin-left: 75px; }

.pl-75 {
  padding-left: 75px; }

.mr-75 {
  margin-right: 75px; }

.pr-75 {
  padding-right: 75px; }

.mt-80 {
  margin-top: 80px; }

.pt-80 {
  padding-top: 80px; }

.mb-80 {
  margin-bottom: 80px; }

.pb-80 {
  padding-bottom: 80px; }

.ml-80 {
  margin-left: 80px; }

.pl-80 {
  padding-left: 80px; }

.mr-80 {
  margin-right: 80px; }

.pr-80 {
  padding-right: 80px; }

.mt-85 {
  margin-top: 85px; }

.pt-85 {
  padding-top: 85px; }

.mb-85 {
  margin-bottom: 85px; }

.pb-85 {
  padding-bottom: 85px; }

.ml-85 {
  margin-left: 85px; }

.pl-85 {
  padding-left: 85px; }

.mr-85 {
  margin-right: 85px; }

.pr-85 {
  padding-right: 85px; }

.mt-90 {
  margin-top: 90px; }

.pt-90 {
  padding-top: 90px; }

.mb-90 {
  margin-bottom: 90px; }

.pb-90 {
  padding-bottom: 90px; }

.ml-90 {
  margin-left: 90px; }

.pl-90 {
  padding-left: 90px; }

.mr-90 {
  margin-right: 90px; }

.pr-90 {
  padding-right: 90px; }

.mt-95 {
  margin-top: 95px; }

.pt-95 {
  padding-top: 95px; }

.mb-95 {
  margin-bottom: 95px; }

.pb-95 {
  padding-bottom: 95px; }

.ml-95 {
  margin-left: 95px; }

.pl-95 {
  padding-left: 95px; }

.mr-95 {
  margin-right: 95px; }

.pr-95 {
  padding-right: 95px; }

.mt-100 {
  margin-top: 100px; }

.pt-100 {
  padding-top: 100px; }

.mb-100 {
  margin-bottom: 100px; }

.pb-100 {
  padding-bottom: 100px; }

.ml-100 {
  margin-left: 100px; }

.pl-100 {
  padding-left: 100px; }

.mr-100 {
  margin-right: 100px; }

.pr-100 {
  padding-right: 100px; }

.m-0 {
  margin: 0px; }

.p-0 {
  padding: 0px; }

.m-5 {
  margin: 5px; }

.p-5 {
  padding: 5px; }

.m-10 {
  margin: 10px; }

.p-10 {
  padding: 10px; }

.m-15 {
  margin: 15px; }

.p-15 {
  padding: 15px; }

.m-20 {
  margin: 20px; }

.p-20 {
  padding: 20px; }

.m-25 {
  margin: 25px; }

.p-25 {
  padding: 25px; }

.m-30 {
  margin: 30px; }

.p-30 {
  padding: 30px; }

.m-35 {
  margin: 35px; }

.p-35 {
  padding: 35px; }

.m-40 {
  margin: 40px; }

.p-40 {
  padding: 40px; }

.m-45 {
  margin: 45px; }

.p-45 {
  padding: 45px; }

.m-50 {
  margin: 50px; }

.p-50 {
  padding: 50px; }

.m-55 {
  margin: 55px; }

.p-55 {
  padding: 55px; }

.m-60 {
  margin: 60px; }

.p-60 {
  padding: 60px; }

.m-65 {
  margin: 65px; }

.p-65 {
  padding: 65px; }

.m-70 {
  margin: 70px; }

.p-70 {
  padding: 70px; }

.m-75 {
  margin: 75px; }

.p-75 {
  padding: 75px; }

.m-80 {
  margin: 80px; }

.p-80 {
  padding: 80px; }

.m-85 {
  margin: 85px; }

.p-85 {
  padding: 85px; }

.m-90 {
  margin: 90px; }

.p-90 {
  padding: 90px; }

.m-95 {
  margin: 95px; }

.p-95 {
  padding: 95px; }

.m-100 {
  margin: 100px; }

.p-100 {
  padding: 100px; }

.font-14 {
  font-size: 14px; }

.font-16 {
  font-size: 16px; }

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

.font-20 {
  font-size: 20px; }

.font-22 {
  font-size: 22px; }

.font-24 {
  font-size: 24px; }

.font-26 {
  font-size: 26px; }

.font-28 {
  font-size: 28px; }

.font-30 {
  font-size: 30px; }

.font-32 {
  font-size: 32px; }

.font-34 {
  font-size: 34px; }

.font-36 {
  font-size: 36px; }

.font-40 {
  font-size: 40px; }

.m-0 {
  margin: 0; }

.p-0 {
  padding: 0; }

.overflow-hidden {
  overflow: hidden; }

.hidden {
  display: none; }

.block {
  display: block;
  width: 100%;
  height: 100%; }

.inline-block {
  display: inline-block; }

.w100 {
  width: 100%; }

.cursor-pointer {
  cursor: pointer; }

.border-top-none {
  border-top: none !important; }

.border-bottom-none {
  border-bottom: none !important; }

.border-left-none {
  border-left: none !important; }

.border-right-none {
  border-right: none !important; }

.float {
    float: left;
}
.float-right {
    float: right;
}