@charset "UTF-8";

/*

Style   : MobApp CSS
Version : 1.0
Author  : Surjith S M
URI     : https://surjithctly.in/

Copyright © All rights Reserved 

*/

/*------------------------
[TABLE OF CONTENTS]
    
1. GLOBAL STYLES
2. NAVBAR
3. HERO
4. TABS
5. TESTIMONIALS
6. IMAGE GALLERY
7. PRICING
8. CALL TO ACTION
9. FOOTER

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

/* CUSTOM */

.image-source-link {
	color: #98C3D1;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
	opacity: 0;
	-webkit-backface-visibility: hidden;
	/* ideally, transition speed should match zoom duration */
	-webkit-transition: all 0.3s ease-out; 
	-moz-transition: all 0.3s ease-out; 
	-o-transition: all 0.3s ease-out; 
	transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
		opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
		opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container, 
.mfp-with-zoom.mfp-removing.mfp-bg {
	opacity: 0;
}

a.nav-link {
  font-size: 14px !important;
}

.yellow-button {
  background-color: #ffd500;
  border: 0;
  border-radius: 5px;
  color: #2c2f3f;
  cursor: pointer;
  display: inline-block;
  font-family: Inter, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.8rem;
  padding: 1rem 1.5rem;
  text-align: center;
  text-decoration: none !important;
  transition: background-color 0.3s ease-in-out;
}

.yellow-button:hover,
.yellow-button:focus {
  background-color: #ffe500;
  color: #1a1c25 !important;
  outline: none;
}

.yellow-button:disabled {
  background-color: #eaebf2;
  color: #8f93a6;
  cursor: auto;
}

.form {
  background-color: #fff;
  border-radius: 4px;
  padding: 3rem;
}

.form__input,
.form__textarea {
  border-radius: 5px;
  border: 1px solid #e0e1e8;
  color: #2c2f3f;
  font-family: Inter, sans-serif;
  font-size: 1.2rem;
  max-width: 49rem;
  padding: 1.1rem 1rem;
  margin-top: 4px;
  width: 100%;
}

.form__input::placeholder {
  color: #b4b7cf;
}

.form__textarea::placeholder {
  color: #b4b7cf;
}
.form__textarea {
  resize: vertical;
  min-height: 7.6rem;
  max-height: 20rem;
}

.form__label {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6rem;
}

.form__control:not(:last-child) {
  margin-bottom: 1.6rem;
}

.form__button-wrapper {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 48.75em) {
  .form {
    padding: 1.2rem;
  }

  .form__input,
  .form__textarea {
    max-width: 100%;
    width: 100%;
  }
}

/* GLOBAL
----------------------*/

body {
  font-family: "Rubik", sans-serif;
  position: relative;
}

a {
  color: #027dde;
}

a:hover,
a:focus {
  color: #027dde;
}

h1 {
  font-size: 54px;
  font-weight: 300;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

h2 {
  font-size: 45px;
  font-weight: 300;
  color: #004a85;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

h3 {
  color: #004a85;
  font-size: 33px;
  font-weight: 500;
}

h4 {
  font-size: 20px;
  font-weight: 500;
  color: #004a85;
}

h5 {
  font-size: 28px;
  font-weight: 300;
  color: #004a85;
  margin-bottom: 0.7rem;
}

p {
  color: #959094;
}

p.lead {
  color: #027dde;
  margin-bottom: 2rem;
}

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

.light-font {
  font-weight: 300;
}

.btn {
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 0.375rem 1.35rem;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  color: #027dde;
}

.btn-primary {
  border-radius: 3px;
  background-image: -moz-linear-gradient(122deg, #027dde 0%, #004a85 100%);
  background-image: -webkit-linear-gradient(122deg, #027dde 0%, #004a85 100%);
  background-image: -ms-linear-gradient(122deg, #027dde 0%, #004a85 100%);
  background-image: linear-gradient(122deg, #027dde 0%, #004a85 100%);
  box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.2);
  font-weight: 500;
  padding: 0.6rem 2rem;
  border: 0;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:not([disabled]):not(.disabled).active,
.btn-primary:not([disabled]):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  background-image: linear-gradient(122deg, #004a85 0%, #027dde 100%);
  box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.btn-light {
  border-radius: 3px;
  background: #fff;
  box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.26);
  font-size: 14px;
  font-weight: 500;
  color: #027dde;
  margin: 0.5rem;
  padding: 0.7rem 1.6rem;
  line-height: 1.8;
}

.btn-group-lg > .btn,
.btn-lg {
  padding: 0.8rem 1rem;
  font-size: 15px;
}

.light-bg {
  background-color: #f1f1f1;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title small {
  color: #998a9b;
}

@media (max-width: 767px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 30px;
  }
}

/* NAVBAR
----------------------*/

.nav-menu {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav-menu.is-scrolling,
.nav-menu.menu-is-open {
  background-color: #004a85;
  background: -moz-linear-gradient(135deg, #004a85 0%, #027dde 100%);
  background: -webkit-linear-gradient(135deg, #004a85 0%, #027dde 100%);
  background: linear-gradient(135deg, #004a85 0%, #027dde 100%);
  -webkit-box-shadow: 0px 5px 23px 0px rgba(37, 209, 14, 0.849);
  -moz-box-shadow: 0px 5px 23px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 23px 0px rgba(0, 0, 0, 0.1);
}

.nav-menu.is-scrolling {
  padding: 0;
}

.navbar-nav .nav-link {
  position: relative;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
    font-size: 14px;
  }
  .navbar-nav > .nav-item > .nav-link.active:after {
    content: "";
    border-bottom: 2px solid #fff;
    left: 1rem;
    right: 1rem;
    bottom: 5px;
    height: 1px;
    position: absolute;
  }
}

@media (max-width: 991px) {
  .navbar-nav.is-scrolling {
    padding-bottom: 1rem;
  }
  .navbar-nav .nav-item {
    text-align: center;
  }
}

/* HERO
----------------------*/

header {
  padding: 100px 0 0;
  text-align: center;
  color: #fff;
}

.bg-gradient {
  background-image: -moz-linear-gradient(135deg, #004a85 0%, #027dde 100%);
  background-image: -webkit-linear-gradient(135deg, #004a85 0%, #027dde 100%);
  background-image: -ms-linear-gradient(135deg, #004a85 0%, #027dde 100%);
  background-image: linear-gradient(135deg, #004a85 0%, #027dde 100%);
}

.bg-wallpaper {
  background-image: url("../images/bg-wallpaper.png");
  background-size: cover;
}

.tagline {
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
}

.img-holder {
  height: 0;
  padding-bottom: 27%;
  overflow: hidden;
  max-width: 1280px;

  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1200px) {
  .img-holder {
    padding-bottom: 50%;
  }

  .sale-off {
    top: -68px;
  }

  .sale-off img {
    max-width: 190px;
  }
}

@media (max-width: 767px) {
  .tagline {
    font-size: 17px;
  }
  .img-holder {
    padding-bottom: 100%;
  }

  .sale-off {
    top: -48px !important;
    z-index: 10;
  }

  .sale-off img {
    max-width: 130px;
  }
}

/* FEATURES
----------------------*/

.gradient-fill:before {
  color: #004a85;
  background: -moz-linear-gradient(top, #004a85 0%, #027dde 100%);
  background: -webkit-linear-gradient(top, #004a85 0%, #027dde 100%);
  background: linear-gradient(to bottom, #004a85 0%, #027dde 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card.features {
  border: 0;
  border-radius: 3px;
  box-shadow: 0px 5px 7px 0px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  min-height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card.features .card-body {
  flex: 0 !important;
}

@media (max-width: 991px) {
  .card.features {
    margin-bottom: 2rem;
  }
  [class^="col-"]:last-child .card.features {
    margin-bottom: 0;
  }
}

.card.features:before {
  content: "";
  position: absolute;
  width: 3px;
  color: #004a85;
  background: -moz-linear-gradient(top, #004a85 0%, #027dde 100%);
  background: -webkit-linear-gradient(top, #004a85 0%, #027dde 100%);
  background: linear-gradient(to bottom, #004a85 0%, #027dde 100%);
  top: 0;
  bottom: 0;
  left: 0;
}

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

.card.features:hover {
  transform: translateY(-3px);
  -moz-box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.08);
}

.box-icon {
  box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.14);
  padding: 10px;
  width: 70px;
  border-radius: 3px;
  margin-bottom: 1.5rem;
  background-color: #fff;
}

.circle-icon {
  box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.07);
  padding: 10px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  background-color: #fff;
  color: #f5378e;
  font-size: 48px;
  text-align: center;
  line-height: 80px;
  font-weight: 300;
  transition: all 0.3s ease;
}

@media (max-width: 992px) {
  .circle-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
    line-height: 50px;
  }
}

.ui-steps li:hover .circle-icon {
  background-image: -moz-linear-gradient(122deg, #004a85 0%, #027dde 100%);
  background-image: -webkit-linear-gradient(122deg, #004a85 0%, #027dde 100%);
  background-image: -ms-linear-gradient(122deg, #004a85 0%, #027dde 100%);
  background-image: linear-gradient(122deg, #004a85 0%, #027dde 100%);
  box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.09);
  color: #fff;
}

.ui-steps li {
  padding: 15px 0;
}

.ui-steps li:not(:last-child) {
  border-bottom: 1px solid #f8e3f0;
}

.perspective-phone {
  position: relative;
  z-index: -1;
}

@media (min-width: 992px) {
  .perspective-phone {
    margin-top: -150px;
  }
}

/* LEFFA EDIT

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

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center;
}

.b-blue {
  color: #027dde;
}

/*  TABS
----------------------*/

.tab-content {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  background-color: #fff;
  box-shadow: 0px 5px 7px 0px rgba(0, 0, 0, 0.04);
  padding: 3rem;
}

@media (max-width: 992px) {
  .tab-content {
    padding: 1.5rem;
  }
}

.tab-content p {
  line-height: 1.8;
}

.tab-content h2 {
  margin-bottom: 25px;
}

.nav-tabs {
  border-bottom: 0;
}

.nav-tabs .nav-item .nav-link,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  padding: 1rem 1rem;
  border-color: #faf6fb #faf6fb #fff;
  font-size: 19px;
  color: #6dbefc;
  background: #feffff;
}

.nav-tabs .nav-link.active {
  background: #004a85;
  border-top-width: 3px;
  border-color: #027dde #faf6fb #fff;
  color: #fff;
}

.draw-line-icon {
  transform: rotate(270deg);
}

/*  TESTIMONIALS
----------------------*/

.owl-carousel .owl-item img.client-img {
  width: 110px;
  margin: 30px auto;
  border-radius: 50%;
  box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.07);
}

.testimonials-single {
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
}

.blockquote {
  color: #7a767a;
  font-weight: 300;
}

.owl-next.disabled,
.owl-prev.disabled {
  opacity: 0.5;
}

.owl-prev,
.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.owl-prev {
  left: 0;
}

.owl-next {
  right: 0;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 60px;
}

.owl-theme .owl-dots .owl-dot span {
  background: #e7d9eb;
  width: 35px;
  height: 8px;
  border-radius: 10px;
  transition: all 0.3s ease-in;
}

.owl-theme .owl-dots .owl-dot:hover span {
  background: #027dde;
}

.owl-theme .owl-dots .owl-dot.active span {
  background: #027dde;
  box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.07);
}

/*  IMAGE GALLERY
----------------------*/

.img-gallery .owl-item {
  box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.07);
  transform: scale(0.8);
  transition: all 0.3s ease-in;
}

.img-gallery .owl-item.center {
  transform: scale(1);
}

/*  PRICING
----------------------*/

@media (max-width: 992px) {
  .card-deck {
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .card-deck .card {
    margin-bottom: 15px;
  }
}

.card.pricing {
  border: 1px solid #f1eef1;
}

.card.pricing.popular {
  border-top-width: 3px;
  border-color: #027dde #faf6fb #fff;
  box-shadow: 0px 12px 59px 0px rgba(36, 7, 31, 0.11);
  color: #027dde;
  position: relative;
}

.sale-off {
  position: absolute;
  top: 10px;
  right: 10px;
}

.card.pricing .card-head {
  text-align: center;
  padding: 40px 0 20px;
}

.card.pricing .card-head .price {
  display: block;
  font-size: 45px;
  font-weight: 300;
  color: #027dde;
}

.card.pricing .card-head .price sub {
  bottom: 0;
  font-size: 55%;
}

.card.pricing .list-group-item {
  border: 0;
  text-align: center;
  color: #959094;
  padding: 10px 0;
}

.card.pricing .list-group-item del {
  color: #d9d3d8;
}

.card.pricing .card-body {
  padding: 1.75rem;
}

.lightbox-img-thumb {
  width: 200px;
  height: 100px;
}

/*  CALL TO ACTION
----------------------*/

.call-to-action {
  text-align: center;
  color: #fff;
  margin: 3rem 0;
}

.call-to-action .box-icon {
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  transform: scale(0.85);
  margin-bottom: 2.5rem;
}

.call-to-action h2 {
  color: #fff;
}

.call-to-action .tagline {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  max-width: 650px;
  margin: 0 auto;
}

.btn-light img {
  margin-right: 0.4rem;
  vertical-align: text-bottom;
}

/*  FOOTER
----------------------*/

.social-icons {
  text-align: right;
}

.social-icons a {
  background-color: #fff;
  box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.05);
  width: 50px;
  height: 50px;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  margin: 0 0.3rem;
  border-radius: 5px;
  color: #027dde;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  text-decoration: none;
  background: #027dde;
  color: #fff;
}

@media (max-width: 991px) {
  .social-icons {
    text-align: center;
    margin-top: 2rem;
  }
}

/*=============================================
[ Page Setup ]
==============================================*/
#rocket-wrap {
  width: 100%;
  overflow: hidden;
  margin-top: -40px;
}
#rocket {
  display: block;
  margin: 0 auto;
}

/*=============================================
[ Inactive State Styles ]
==============================================*/

.rocket_inner {
  transform: translateY(0.938rem) translateX(-0.188rem);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.icon_circle {
  transition: 0.2s;
  fill: #22303e;
}
.large_window_path {
  transition: 0.2s;
  fill: #22303e;
}
.small_window_path {
  fill: #22303e;
}
.wing_shadow {
  fill: #34495e;
}
.rocket_bottom {
  fill: #34495e;
}
.rocket_base {
  fill: #34495e;
}
.rocket_shadow {
  fill: #34495e;
}
.window_grandient {
  stop-color: #2dcb73;
}
.window_grandient1 {
  stop-color: #2ac16d;
}
.window_grandient2 {
  stop-color: #29b968;
}
.window_grandient3 {
  stop-color: #28b767;
}
.wing_base {
  fill: #34495e;
}
.fire_path {
  fill: #fc0;
}

/*=============================================
[ Hover Styles ]
==============================================*/
.rocket_wrap .rocket_base {
  fill: #ffffff !important;
  stroke-width: 0 !important;
}
.rocket_wrap .rocket_shadow {
  fill: #ededed !important;
  stroke-width: 0 !important;
}
.rocket_wrap .icon_circle {
  fill: #6e6e6e !important;
  stroke: #bdbdbd !important;
  stroke-width: 0.438rem !important;
}
.rocket_wrap .small_window_path {
  fill: #28b767 !important;
  stroke-width: 0 !important;
}
.rocket_wrap .wing_shadow {
  display: block !important;
  fill: #fc9252 !important;
}
.rocket_wrap .wing_base {
  fill: #e16e36 !important;
  stroke-width: 0 !important;
}
.rocket_wrap .rocket_bottom {
  fill: #2dcb73 !important;
  stroke-width: 0 !important;
}
.rocket_wrap .large_window_path {
  fill: url(#SVGID_2_) !important;
  stroke-width: 0 !important;
}
.rocket_wrap .rocket_inner {
  transform: translateY(0px) translateX(-3px) !important;
}

/*=============================================
[ Animation Classes ]
==============================================*/
.fire {
  display: none;
  animation-delay: 0s;
  fill-opacity: 1;
  animation-timing-function: ease-in;
  stroke-width: 0;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transform-origin: 50% 50%;
  animation-direction: normal;
}
.rocket_wrap #fireLeft {
  display: block;
  animation-delay: 0s;
  animation-name: fireLeft, fillOpacity1;
  animation-duration: 1.2s;
}
.rocket_wrap #fireMiddle {
  display: block;
  animation-delay: 0s;
  animation-name: fireMiddle, fillOpacity1;
  animation-duration: 1s;
}
.rocket_wrap #fireRight {
  display: block;
  animation-delay: 0s;
  animation-name: fireRight, fillOpacity1;
  animation-duration: 1.3s;
}
.rocket_wrap #fireSmallLeft {
  display: block;
  animation-delay: 0s;
  animation-name: fireSmall, fillOpacity2;
  animation-duration: 1.3s;
  transform-origin: bottom;
}
.rocket_wrap #fireSmallRight {
  display: block;
  animation-delay: 0.3s;
  animation-name: fireSmall, fillOpacity3;
  animation-duration: 1.6s;
  transform-origin: bottom;
}
/*=============================================
[ KeyFrame Animations ]
==============================================*/
@keyframes fireSmall {
  10% {
    transform: rotate(17deg) translateY(1px);
  }
  20% {
    transform: rotate(-13deg) translateY(2px);
  }
  30% {
    transform: rotate(21deg) translateY(3px);
  }
  40% {
    transform: rotate(-34deg) translateY(4px);
  }
  50% {
    transform: rotate(24deg) translateY(5px);
  }
  60% {
    transform: rotate(-17deg) translateY(6px);
  }
  70% {
    transform: rotate(31deg) translateY(7px);
  }
  80% {
    transform: rotate(-28deg) translateY(8px);
  }
  90% {
    transform: rotate(14deg) translateY(9px);
  }
  99% {
    transform: rotate(0deg) translateY(10px);
  }
}
@keyframes fireLeft {
  6% {
    transform: rotate(25deg);
  }
  15% {
    transform: rotate(-19deg);
  }
  25% {
    transform: rotate(25deg);
  }
  32% {
    transform: rotate(-30deg);
  }
  46% {
    transform: rotate(22deg);
  }
  54% {
    transform: rotate(-29deg);
  }
  61% {
    transform: rotate(32deg);
  }
  74% {
    transform: rotate(-9deg);
  }
  83% {
    transform: rotate(16deg);
  }
  99% {
    transform: rotate(0deg);
  }
}
@keyframes fireMiddle {
  10% {
    transform: rotate(25deg);
  }
  20% {
    transform: rotate(-25deg);
  }
  30% {
    transform: rotate(30deg);
  }
  40% {
    transform: rotate(-22deg);
  }
  50% {
    transform: rotate(29deg);
  }
  60% {
    transform: rotate(-45deg);
  }
  70% {
    transform: rotate(37deg);
  }
  80% {
    transform: rotate(-15deg);
  }
  90% {
    transform: rotate(16deg);
  }
  99% {
    transform: rotate(0deg);
  }
}
@keyframes fireRight {
  15% {
    transform: rotate(17deg);
  }
  23% {
    transform: rotate(-13deg);
  }
  37% {
    transform: rotate(21deg);
  }
  45% {
    transform: rotate(-34deg);
  }
  54% {
    transform: rotate(24deg);
  }
  67% {
    transform: rotate(-17deg);
  }
  72% {
    transform: rotate(31deg);
  }
  84% {
    transform: rotate(-28deg);
  }
  96% {
    transform: rotate(14deg);
  }
  99% {
    transform: rotate(0deg);
  }
}
@keyframes fillOpacity1 {
  0% {
    fill-opacity: 1;
    stroke-opacity: 1;
  }
  50% {
    fill-opacity: 1;
    stroke-opacity: 1;
  }
  100% {
    fill-opacity: 0;
    stroke-opacity: 0;
  }
}
@keyframes fillOpacity2 {
  0% {
    fill-opacity: 1;
    stroke-opacity: 1;
  }
  25% {
    fill-opacity: 1;
    stroke-opacity: 1;
  }
  100% {
    fill-opacity: 0;
    stroke-opacity: 0;
  }
}
@keyframes fillOpacity3 {
  0% {
    fill-opacity: 1;
    stroke-opacity: 1;
  }
  67% {
    fill-opacity: 1;
    stroke-opacity: 1;
  }
  100% {
    fill-opacity: 0;
    stroke-opacity: 0;
  }
}
@keyframes rocektMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(1.25rem);
  }
}
