/* Base */
/* Fonts */
/* colors */
/* Sizes */
body {
  font-family: "Rubik", sans-serif;
  background: #f9f9f9;
}

body.home {
  background: #fdfdfd;
}

.container {
  width: 100%;
  max-width: 1020px;
  padding: 0 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
}

.subtitle {
  text-align: center;
  font-weight: 500;
  font-size: 50px;
  line-height: 70px;
}

.clearfix::before,
.clearfix::after {
  content: '';
  display: table;
}

.clearfix::after {
  clear: both;
}

.btn {
  background: #039;
  display: inline-block;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
  min-width: 270px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20.5px 40px;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 2.3px;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.btn:hover {
  background: #002266;
}

.btn.blue {
  background: #00aaff;
}

.btn.blue:hover {
  background: #0077b3;
}

.btn-sm {
  padding: 12.5px 20px;
  border-radius: 20px;
  min-width: auto;
  font-size: 13px;
  background-color: transparent;
  color: #00aaff;
  border: 1px solid #00aaff;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.btn-sm:hover {
  color: #fff;
  background-color: #00aaff;
}

.more-info_btns {
  text-align: center;
}

.more-info_btns .btn {
  min-width: auto;
  margin: 10px;
}

@media only screen and (max-width: 992px) {
  .btn {
    font-size: 13px;
    padding: 11.5px 25px;
    min-width: 210px;
  }
  .subtitle {
    font-size: 35px;
    line-height: 40px;
  }
}

@media only screen and (max-width: 600px) {
  .subtitle {
    font-size: 25px;
    line-height: 30px;
  }
}

/* Parts */
.header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  padding: 30px 0;
}

.header .container {
  max-width: 1400px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header_mnu {
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin-left: auto;
}

.header_mnu li {
  display: inline-block;
  padding: 0 25px;
}

.header_mnu li.current-menu-item a {
  color: #039;
}

.header_mnu li a {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

.header_mnu li a:hover {
  color: #039;
}

.header_link {
  padding: 12px 25px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none;
  background: #039;
  border-radius: 20px;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.header_link:hover {
  background: #002266;
}

.mobile-toggle {
  display: none;
  width: 25px;
  height: 17px;
  right: 15px;
  margin-top: 10px;
  cursor: pointer;
}

.mobile-toggle span {
  position: relative;
  display: block;
  top: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border-radius: 2px;
}

.mobile-toggle span:before, .mobile-toggle span:after {
  content: "";
  position: absolute;
  left: 0;
  top: -8px;
  width: 100%;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border-radius: 2px;
}

.mobile-toggle span:after {
  top: 8px;
}

.mobile-toggle.on span {
  background-color: transparent;
}

.mobile-toggle.on span:before {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
      -ms-transform: rotate(45deg) translate(5px, 5px);
          transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.on span:after {
  -webkit-transform: rotate(-45deg) translate(6px, -6px);
      -ms-transform: rotate(-45deg) translate(6px, -6px);
          transform: rotate(-45deg) translate(6px, -6px);
}

@media only screen and (max-width: 1200px) {
  .header_mnu li {
    padding: 0 15px;
  }
}

@media only screen and (max-width: 1024px) {
  .header_logo {
    max-width: 200px;
  }
  .header_logo img {
    display: block;
    width: 100%;
    height: auto;
  }
}

@media only screen and (max-width: 992px) {
  .mobile-toggle {
    display: block;
  }
  .header .container {
    position: relative;
  }
  .header_mnu {
    position: absolute;
    top: 50px;
    right: 15px;
    display: none;
  }
  .header_mnu li {
    display: block;
    padding: 0;
  }
  .header_mnu li.current-menu-item a {
    color: #001a4d;
  }
  .header_mnu li a {
    background-color: white;
    color: #039;
    padding: 5px 10px;
    display: block;
    width: 300px;
    border-bottom: 1px solid rgba(0, 170, 255, 0.2);
  }
  .header_mnu li a:hover {
    background-color: #00aaff;
    color: #fff;
  }
}

@media only screen and (max-width: 600px) {
  .header_link {
    display: none;
  }
  .header {
    padding: 15px 0;
  }
  .header_mnu {
    width: 100%;
    right: 0;
  }
  .header_mnu li a {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.hero {
  background: #f7f7f8 url(../img/hero-bg.jpg) no-repeat center bottom;
  background-size: cover;
  min-height: 430px;
}

.home .hero {
  min-height: 685px;
}

.hero {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero-title {
  font-size: 50px;
  line-height: 70px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.hero-p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.45px;
  margin: 0;
  padding: 20px 0 35px 0;
}

@media only screen and (max-width: 992px) {
  .hero-title {
    font-size: 40px;
    line-height: 50px;
  }
  .hero,
  .home .hero {
    min-height: 450px;
  }
  .hero-p {
    font-size: 16px;
    padding: 15px 0 20px 0;
  }
}

@media only screen and (max-width: 600px) {
  .hero-title {
    font-size: 28px;
    line-height: 38px;
  }
  .hero,
  .home .hero {
    min-height: 350px;
    padding-top: 70px;
    padding-bottom: 70px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .hero {
    min-height: 200px;
  }
  .hero-p {
    font-size: 16px;
    padding: 15px 0 20px 0;
  }
}

/* Footer */
.footer {
  background: #0d111e;
  padding: 70px 0;
}

.footer .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

div.footer_text p {
  color:#fff;
  font-size:12px;
}

.footer_logo {
  display: block;
  max-width: 180px;
  width: 100%;
}

.footer_logo img {
  display: block;
  width: 100%;
}

.footer_social {
  padding-top: 30px;
}

.footer_social-item {
  width: 38px;
  height: 38px;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  text-align: center;
  line-height: 38px;
  font-size: 20px;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
  margin: 0 5px;
}

.footer_social-item-ln {
  background-color: #0077b5;
}

.footer_social-item-ln:hover {
  background-color: #004569;
}

.footer_social-item-tw {
  background-color: #0af;
}

.footer_social-item-tw:hover {
  background-color: #0077b3;
}

.footer_title {
  font-size: 18px;
  font-weight: 500;
  color: #666;
  line-height: 40px;
  margin: 0;
}

.footer_sec ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.footer_sec ul li a {
  color: #fff;
  text-decoration: none;
  line-height: 30px;
  font-weight: 300;
}

.footer_sec ul li a:hover {
  text-decoration: underline;
}

.footer_mail {
  color: #fff;
  font-size: 16px;
  line-height: 30px;
  font-weight: 300;
  text-decoration: none;
}

.footer_mail:hover {
  text-decoration: underline;
}

.footer_mail:before {
  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;
  content: "\f0e0";
  padding-right: 5px;
}

.footer_action {
  padding-top: 40px;
}

.footer_action p {
  text-align: center;
  color: rgba(255, 255, 255, 0.2);
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
}

@media only screen and (max-width: 768px) {
  .footer {
    padding: 30px 0;
  }
  .footer .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer_social {
    text-align: center;
  }
  .footer_sec {
    text-align: center;
  }
  .footer_sec ul {
    text-align: center;
  }
}

.nf-form-fields-required,
.nf-error-required-error,
.nf-error-msg {
  display: none;
}

.nf-response-msg {
  text-align: center;
  font-size: 18px;
  color: #039;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.get-in-touch .container {
  max-width: 600px;
}

.get-in-touch form {
  width: 100%;
}

.get-in-touch .nf-error input:not([type="button"]),
.get-in-touch .nf-error textarea {
  border: 1px solid #E80000;
}

.get-in-touch input:not([type="button"]),
.get-in-touch textarea {
  width: 100%;
  resize: none;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 30px;
  height: 60px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none !important;
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  padding-left: 30px;
  background: transparent;
}

.get-in-touch input:not([type="button"]):hover, .get-in-touch input:not([type="button"]):focus,
.get-in-touch textarea:hover,
.get-in-touch textarea:focus {
  border-color: #00aaff;
}

.get-in-touch textarea {
  height: 140px;
  padding-top: 20px;
}

.get-in-touch input[type="button"] {
  border: 0;
  width: 100% !important;
  outline: none !important;
}

@media only screen and (max-width: 992px) {
  .get-in-touch form {
    width: 100%;
  }
  .get-in-touch .nf-error input:not([type="button"]),
  .get-in-touch .nf-error textarea {
    border: 1px solid #E80000;
  }
  .get-in-touch input:not([type="button"]),
  .get-in-touch textarea {
    font-size: 14px;
    padding-left: 10px;
    height: 40px;
  }
  .get-in-touch textarea {
    height: 150px;
    padding-top: 15px;
    border-radius: 20px;
  }
}

.home-description {
  background: #f9f9f9;
  position: relative;
  min-height: 275px;
}

.home-description:after {
  background: inherit;
  bottom: 0;
  content: '';
  display: block;
  height: 50%;
  left: 0;
  position: absolute;
  right: 0;
  -webkit-transform: skewY(-3deg);
      -ms-transform: skewY(-3deg);
          transform: skewY(-3deg);
  -webkit-transform-origin: 100%;
      -ms-transform-origin: 100%;
          transform-origin: 100%;
  z-index: -1;
}

.home-description_txt {
  max-width: 650px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 131px 0px rgba(0, 51, 153, 0.2);
          box-shadow: 0px 0px 131px 0px rgba(0, 51, 153, 0.2);
  padding: 38px 80px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: -100px;
}

.home-description_txt p {
  color: #666;
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  letter-spacing: 0.35px;
}

/* Features */
.home-feature {
  width: 100%;
  padding: 85px 0;
  position: relative;
}

.home-feature .container * {
  z-index: 9999;
}

.home-feature:nth-child(odd) .home-feature_img {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

.home-feature .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.home-feature:first-child {
  padding-top: 0;
}

.home-feature:nth-child(4) {
  background: #f9f9f9;
}

.home-feature:nth-child(4):before {
  background: inherit;
  top: -180px;
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  -webkit-transform: skewY(3deg);
      -ms-transform: skewY(3deg);
          transform: skewY(3deg);
  -webkit-transform-origin: 100%;
      -ms-transform-origin: 100%;
          transform-origin: 100%;
  z-index: -1;
}

.home-feature:last-child {
  background: #f9f9f9;
}

.home-feature_img, .home-feature_txt {
  width: 48%;
}

#homeIcn1,
#homeIcn3 {
  -webkit-transform: translate3d(520px, 0, 0);
          transform: translate3d(520px, 0, 0);
  opacity: 0;
  -webkit-transition: all 0.7s cubic-bezier(0.01, -0.01, 0.24, 1.37);
  transition: all 0.7s cubic-bezier(0.01, -0.01, 0.24, 1.37);
}

#homeIcn1.on,
#homeIcn3.on {
  -webkit-transform: translate3d(0, 0, 0) !important;
          transform: translate3d(0, 0, 0) !important;
  opacity: 1 !important;
}

#homeIcn2,
#homeIcn4 {
  -webkit-transform: translate3d(-520px, 0, 0);
          transform: translate3d(-520px, 0, 0);
  opacity: 0;
  -webkit-transition: all 0.7s cubic-bezier(0.01, -0.01, 0.24, 1.37);
  transition: all 0.7s cubic-bezier(0.01, -0.01, 0.24, 1.37);
}

#homeIcn2.on,
#homeIcn4.on {
  -webkit-transform: translate3d(0, 0, 0) !important;
          transform: translate3d(0, 0, 0) !important;
  opacity: 1 !important;
}

.home-feature_img {
  text-align: center;
  overflow: hidden;
}

.home-feature_img img {
  display: inline-block;
}

.home-feature_txt h3 {
  margin: 0;
  color: #039;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.3px;
  margin-bottom: 15px;
}

.home-feature_txt p {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.1px;
  margin: 0;
  margin-bottom: 20px;
}

.home-feature_txt a {
  text-decoration: none;
  color: #00aaff;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

.home-feature_txt a:hover {
  color: #004de6;
}

.home-features {
  position: relative;
}

.home-feature_line {
  position: absolute;
  z-index: 9999;
}

.home-feature_line-1 {
  left: 0;
  right: 0;
  margin: auto;
  top: 50px;
  z-index: 999;
}

.home-feature_line-1 img {
  margin: auto;
  left: 0;
  right: 0;
  display: block;
  z-index: -1;
}

/* Banner */
.home-banner {
  background: url(../img/banner-bg.jpg) no-repeat center top;
  background-size: cover;
  padding: 120px 0;
}

.home-banner_content {
  max-width: 850px;
}

.home-banner * {
  color: #fff;
}

.home-banner h2 {
  font-weight: 500;
  font-size: 50px;
  line-height: 70px;
  margin-top: 0;
}

.home-banner h3 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
}

.home-banner ul li,
.home-banner ol li {
  padding-bottom: 20px;
}

.home-banner ul li,
.home-banner p,
.home-banner ol li {
  font-weight: 300;
  font-size: 15px;
  line-height: 22px;
}

.btn-sec {
  text-align: center;
  position: relative;
  padding: 60px 0;
  padding-bottom: 0px;
}

.btn-sec_gray {
  background: #f9f9f9;
}

.btn-sec_gray:before {
  background: inherit;
  top: 0;
  content: '';
  display: block;
  height: 50%;
  left: 0;
  position: absolute;
  right: 0;
  -webkit-transform: skewY(1.5deg);
      -ms-transform: skewY(1.5deg);
          transform: skewY(1.5deg);
  -webkit-transform-origin: 100%;
      -ms-transform-origin: 100%;
          transform-origin: 100%;
  z-index: 1;
}

.btn-sec_gray:after {
  background: inherit;
  bottom: -40px;
  content: '';
  display: block;
  height: 50%;
  left: 0;
  position: absolute;
  right: 0;
  -webkit-transform: skewY(1.5deg);
      -ms-transform: skewY(1.5deg);
          transform: skewY(1.5deg);
  -webkit-transform-origin: 100%;
      -ms-transform-origin: 100%;
          transform-origin: 100%;
  z-index: 1;
}

.btn-sec .btn {
  position: relative;
  z-index: 2;
}

.btn-sec p {
  font-weight: 500;
  color: rgba(0, 0, 0, 0.3);
  font-size: 20px;
  line-height: 32px;
  margin: 0;
  padding: 10px 0;
  z-index: 2;
  position: relative;
}

/* HIW */
.how-it-works {
  padding-top: 20px;
}

.hiw-item {
  padding-left: 135px;
  background-size: 80px auto !important;
  padding-bottom: 20px;
}

.hiw-item_title {
  color: #039;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.hiw-item_content * {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
}

/* Testimonials */
.testimonials_wrap {
  max-width: 100% !important;
}

.testimonials_wrapper {
  width: 100%;
}

.testimonials {
  background: #f9f9f9;
  position: relative;
  margin-top: 30px;
}

.testimonials .btn-sec {
  padding-top: 20px;
}

.testimonials .subtitle {
  position: relative;
  z-index: 2;
  margin-top: 20px;
}

.testimonials:before {
  background: inherit;
  top: -50px;
  content: '';
  display: block;
  height: 10%;
  left: 0;
  position: absolute;
  right: 0;
  -webkit-transform: skewY(-1.5deg);
      -ms-transform: skewY(-1.5deg);
          transform: skewY(-1.5deg);
  -webkit-transform-origin: 100%;
      -ms-transform-origin: 100%;
          transform-origin: 100%;
  z-index: 1;
}

.testimonials_slide {
  margin: 0 50px;
  background: #fff;
  outline: none !important;
  padding: 40px 70px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}

.testimonials_slide.slick-active {
  opacity: 1;
}

.testimonials_slide-logo {
  max-width: 143px;
  margin: 0 auto;
}

.testimonials_slide-logo img {
  width: 100%;
  height: auto;
}

.testimonials_slide p {
  color: #666;
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  margin: 30px 0;
}

.testimonials_slide-author img {
  display: block;
  margin: 0 auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.testimonials_slide-name {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  padding-top: 20px;
}

.testimonials_slide-post {
  color: #666;
  font-weight: 400;
  font-size: 16px;
}

.testimonials_wrap {
  position: relative;
}

.testimonials_wrap .slick-arrow {
  border: 0;
  font-size: 0;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 0;
  outline: none;
  z-index: 100;
}

.testimonials_wrap .slick-arrow:before {
  display: inline-block;
  font: normal normal normal 50px/1 FontAwesome !important;
  font-size: inherit;
  font-weight: 300;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f104";
  color: rgba(0, 0, 0, 0.2);
}

.testimonials_wrap .slick-arrow:hover:before {
  color: rgba(0, 0, 0, 0.5);
}

.testimonials_wrap .slick-arrow.slick-next {
  right: 0;
  left: auto;
}

.testimonials_wrap .slick-arrow.slick-next:before {
  content: "\f105";
}

/* END Slider */
.more-info {
  background: #f9f9f9;
  padding: 50px 0 100px 0;
  text-align: center;
}

.more-info .subtitle {
  margin-bottom: 0;
}

.more-info p {
  color: #666;
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
}

.more-info p a {
  color: #00aaff;
}

@media only screen and (max-width: 768px) {
  .home-description_txt {
    position: relative;
    top: -50px;
    padding: 15px 20px;
  }
  .home-description_txt p {
    font-size: 16px;
    line-height: 25px;
  }
  .home-feature_line {
    display: none;
  }
  .home-description {
    min-height: 170px;
  }
  #homeIcn1,
  #homeIcn2,
  #homeIcn3,
  #homeIcn4 {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    opacity: 1;
  }
  .home-feature .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home-feature {
    padding: 30px 0;
    text-align: center;
  }
  .home-feature_img, .home-feature_txt {
    width: 100%;
  }
  .home-feature_left .home-feature_img {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
  .home-feature_img {
    padding-bottom: 20px;
  }
  .home-feature_img img {
    max-width: 100px;
  }
  .home-feature_txt p {
    padding-top: 10px;
    font-size: 14px;
    padding-bottom: 10px;
  }
  .home-feature_txt h3 {
    font-size: 14px;
  }
  .home-banner {
    padding: 50px 0;
  }
  .home-banner h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .home-banner h3 {
    font-size: 16px;
    line-height: 24px;
  }
  .home-banner ul li, .home-banner p, .home-banner ol li {
    font-size: 14px;
    line-height: 20px;
  }
  .home-banner ul li, .home-banner ol li {
    padding-bottom: 10px;
  }
}

@media only screen and (max-width: 600px) {
  .home-banner h2 {
    font-size: 20px;
    line-height: 25px;
  }
  .btn-sec p {
    font-size: 16px;
    line-height: 20px;
  }
  .hiw-item {
    padding-left: 0;
    padding-top: 80px;
    background-position: top  center !important;
    background-size: 70px auto !important;
  }
  .hiw-item_title {
    text-align: center;
  }
  .testimonials_slide {
    padding: 20px;
    margin: 0 auto;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .testimonials_slide.slick-current {
    opacity: 1;
  }
  .testimonials_single-wrap .testimonials_slide {
    opacity: 1 !important;
  }
  .testimonials_slide-logo {
    max-width: 100px;
  }
  .testimonials_slide p {
    font-size: 14px;
    line-height: 20px;
    margin: 15px 0;
  }
  .testimonials_slide-author img {
    width: 70px;
    height: 70px;
  }
  .more-info p {
    font-size: 14px;
    line-height: 22px;
  }
  .more-info {
    padding: 20px 0 40px 0;
  }
}

/* Blog */
.blog-wrap .container {
  margin-top: -110px;
}

.blog-wrap_main {
  width: -webkit-calc(100% - 410px);
  width: calc(100% - 410px);
  float: left;
}

.blog-wrap_sepatate {
  float: right;
  width: 330px;
}

.post {
  border-radius: 3px;
  -webkit-box-shadow: 0 10px 29px rgba(0, 25, 152, 0.17);
          box-shadow: 0 10px 29px rgba(0, 25, 152, 0.17);
  background: #fff;
  width: 100%;
  margin-bottom: 30px;
  display: block;
  text-decoration: none;
  -webkit-transition: -webkit-box-shadow 0.2s ease-in-out;
  transition: -webkit-box-shadow 0.2s ease-in-out;
  transition: box-shadow 0.2s ease-in-out;
  transition: box-shadow 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
}

.post:hover {
  -webkit-box-shadow: 0 5px 49px rgba(0, 25, 152, 0.45);
          box-shadow: 0 5px 49px rgba(0, 25, 152, 0.45);
}

.post_img {
  border-radius: 3px 3px 0 0;
  height: 100px;
  width: 100%;
  padding-top:10px;
}

.post_main {
  padding: 15px 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 140px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.post_main p,
.post_main h2 {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #000;
  margin: 0;
}

.post_info {
  margin-top: auto;
  position: relative;
  padding-top: 10px;
  margin-top: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.post_info:before {
  width: 52px;
  height: 2px;
  background: rgba(0, 0, 0, 0.2);
  content: '';
  position: absolute;
  top: 0;
}

.post_info-cat {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 30px;
  padding: 5px 12px;
}

.post_date {
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}

.post_sm {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.post_sm .post_img {
  height: 165px;
  min-width: 195px;
  width: 195px;
  border-radius: 3px 0 0 3px;
}

.post_sm .post_main {
  min-height: 165px;
  padding: 25px;
}

.post_sm .post_main h2 {
  font-weight: 300;
}

.post_sm .post_info {
  padding-top: 15px;
}

.post_video {
  border-radius: 3px;
}

.post_video .post_img {
  height: 220px;
  background: #0d111e;
  position: relative;
  border-radius: 3px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.post_video .post_img h2,
.post_video .post_img p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  margin-top: auto;
}

.post_video .post_img:after {
  width: 60px;
  height: 60px;
  background: url(../img/video-icn.png) no-repeat center center;
  content: '';
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.post_video .post_main {
  background: #990000;
  display: block;
  height: auto;
  min-height: auto;
  border-radius: 0 0 3px 3px;
}

.post_video .post_main h2 {
  color: #fff;
  font-weight: 300;
}

.blog-wrap_sepatate {
  padding-top: 150px;
}

.post_separate {
  margin-bottom: 40px;
}

.post_separate h2 {
  color: #039;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.4px;
  margin: 0;
}

.post_separate p {
  font-size: 14px;
  margin: 5px 0;
}

.post_separate .permalink {
  font-size: 16px;
  letter-spacing: 0.5px;
  color: #00aaff;
  text-decoration: none;
  font-weight: 700;
}

.post_separate .permalink:hover {
  text-decoration: underline;
}

/* Blog inside */
.post_thumb {
  margin-top: -160px;
  margin-bottom: 30px;
}

.post_thumb img {
  -webkit-box-shadow: 0 10px 29px rgba(0, 25, 152, 0.17);
          box-shadow: 0 10px 29px rgba(0, 25, 152, 0.17);
  border-radius: 3px;
}

.blog-inside {
  padding-top: 30px;
}

.blog-inside .container {
  padding-left: 60px;
}

.blog-inside p,
.blog-inside ul,
.blog-inside ol {
  font-size: 16px;
  line-height: 31px;
  font-weight: 400;
  max-width: 500px;
  letter-spacing: 0.1px;
}

.blog-inside a {
  color: #0072ff;
  text-decoration: none;
}

.blog-inside a:hover {
  text-decoration: underline;
}

.blog-inside p img {
  max-width: 580px;
  height: auto;
  margin-left: -60px;
}

.blog-inside blockquote {
  max-width: 650px;
  margin-left: -60px;
}

.blog-inside blockquote p {
  max-width: 100%;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  color: #666;
  letter-spacing: 0.4px;
}

.blog-inside .note {
  margin: auto;
  border: 0;
  text-align: left;
  float: right;
  margin-right: 0px;
  padding-top: 8px;
  padding-left: 1.5rem;
  max-width: 310px;
  font-size: 0.85rem;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.3px;
  font-style: italic;
  color: #666;
  -webkit-box-shadow: 0 10px 49px rgba(0, 25, 152, 0.17);
          box-shadow: 0 10px 49px rgba(0, 25, 152, 0.17);
  padding: 15px;
}

.blog-inside .note p:first-child {
  margin-top: 0;
}

.blog-inside .note ul,
.blog-inside .note ol,
.blog-inside .note p {
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.3px;
}

.blog-inside .note ul {
  padding-left: 0;
  list-style-type: none;
  padding-left: 5px;
}

.blog-inside .note ul li {
  font-weight: 300;
  padding: 5px 0;
}

.blog-inside .note ul li:before {
  margin-top: -1px;
  margin-right: 5px;
  width: 14px;
  height: 1px;
  background: #00b2ff;
  content: '';
  display: inline-block;
  vertical-align: middle;
}

.doc-btn {
  max-width: 500px;
  text-align: center;
  padding: 20px 0;
}

.doc-cover {
  margin: 0 auto;
  margin-top: -180px;
  padding-bottom: 20px;
}

.doc-cover img {
  margin: 0 auto;
  display: block;
  max-width: 100%;
}

/* Pagination */
.blog-posts_pagination {
  padding: 30px 0;
}

.blog-posts_pagination ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin: 0 auto;
  text-align: center;
}

.blog-posts_pagination ul li {
  display: inline-block;
  margin: 10px 8px;
  vertical-align: top;
}

.blog-posts_pagination ul li a {
  display: inline-block;
  height: 50px;
  width: 50px;
  line-height: 48px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 30px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.blog-posts_pagination ul li.blog-pagination_arrow a {
  font-size: 35px;
}

.blog-posts_pagination ul li.active a, .blog-posts_pagination ul li:hover a {
  color: #fff;
  background: #039;
  border-color: #039;
}

@media only screen and (max-width: 992px) {
  .post_img {
    height: 150px;
  }
  .post_main {
    padding: 15px;
    min-height: auto;
  }
  .post_main p,
  .post_main h2 {
    font-size: 14px;
    line-height: 24px;
  }
  .post_info {
    padding-top: 10px;
    margin-top: 10px;
  }
}

.team_card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 580px;
  width: 100%;
  margin: 40px 0;
  margin-left: -60px;
  background: #fff;
  -webkit-box-shadow: 0 10px 49px rgba(0, 25, 152, 0.17);
          box-shadow: 0 10px 49px rgba(0, 25, 152, 0.17);
  padding: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.team_card-person {
  text-align: center;
  padding-right: 10%;
}

.team_card-person img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
}

.team_card-person h4 {
  margin: 0;
  font-size: 18px;
  padding-top: 10px;
  padding-bottom: 0px;
}

.team_card-person p {
  color: #666;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.team_card-txt {
  color: #666;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

@media only screen and (max-width: 1024px) {
  .blog-inside .note {
    float: none;
    width: 100%;
    margin: 0;
    padding: 0;
    max-width: 650px;
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .blog-inside .container {
    padding: 0 15px;
  }
  .blog-inside p img {
    max-width: 100%;
  }
  .blog-inside p img,
  .blog-inside blockquote,
  .team_card {
    margin-left: 0;
  }
}

@media only screen and (max-width: 992px) {
  .post_separate h2,
  .post_separate p,
  .post_separate .permalink {
    font-size: 14px;
    line-height: 22px;
  }
  .blog-wrap_main {
    width: -webkit-calc(100% - 370px);
    width: calc(100% - 370px);
  }
}

@media only screen and (max-width: 768px) {
  .blog-inside p, .blog-inside ul, .blog-inside ol,
  .blog-inside blockquote p {
    font-size: 14px;
    line-height: 26px;
  }
  .blog-wrap_main,
  .blog-wrap_sepatate {
    float: none;
    width: 100%;
  }
  .blog-wrap_sepatate {
    padding-top: 20px;
  }
  .blog-posts_pagination ul li {
    margin: 5px;
  }
  .blog-posts_pagination ul li a {
    height: 40px;
    width: 40px;
    line-height: 38px;
    font-size: 12px;
  }
  .blog-posts_pagination {
    padding: 10px 0;
  }
}

@media only screen and (max-width: 600px) {
  .post {
    width: 100%;
    margin-bottom: 15px;
  }
  .blog-wrap .container {
    margin-top: -30px;
  }
  .doc-cover {
    margin-top: -90px;
  }
  .post_thumb {
    margin-top: -80px;
  }
  .team_card {
    padding: 20px;
  }
  .team_card-person img {
    width: 100px;
    height: 100px;
  }
  .post_video .post_img h2, .post_video .post_img p {
    font-size: 14px;
    line-height: 22px;
  }
  .post_video .post_img {
    padding: 15px;
  }
}

@media only screen and (max-width: 480px) {
  .team_card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 15px;
  }
  .team_card-person {
    padding-right: 0;
  }
}

.faq-items {
  margin-top: -100px;
}

.faq-item {
  color: rgba(0, 0, 0, 0.8);
  background: #d2d1d1;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 30px;
  min-height: 150px;
  width: 45%;
}

.faq-item a {
  color: #00aaff;
}

.faq-item:nth-child(3n+3) {
  background: transparent;
  padding: 0;
}

.faq-item:nth-child(3n+3) .faq-item_title {
  color: #039;
}

.faq-item:nth-child(3n+3) .faq-item_answer {
  color: #000;
}

.faq-item:nth-child(2n+2) {
  background: rgba(13, 17, 30, 0.7);
  padding: 15px;
}

.faq-item:nth-child(2n+2) .faq-item_title {
  color: #fff;
}

.faq-item:nth-child(2n+2) .faq-item_answer {
  color: #fff;
}

.faq-item:nth-child(6) .faq-item_title {
  color: #fff;
}

.faq-item:nth-child(6) .faq-item_answer {
  color: #fff;
}

.faq-item_title {
  font-size: 20px;
  letter-spacing: 1px;
  margin: 15px 0;
}

.faq-item .faq-item_answer p {
  margin-bottom: 15px;
  margin-top: 0;
}

.faq-item .team_card {
  margin-left: 0;
}

@media only screen and (max-width: 992px) {
  .faq-item {
    width: 100%;
  }
  .faq-items {
    margin-top: -50px;
  }
}

ul.branded {
    list-style-image: url('../../../../uploads/2017/03/bt-bullet-e1489427282240.png');
}