@charset "UTF-8";
/*
Theme Name: Fluent
Description: App Landing Page Template
Author: DohTheme
Author URI: http://www.dohtheme.com
Version: 1.0
*/
/*------------------------------------------------------------------
[Table of contents]

1. RESET CSS
2. BASE CSS
3. GENERAL CLASSES
  3.1 BUTTONS
4. HEADER CSS
5. SIDEBAR CSS
6. HOME CONTENT CSS
7. FOOTER CSS
8. HELPER CLASSES
9. BOOTSTRAP OVERWRITE CSS
10. RESPONSIVE CSS
-------------------------------------------------------------------*/
/* --------------------------------
RESET CSS
-------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

ul,
li {
  list-style: none;
}

select {
  width: 100%;
}

input:focus {
  outline: 0;
}

/* --------------------------------
BASE CSS
-------------------------------- */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

::-moz-selection {
  background-color: #f1f1f1;
}

::selection {
  background-color: #f1f1f1;
}

::-moz-selection {
  background-color: #f1f1f1;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background: #f8faff;
  color: #1E1D2F;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  line-height: 1.5;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}

a {
  color: #999;
}

a:hover,
a:focus,
a:active {
  color: #11b7ff;
  text-decoration: none;
  outline: none;
}

/* --------------------------------
GENERAL CLASSES
-------------------------------- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #11b7ff;
  opacity: 0.98;
  z-index: 2000;
}

.sk-chase {
  width: 40px;
  height: 40px;
  position: relative;
  top: 45%;
  -webkit-animation: sk-chase 2.5s infinite linear both;
          animation: sk-chase 2.5s infinite linear both;
  margin: 40px auto;
}

.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: sk-chase-dot 2s infinite ease-in-out both;
          animation: sk-chase-dot 2s infinite ease-in-out both;
}

.sk-chase-dot:before {
  content: "";
  display: block;
  width: 25%;
  height: 25%;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sk-chase-dot-before 2s infinite ease-in-out both;
          animation: sk-chase-dot-before 2s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2) {
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}

.sk-chase-dot:nth-child(3) {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4) {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5) {
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6) {
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s;
}

.sk-chase-dot:nth-child(1):before {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2):before {
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}

.sk-chase-dot:nth-child(3):before {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4):before {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5):before {
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6):before {
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s;
}

@-webkit-keyframes sk-chase {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes sk-chase {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes sk-chase-dot {
  80%, 100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes sk-chase-dot {
  80%, 100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes sk-chase-dot-before {
  50% {
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
  }
  100%, 0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes sk-chase-dot-before {
  50% {
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
  }
  100%, 0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.s-section-padding {
  padding: 4em 0;
}

.s-section-alt {
  background: #EEF1FF;
}

.s-section-alt2 {
  background: #F6F8FF;
}

.s-block {
  background: #fff;
  border-radius: 20px;
}

.c-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-headline {
  position: relative;
  text-align: center;
  margin-bottom: 60px;
}
.c-headline h2 {
  font-size: 2.675rem;
  font-weight: 300;
}
.c-headline h2 span {
  position: relative;
  color: #11b7ff;
  font-weight: 600;
  padding-left: 8px;
}
.c-headline h2 span::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 4px;
  width: 80%;
  height: 14px;
  background: #11b7ff;
  opacity: 0.4;
}
.c-headline.-white {
  color: #fff;
}
.c-headline.-white span {
  color: inherit;
}
.c-headline.-white span::after {
  background: #fff;
}

.o-grad1 {
  background: #0E77FF;
  background: -o-linear-gradient(310deg, #F73CFF, #0E77FF);
  background: linear-gradient(140deg, #F73CFF, #0E77FF);
}

.o-grad2 {
  background: #11B7FF;
  background: -o-linear-gradient(310deg, #11B7FF, #2BFF88);
  background: linear-gradient(140deg, #11B7FF, #2BFF88);
}

.o-grad3 {
  background: #ff7c78;
  background: -o-linear-gradient(310deg, #ff7c78, #fe45f2);
  background: linear-gradient(140deg, #ff7c78, #fe45f2);
}

/* --------------------------------
BUTTONS
-------------------------------- */
.c-btn {
  display: inline-block;
  font-size: 16px;
  padding: 8px 28px;
  border: 0;
  border-radius: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.c-btn.-rounded {
  border-radius: 44px;
}
.c-btn.-big {
  padding-left: 46px;
  padding-right: 46px;
}

.c-btn--primary {
  background: #11b7ff;
  color: #fff;
}
.c-btn--primary:hover {
  background: #000;
}

.c-btn--action {
  background: #11b7ff;
  color: #fff;
}
.c-btn--action:hover {
  background: #000;
}

/* --------------------------------
HEADER CSS
-------------------------------- */
.navbar-brand img {
  max-width: 190px;
}

.hero {
  background: #EEF1FF url("../img/headershape.png") no-repeat 15% 15%/404px;
  padding: 2em 0;
}
.hero__info h3 {
  font-size: 4.125rem;
  line-height: 1;
}
.hero__info h3 span {
  color: #11b7ff;
  font-weight: 600;
}
.hero__info p {
  font-size: 18px;
  padding: 1.875rem 0 3.75rem;
}
.hero__info--download a {
  display: inline-block;
  height: 60px;
  color: #fff;
  font-size: 13px;
  padding: 0 20px;
  border-radius: 44px;
  -webkit-box-shadow: 0 25px 26px rgba(36, 36, 70, 0.1);
          box-shadow: 0 25px 26px rgba(36, 36, 70, 0.1);
  margin-right: 44px;
}
.hero__info--download a:last-child {
  margin-right: 0;
}
.hero__info--download a svg {
  fill: #fff;
  height: 40px;
  float: left;
  margin-top: 10px;
  margin-right: 10px;
}
.hero__info--download a span {
  display: inline-block;
  text-align: left;
  letter-spacing: 1px;
  margin-top: 6px;
}
.hero__info--download a h5 {
  font-size: 1.23em;
  font-weight: 600;
}
.hero__img {
  background: transparent url("../img/mockshape.png") no-repeat center/contain;
  padding: 4rem;
}

/* --------------------------------
SIDEBAR CSS
-------------------------------- */
.sidebar {
  background: #fff;
  padding: 1.5625rem;
  border-radius: 20px;
  -webkit-box-shadow: 0 25px 26px rgba(36, 36, 70, 0.1);
          box-shadow: 0 25px 26px rgba(36, 36, 70, 0.1);
}
.sidebar__item {
  margin-bottom: 32px;
}
.sidebar__item h4 {
  position: relative;
  display: inline-block;
  color: #11b7ff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}
.sidebar__item h4::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 80%;
  height: 8px;
  background: #11b7ff;
  opacity: 0.4;
}
.sidebar .category li {
  position: relative;
  font-size: 14px;
  margin-bottom: 10px;
}
.sidebar .category li a {
  color: #1E1D2F;
}
.sidebar .category li a:hover {
  color: #11b7ff;
}
.sidebar .category li span {
  position: absolute;
  top: -2px;
  right: 0;
  display: block;
  height: 22px;
  line-height: 22px;
  background-color: #393958;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  padding: 0 10px;
  border-radius: 20px;
  margin-left: 5px;
}
.sidebar__popular li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 0;
}
.sidebar__popular li a {
  color: #11b7ff;
  font-size: 15px;
}
.sidebar__popular li .date {
  display: block;
  font-size: 13px;
}
.sidebar__popular-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 90px;
          flex: 0 0 90px;
  width: 90px;
  margin-right: 15px;
}
.sidebar__popular-img img {
  border-radius: 6px;
}
.sidebar .tags li {
  display: inline-block;
  padding: 3px;
}
.sidebar .tags li a {
  display: block;
  background: #393958;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 12px;
  border-radius: 20px;
}

/* --------------------------------
HOME PAGE CSS
-------------------------------- */
.feature {
  text-align: center;
  padding: 2.8125rem 1.875rem;
}
.feature img {
  max-width: initial;
  max-height: 52px;
}
.feature h3 {
  font-size: 1.125rem;
  font-weight: 600;
  padding: 15px 0;
}
.feature p {
  max-width: 300px;
  font-size: 0.875rem;
  margin: 0 auto;
}

.screens__slider {
  padding: 20px 0 60px;
}
.screens .swiper-slide img {
  opacity: 0.3;
  border-radius: 20px;
  -webkit-box-shadow: 0 25px 26px rgba(36, 36, 70, 0.1);
          box-shadow: 0 25px 26px rgba(36, 36, 70, 0.1);
}
.screens .swiper-slide-active img {
  opacity: 1;
}
.screens .swiper-pagination-bullet-active {
  background: #0E77FF;
  background: -o-linear-gradient(310deg, #F73CFF, #0E77FF);
  background: linear-gradient(140deg, #F73CFF, #0E77FF);
  -webkit-box-shadow: 2px 2px 26px rgba(14, 119, 255, 0.3);
          box-shadow: 2px 2px 26px rgba(14, 119, 255, 0.3);
}

.pref__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
}
.pref__icon i {
  display: block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  color: #fff;
  font-size: 32px;
  text-align: center;
  border-radius: 50%;
  -webkit-box-shadow: 2px 2px 26px rgba(14, 119, 255, 0.3);
          box-shadow: 2px 2px 26px rgba(14, 119, 255, 0.3);
}
.pref__info {
  padding-left: 40px;
}
.pref__info h3 {
  font-size: 1.375rem;
  font-weight: 600;
  padding-bottom: 10px;
}
.pref__info p {
  font-size: 0.8125rem;
}

.video {
  position: relative;
  padding: 7em 0;
  overflow: hidden;
}
.video__overlay {
  background-size: cover;
  -webkit-filter: blur(25px);
          filter: blur(25px);
  opacity: 0.4;
  z-index: -1;
}
.video__action {
  display: block;
  font-size: 2.875rem;
}
.video__action svg {
  max-width: 50px;
  fill: url(#play-gradient);
}
.video__action i {
  background: -o-linear-gradient(290deg, #F73CFF, #0E77FF);
  background: linear-gradient(160deg, #F73CFF, #0E77FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testi__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 50px 60px;
}
.testi__item--img {
  position: relative;
  max-width: 180px;
  border-radius: 20px;
  -webkit-box-shadow: 0 25px 26px rgba(36, 36, 70, 0.1);
          box-shadow: 0 25px 26px rgba(36, 36, 70, 0.1);
  overflow: hidden;
  z-index: 2;
}
.testi__item--info {
  position: relative;
  font-size: 0.875rem;
  padding-left: 3.75rem;
  z-index: 2;
}
.testi__item--info blockquote {
  position: relative;
}
.testi__item--info blockquote::before {
  content: '"';
  position: absolute;
  top: -50px;
  left: -30px;
  font-size: 80px;
  font-weight: 600;
  color: #11b7ff;
}
.testi__item--info blockquote::after {
  content: '"';
  position: absolute;
  bottom: -100px;
  right: -20px;
  font-size: 80px;
  font-weight: 600;
  color: #11b7ff;
}
.testi__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background: transparent url("../img/testishape.png") no-repeat center;
  z-index: 1;
}
.testi .swiper-pagination-bullet-active {
  background: #0E77FF;
  background: -o-linear-gradient(310deg, #F73CFF, #0E77FF);
  background: linear-gradient(140deg, #F73CFF, #0E77FF);
  -webkit-box-shadow: 2px 2px 26px rgba(14, 119, 255, 0.3);
          box-shadow: 2px 2px 26px rgba(14, 119, 255, 0.3);
}

.price .row {
  border-radius: 20px;
  margin: 100px 0 60px;
}
.price__table {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 4.375rem 2.1875rem;
  border-radius: 20px;
  z-index: 1;
}
.price__table.-mid {
  background: #fff;
  color: #1E1D2F;
  -webkit-box-shadow: 0 25px 26px rgba(36, 36, 70, 0.1);
          box-shadow: 0 25px 26px rgba(36, 36, 70, 0.1);
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  z-index: 2;
}
.price__table.-mid .price__icon {
  color: #fff;
}
.price__table.-mid .c-btn {
  color: #fff;
}
.price__icon {
  width: 90px;
  height: 90px;
  line-height: 90px;
  background-color: #fff;
  color: #1E1D2F;
  font-size: 2.5rem;
  border-radius: 50%;
  margin: 0 auto 20px;
}
.price__info {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.price__info span {
  font-size: 2.6em;
}
.price__list {
  margin-bottom: 20px;
}
.price__list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(30, 29, 47, 0.25);
}
.price__list li:last-child {
  border: none;
}
.price .c-btn {
  background-color: #fff;
  color: #1E1D2F;
  font-weight: 500;
  padding: 0.8125rem 2.875rem;
  -webkit-box-shadow: 0 25px 26px rgba(36, 36, 70, 0.1);
          box-shadow: 0 25px 26px rgba(36, 36, 70, 0.1);
}

.team__slider {
  height: 100%;
}
.team__member {
  position: relative;
  max-height: 500px;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
}
.team__member--info {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  background: rgba(255, 255, 255, 0.65);
  padding: 0.625rem 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
.team__member--info h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

.counter__item {
  background: #fff;
  text-align: center;
  padding: 1.5625rem;
  border-radius: 20px;
  -webkit-box-shadow: 0 25px 26px rgba(36, 36, 70, 0.1);
          box-shadow: 0 25px 26px rgba(36, 36, 70, 0.1);
  margin: 18px 0;
}
.counter__item i {
  display: block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
  border-radius: 50%;
  -webkit-box-shadow: 2px 2px 26px rgba(14, 119, 255, 0.3);
          box-shadow: 2px 2px 26px rgba(14, 119, 255, 0.3);
  margin: 20px auto;
}
.counter__item .timer {
  display: block;
  font-size: 2rem;
  font-weight: 600;
}
.counter__item span:not(.timer) {
  color: #888;
}

.subscribe__form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 44px;
  -webkit-box-shadow: 0 25px 26px rgba(36, 36, 70, 0.1);
          box-shadow: 0 25px 26px rgba(36, 36, 70, 0.1);
}
.subscribe__form .form-control::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.subscribe__form .form-control::-moz-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.subscribe__form .form-control:-moz-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.subscribe__form .form-control:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.subscribe__form .c-btn {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  max-width: 180px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  padding: 0.9375rem;
  margin-left: -50px;
}
.subscribe__message {
  margin: 10px auto;
}
.subscribe__message--text {
  position: relative;
  display: block;
  background-color: #fff;
  color: #fff;
  font-size: 0.8125rem;
  padding: 10px 10px 10px 44px;
  border-radius: 5px;
}
.subscribe__message--text::after {
  content: "";
  font-family: "icons8-win10";
  position: absolute;
  top: 50%;
  left: 12px;
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, 0.2);
  font-size: 12px;
  text-align: center;
  border-radius: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.subscribe__message--text.error {
  background-color: #d9534f;
}
.subscribe__message--text.error::after {
  content: "";
}
.subscribe__message--text.valid {
  background-color: #5cb85c;
}
.subscribe__message--text.valid::after {
  content: "";
}

/* --------------------------------
BLOG PAGE CSS
-------------------------------- */
.blog-hero {
  position: relative;
  overflow: hidden;
}
.blog-hero__overlay {
  background-size: cover;
  -webkit-filter: blur(15px);
          filter: blur(15px);
  opacity: 0.4;
  z-index: -1;
}
.blog-hero__content {
  background: transparent url("../img/headershape.png") no-repeat left top/200px;
  max-width: 600px;
  text-align: center;
  margin: 8.75em auto;
}
.blog-hero__content h2 {
  font-size: 2.625rem;
  line-height: 1;
}
.blog-hero__content h2 span {
  display: block;
  color: #11b7ff;
  font-weight: 600;
}
.blog-hero__content p {
  max-width: 320px;
  font-size: 0.875rem;
  margin: 25px auto 45px;
}
.blog-hero__form {
  max-width: 600px;
  margin: 0 auto;
}
.blog-hero__form .form-group {
  position: relative;
  border-radius: 44px;
  -webkit-box-shadow: 0 25px 26px rgba(36, 36, 70, 0.1);
          box-shadow: 0 25px 26px rgba(36, 36, 70, 0.1);
}
.blog-hero__form .form-control {
  padding: 0.875rem 1.75rem;
}
.blog-hero__form .form-control::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.blog-hero__form .form-control::-moz-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.blog-hero__form .form-control:-moz-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.blog-hero__form .form-control:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.blog-hero__form .c-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  height: 44px;
  background: #11b7ff;
  color: #fff;
  font-weight: 600;
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}

.blog {
  padding-top: 0;
  margin-top: -60px;
}
.blog__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 25px 26px rgba(36, 36, 70, 0.02);
          box-shadow: 0 25px 26px rgba(36, 36, 70, 0.02);
  margin-bottom: 30px;
}
.blog__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 220px;
  background-color: #11b7ff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.blog__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  background: white;
  color: #1E1D2F;
  padding: 0.625rem 1.25rem;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.blog__content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  padding-bottom: 0.875rem;
}
.blog__content h3 a {
  color: #11b7ff;
}
.blog__content p {
  height: 55px;
  font-size: 0.75rem;
  overflow: hidden;
}
.blog__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 0.625rem;
  border-top: 1px solid #f1f1f2;
  margin-top: 1rem;
}
.blog__meta img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}
.blog__meta--info {
  font-size: 0.75rem;
}
.blog__meta--info span {
  font-style: italic;
}
.blog__meta--info a {
  color: #11b7ff;
  font-weight: 600;
  padding: 0 3px;
}
.blog__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.blog__pagination .page-link {
  background: none;
  color: #11b7ff;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  border: none;
  border-radius: 0;
}
.blog__pagination .page-item.active .page-link {
  background: none;
  color: #1E1D2F;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.blog__item.-featured {
  -webkit-box-shadow: 0 25px 26px rgba(36, 36, 70, 0.1);
          box-shadow: 0 25px 26px rgba(36, 36, 70, 0.1);
}
.blog__item.-featured .blog__content {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding: 1.25rem;
}
.blog__item.-featured .blog__content p {
  height: auto;
}
.blog__item.-featured .blog__img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 310px;
}

.blog__item.-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.blog__item.-vertical .blog__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  min-height: 180px;
}

/* --------------------------------
PRIVACY PAGE CSS
-------------------------------- */
.privacy-hero {
  background: #eef1ff;
  text-align: center;
  padding: 6.25rem 0;
}
.privacy-hero__content {
  position: relative;
  max-width: 530px;
  margin: 0 auto;
}
.privacy-hero__content i {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 18em;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0.08;
  z-index: 1;
}
.privacy-hero__content h2, .privacy-hero__content p {
  position: relative;
  z-index: 2;
}
.privacy-hero__content h2 {
  font-size: 2.875rem;
  font-weight: 700;
  text-transform: uppercase;
}
.privacy-hero__content p {
  font-size: 1.125rem;
}

.privacy__headline {
  color: #11b7ff;
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 40px;
}
.privacy__headline span {
  position: relative;
  padding-left: 4px;
}
.privacy__headline span::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 4px;
  width: 80%;
  height: 8px;
  background: #11b7ff;
  opacity: 0.4;
}
.privacy__item {
  background: #fff;
  padding: 1.25rem 2.5rem;
  border-radius: 20px;
  -webkit-box-shadow: 0 25px 26px rgba(36, 36, 70, 0.1);
          box-shadow: 0 25px 26px rgba(36, 36, 70, 0.1);
  margin-top: 25px;
}
.privacy__item h3 {
  color: #11b7ff;
  font-weight: 500;
  padding-bottom: 0.9375rem;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 15px;
}
.privacy__item p {
  font-size: 0.875rem;
}

/* --------------------------------
BLOG POST PAGE CSS
-------------------------------- */
.article__helper {
  background: #fff;
  padding: 1.5625rem;
  border-radius: 20px;
  -webkit-box-shadow: 0 25px 26px rgba(36, 36, 70, 0.1);
          box-shadow: 0 25px 26px rgba(36, 36, 70, 0.1);
  margin-bottom: 35px;
}
.article__body {
  margin-top: -50px;
}
.article__content {
  font-size: 0.875rem;
}
.article__content h1, .article__content h2, .article__content h3, .article__content h4, .article__content h5, .article__content h6 {
  font-weight: 600;
  margin-bottom: 4px;
}
.article__content p {
  margin-bottom: 28px;
}
.article__content img {
  border-radius: 20px;
  margin-bottom: 20px;
}
.article__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.article__tags li {
  display: inline-block;
}
.article__tags li a {
  display: block;
  background-color: #393958;
  color: #fff;
  font-size: 0.875rem;
  padding: 0.125rem 0.75rem;
  border-radius: 20px;
}
.article__share {
  color: #1E1D2F;
  font-size: 26px;
}
.article__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.article__author--img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
  overflow: hidden;
}
.article__author--img img {
  max-width: 80px;
  border-radius: 50%;
}
.article__author--info {
  margin-left: 20px;
}
.article__author--info h3 {
  display: inline-block;
  color: #11b7ff;
  font-weight: 600;
}
.article__author--info h5 {
  display: inline-block;
  font-weight: 600;
}
.article__author--info p {
  font-size: 0.875rem;
}
.article__comments h2 {
  color: #11b7ff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 40px;
}
.article__comments h2 span {
  position: relative;
  padding-left: 4px;
  padding-right: 4px;
}
.article__comments h2 span::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 4px;
  width: 100%;
  height: 8px;
  background: #11b7ff;
  opacity: 0.4;
}
.article__comments li ul {
  margin-left: 85px;
}
.article__comments--img {
  float: left;
  width: 65px;
  height: 65px;
  border-radius: 50%;
}
.article__comments--container {
  position: relative;
  background: #f6f8ff;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 20px;
  margin-left: 85px;
}
.article__comments--container::before {
  content: " ";
  position: absolute;
  top: 20px;
  left: -20px;
  border: inset 10px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent #f6f8ff transparent transparent;
  border-right-style: solid;
}
.article__comments--container span {
  display: block;
  font-size: 0.8125rem;
  color: #a4b1bf;
  padding-bottom: 10px;
}
.article__comments--container .pull-right {
  float: right;
}
.article__comments--container .pull-right a {
  color: #000;
}
.article__comments--container p {
  font-size: 0.875rem;
}
.article__comments--container a {
  color: #11b7ff;
  font-weight: 600;
}
.article__comments--container a i {
  font-size: 1.2em;
  padding-right: 3px;
}
.article__related h2 {
  color: #11b7ff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 40px;
}
.article__related h2 span {
  position: relative;
  padding-left: 4px;
  padding-right: 4px;
}
.article__related h2 span::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 4px;
  width: 100%;
  height: 8px;
  background: #11b7ff;
  opacity: 0.4;
}
.article__social {
  position: relative;
}
.article__social a {
  color: #000;
  font-size: 1.5rem;
}
.article__social--menu {
  position: absolute;
  top: -60px;
  left: -60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 160px;
  line-height: 20px;
  padding: 0.625rem;
  opacity: 0;
  visibility: hidden;
  margin: 0;
}
.article__social--menu.visible {
  opacity: 1;
  visibility: visible;
}
.article__heroMeta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.article__heroMeta img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto;
}
.article__heroMeta--info {
  font-size: 0.75rem;
}
.article__heroMeta--info span {
  font-style: italic;
}
.article__heroMeta--info a {
  color: #11b7ff;
  font-weight: 600;
  padding: 0 3px;
}
.article__head {
  font-size: 2rem;
  font-weight: 700;
  padding-top: 0.625em;
}

/* --------------------------------
404 PAGE CSS
-------------------------------- */
.notfound {
  text-align: center;
  padding: 3.125rem 0;
}
.notfound__img {
  max-width: 300px;
}
.notfound__content {
  background: #f8faff url("../img/headershape.png") no-repeat center;
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  padding: 3.75rem 0;
  margin-top: 3.75rem;
}
.notfound__content h1 {
  font-size: 4em;
  color: #fff;
}
.notfound__content a {
  color: #fff;
  font-size: 1.125rem;
  text-transform: capitalize;
}

/* --------------------------------
FOOTER CSS
-------------------------------- */
.footer {
  background: #EEF1FF url("../img/footershape.png") no-repeat -20% 240px/600px;
  padding: 2.5rem 0;
  overflow: hidden;
}
.footer__logo {
  max-width: 220px;
  margin: 0 auto 40px;
}
.footer__social {
  font-size: 0.875rem;
  margin-bottom: 40px;
}
.footer__social li {
  display: inline-block;
  padding: 0 8px;
}
.footer__social li a {
  color: #1E1D2F;
}
.footer .hero__info--download {
  margin: 7.5rem 0;
}
.footer__copyright {
  font-size: 0.875rem;
}
.footer__copyright span {
  font-weight: 600;
  padding: 0 4px;
}

/* --------------------------------
BOOTSTRAP OVERWRITE CSS
-------------------------------- */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  padding: 1.25rem 3.125rem;
}

.navbar-expand-lg .navbar-nav .nav-link {
  color: #1E1D2F;
  font-size: 0.875rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  opacity: 0.55;
}
.navbar-expand-lg .navbar-nav .nav-link.-purchase {
  color: #fff;
  font-weight: 600;
  padding-left: 2.375rem;
  padding-right: 2.375rem;
  border-radius: 44px;
  opacity: 1;
}
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link.-purchase {
    margin-left: 30px;
  }
}
.navbar-expand-lg .navbar-nav .nav-item.active .nav-link {
  position: relative;
  font-weight: 500;
  opacity: 1;
}
.navbar-expand-lg .navbar-nav .nav-item.active .nav-link::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  width: 9px;
  height: 9px;
  background-color: #1E1D2F;
  border-radius: 44px;
  margin: 0 auto;
}

.form-control {
  height: 100%;
  padding: 0.9375rem 1.5625rem;
  border: none;
  border-radius: 44px;
}

.card {
  border: none;
  border-radius: 20px;
  -webkit-box-shadow: 0 25px 26px rgba(36, 36, 70, 0.1);
          box-shadow: 0 25px 26px rgba(36, 36, 70, 0.1);
  margin-bottom: 20px;
}

.card-header {
  background: #fff;
  border: none;
  border-radius: 20px;
}
.card-header h5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
}
.card-header h5 .card__collapse {
  color: #1E1D2F;
  font-size: 20px;
  margin-left: auto;
}
.card-header h5 .card__collapse::before {
  content: "";
  display: inline-block;
  font-family: "icons8-win10";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-decoration: inherit;
  text-rendering: optimizeLegibility;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
.card-header h5 .card__collapse.collapsed::before {
  content: "";
}

.card-header:first-child {
  border-radius: 20px;
}

.accordion .card:not(:first-of-type):not(:last-of-type),
.accordion .card:not(:first-of-type) .card-header:first-child,
.accordion .card:first-of-type,
.accordion .card:last-of-type {
  border-radius: 20px;
}

.card-body {
  font-size: 0.875rem;
}

/* --------------------------------
RESPONSIVE CSS
-------------------------------- */
@media only screen and (max-width: 990px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    margin-left: 24px;
  }

  .navbar-expand-lg .navbar-nav .nav-item.active .nav-link::after {
    top: 22px;
    left: -22px;
    right: initial;
  }

  .nav-link.-purchase {
    display: inline-block;
    margin: 20px 0;
  }

  .hero__info {
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .blog__item.-featured .blog__img {
    width: 220px;
  }

  .article__body {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 576px) {
  .hero__info h3 {
    font-size: 2.125rem;
  }

  .hero__info p {
    font-size: 0.9375rem;
    padding-bottom: 1.875rem;
  }

  .s-section-padding {
    padding: 2em 0;
  }

  .c-headline {
    margin-bottom: 30px;
  }
  .c-headline h2 {
    font-size: 2rem;
  }

  .feature {
    padding: 1.875rem 0.9375rem;
  }

  .price .row {
    margin: 40px 0;
  }

  .blog__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .blog__item .blog__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    min-height: 180px;
  }

  .blog__item.-featured .blog__content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .blog__item.-featured .blog__img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}
@media only screen and (max-width: 576px) {
  .hero__info--download a {
    margin-right: 0;
  }
  .hero__info--download a:first-child {
    margin-bottom: 20px;
  }
}
