/*====================
** Variable Scss
====================*/
/*basic color*/
/*heading color*/
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800");
/*====================
** Mixins Scss
====================*/
/*---------------------------
** Global Scss
---------------------------*/
.slicknav_menu {
  display: none; }

.section-title {
  text-align: center;
  margin-bottom: 65px; }
  .section-title h2 {
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0; }
    .section-title h2 span {
      color: #3880f4; }

.boxed-btn {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 25px;
  color: #fff;
  background-color: #3880f4;
  text-transform: uppercase;
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  font-weight: 500; }
  .boxed-btn:hover {
    background-color: #303443;
    color: #fff; }
  .boxed-btn.blank {
    background-color: transparent;
    color: #303443;
    padding: 13px 38px;
    border: 2px solid #c1c1c1; }
    .boxed-btn.blank:hover {
      background-color: #3880f4;
      color: #fff;
      border-color: #3880f4; }

textarea,
input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=search],
input[type=url] {
  border: 2px solid #e9e9e9;
  padding: 13px 20px;
  display: block;
  width: 100%;
  margin-bottom: 10px;
  font-size: 12px; }
  textarea::-webkit-input-placeholder,
  input[type=text]::-webkit-input-placeholder,
  input[type=email]::-webkit-input-placeholder,
  input[type=tel]::-webkit-input-placeholder,
  input[type=number]::-webkit-input-placeholder,
  input[type=password]::-webkit-input-placeholder,
  input[type=search]::-webkit-input-placeholder,
  input[type=url]::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #4b4e59; }
  textarea:-moz-placeholder,
  input[type=text]:-moz-placeholder,
  input[type=email]:-moz-placeholder,
  input[type=tel]:-moz-placeholder,
  input[type=number]:-moz-placeholder,
  input[type=password]:-moz-placeholder,
  input[type=search]:-moz-placeholder,
  input[type=url]:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #4b4e59; }
  textarea::-moz-placeholder,
  input[type=text]::-moz-placeholder,
  input[type=email]::-moz-placeholder,
  input[type=tel]::-moz-placeholder,
  input[type=number]::-moz-placeholder,
  input[type=password]::-moz-placeholder,
  input[type=search]::-moz-placeholder,
  input[type=url]::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #4b4e59; }
  textarea:-ms-input-placeholder,
  input[type=text]:-ms-input-placeholder,
  input[type=email]:-ms-input-placeholder,
  input[type=tel]:-ms-input-placeholder,
  input[type=number]:-ms-input-placeholder,
  input[type=password]:-ms-input-placeholder,
  input[type=search]:-ms-input-placeholder,
  input[type=url]:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #4b4e59; }

input[type=submit],
button[type=submit] {
  padding: 13px 20px;
  display: block;
  width: 100%;
  margin-bottom: 10px;
  border: none;
  border-radius: 25px;
  background-color: #3880f4;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in; }
  input[type=submit]:hover,
  button[type=submit]:hover {
    background-color: #303443; }

.back-to-top {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #3880f4;
  color: #fff;
  font-size: 20px;
  border: 2px solid #3880f4;
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 9999; }
  .back-to-top:hover {
    background-color: transparent;
    color: #3880f4;
    border: 2px solid #3880f4; }

/*----------------------------
    Preloader
----------------------------*/
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 999999999999; }
  .preloader .preloader-inner {
    position: relative; }
    .preloader .preloader-inner .coin {
      position: absolute;
      top: 30px;
      left: 15%;
      -webkit-animation-duration: 3s;
      -moz-animation-duration: 3s;
      -o-animation-duration: 3s;
      animation-duration: 3s;
      -webkit-animation-iteration-count: infinite;
      -moz-animation-iteration-count: infinite;
      -o-animation-iteration-count: infinite;
      animation-iteration-count: infinite;
      -webkit-animation-name: upDown;
      -moz-animation-name: upDown;
      -o-animation-name: upDown;
      animation-name: upDown;
      -webkit-animation-direction: linear;
      -moz-animation-direction: linear;
      -o-animation-direction: linear;
      animation-direction: linear;
      -webkit-animation-delay: -3s;
      animation-delay: -3s; }

@-webkit-keyframes upDown {
  0% {
    top: -50px; }
  100% {
    top: 20px; } }

@-moz-keyframes upDown {
  0% {
    top: -50px; }
  100% {
    top: 20px; } }

@-o-keyframes upDown {
  0% {
    top: -50px; }
  100% {
    top: 20px; } }

@keyframes upDown {
  0% {
    top: -50px; }
  100% {
    top: 20px; } }

/*====================
** Normalize Scss
====================*/
html {
  font-family: "Poppins", sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

body {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  /*  base font size  15px= 1em*/
  margin: 0;
  color: #4b4f5c;
  overflow-x: hidden; }

h1 {
  font-size: 56px;
  line-height: 1.0833333333333333; }

h2 {
  font-size: 42px;
  line-height: 1.4444444444444444; }

h3 {
  font-size: 31px;
  line-height: 1.0833333333333333; }

h4 {
  font-size: 28px;
  line-height: 1.2380952380952381; }

h1, h2, h3, h4, h5, h6 {
  color: #303443;
  font-weight: 700;
  font-family: "Poppins", sans-serif; }

p {
  font-size: 14px;
  color: #303443;
  line-height: 1.625;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto; }

a {
  color: #303443;
  text-decoration: none; }

a, a:hover, a:focus, a:active {
  text-decoration: none;
  outline: none; }

a i {
  padding: 0 2px; }

img {
  max-width: 80%; }

/*input and button type focus outline disable*/
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #ddd; }

/**
 * 5.0 - Alignments
 */
.alignleft {
  float: left; }

.alignright {
  float: right; }

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto 1.75em; }

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

/*------------------
   Navbar
-------------------*/
.navbar-area.nav-fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  z-index: 999999999; }

.navbar-area .logo {
  padding-top: 25px;
  display: block; }

.navbar-area ul {
  text-align: right; }
  .navbar-area ul li {
    text-transform: uppercase;
    display: inline-block;
    padding: 30px 20px;
    font-weight: 500; }
    .navbar-area ul li:last-child {
      padding-right: 0; }
    .navbar-area ul li.active a {
      color: #3880f4; }
      .navbar-area ul li.active a:after {
        visibility: visible;
        opacity: 1; }
      .navbar-area ul li.active a:before {
        visibility: visible;
        opacity: 1; }
    .navbar-area ul li:hover a {
      color: #3880f4; }
      .navbar-area ul li:hover a:after {
        visibility: visible;
        opacity: 1; }
      .navbar-area ul li:hover a:before {
        visibility: visible;
        opacity: 1; }
    .navbar-area ul li a {
      color: #4b4f5c;
      display: block;
      position: relative;
      -webkit-transition: all 0.5s ease-in;
      -moz-transition: all 0.5s ease-in;
      -o-transition: all 0.5s ease-in;
      transition: all 0.5s ease-in; }
      .navbar-area ul li a:after {
        position: absolute;
        bottom: -30px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #3880f4;
        visibility: hidden;
        opacity: 0;
        content: '';
        -webkit-transition: all 0.5s ease-in;
        -moz-transition: all 0.5s ease-in;
        -o-transition: all 0.5s ease-in;
        transition: all 0.5s ease-in; }
      .navbar-area ul li a:before {
        position: absolute;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: '\f0d8';
        bottom: -36px;
        color: #3880f4;
        text-align: center;
        left: 50%;
        -ms-transform: translateX(-50%);
        /* IE 9 */
        -webkit-transform: translateX(-50%);
        /* Chrome, Safari, Opera */
        transform: translateX(-50%);
        visibility: hidden;
        opacity: 0;
        -webkit-transition: all 0.5s ease-in;
        -moz-transition: all 0.5s ease-in;
        -o-transition: all 0.5s ease-in;
        transition: all 0.5s ease-in; }

/*------------------
    Support Bar
-------------------*/
.support-bar {
  background-color: #e60000; }
  .support-bar .support-bar-left li {
    display: inline-block;
    padding: 10px; }
    .support-bar .support-bar-left li:first-child {
      padding-left: 0; }
    .support-bar .support-bar-left li a {
      color: #fafbfb;
      -webkit-transition: all 0.5s ease-in;
      -moz-transition: all 0.5s ease-in;
      -o-transition: all 0.5s ease-in;
      transition: all 0.5s ease-in; }
      .support-bar .support-bar-left li a:hover {
        color: #3880f4; }
  .support-bar .support-bar-right {
    text-align: right; }
    .support-bar .support-bar-right .select-arrow {
      position: relative;
      display: inline-block;
      margin-right: 24px; }
      .support-bar .support-bar-right .select-arrow:after {
        position: absolute;
        right: 0;
        top: 0;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: '\f0d7';
        color: #fafbfb; }
      .support-bar .support-bar-right .select-arrow select {
        border: none;
        background-color: transparent;
        color: #fafbfb;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        padding-right: 20px; }
        .support-bar .support-bar-right .select-arrow select option {
          color: #000;
          border: none; }
    .support-bar .support-bar-right .account {
      display: inline-block;
      padding: 5px 0; }
      .support-bar .support-bar-right .account .icon {
        color: #fff;
        display: inline-block;
        text-align: center;
        width: 30px;
        height: 30px;
        line-height: 30px;
        background-color: #3880f4;
        border-radius: 50%;
        margin-right: 10px; }
      .support-bar .support-bar-right .account a {
        color: #fafbfb;
        -webkit-transition: all 0.5s ease-in;
        -moz-transition: all 0.5s ease-in;
        -o-transition: all 0.5s ease-in;
        transition: all 0.5s ease-in; }
        .support-bar .support-bar-right .account a:hover {
          color: #3880f4; }

/*------------------
    Header
-------------------*/
.header-area {
  position: relative;
  z-index: 1;
  padding: 190px 0 215px 0;
  background-size: cover;
  background-position: center; 
}
  .header-area.header-area-bg {
    background-image: url(../img/bg/header-bg.jpg); }
  .header-area:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-color: #000;
    opacity: 0;
    z-index: -1; }
    .header-area.slider{
      padding: 0 0 0 0;
    }
    .header-area.slider .single-header-slide-item{
        padding: 190px 0 215px 0;
    }
    .header-area.slider .single-header-slide-item.header-area-bg {
         background-image: url(../img/bg/header-bg.jpg);
         background-size: cover;
         background-position: center;
    }
  .header-area .single-header-slide-item h1 {
    margin-bottom: 40px;
    display: block;
    font-weight: 700; }
  .header-area .single-header-slide-item .header-btn-group {
    margin-top: 37px; }
    .header-area .single-header-slide-item .header-btn-group .boxed-btn {
      margin-right: 15px; }


          .header-area.slider .header-slider-carousel .owl-nav div {
            position: absolute;
            left: 20px;
            top: 50%;
            width: 50px;
            height: 50px;
            line-height: 50px;
            background-color: #3880F4;
            text-align: center;
            font-size: 20px;
            border-radius: 50%;
            color: #fff;
            -webkit-transition: all 0.5s ease-in;
            -moz-transition: all 0.5s ease-in;
            -o-transition: all 0.5s ease-in;
            transition: all 0.5s ease-in;
          }

          .header-area.slider .header-slider-carousel .owl-nav:focus {
            outline: none;
          }

          .header-area.slider .header-slider-carousel .owl-nav:hover {
            background-color: #fff;
            color: #3880F4;
          }

          .header-area.slider .header-slider-carousel .owl-nav .owl-next {
            left: auto;
            right: 20px;
          }
.header-circle-magic {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100% !important;
}
.header-circle-magic canvas{
  width: 100% !important;
  height: 100% !important;
}
/*------------------
   Why Choose Us
-------------------*/
.why-choose-us {
  padding-top: 110px;
  padding-bottom: 107px; }
  .why-choose-us .single-why-choose-us-box {
    text-align: center; }
    .why-choose-us .single-why-choose-us-box .icon {
      margin-bottom: 25px;
      -webkit-transition: all 0.5s ease-in;
      -moz-transition: all 0.5s ease-in;
      -o-transition: all 0.5s ease-in;
      transition: all 0.5s ease-in; }
      .why-choose-us .single-why-choose-us-box .icon i {
        color: #3880f4;
        font-size: 50px; }
      .why-choose-us .single-why-choose-us-box .icon svg {
        fill: #3880f4; }
    .why-choose-us .single-why-choose-us-box .content h3 {
      margin-bottom: 18px; }
    .why-choose-us .single-why-choose-us-box:hover .icon {
      -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      transform: rotate(360deg); }

/*------------------
   How It Work
-------------------*/
.how-it-work {
  position: relative;
  padding-top: 110px;
  padding-bottom: 120px;
  z-index: 1; }
  .how-it-work.how-it-work-bg {
    background-image: url(../img/bg/how-it-work-bg.jpg);
    background-position: center;
    background-size: cover; }
  .how-it-work:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .60;
    content: '';
    z-index: -1; }
  .how-it-work .section-title h2 {
    color: #fff; }
  .how-it-work .single-how-it-work-box {
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 50px 30px 40px 30px; }
    .how-it-work .single-how-it-work-box .icon {
      display: inline-block;
      position: relative;
      background: #3880f4;
      width: 60px;
      height: 60px;
      line-height: 60px;
      border-radius: 50%;
      margin-bottom: 10px;
      -webkit-transition: all 0.5s ease-in;
      -moz-transition: all 0.5s ease-in;
      -o-transition: all 0.5s ease-in;
      transition: all 0.5s ease-in; }
      .how-it-work .single-how-it-work-box .icon i {
        color: #fff;
        font-size: 30px; }
      .how-it-work .single-how-it-work-box .icon svg {
        fill: #fff;
        position: absolute;
        left: 50%;
        top: 50%;
        -ms-transform: translate(-50%, -50%);
        /* IE 9 */
        -webkit-transform: translate(-50%, -50%);
        /* Chrome, Safari, Opera */
        transform: translate(-50%, -50%);
        -webkit-transition: all 0.5s ease-in;
        -moz-transition: all 0.5s ease-in;
        -o-transition: all 0.5s ease-in;
        transition: all 0.5s ease-in; }
    .how-it-work .single-how-it-work-box h4 {
      color: #fff;
      font-size: 28px;
      font-weight: 500;
      margin-bottom: 0; }
    .how-it-work .single-how-it-work-box:hover .icon {
      background-color: #fff; }
      .how-it-work .single-how-it-work-box:hover .icon svg {
        fill: #3880f4; }

/*---------------------------
** Mobile Recharge
---------------------------*/
.mobile-recharge-area {
  padding-top: 110px;
  padding-bottom: 120px; }
  .mobile-recharge-area .recharge-right-box {
    -webkit-box-shadow: 0.968px 3.881px 17px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0.968px 3.881px 17px rgba(0, 0, 0, 0.1);
    box-shadow: 0.968px 3.881px 17px rgba(0, 0, 0, 0.1);
    padding: 47px 40px 40px 40px; }
    .mobile-recharge-area .recharge-right-box h3 {
      margin-top: 0;
      margin-bottom: 30px; }
    .mobile-recharge-area .recharge-right-box .single-promo-box {
      border: 2px solid #dbdfe4;
      padding: 33px 40px 27px 40px;
      margin-bottom: 30px;
      position: relative;
      overflow: hidden; }
      .mobile-recharge-area .recharge-right-box .single-promo-box h4 {
        font-size: 20px;
        margin-top: 0;
        font-weight: 500;
        margin-bottom: 15px;
        color: #4b4e59; }
      .mobile-recharge-area .recharge-right-box .single-promo-box:last-child {
        margin-bottom: 0; }
      .mobile-recharge-area .recharge-right-box .single-promo-box .icon {
        position: absolute;
        right: -30px;
        top: -30px;
        width: 80px;
        height: 60px;
        line-height: 40px;
        background-color: #3880f4;
        color: #fff;
        text-align: center;
        -ms-transform: rotate(42deg);
        /* IE 9 */
        -webkit-transform: rotate(42deg);
        /* Chrome, Safari, Opera */
        transform: rotate(42deg); }
        .mobile-recharge-area .recharge-right-box .single-promo-box .icon i {
          -ms-transform: rotate(-42deg);
          /* IE 9 */
          -webkit-transform: rotate(-42deg);
          /* Chrome, Safari, Opera */
          transform: rotate(-42deg);
          position: absolute;
          right: 25px;
          bottom: 7px; }
  .mobile-recharge-area .recharge-left-form {
    -webkit-box-shadow: 0.968px 3.881px 17px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0.968px 3.881px 17px rgba(0, 0, 0, 0.1);
    box-shadow: 0.968px 3.881px 17px rgba(0, 0, 0, 0.1);
    padding: 47px 40px 40px 40px; }
    .mobile-recharge-area .recharge-left-form h3 {
      margin-top: 0;
      margin-bottom: 30px; }
    .mobile-recharge-area .recharge-left-form .input-group {
      display: block; }
    .mobile-recharge-area .recharge-left-form .radio-btn-group {
      margin-bottom: 27px; }
      .mobile-recharge-area .recharge-left-form .radio-btn-group .custom-radio {
        display: inline-block;
        position: relative;
        padding-left: 25px;
        margin-bottom: 12px;
        margin-right: 25px;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none; }
        .mobile-recharge-area .recharge-left-form .radio-btn-group .custom-radio input {
          position: absolute;
          opacity: 0;
          cursor: pointer; }
          .mobile-recharge-area .recharge-left-form .radio-btn-group .custom-radio input:checked ~ .radio-box {
            background-color: #fff;
            border-color: #3880f4; }
            .mobile-recharge-area .recharge-left-form .radio-btn-group .custom-radio input:checked ~ .radio-box:after {
              display: block; }
        .mobile-recharge-area .recharge-left-form .radio-btn-group .custom-radio .radio-box {
          position: absolute;
          top: 3px;
          left: 0;
          height: 15px;
          width: 15px;
          border: 2px solid #c3c3c3;
          border-radius: 50%;
          -webkit-transition: all 0.5s ease-in;
          -moz-transition: all 0.5s ease-in;
          -o-transition: all 0.5s ease-in;
          transition: all 0.5s ease-in; }
          .mobile-recharge-area .recharge-left-form .radio-btn-group .custom-radio .radio-box:after {
            position: absolute;
            content: '';
            top: 3px;
            left: 3px;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background-color: #3880f4;
            -ms-transform: tranlate(-50%, -50%);
            /* IE 9 */
            -webkit-transform: tranlate(-50%, -50%);
            /* Chrome, Safari, Opera */
            transform: tranlate(-50%, -50%);
            display: none; }
        .mobile-recharge-area .recharge-left-form .radio-btn-group .custom-radio:hover input ~ .radio-box {
          border-color: #3880f4; }
    .mobile-recharge-area .recharge-left-form .checkbox-group {
      margin-top: 20px;
      margin-bottom: 30px; }
      .mobile-recharge-area .recharge-left-form .checkbox-group .d-checkbox {
        width: 20px;
        height: 20px;
        position: relative;
        background: #fff;
        border: 2px solid rgba(238, 238, 238, 0.5);
        border-radius: 5px;
        margin-bottom: 20px; }
        .mobile-recharge-area .recharge-left-form .checkbox-group .d-checkbox:last-child {
          margin-bottom: 0; }
        .mobile-recharge-area .recharge-left-form .checkbox-group .d-checkbox span {
          position: absolute;
          display: block;
          width: 250px;
          left: 30px;
          top: -2px;
          color: #3880f4; }
        .mobile-recharge-area .recharge-left-form .checkbox-group .d-checkbox label {
          width: 20px;
          height: 20px;
          position: absolute;
          top: 0px;
          left: 0px;
          cursor: pointer;
          border-radius: 50px; }
          .mobile-recharge-area .recharge-left-form .checkbox-group .d-checkbox label:after {
            content: '';
            width: 9px;
            height: 5px;
            position: absolute;
            top: 5px;
            left: 4px;
            border: 3px solid #3880f4;
            border-top: none;
            border-right: none;
            background: transparent;
            opacity: 0;
            -ms-transform: rotate(-45deg);
            /* IE 9 */
            -webkit-transform: rotate(-45deg);
            /* Chrome, Safari, Opera */
            transform: rotate(-45deg); }
          .mobile-recharge-area .recharge-left-form .checkbox-group .d-checkbox label:hover::after {
            opacity: 0; }
        .mobile-recharge-area .recharge-left-form .checkbox-group .d-checkbox input[type=checkbox] {
          visibility: hidden; }
          .mobile-recharge-area .recharge-left-form .checkbox-group .d-checkbox input[type=checkbox]:checked + label:after {
            opacity: 1; }

/*---------------------------
** Choose Plan
---------------------------*/
.choose-plan {
  position: relative;
  z-index: 1;
  padding-bottom: 120px;
  padding-top: 107px; }
  .choose-plan:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .2;
    display: none; }
  .choose-plan.choose-plan-bg {
    background-color: #ddd;
    background-position: center;
    background-size: cover;
    background-image: url(../img/bg/choose-plan.jpg); }
  .choose-plan .single-price-plan {
    border: 2px solid rgba(56, 128, 244, 0.3);
    text-align: center;
    background-color: #fff;
    position: relative;
    border-radius: 5px; }
    .choose-plan .single-price-plan .premium {
      position: absolute;
      left: 50%;
      top: -25px;
      display: inline-block;
      text-transform: uppercase;
      background-color: #ff0066;
      color: #fff;
      font-weight: 500;
      padding: 15px 25px;
      border-radius: 25px;
      -ms-transform: translateX(-50%);
      /* IE 9 */
      -webkit-transform: translateX(-50%);
      /* Chrome, Safari, Opera */
      transform: translateX(-50%); }
    .choose-plan .single-price-plan .header {
      padding: 59px 0 30px 0;
      border-bottom: 1px solid #d4d4d4;
      margin: 0 40px 37px 40px; }
      .choose-plan .single-price-plan .header .pname {
        color: #303443;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase; }
      .choose-plan .single-price-plan .header h2 {
        font-size: 62px;
        font-weight: 700;
        margin-top: 10px;
        margin-bottom: 0; }
      .choose-plan .single-price-plan .header .month {
        color: #4b4e59; }
    .choose-plan .single-price-plan .body {
      padding: 0 0 40px 0; }
      .choose-plan .single-price-plan .body .boxed-btn {
        display: block;
        margin: 0 40px 0 40px; }
      .choose-plan .single-price-plan .body ul {
        padding-bottom: 35px; }
        .choose-plan .single-price-plan .body ul li {
          color: #4b4e59;
          padding: 13px 0; }
          .choose-plan .single-price-plan .body ul li:first-child {
            padding-top: 0; }
          .choose-plan .single-price-plan .body ul li:last-child {
            padding-bottom: 0; }

/*---------------------------
** Reffer 
---------------------------*/
.reffer-section {
  padding: 100px 0 90px 0;
  background-color: #f2f3f4; }
  .reffer-section .service-image {
    display: inline-block;
    max-width: 100%;
    border: 5px solid #303443;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  .reffer-section .single-reffer-box {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 50px 50px 50px; }
    .reffer-section .single-reffer-box .boxed-btn {
      border: 2px solid transparent;
      padding: 13px 38px; }
      .reffer-section .single-reffer-box .boxed-btn.blank {
        color: #fff;
        border-color: #3880f4; }
        .reffer-section .single-reffer-box .boxed-btn.blank:hover {
          background-color: #3880f4; }
      .reffer-section .single-reffer-box .boxed-btn:hover {
        background-color: transparent;
        border: 2px solid #3880f4; }
    .reffer-section .single-reffer-box:hover:after {
      opacity: .90; }
    .reffer-section .single-reffer-box:after {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      content: '';
      background-color: #303443;
      -webkit-transition: all 0.5s ease-in;
      -moz-transition: all 0.5s ease-in;
      -o-transition: all 0.5s ease-in;
      transition: all 0.5s ease-in; }
    .reffer-section .single-reffer-box.reffer-bg {
      background-color: #000;
      background-image: url(../img/bg/reffer-bg.jpg);
      background-position: center;
      background-size: cover; }
    .reffer-section .single-reffer-box .icon {
      font-size: 46px;
      color: #3880f4;
      padding-bottom: 7px; }
    .reffer-section .single-reffer-box .content h4 {
      color: #fff;
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 40px;
      line-height: 32px; }
    .reffer-section .single-reffer-box .search-store {
      position: relative;
      display: block; }
      .reffer-section .single-reffer-box .search-store input[type=text] {
        width: 100%;
        border-radius: 25px;
        position: relative;
        background-color: rgba(255, 255, 255, 0.1);
        border: 2px solid #ddd;
        padding-right: 40%;
        color: #fafbfb;
        margin-bottom: 2px; }
        .reffer-section .single-reffer-box .search-store input[type=text]::-webkit-input-placeholder {
          /* WebKit browsers */
          color: rgba(250, 251, 251, 0.6); }
        .reffer-section .single-reffer-box .search-store input[type=text]:-moz-placeholder {
          /* Mozilla Firefox 4 to 18 */
          color: rgba(250, 251, 251, 0.6); }
        .reffer-section .single-reffer-box .search-store input[type=text]::-moz-placeholder {
          /* Mozilla Firefox 19+ */
          color: rgba(250, 251, 251, 0.6); }
        .reffer-section .single-reffer-box .search-store input[type=text]:-ms-input-placeholder {
          /* Internet Explorer 10+ */
          color: rgba(250, 251, 251, 0.6); }
      .reffer-section .single-reffer-box .search-store input[type=submit] {
        position: absolute;
        top: 2px;
        right: 2px;
        width: 40%;
        display: inline-block;
        padding: 11.5px 15px;
        -webkit-transition: all 0.5s ease-in;
        -moz-transition: all 0.5s ease-in;
        -o-transition: all 0.5s ease-in;
        transition: all 0.5s ease-in; }
        .reffer-section .single-reffer-box .search-store input[type=submit]:hover {
          background-color: transparent;
          border: 2px solid #3880f4;
          padding: 9.5px 15px; }

/*---------------------------
** Award Winning
---------------------------*/
.award-wining-area {
  padding-top: 110px;
  padding-bottom: 120px;
  background-color: #303443; }
  .award-wining-area .section-title h2 {
    color: #fff; }
  .award-wining-area .right-content {
    color: #bab9b9; }
    .award-wining-area .right-content p {
      color: #bab9b9;
      margin-bottom: 20px; }
    .award-wining-area .right-content h3 {
      color: #fff;
      margin-bottom: 37px;
      font-family: 500; }
    .award-wining-area .right-content li {
      padding: 7px 0; }
      .award-wining-area .right-content li i {
        color: #3880f4;
        padding-right: 5px; }
    .award-wining-area .right-content .boxed-btn {
      margin-top: 32px;
      border: 2px solid transparent;
      padding: 11px 36px; }
      .award-wining-area .right-content .boxed-btn:hover {
        background-color: transparent;
        border: 2px solid #ddd; }

/*---------------------------
** Contact Area
---------------------------*/
.contact-area {
  position: relative;
  background-color: #f2f3f4; }
  .contact-area .google-map {
    position: absolute;
    left: 0;
    width: 40%;
    height: 100%; }
    .contact-area .google-map #map {
      width: 100%;
      height: 100%; }
  .contact-area .contact-form {
    padding-top: 87px;
    padding-bottom: 80px;
    padding-left: 20px; }
    .contact-area .contact-form h2 {
      margin-top: 0;
      margin-bottom: 44px; }
      .contact-area .contact-form h2 span {
        color: #3880f4; }
    .contact-area .contact-form input {
      margin-bottom: 20px;
      background-color: #FAFAFA; }
    .contact-area .contact-form textarea {
      background-color: #FAFAFA; }
    .contact-area .contact-form input[type=submit] {
      margin-top: 30px;
      display: inline-block;
      padding: 15px 35px;
      width: auto;
      background-color: #3880f4; }
      .contact-area .contact-form input[type=submit]:hover {
        background-color: #303443; }

/*---------------------------
** faq area
---------------------------*/
.faq-area-start {
  /*background-color: #f2f3f4;*/
  padding-top: 110px;
  padding-bottom: 100px; }
  .faq-area-start .faq-accordion .panel-title {
    font-size: 14px;
    font-weight: 400;
    color: #303443; }
  .faq-area-start .faq-accordion .panel {
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 17px;
	}
  .faq-area-start .faq-accordion .panel-default > .panel-heading {
    border: none;
    background-color: transparent;
    padding: 0; }
    .faq-area-start .faq-accordion .panel-default > .panel-heading a {
      padding: 15px 30px;
      display: block;
      border: 2px solid #E4E5E6;
      background-color: #F2F3F4;
      position: relative; }
      .faq-area-start .faq-accordion .panel-default > .panel-heading a:after {
        position: absolute;
        right: 20px;
        content: '\f0ab';
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        color: #3880f4; }
    .faq-area-start .faq-accordion .panel-default > .panel-heading a[aria-expanded="true"] {
      border-bottom: none;
      background-color: #fff; }
      .faq-area-start .faq-accordion .panel-default > .panel-heading a[aria-expanded="true"]:after {
        position: absolute;
        right: 20px;
        content: '\f0aa';
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        color: #3880f4; }
  .faq-area-start .faq-accordion .panel-group .panel-heading + .panel-collapse > .panel-body {
    border: 2px solid #E4E5E6;
    border-top: none; }
  .faq-area-start .faq-accordion .panel-body {
    padding: 30px;
    padding-top: 10px;
    padding-bottom: 27px; }
    .faq-accordion .panel {
    	margin-right: 30px;
     	height: 150px;
    }

/*---------------------------
** Subscription Area
---------------------------*/
.subscription-area {
  background-color: #303443;
  padding-top: 108px;
  padding-bottom: 120px; }
  .subscription-area .section-title h2 {
    color: #fff; }
  .subscription-area .subscription-form {
    position: relative;
    margin-bottom: 40px; }
    .subscription-area .subscription-form input {
      border-radius: 25px;
      border: 2px solid rgba(255, 255, 255, 0.2);
      background-color: transparent;
      color: #fafbfb;
      position: relative; }
      .subscription-area .subscription-form input::-webkit-input-placeholder {
        /* WebKit browsers */
        color: rgba(250, 251, 251, 0.5); }
      .subscription-area .subscription-form input:-moz-placeholder {
        /* Mozilla Firefox 4 to 18 */
        color: rgba(250, 251, 251, 0.5); }
      .subscription-area .subscription-form input::-moz-placeholder {
        /* Mozilla Firefox 19+ */
        color: rgba(250, 251, 251, 0.5); }
      .subscription-area .subscription-form input:-ms-input-placeholder {
        /* Internet Explorer 10+ */
        color: rgba(250, 251, 251, 0.5); }
    .subscription-area .subscription-form input[type=submit] {
      border: none;
      background-color: #3880f4;
      width: 150px;
      position: absolute;
      top: 2px;
      right: 2px;
      border: 2px solid #3880f4;
      padding: 9.5px 12px; }
      .subscription-area .subscription-form input[type=submit]:hover {
        background-color: transparent;
        border: 2px solid rgba(255, 255, 255, 0.2);
        padding: 9.5px 12px; }
  .subscription-area .social-links-footer li {
    display: inline-block; }
    .subscription-area .social-links-footer li a {
      display: inline-block;
      color: #fff;
      width: 40px;
      height: 40px;
      line-height: 40px;
      border: 2px solid rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      -webkit-transition: all 0.5s ease-in;
      -moz-transition: all 0.5s ease-in;
      -o-transition: all 0.5s ease-in;
      transition: all 0.5s ease-in; }
      .subscription-area .social-links-footer li a:hover {
        background-color: #3880f4;
        border-color: #3880f4; }

/*---------------------------
** Footer Area
---------------------------*/
.footer-area {
  background-color: #e60000;
  color: #eee;
  padding: 25px 0;
}

.fix-footer .footer-area {
	position: fixed;
  	bottom: 0px;
  	width: 100%;
}

label.error {
    color: red;
    font-size: 90%;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 20px;
}