/* Media query manager breakpoint media

Size                   Device                              breakpoint name

0 - 600px;             Phone                               phone
600 - 900px;           tablet portrait                     tab-port
900 - 1200px;          tablet landscape                    tab-land
1200 - 1800px;         is normal desktop size              -
1800px + :             Big desktop size                    big-desktop

1em = 16px*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600&family=Poppins:wght@100;300;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@800&display=swap");
@-webkit-keyframes moveInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10rem);
            transform: translateX(-10rem); }
  80% {
    opacity: 0.8;
    -webkit-transform: translateX(1rem);
            transform: translateX(1rem); }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1; } }
@keyframes moveInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10rem);
            transform: translateX(-10rem); }
  80% {
    opacity: 0.8;
    -webkit-transform: translateX(1rem);
            transform: translateX(1rem); }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1; } }

@-webkit-keyframes moveInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10rem);
            transform: translateX(10rem); }
  80% {
    opacity: 0.8;
    -webkit-transform: translateX(-1rem);
            transform: translateX(-1rem); }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1; } }

@keyframes moveInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10rem);
            transform: translateX(10rem); }
  80% {
    opacity: 0.8;
    -webkit-transform: translateX(-1rem);
            transform: translateX(-1rem); }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1; } }

@-webkit-keyframes moveInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1; } }

@keyframes moveInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1; } }

*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: inherit;
          box-sizing: inherit; }

html {
  /*Now convert all px value into rem dependent on root font-size  */
  /*font-size: 10px; */
  /*Set root font-size is 10px because  calculate rem is easy 10px == 1rem*/
  /*default root font size is 16px*/ }

body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.fancy-scroll {
  overflow-y: auto; }
  .fancy-scroll::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 10px; }
  .fancy-scroll::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background-color: transparent; }
  .fancy-scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: transparent;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s; }
  .fancy-scroll:hover::-webkit-scrollbar-thumb {
    background-color: #fff; }

/*******************************  Example of card  *******************************

<div class="card">
    <div class="card__side card__side--front">
        <figure class="card__img card__img--1"></figure> // use background image
        <h4 class="card__heading">
            <span class="card__heading--span card__heading--span--1">The sea Explore</span>
        </h4>
        <div class="card__details">
            <ul>
                <li>3 day tour</li>
                <li>Up to 30 people</li>
                <li>2 tour guides</li>
                <li>Sleep in cozy hostels</li>
                <li>Diffculty very easy</li>
            </ul>
        </div>
    </div>
    <div class="card__side card__side--back card__side--back--1">
        <div class="card__cta">
            <div class="card__price-box">
                <p class="card__price-only">only</p>
                <p class="card__price-value">$249.5</p>
            </div>
            <a href="#" class="btn btn--white">Book Now!</a>
        </div>
    </div>
</div>

**********************************************************************************/
.card {
  -webkit-perspective: 150rem;
          perspective: 150rem;
  height: 55rem; }
  .card__side {
    width: 100%;
    height: 55rem;
    -webkit-transition: all .8s ease;
    -o-transition: all .8s ease;
    transition: all .8s ease;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border-radius: 3px;
    -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
            box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
    overflow: hidden; }
    .card__side--front {
      background-color: #ffffff; }
    .card__side--back {
      -webkit-transform: rotateY(180deg);
              transform: rotateY(180deg); }
      .card__side--back--1 {
        background: -webkit-gradient(linear, left top, right bottom, from(#ffb900), to(#ff7730));
        background: -o-linear-gradient(left top, #ffb900, #ff7730);
        background: linear-gradient(to right bottom, #ffb900, #ff7730); }
      .card__side--back--2 {
        background: -webkit-gradient(linear, left top, right bottom, from(#7ed56f), to(#28b485));
        background: -o-linear-gradient(left top, #7ed56f, #28b485);
        background: linear-gradient(to right bottom, #7ed56f, #28b485); }
      .card__side--back--3 {
        background: -webkit-gradient(linear, left top, right bottom, from(#2998ff), to(#5643fa));
        background: -o-linear-gradient(left top, #2998ff, #5643fa);
        background: linear-gradient(to right bottom, #2998ff, #5643fa); }
  .card:hover .card__side--front {
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg); }
  .card:hover .card__side--back {
    -webkit-transform: rotateY(0);
            transform: rotateY(0); }
  .card__img {
    height: 25rem;
    background-size: cover;
    background-blend-mode: screen;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); }
    .card__img--1 {
      background-image: -webkit-gradient(linear, left top, right bottom, from(rgba(255, 185, 0, 0.8)), to(rgba(255, 119, 48, 0.8))), url("../assets/img/nat-5.jpg");
      background-image: -o-linear-gradient(left top, rgba(255, 185, 0, 0.8), rgba(255, 119, 48, 0.8)), url("../assets/img/nat-5.jpg");
      background-image: linear-gradient(to right bottom, rgba(255, 185, 0, 0.8), rgba(255, 119, 48, 0.8)), url("../assets/img/nat-5.jpg"); }
    .card__img--2 {
      background-image: -webkit-gradient(linear, left top, right bottom, from(rgba(126, 213, 111, 0.8)), to(rgba(40, 180, 133, 0.8))), url("../assets/img/nat-6.jpg");
      background-image: -o-linear-gradient(left top, rgba(126, 213, 111, 0.8), rgba(40, 180, 133, 0.8)), url("../assets/img/nat-6.jpg");
      background-image: linear-gradient(to right bottom, rgba(126, 213, 111, 0.8), rgba(40, 180, 133, 0.8)), url("../assets/img/nat-6.jpg"); }
    .card__img--3 {
      background-image: -webkit-gradient(linear, left top, right bottom, from(rgba(41, 152, 255, 0.8)), to(rgba(86, 67, 250, 0.8))), url("../assets/img/nat-7.jpg");
      background-image: -o-linear-gradient(left top, rgba(41, 152, 255, 0.8), rgba(86, 67, 250, 0.8)), url("../assets/img/nat-7.jpg");
      background-image: linear-gradient(to right bottom, rgba(41, 152, 255, 0.8), rgba(86, 67, 250, 0.8)), url("../assets/img/nat-7.jpg"); }
  .card__heading {
    font-size: 2.8rem;
    font-weight: 300;
    text-transform: uppercase;
    text-align: right;
    color: #ffffff;
    position: absolute;
    top: 12rem;
    right: 2rem;
    width: 75%; }
    .card__heading--span {
      padding: 1rem 1.5rem;
      -webkit-box-decoration-break: clone;
      -box-decoration-break: clone; }
      .card__heading--span--1 {
        background-image: -webkit-gradient(linear, left top, right bottom, from(rgba(255, 185, 0, 0.8)), to(rgba(255, 119, 48, 0.8)));
        background-image: -o-linear-gradient(left top, rgba(255, 185, 0, 0.8), rgba(255, 119, 48, 0.8));
        background-image: linear-gradient(to right bottom, rgba(255, 185, 0, 0.8), rgba(255, 119, 48, 0.8)); }
      .card__heading--span--2 {
        background-image: -webkit-gradient(linear, left top, right bottom, from(rgba(126, 213, 111, 0.8)), to(rgba(40, 180, 133, 0.8)));
        background-image: -o-linear-gradient(left top, rgba(126, 213, 111, 0.8), rgba(40, 180, 133, 0.8));
        background-image: linear-gradient(to right bottom, rgba(126, 213, 111, 0.8), rgba(40, 180, 133, 0.8)); }
      .card__heading--span--3 {
        background-image: -webkit-gradient(linear, left top, right bottom, from(rgba(41, 152, 255, 0.8)), to(rgba(86, 67, 250, 0.8)));
        background-image: -o-linear-gradient(left top, rgba(41, 152, 255, 0.8), rgba(86, 67, 250, 0.8));
        background-image: linear-gradient(to right bottom, rgba(41, 152, 255, 0.8), rgba(86, 67, 250, 0.8)); }
  .card__details {
    padding: 3rem; }
    .card__details ul {
      list-style: none;
      width: 80%;
      margin: 0 auto; }
      .card__details ul li {
        padding: 1rem;
        text-align: center;
        font-size: 1.5rem; }
        .card__details ul li:not(:last-child) {
          border-bottom: 1px solid #efefef; }
  .card__cta {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 90%;
    text-align: center; }
  .card__price-box {
    text-align: center;
    color: #ffffff;
    margin-bottom: 8rem; }
  .card__price-only {
    font-size: 1.4rem;
    text-transform: uppercase; }
  .card__price-value {
    font-size: 6rem;
    font-weight: 100; }

.header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 3;
  overflow-x: hidden; }
  .header__wrapper {
    height: 128px; }
  .header__menu ul {
    margin: 0; }
    .header__menu ul li {
      display: inline; }
      .header__menu ul li a {
        margin-right: 15px;
        color: #000;
        font-size: 13px;
        text-transform: uppercase;
        cursor: pointer;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        font-weight: 500;
        font-family: "Poppins", sans-serif;
        text-decoration: none; }
        .header__menu ul li a:hover {
          color: #22233a;
          border-bottom: 1px solid #22233a;
          -webkit-transition: all 0.3s ease-in-out;
          -o-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out; }
  .header__btn {
    margin-left: 40px;
    background-color: #40b3ec;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    border: 7px solid #55f7ff;
    border-radius: 30px;
    /* width: 242px; */
    width: 250px;
    height: 58px; }
    .header__btn:focus, .header__btn:active {
      outline: none; }

.mobile-header {
  height: 100vh;
  width: 250px;
  background-color: #2fd1fd;
  -webkit-transform: translateX(390px);
      -ms-transform: translateX(390px);
          transform: translateX(390px);
  margin: 0 0 0 auto;
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  visibility: hidden; }

.menu-btn {
  display: none; }

@media screen and (max-width: 880px) {
  .header__wrapper {
    background-color: #55f7ff;
    height: 80px;
    max-width: 768px !important; }
    .header__wrapper img {
      max-width: 17%;
      padding: 15px 0; }
  .header__menu {
    display: none !important; }
  .menu-active .mobile-header {
    -webkit-transform: translateX(0px);
        -ms-transform: translateX(0px);
            transform: translateX(0px);
    -webkit-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    visibility: visible; }
  .menu-btn {
    display: block; }
  .mobile-header ul {
    padding-left: 37px;
    padding-top: 30px; }
    .mobile-header ul li {
      list-style: none;
      color: #000;
      font-size: 13px;
      text-transform: uppercase;
      cursor: pointer;
      -webkit-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
      font-weight: 500;
      font-family: "Poppins", sans-serif;
      margin-bottom: 20px;
      border-bottom: 1px solid;
      width: 80%;
      padding-bottom: 5px; } }

#nav-icon3 {
  width: 30px;
  height: 18px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
      transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer; }
  #nav-icon3 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #000;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out; }

#nav-icon3 span:nth-child(1) {
  top: 0px; }

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
  top: 9px; }

#nav-icon3 span:nth-child(4) {
  top: 18px; }

#nav-icon3.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%; }

#nav-icon3.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg); }

#nav-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg); }

#nav-icon3.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%; }

.footer {
  background: #13253b;
  min-height: 781px;
  padding: 100px 0; }
  .footer__info p {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    margin: 0; }
  .footer__content h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
    font-family: "Montserrat", sans-serif;
    padding: 50px 0; }
  .footer__content h2 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    font-family: "Poppins", sans-serif; }
  .footer__content a {
    color: white !important;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    padding-bottom: 10px;
    cursor: pointer; }
    .footer__content a:hover {
      color: #2fd1fd !important; }
  .footer__copyright {
    padding-top: 100px; }
    .footer__copyright p {
      font-size: 12px;
      font-weight: 300;
      color: #ffffff;
      font-family: "Montserrat", sans-serif;
      margin: 0; }
    .footer__copyright img {
      padding-right: 35px;
      cursor: pointer; }

html {
  scroll-behavior: smooth; }

.main-container {
  overflow-x: hidden; }

.menu-active {
  overflow: hidden; }

.main-banner {
  min-height: 100vh;
  background-image: url("../../assets/img/banner-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 130px; }
  .main-banner__description h2 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 600;
    text-align: right;
    max-width: 645px;
    width: 90%;
    font-family: "Montserrat", sans-serif; }
  .main-banner__description p {
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
    text-align: right;
    max-width: 570px;
    width: 90%;
    font-family: "Poppins", sans-serif; }
  .main-banner__description img {
    cursor: pointer; }

.about-cta h1 {
  font-size: 36px;
  color: #5d5d5d;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  padding-bottom: 40px;
  padding-top: 80px; }

.about-cta P {
  font-size: 20px;
  color: #737373;
  font-family: "Poppins", sans-serif;
  font-weight: 300; }

.about-cta img {
  margin-top: -100px; }

.about-box {
  margin-top: 80px;
  margin-bottom: 80px; }
  .about-box__wrapper {
    background-color: #ffffff;
    -webkit-box-shadow: 0 2px 20px #221f1f21;
            box-shadow: 0 2px 20px #221f1f21;
    min-height: 393px;
    padding: 20px;
    cursor: pointer; }
    .about-box__wrapper:hover h2 {
      color: #2fd1fd; }
    .about-box__wrapper h2 {
      font-size: 24px;
      color: #5d5d5d;
      font-family: "Montserrat", sans-serif;
      font-weight: 300; }
    .about-box__wrapper p {
      color: #737373;
      font-size: 16px;
      font-family: "Poppins", sans-serif;
      font-weight: 300; }

.feature-section {
  background-image: url("../../assets/img/feature-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 1300px;
  padding-top: 70px; }
  .feature-section__info {
    padding-top: 110px; }
  .feature-section h2 {
    text-align: center;
    color: #ffffff;
    font-size: 36px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif; }
  .feature-section p {
    text-align: center;
    font-size: 20px;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    margin: 0; }
  .feature-section__description {
    height: 730px;
    padding-right: 20px; }
    .feature-section__description-content {
      padding-bottom: 70px; }
      .feature-section__description-content h4 {
        font-size: 19px;
        color: #ffffff;
        font-weight: 300;
        text-transform: uppercase;
        font-family: "Montserrat", sans-serif; }
      .feature-section__description-content P {
        color: #ffffff;
        font-size: 15px;
        font-weight: 300;
        font-family: "Poppins", sans-serif;
        text-align: left;
        max-width: 480px; }

.app-section {
  text-align: center;
  padding: 90px 0; }
  .app-section h3 {
    color: #5d5d5d;
    font-size: 36px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif; }
  .app-section p {
    color: #737373;
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    line-height: 36px;
    max-width: 850px;
    margin: 0 auto;
    width: 90%; }
  .app-section__demo {
    padding-top: 50px; }
    .app-section__demo img {
      width: 100%; }

.testimonial {
  background-color: #2fd1fd;
  padding: 90px 0 40px 0; }
  .testimonial h1 {
    color: #ffffff;
    font-size: 32px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600px; }
  .testimonial .slick-slide {
    margin: 90px 0; }
  .testimonial .slick-dots li.slick-active button:before {
    color: white; }
  .testimonial-wrapper {
    padding-top: 50px; }
  .testimonial-card {
    border: 1px solid white;
    padding: 15px;
    width: 500px !important;
    min-height: 251px; }
    .testimonial-card h3 {
      font-size: 18px;
      color: #ffffff;
      text-transform: uppercase;
      font-weight: 600;
      font-family: "Montserrat", sans-serif; }
    .testimonial-card h5 {
      color: #ffffff;
      font-size: 14px;
      font-weight: 300;
      font-family: "Poppins", sans-serif; }
    .testimonial-card p {
      font-size: 15px;
      font-weight: 300;
      font-family: "Poppins", sans-serif;
      max-width: 368px;
      color: #ffffff; }
    .testimonial-card img {
      margin-top: -90px; }

.contact-section {
  background-color: #f7f7f7;
  padding: 90px 0; }
  .contact-section h2 {
    color: #3b3b3b;
    font-size: 38px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600; }
  .contact-section p {
    color: #3b3b3b;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    max-width: 600px; }
  .contact-section hr {
    border-top: 3px solid #2fd1fd;
    width: 70px;
    margin-top: 0; }
  .contact-section__info {
    background-color: #ffffff;
    min-height: 312px;
    padding: 40px 10px 10px 40px; }
  .contact-section__form {
    min-height: 312px; }
    .contact-section__form input {
      background-color: #ffffff;
      border: none;
      margin-bottom: 35px;
      height: 40px;
      width: 100%;
      padding: 10px;
      color: #a2a2a2;
      font-size: 15px; }
      .contact-section__form input::-webkit-input-placeholder {
        color: #a2a2a2;
        font-size: 15px; }
      .contact-section__form input::-moz-placeholder {
        color: #a2a2a2;
        font-size: 15px; }
      .contact-section__form input:-ms-input-placeholder {
        color: #a2a2a2;
        font-size: 15px; }
      .contact-section__form input::-ms-input-placeholder {
        color: #a2a2a2;
        font-size: 15px; }
      .contact-section__form input::placeholder {
        color: #a2a2a2;
        font-size: 15px; }
      .contact-section__form input:active, .contact-section__form input:focus {
        outline: none; }
    .contact-section__form textarea {
      background-color: #ffffff;
      border: none;
      padding: 10px;
      color: #a2a2a2;
      width: 100%;
      font-size: 15px; }
      .contact-section__form textarea::-webkit-input-placeholder {
        color: #a2a2a2;
        font-size: 15px; }
      .contact-section__form textarea::-moz-placeholder {
        color: #a2a2a2;
        font-size: 15px; }
      .contact-section__form textarea:-ms-input-placeholder {
        color: #a2a2a2;
        font-size: 15px; }
      .contact-section__form textarea::-ms-input-placeholder {
        color: #a2a2a2;
        font-size: 15px; }
      .contact-section__form textarea::placeholder {
        color: #a2a2a2;
        font-size: 15px; }
    .contact-section__form .contact-btn {
      background-color: #2fd1fd;
      color: #ffffff;
      border: none;
      font-size: 15px;
      font-weight: 600;
      font-family: "Poppins", sans-serif;
      padding: 10px;
      width: 151px;
      margin-top: 25px; }
      .contact-section__form .contact-btn:focus, .contact-section__form .contact-btn:active {
        outline: none; }
  .contact-section__content {
    padding-top: 70px; }

.no-js #loader {
  display: none; }

.js #loader {
  display: block;
  position: absolute;
  left: 100px;
  top: 0; }

.se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100vh;
  z-index: 9999; }

.portfolio-box {
  position: relative;
  cursor: pointer;
  margin: auto;
  overflow: hidden; }
  .portfolio-box img {
    border-radius: 10px; }
  .portfolio-box__overlay {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    height: 92%;
    width: 81%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    bottom: 0;
    right: 0;
    opacity: 0;
    border-radius: 9%;
    -webkit-transition: all 0.6s ease-in-out 0s;
    -o-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s; }
  .portfolio-box__details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 80%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }
    .portfolio-box__details h3 {
      color: #fff;
      font-weight: 600;
      margin-bottom: 0.5em;
      font-size: 30px;
      margin: 0 45px; }
    .portfolio-box__details p {
      color: #fff;
      font-size: 15px;
      padding: 0 20px;
      line-height: 24px; }
  .portfolio-box:hover .portfolio-box__overlay {
    opacity: 1; }
  .portfolio-box:hover .portfolio-box__details {
    top: 50%;
    left: 50%;
    opacity: 1; }

.calender-img {
  position: absolute;
  bottom: 30px;
  left: 0%; }

.dollar-img {
  position: absolute;
  left: 0%;
  bottom: 25px; }

.brush-img {
  position: absolute;
  right: 50px;
  bottom: 80px; }

.testimonial-img-1 {
  position: absolute;
  top: -100px;
  right: 80px; }

.testimonial-img-2 {
  position: absolute;
  bottom: -97px;
  left: 2px; }

@media screen and (max-width: 880px) {
  .main-banner {
    background-image: none;
    background-color: #fff;
    padding-top: 90px;
    min-height: auto; }
    .main-banner .banner-mobile {
      width: 100%; }
    .main-banner__description h2 {
      color: #2fd1fd;
      font-size: 26px;
      text-align: center; }
    .main-banner__description P {
      color: #2fd1fd;
      text-align: center;
      font-size: 16px; }
  .about-box__wrapper h2 {
    font-size: 20px; }
  .about-box__wrapper p {
    font-size: 14px; }
  .about-cta {
    padding-top: 50px; }
    .about-cta img {
      margin-top: 0;
      display: none; }
    .about-cta h1 {
      font-size: 32px;
      padding-top: 40px; }
    .about-cta p {
      font-size: 16px; }
  .portfolio-box__details h3 {
    font-size: 18px !important; }
  .portfolio-box__details p {
    font-size: 10px !important;
    padding: 0; }
  .feature-section {
    background-image: none;
    background-color: #2fd1fd; }
    .feature-section p {
      font-size: 16px; }
    .feature-section .feature-mobile {
      max-width: 80%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin: 0 auto; }
    .feature-section__info {
      padding-top: 60px; }
    .feature-section__description {
      height: -webkit-min-content;
      height: -moz-min-content;
      height: min-content;
      padding-right: 0; }
      .feature-section__description-content h4 {
        font-size: 16px; }
      .feature-section__description-content p {
        font-size: 14px !important; }
      .feature-section__description-content img {
        max-width: 15%; }
  .app-section h3 {
    font-size: 32px; }
  .app-section p {
    font-size: 16px; }
  .app-section__demo {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .testimonial h1 {
    font-size: 28px; }
  .testimonial-card {
    width: 100% !important; }
  .contact-section {
    padding: 40px 0; }
    .contact-section h2 {
      font-size: 32px; }
    .contact-section p {
      font-size: 16px; } }

.ocean {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #2fd0fc; }

.wave {
  background: url("../../assets/img/AAA.png") repeat-x;
  background-size: contain;
  position: absolute;
  /* top: -198px; */
  width: 6400px;
  height: 100%;
  -webkit-animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
          animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0); }

.wave:nth-of-type(2) {
  /* top: -175px; */
  -webkit-animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 7s ease -1.25s infinite;
          animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 7s ease -1.25s infinite;
  opacity: 1; }

@-webkit-keyframes wave {
  0% {
    margin-left: 0; }
  100% {
    margin-left: -1600px; } }

@keyframes wave {
  0% {
    margin-left: 0; }
  100% {
    margin-left: -1600px; } }

@-webkit-keyframes swell {
  0%,
  100% {
    -webkit-transform: translate3d(0, -25px, 0);
            transform: translate3d(0, -25px, 0); }
  50% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0); } }

@keyframes swell {
  0%,
  100% {
    -webkit-transform: translate3d(0, -25px, 0);
            transform: translate3d(0, -25px, 0); }
  50% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0); } }

.drop {
  width: 70px;
  display: none;
  height: 70px;
  fill: white;
  width: 100%;
  -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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  z-index: 1;
  -webkit-animation: mymove 1s;
          animation: mymove 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  margin-top: 150px; }

/* .image-drop{
  transition: all 0.1s linear;
} */
.inner {
  width: 100%;
  height: 415px;
  background-color: lightseagreen; }

@-webkit-keyframes mymove {
  from {
    top: 0px; }
  to {
    top: 100px;
    height: 180px; } }

@keyframes mymove {
  from {
    top: 0px; }
  to {
    top: 100px;
    height: 180px; } }

.animate-heading {
  display: none;
  font-size: 4.3em;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  color: #455366;
  text-align: center; }

.cssanimation,
.cssanimation span {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; }

.cssanimation span {
  display: inline-block; }

.fadeInBottom {
  -webkit-animation-name: fadeInBottom;
          animation-name: fadeInBottom; }

@-webkit-keyframes fadeInBottom {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%); }
  to {
    opacity: 1; } }

@keyframes fadeInBottom {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%); }
  to {
    opacity: 1; } }

.fade-in-image {
  animation: fadeIn 4s;
  -webkit-animation: fadeIn 4s; }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.header__wrapper .header__menu ul {
      display: flex;
      align-items: center;
}
.header__wrapper .header__menu ul .navbar.navbar-default {
  padding-left: 0;
  padding-right: 0;
}    
.header__wrapper .header__menu ul .navbar.navbar-default .dropdown-menu {
  left: auto;
  right: 0;
  width: 250px;
  border: 0;
  border-radius: 15px;
  box-shadow: 0 0 20px #36a0d5;
  top: 101%;
  display: block;
}
.header__wrapper .header__menu ul .navbar.navbar-default .dropdown-menu li {
  display: block;
}
.header__wrapper .header__menu ul .navbar.navbar-default .dropdown-menu li a {
  display: block;
  padding: 8px 10px;
  border-bottom: solid 1px #ccc;
  width: 100%;
}
.header__wrapper .header__menu ul .navbar.navbar-default .dropdown-menu li a:hover{
  color: #2fd1fd;
}
.header__wrapper .header__menu ul .navbar.navbar-default .dropdown-menu li:last-child a{
  border: 0;
}
.header__wrapper .header__menu ul .navbar.navbar-default .dropdown-menu li a .icon-sketch {
  width: 28px;
  display: inline-block;
}
.mobile-apps-links li::marker {
  display: none;
}
.mobile-apps-links .list-panel {
  margin: 0 0 6px;
}
.list-panel a {
  background: #fff;
  padding: 5px;
  margin: 0 0 5px !important;
  border-radius: 10px;
  display: inline-block;
}

.app-store-google-play-section {
  margin: 30px -120px 0 0;
  position: relative;
  z-index: 100;
  width: 70%;
  text-align: right;
}
.app-btn-panel {
  text-align: left;
}
.app-btn-panel h3 {
  font-size: 24px;
  margin: 0 0 18px;
  font-weight: 500;
}
.app-btn-panel a {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 14px;
}
.app-btn-panel a img {
  width: 160px;
}
.app-btn-panel a:hover {
  opacity: 0.8;
}
.main-banner__description p {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.main-banner .main-banner__description {
  margin-top: -240px;
}
.app-store-google-play-section .col-md-6.col-sm-6 {
  max-width: 36%;
  flex: 0 0 36%;
}

@media (max-width:1199px) and (min-width:980px) {
}

@media (max-width:979px) and (min-width:768px) {
}

@media (max-width:767px) {
  .main-banner .main-banner__description {
    margin-top: 0;
  }
  .app-store-google-play-section {
    width: 100%;
    text-align: center;
    padding: 0 30px;
}
.app-btn-panel a {
  margin-right: 5px;
}


}

@media(min-width:320px) and (max-width:480px) {
}