@import url(https://fonts.googleapis.com/css?family=Poppins:400,700,500);
html {
  height: 100%;
  /* display: flex; */
}

body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #fff;
  font-family: "Poppins";
  font-weight: 400;
  color:  #343434;
  line-height: 26px;
  padding: 0;
  font-size: 16px;
  padding-top: 85px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

p {
  font-size: 18px;
}

a {
  color: #3799da;
  -webkit-transition: color 400ms, background-color 400ms;
  -moz-transition: color 400ms, background-color 400ms;
  -o-transition: color 400ms, background-color 400ms;
  transition: color 400ms, background-color 400ms;
}
a:hover,
a:focus {
  text-decoration: none;
  color: #68c1fd;
}
hr {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #fff;
}

.realrow {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  gap: 25px;
} 

.section-header {
  margin-bottom: 30px;
}
.section-header p {
  text-align: center;
}
.section-header .section-title {
  font-size: 44px;
  color:  #343434;
  padding-bottom: 20px;
  margin: 0 0 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.section-header .section-subtitle {
  font-size: 20px;
  color:  #343434;;
  position: relative;
  padding-bottom: 20px;
  margin: 0 0 20px;

  display: block;
  text-align: center;
}
.section-header .section-title:after {
  content: "";
  width: 140px;
  border-radius: 5px;
  margin: 0 auto;
  margin-top: 30px;
  height: 6px;
  background: linear-gradient(to right, #fcec9b 0%, #ff99cc 100%);
  border-bottom: 3px solid linear-gradient(to right, #fcec9b 0%, #ff99cc 100%);
}

.section-header .subheader {
  font-size: 20px;
  margin-top: 30px;
  margin: 0 15%;
}

.btn {
  border-width: 0;
  border-radius: 50px;
}
.btn.btn-primary {
  background: #ffffff;
  border: 3px solid #8091be;
  box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.25);
  padding: 20px 40px;
  font-size: 25px;
  color:  #343434;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
  background: #f4eafa;
}

.btn.btn-secondary {
  background: #c6e8ff;
  padding: 10px 30px;
}
.btn.btn-secondary:hover,
.btn.btn-secondary:focus {
  background: #acdaf9;
}

.apple-button {
  width: 240px;
  height: 80px;
  background: url("../images/logo/appstore-grey.svg");
  background-size: cover;
}

.playstore-button {
  width: 264px;
  height: 80px;
  background: url("../images/logo/google-play-badge.png");
  background-size: cover;
}


.listarrow {
  padding: 0px;
  
  display: flex;
  flex-direction: column;
  font-size: 18px;

  gap: 15px;
}
.listarrow li {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.listarrow li i {
  padding-right: 15px;
  color: #e5d5fd;
}
.column-title {
  margin-top: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
  position: relative;
  color:  #343434;
}
.column-title:after {
  content: " ";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40%;
}
ul.nostyle {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
ul.nostyle i {
  color: #45aed6;
}
.scaleIn {
  -webkit-animation-name: scaleIn;
  animation-name: scaleIn;
}
.navbar-toggle {
  border-radius: 0;
}

.navbar-nav > li > a {
  text-transform: lowercase;
}
@-webkit-keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
/* =========================================
   Header                 
========================================= */
#main-nav.navbar-default {
  background: #ffffff;

  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#main-nav.navbar-default .navbar-nav > li.active > a,
#main-nav.navbar-default .navbar-nav > li.open > a,
#main-nav.navbar-default .navbar-nav > li:hover > a {
  background: #8091BE;
  color: #ffffff;
}
.navbar.navbar-default {
  border: 0;
  border-radius: 0;
  margin-bottom: 0;
}
.navbar.navbar-default .navbar-toggle {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px 10px;
}
.navbar.navbar-default .navbar-brand {
  height: auto;
  padding: 10px 15px;
}

.navbar.navbar-default .icon {
  height: 67px;
  width: 180.5px;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #c6e8ff;
  background: transparent;
}
.navbar-default .navbar-nav > li > a {
  color:  #343434;
}
#main-nav.navbar-default {
  background: #fff;
}

/* =========================================
   Nav Bar
========================================= */

.nav.main-tab {
  background: #eee;
  border-bottom: 3px solid #222534;
  border-radius: 3px 3px 0 0;
}
.nav.main-tab > li > a {
  color:  #343434;
}
.nav.main-tab > li.active > a {
  background: #222534;
  color: #45aed6;
}
.nav.main-tab > li:first-child > a {
  border-radius: 3px 0 0 0;
}
.nav.main-tab > li:last-child > a {
  border-radius: 0 3px 0 0;
}
.navbar-nav {
  margin: 0;
}
.tab-content {
  border: 1px solid #eee;
  border-top: 0;
  padding: 20px 20px 10px;
  border-radius: 0 0 3px 3px;
}
.panel-default {
  border-color: #eee;
}
.panel-default > .panel-heading {
  background-color: #fff;
  border-color: #eee;
}
.panel-default > .panel-heading .panel-title {
  font-size: 14px;
  font-weight: normal;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #eee;
}

/* =========================================
   Hero Banner                 
========================================= */
#hero-banner {
  overflow: hidden;
  height: 550px;
  background: url("../images/banner/light.png");
  background-size: cover;
  color: #fff;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* #hero-banner .white-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  padding-bottom: 50px;
} */

#hero-banner .row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#hero-banner.item {
  /* height: 558px; */
  background-repeat: no-repeat;
  /* background-position: 50% 0; */
  background-size: cover;
}
#hero-banner.banner-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color:  #343434;
}
#hero-banner h1 {
  font-size: 65px;
  padding: 3%;

  text-align: center;
  color:  #343434;
}
#hero-banner h1 b {
  background: #FFF;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#hero-banner p {
  font-size: 26px;
  margin-top: 0;
  margin-bottom: 50px;
  padding: 0 10%;

  text-align: center;
  color:  #343434;
}
#hero-banner a {
  display: block;
  font-size: 25px;
}
#hero-banner a:hover {
  text-align: center;

  margin: 0 auto;
  display: block;
  color: #343434;
}
#hero-banner.banner-inner h2 > span {
  color: #45aed6;
}
#hero-banner.banner-inner .btn {
  margin-top: 10px;
}

#hero-text {
  padding: 50px 0;
  border-top: 1px solid #ffffff;
}
#hero-text h2 {
  margin-top: 0;
}
#hero-text .btn {
  margin-top: 40px;
}
#cta2 {
  background: #45b1da;
  color: #fff;
  padding-top: 70px;
}
#cta2 .btn {
  margin-top: 10px;
}
#cta2 h2 {
  color: #fff;
  font-size: 44px;
  line-height: 1;
}
#cta2 h2 > span {
  color: #45aed6;
}

/* =========================================
   Isotope Styles                 
========================================= */
/* Start: Recommended Isotope styles */
/**** Isotope Filtering ****/
.isotope-item {
  z-index: 2;
}
.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}
/**** Isotope CSS3 transitions ****/
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}
.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}
.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -ms-transition-property: -ms-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  transition-property: transform, opacity;
}
/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}
/* End: Recommended Isotope styles */
/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}
.img-thumbnail {
  display: inline-block;
  max-width: 100%;
  height: auto;
  line-height: 1.42857143;
  border: 1px solid #ddd;
  border-radius: 0px;
  padding: 0px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  margin-bottom: 15px;
}

/* =========================================
   About                 
========================================= */

#about {
  padding: 100px 0;
}
#about .column-title {
  color: #fff;
}
#about p {
  font-size: 20px;
  padding: 0 5%;
  margin-bottom: 30px;
  line-height: 140%;
}

#about h3 {
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  font-weight: 500;
  text-align: center;
  font-size: 22px;
  line-height: 140%;
}

#about h3 b {
  color: #45aed6;
  background: url("../images/banner/purplebluetext.png");
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 30px;
  padding: 10px 0;
}

#about .listarrow li {
  color: #343434;
}

#about .row {
  display: flex;
  align-items: center;
}

#about .photo-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#about .mockup {
  display: flex;
  justify-content: center;
  z-index: 10px;

  position: absolute;
  top: 0;
}

#about .carousel-inner {
  width: 314px;
  height: 673px;
  margin: 15.5px 20px;

  display: flex;
  align-content: center;
}

.carousel-indicators {
  position: relative;
  margin-top: 50px;
  
  /* reset bootstrap lib values */
  left: 0;
  margin-left: 0;
}

.carousel-indicators li {
  border: 2px solid #7ED9FF;
  width: 20px;
  height: 20px;
}

.carousel-indicators .active {
  background-color: #7ED9FF;
  width: 20px;
  height: 20px;
} 


/* =========================================
   Download                 
========================================= */
.download-area {
  padding: 100px 25px;
  background: url("../images/banner/light.png");
  background-size: cover;
}

.download-area .download-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* .download-area .white-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  padding: 50px;
  margin: 0 20%;
} */

/* =========================================
   Unsure                 
========================================= */

.progress {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #eeeeee;
}
.progress .progress-bar.progress-bar-primary {
  background-image: -moz-linear-gradient(4deg, #2caab3 0%, #2c8cb3 100%);
  background-image: -webkit-linear-gradient(4deg, #2caab3 0%, #2c8cb3 100%);
  background-image: -ms-linear-gradient(4deg, #2caab3 0%, #2c8cb3 100%);
  -webkit-box-shadow: none;
  box-shadow: none;
}


/* =========================================
   Contact Us
========================================= */

#contact .row {
  align-items: flex-start;
}

#contact-us {
  padding: 80px 0 40px;
}

#contact h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 600;
}

#contact p {
  margin: 0;
}

.contact-info {
  display: flex;
  padding: 20px;
  padding-top: 40px;
  border-radius: 20px;
  gap: 65px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.form-link {
  display: flex;
  flex-direction: column;
  background-color: #f0f9ff;
  border-radius: 15px;
  padding: 10px 25px;
  padding-top: 18px;
  justify-content: center;
  border: 3px solid #c6e8ff;
  color: #616161;
}


/* .contact-list {
  display: flex;
  flex-direction: column;
  width: auto;
  align-items: center;
  text-align: center;
} */

.contact-socials {
  font-size: 50px;
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-socials .line {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 65%;
  margin: 5% 0;
}






/* =========================================
   Footer
========================================= */

#footer {
  margin-top: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  color: rgb(81, 81, 81);
  background: #c6e8ff;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}


#footer a {
  color: rgb(81, 81, 81);
}
#footer a:hover {
  color: #bd92ff;
}
#footer ul {
  list-style: none;
  padding: 0;
  margin: 0 -7.5px;
}
#footer ul > li {
  display: inline-block;

  padding: 3px 0;
  width: 31px;
  text-align: center;
}

#footer .legal {
  padding-top: 5px
}

#footer .row {
  display: flex;
  align-content: center;
}

#footer .center {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}

#footer .active {
  color: #bd92ff;
}

/* =========================================
   Media Only                 
========================================= */
@media only screen and (min-width: 768px) {
  #main-nav.navbar-default {
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.26);
  }
  #main-nav.navbar-default .navbar-nav > li > a {
    /* padding-top: 30px;
    padding-bottom: 31px; */
  }
  .navbar-default .navbar-nav > li > a {
    color:  #343434;
  }
  #main-nav .container {
    display: flex;
  }
  #main-nav .navbar-right {
    margin-left: auto;
    display: flex !important;
  }
  #main-nav .navbar-nav {
    display: flex;

  }
  #main-nav.navbar-default .navbar-nav > li {
    display: flex;
  }
  #main-nav.navbar-default .navbar-nav > li > a {
    display: flex;
    align-items: center;
  }
  #main-nav.navbar-default .navbar-nav > li.active > a,
  #main-nav.navbar-default .navbar-nav > li.open > a,
  #main-nav.navbar-default .navbar-nav > li:hover > a {
    background: #c6e8ff;
    color:  #343434;
  }
  #main-nav.navbar-default .dropdown-menu {
    padding: 0 20px;
    min-width: 220px;
    background-color: #c6e8ff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
    background-clip: inherit;
  }
  #main-nav.navbar-default .dropdown-menu > li {
    border-left: 3px solid transparent;
    margin-left: -20px;
    padding-left: 17px;
    -webit-transition: border-color 400ms;
    transition: border-color 400ms;
  }
  #main-nav.navbar-default .dropdown-menu > li > a {
    padding: 15px 0;
    color: #c6e8ff;
  }
  #main-nav.navbar-default .dropdown-menu > li:first-child > a {
    border-top: 0;
  }
  #main-nav.navbar-default .dropdown-menu > li.active,
  #main-nav.navbar-default .dropdown-menu > li.open,
  #main-nav.navbar-default .dropdown-menu > li:hover {
    border-left-color: #45aed6;
  }
  #main-nav.navbar-default .dropdown-menu > li.active > a,
  #main-nav.navbar-default .dropdown-menu > li.open > a,
  #main-nav.navbar-default .dropdown-menu > li:hover > a {
    color: #45aed6;
    background-color: transparent;
  }

  #contact .row {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
  }

}

@media only screen and (max-width: 768px) {
  .navbar-default .navbar-collapse,
  .navbar-default .navbar-form {
    border-color: #ffffff;
    padding: 1px 0;
  }

  #about .row {
    display: block;
  }
}
.form-control {
  box-shadow: none;
  -webkit-box-shadow: none;
}

@media only screen and (max-width: 756px) {
  .contact-info {
    margin-left: 20px;
    margin-right: 20px;
  }

  .realrow {
    flex-direction: column;
    align-items: center;
  }
}

@media only screen and (max-width: 480px) {

  #hero-banner h1 {
    font-size: 40px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #hero-banner p {
    font-size: 18px;
  }
  #portfolio .portfolio-filter {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
  }
  #portfolio .portfolio-filter > li a {
    display: block;
    padding: 7px 15px;
    margin: 5px 2px;
  }
  #portfolio .portfolio-item {
    width: 48.9%;
    padding: 8px;
  }
  #portfolio .portfolio-item .portfolio-item-inner .portfolio-info .preview {
    width: 28px;
    height: 24px;
    line-height: 24px;
    margin: 9px auto;
  }
  #portfolio .portfolio-item .portfolio-item-inner .portfolio-info {
    padding: 7px 0 0;
  }

  .section-header .section-title {
    font-size: 35px;
  }

  #about p {
    font-size: 18px;
    padding: 0 20px;
  }

  #about .Iam b {
    height: 40px;
  }

  #about .innerIam {
    font-size: 35px;
    gap: 8px;
  }

  /* .contact-info {
    margin-left: 20px;
    margin-right: 20px;
  } */

  #contact-us p{
    padding: 0 20px;
    font-size: 18px;
  }

  .contact-info{
    gap: 25px;
    flex-direction: column;
  }

  .contact-socials {
    margin-top: 40px;
  }

  #footer .center {
    display: block;
  }

  #footer .legal {
    display: flex;
  }
}

/* =========================================
   Rotating Word
========================================= */
.Iam {
  font: normal 40px/50px Poppins, sans-serif;
}
.Iam p {
  height: 50px;
  float: left;
  margin-right: 0.3em;
}
.Iam b {
  float: left;
  overflow: hidden;
  position: relative;
  height: 50px;
  top: 15px;
  
  margin-bottom: 30px;
}
.Iam .innerIam {
  display: inline-block;
  position: relative;
  white-space: nowrap;
  top: 0;
  left: 0;

  font-size: 44px;
  /* padding-bottom: 20px;
  margin: 0 0 20px; */
  display: flex;
  flex-direction: column;
  gap: 3px;
  


/*animation*/
-webkit-animation:move 15s;
   -moz-animation:move 15s;
    -ms-animation:move 15s;
     -o-animation:move 15s;
        animation:move 15s;
/*animation-iteration-count*/
-webkit-animation-iteration-count:infinite;
   -moz-animation-iteration-count:infinite;
    -ms-animation-iteration-count:infinite;
     -o-animation-iteration-count:infinite;
        animation-iteration-count:infinite;
/*animation-delay*/
-webkit-animation-delay:1s;
   -moz-animation-delay:1s;
    -ms-animation-delay:1s;
     -o-animation-delay:1s;
        animation-delay:1s;
}
@keyframes move{
  0%  { top: 0px; }
  16% { top: -55px; }
  32% { top: -110px; }
  48% { top: -165px; }
  64% { top: -220px; }
  80%{ top: -275px; }
}

@-webkit-keyframes move {

  0%  { top: 0px; }
  16% { top: -55px; }
  32% { top: -110px; }
  48% { top: -165px; }
  64% { top: -220px; }
  80%{ top: -275px; }
}
@-moz-keyframes move {

  0%  { top: 0px; }
  16% { top: -55px; }
  32% { top: -110px; }
  48% { top: -165px; }
  64% { top: -220px; }
  80%{ top: -275px; }
}
@-o-keyframes move {

  0%  { top: 0px; }
  16% { top: -55px; }
  32% { top: -110px; }
  48% { top: -165px; }
  64% { top: -220px; }
  80%{ top: -275px; }
}
@keyframes move {

  0%  { top: 0px; }
  16% { top: -55px; }
  32% { top: -110px; }
  48% { top: -165px; }
  64% { top: -220px; }
  80%{ top: -275px; }
}

/* =========================================
   Color Styles
========================================= */

.wisteria {
  color: #b87eff;
}

.belize {
  color: #60c2ed;
}

.mint {
  color: #54eaa4;
}

.canary {
  color: #f9e552;
}

.tangerine {
  color: #f6ba67;
}

.rose {
  color: #ff7ea5;
}

/* =========================================
   Other Pages
========================================= */
#hero-banner-small {
  overflow: hidden;
  height: 200px;
  background: url("../images/banner/light.png");
  background-size: cover;
  color: #fff;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#hero-banner-small h1 {
  font-size: 55px;
  padding: 3%;

  text-align: center;
  color: #343434;
  font-weight: 500;
}

#policy {
  padding: 3% 30%;
  background: #ffffff;
  background-size: cover;
  color: #343434;
  background-size: contain;
}
#policy h1 {
  font-size: 28px;
  font-weight: 500;
  margin-top: 20px;
}
#policy h2 {
  font-size: 22px;
  font-weight: 500;
  margin-top: 20px;
}
#policy h3 {
  font-size: 20px;
  font-weight: 500;
  margin-top: 20px;
}
#policy h4,

#policy p {
  font-size: 16px;
  font-weight: 400;
  color:#343434;
}
#policy strong {
  display: block;
  margin-bottom: 30px;
}

@media only screen and (max-width: 480px) {
  #policy {
    padding: 30px 30px;
  }
}