body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

h1 h2 h3 h4 p {
  padding: 0;
  margin: 0;
  font-weight: 700;
}

h1 {
  font-size: 3vw;
}

h2 {
  font-size: 2.5vw;
}

h3 {
  font-size: 2vw;
}

h4 {
  font-size: 1.5vw;
}

p {
  font-size: 1vw;
  font-weight: 400;
}

li {
  font-size: 1vw;
  font-weight: 400;
}

ul {
  margin: 0;
  padding: 0;
}

.nav {
  width: 100vw;
  height: 3.5vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1vw;
}

.nav .container {
  width: 80vw;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.nav .container img {
  width: auto;
  height: 60%;
}

.nav .container a {
  text-decoration: none;
  color: rgba(51, 51, 51, 0.822);
  font-weight: 500;
  margin: 1vw;
}

.nav .container a .active {
  font-weight: 500;
  font-size: 1.1vw;
}

.nav .container :hover {
  color: black;
}

.nav .container a.active {
  color: black;
}

.nav .container a.active:hover {
  cursor: -webkit-grab;
  cursor: grab;
}

.section1 {
  width: 100%;
  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;
}

.section1 .hero {
  width: 100%;
  background-color: #f38800;
  text-align: center;
  color: white;
  padding: 2vw;
  -webkit-box-shadow: 0px 1vw 0px rgba(243, 136, 0, 0.44), 0px 2vw 0px rgba(243, 136, 0, 0.44), 0px 3vw 0px rgba(243, 136, 0, 0.44);
          box-shadow: 0px 1vw 0px rgba(243, 136, 0, 0.44), 0px 2vw 0px rgba(243, 136, 0, 0.44), 0px 3vw 0px rgba(243, 136, 0, 0.44);
  margin-bottom: 3vw;
}

.section1 .hero h1 {
  margin: 0;
}

.section1 .description {
  width: 99.99%;
  text-align: center;
  padding: 5vw 20vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.15vw;
  font-weight: 400;
}

.section1 .i {
  font-style: italic;
}

.section1 .card {
  position: relative;
  width: 80%;
  background: radial-gradient(60.81% 60.81% at 50% 50%, #ffffff 69.06%, #f8f8f8 100%);
  -webkit-box-shadow: 0px 20px 60px rgba(63, 81, 181, 0.28);
          box-shadow: 0px 20px 60px rgba(63, 81, 181, 0.28);
  border-radius: 16px;
  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;
  margin-bottom: 10%;
}

.section1 .card .content {
  width: 50%;
  margin: 7% 7% 7% 0;
}

.section1 .card h3,
.section1 .card h4 {
  color: #f38800;
}

.section1 .card ul {
  list-style: none;
  margin-left: 10%;
}

.section1 .card ul li::before {
  content: "\2022";
  color: #f38800;
  font-style: normal;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.section1 .card .comment {
  margin: 7% 0 25% 0;
  color: #3f3e3e;
  font-size: 0.9vw;
  width: 105%;
}

.section1 .card .btn {
  background-color: #f38800;
  color: white;
  font-weight: bold;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.7vw 4vw;
  border-radius: 0.8vw;
  font-size: 1.1vw;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 10%;
}

.footer {
    width: 100vw;
    height: 8vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.footer .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 80%;
}
.footer .container img {
    width: auto;
    height: 2vw;
}

.fromleft {
  -webkit-transform: translateX(-2vw);
          transform: translateX(-2vw);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0;
}

.draw.fromleft {
  -webkit-transform: translateX(0vw);
          transform: translateX(0vw);
  opacity: 1 !important;
}

.delay {
  -webkit-transition-delay: 0.2s !important;
          transition-delay: 0.2s !important;
}

.delayy {
  -webkit-transition-delay: 0.5s !important;
          transition-delay: 0.5s !important;
}

.delayyy {
  -webkit-transition-delay: 0.8s !important;
          transition-delay: 0.8s !important;
}

.del1 {
  -webkit-transition-delay: 0.1s !important;
          transition-delay: 0.1s !important;
}

.del2 {
  -webkit-transition-delay: 0.2s !important;
          transition-delay: 0.2s !important;
}

.del3 {
  -webkit-transition-delay: 0.3s !important;
          transition-delay: 0.3s !important;
}

.del4 {
  -webkit-transition-delay: 0.4s !important;
          transition-delay: 0.4s !important;
}

.del5 {
  -webkit-transition-delay: 0.5s !important;
          transition-delay: 0.5s !important;
}

.del6 {
  -webkit-transition-delay: 0.6s !important;
          transition-delay: 0.6s !important;
}

.del7 {
  -webkit-transition-delay: 0.7s !important;
          transition-delay: 0.7s !important;
}

.del8 {
  -webkit-transition-delay: 0.8s !important;
          transition-delay: 0.8s !important;
}

.del9 {
  -webkit-transition-delay: 0.9s !important;
          transition-delay: 0.9s !important;
}

.del10 {
  -webkit-transition-delay: 0.95s !important;
          transition-delay: 0.95s !important;
}

.del11 {
  -webkit-transition-delay: 1s !important;
          transition-delay: 1s !important;
}

.del12 {
  -webkit-transition-delay: 1s !important;
          transition-delay: 1s !important;
}

.del13 {
  -webkit-transition-delay: 1s !important;
          transition-delay: 1s !important;
}

.show {
  opacity: 0.4 !important;
}

.frombottom {
  -webkit-transform: translateY(1vw);
          transform: translateY(1vw);
  opacity: 0;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.frombottom.draw {
  -webkit-transform: translateY(0vw);
          transform: translateY(0vw);
  opacity: 1 !important;
}

.scale.infinity.draw {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: scale;
          animation-name: scale;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-transition: ease-in;
  transition: ease-in;
}

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

@keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.opacity {
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  opacity: 0;
}

.opacity.draw {
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  opacity: 1 !important;
}

@media screen and (max-width: 700px) {
  .nav {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 12vw;
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    z-index: 6000000;
    width: 100vw;
  }
  .nav .container {
    width: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: 12vw;
    position: relative;
  }
  .nav .container .hamb {
    height: 7vw;
    width: 7vw;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    cursor: pointer;
    background-image: url("images/menu_icon.png");
    background-size: contain;
    background-repeat: no-repeat;
  }
  .nav .container img {
    width: 25vw;
    height: auto;
  }
  .nav .container .navmenu {
    position: fixed;
    width: 100vw;
    font-size: 2.5vw;
    text-align: right;
    top: 12vw;
    left: 0vw;
    background-color: #f38800;
    height: 30vw;
    z-index: 100000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: #2c4382 solid 1px;
    border-top: #2c4382 solid 1px;
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
    opacity: 0;
    visibility: hidden;
  }
  .nav .container .navmenu a {
    color: white;
    font-size: 3vw;
    text-align: right;
    width: 100%;
    height: 50%;
    line-height: 10vw;
    margin: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: 5vw;
    text-decoration: none;
    font-weight: 600;
  }
  .nav .container .navmenu :nth-child(2) {
    background-color: #f8f8f8;
    color: #f38800;
  }
  .nav .container .navmenu a.active {
    font-size: 3.5vw;
    font-weight: 7000;
  }
  .footer {
    height: 15vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer .container img {
    cursor: pointer;
    margin-left: 10vw;
    height: 6vw;
  }
  .section1 {
    margin-top: 12vw;
  }
  .section1 .hero h1 {
    font-size: 5vw;
    font-weight: 700;
  }
  .section1 .description {
    font-size: 2.5vw;
    font-weight: 400;
    padding: 10vw 5vw;
  }
  .section1 .card {
    width: 90vw;
  }
  .section1 .card .content {
    width: 80%;
  }
  .section1 .card .content h3 {
    font-size: 4vw;
  }
  .section1 .card .content p {
    font-size: 2.5vw;
  }
  .section1 .card .content h4 {
    font-size: 3vw;
  }
  .section1 .card .content ul li {
    font-size: 2.5vw;
    margin-bottom: 2vw;
  }
  .section1 .card .content .comment {
    font-size: 2.5vw !important;
    text-align: center;
    margin: 10vw 0 20vw 0;
  }
  .section1 .card .content .btn {
    font-size: 2vw;
    bottom: 13vw;
  }
}

.display {
  visibility: visible !important;
  opacity: 1 !important;
}

@media screen and (min-width: 699px) {
  .hamb {
    visibility: hidden;
  }
}
/*# sourceMappingURL=pricing.css.map */
