@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
:root {
  --c-black: #000000;
  --c-white: #ffffff;
  --c-primary: #782890;
  --c-secondary: #bfbfbf;
  --c-body: #4f4f4f;
  --c-gray: #bfbfbf;
  --c-light-teal: #e3e7ec;
}

html,
body {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0px;
  margin: 0px;
}

h1 {
  font-weight: 400;
  font-size: 32px;
  font-family: "Poppins", sans-serif;
  line-height: 1em;
}
@media screen and (min-width: 992px) {
  h1 {
    font-size: 36px;
  }
}

h2 {
  font-size: 22px;
  line-height: 1em;
  font-family: "Poppins", sans-serif;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 20px;
  font-family: "Poppins", sans-serif;
}
@media screen and (min-width: 992px) {
  h3 {
    font-size: 26px;
  }
}

h4 {
  font-size: 16px;
}
@media screen and (min-width: 992px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

.pt-80 {
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .pt-80 {
    padding-top: 60px;
  }
}
@media screen and (min-width: 992px) {
  .pt-80 {
    padding-top: 80px;
  }
}
.pb-80 {
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .pb-80 {
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 992px) {
  .pb-80 {
    padding-bottom: 80px;
  }
}

.title h2 {
  text-align: center;
  margin-bottom: 50px;
}
.title h2 span {
  color: var(--c-primary);
  font-weight: bold;
}

.thankyou-outer {
  width: 90%;
  position: relative;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  background: #f6f3f2;
  padding: 40px 30px;
  top: 50%;
  z-index: 999;
  max-width: 400px;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.35);
}
.thankyou-outer .thankyou-close {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  right: -10px;
  top: -10px;
  background-color: var(--c-white);
  border-radius: 30px;
  border: 1px solid #333;
  cursor: pointer;
}
.thankyou-outer h2 {
  font-size: 26px !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  color: var(--c-black);
  font-size: 30px;
}

.right-button {
  position: fixed;
  right: 0;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
  z-index: 9;
  top: 35%;
}
@media screen and (min-width: 576px) {
  .right-button {
    top: 40%;
  }
}
.right-button a {
  background: #25a3e2;
  color: var(--c-white);
  display: inline-block;
  font-size: 1rem;
  height: 50px;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  width: 150px;
  border-radius: 4px 4px 0px 0;
  font-weight: 500;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
}
.right-button a:hover {
  background-color: var(--c-primary);
}

.welcome-message-popup {
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 10;
}
.welcome-message-popup .message-wrapper {
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header {
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .header {
    padding: 15px 0;
  }
}
.header .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header .logo img {
  width: 100%;
  max-width: 100px;
}
@media screen and (min-width: 768px) {
  .header .logo img {
    max-width: 80px;
  }
}
.header .menu ul {
  padding: 0;
  margin: 0;
}
.header .menu ul li {
  list-style: none;
}
.header .menu ul li span {
  padding: 0;
}
.header .menu ul li a {
  text-decoration: none;
  color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .menu ul li a img {
  height: auto;
  margin-right: 10px;
  width: 22px;
}
@media screen and (min-width: 768px) {
  .header .menu ul li a img {
    width: 32px;
  }
}

/* banner-sec css start  */
.banner-sec {
  background-image: url("../images/top_banner_bg.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 30px 0 0;
  position: relative;
}
@media screen and (max-width: 991px) {
  .banner-sec .banner-img {
    display: none;
  }
}
.banner-sec .banner-img img {
  width: 100%;
  height: auto;
}
.banner-sec .swiper-pagination {
  text-align: left;
}
.banner-sec .swiper-slide .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.banner-sec .swiper-slide .aniamtion-img {
  max-width: 500px;
  margin: 0 auto;
}
.banner-sec .swiper-slide .aniamtion-img img {
  width: 100%;
  height: 100%;
}
.banner-sec .banner-content h2 {
  padding-bottom: 12px;
  font-size: 22px;
}
.banner-sec .banner-content ul {
  padding: 0;
  margin: 0;
  font-size: 14px;
  padding-top: 12px;
  list-style: none;
}
.banner-sec .banner-content ul li {
  padding-left: 20px;
  font-size: inherit;
  padding-bottom: 14px;
  font-style: italic;
  position: relative;
}
.banner-sec .banner-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  background-color: var(--c-primary);
  border-radius: 50px;
}
.banner-sec .outer-div {
  position: relative;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media screen and (max-width: 575px) {
  .banner-sec .outer-div {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.banner-sec .swiper-banner {
  padding-top: 40px;
}
.banner-sec .swiper-banner span {
  background-color: var(--c-primary);
  width: 14px;
  height: 14px;
}
.banner-sec .col-lg-3 {
  -ms-flex-item-align: center;
      align-self: center;
}
.banner-sec .banner-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  max-width: 450px;
  margin-left: -12px;
  margin-right: -12px;
  padding-top: 20px;
  text-align: left;
}
.banner-sec .banner-icon .item {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center;
}

@media screen and (max-width: 575px) {
  .bannerSlider {
    padding-bottom: 60px;
  }
}

.banner-form {
  padding-bottom: 40px;
  position: relative;
  height: 100%;
}
@media screen and (min-width: 576px) {
  .banner-form {
    padding-top: 40px;
  }
}
@media screen and (min-width: 768px) {
  .banner-form {
    padding-bottom: 30px;
    padding-top: 0;
  }
}
.banner-form .button {
  background-color: var(--c-white);
  color: var(--c-black);
  text-decoration: none;
  position: relative;
  text-align: center;
  padding: 10px 40px;
  display: inline-block;
  border-radius: 5px;
  color: var(--c-primary);
  -webkit-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
  font-weight: bold;
  background-color: var(--c-primary);
  color: var(--c-white);
  border: none;
  width: 100%;
}
.banner-form .button:hover {
  background-color: var(--c-primary);
  color: var(--c-white);
}
.banner-form .button:hover {
  background-color: #530e68;
}
.banner-form .mb-3 {
  margin-bottom: 0.5em !important;
}
.banner-form h2 {
  color: var(--c-primary);
  padding-bottom: 20px;
  font-size: 26px;
}
.banner-form .form-control {
  padding: 6px 20px;
  font-size: 18px;
}
.banner-form .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: var(--c-primary);
}
.banner-form .form-select {
  color: #6c757d;
}
.banner-form .form-select:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: var(--c-primary);
}

/* banner-bottom-slider css start */
.banner-bottom-slider {
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .banner-bottom-slider {
    padding-top: 80px;
  }
}
.banner-bottom-slider .swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media screen and (max-width: 575px) {
  .banner-bottom-slider .swiper-wrapper .swiper-slide img {
    height: 50px;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
  }
}
.banner-bottom-slider .swiper-button-next::after,
.banner-bottom-slider .swiper-button-prev::after {
  color: var(--c-primary);
  font-size: 22px;
  font-weight: 900;
}
.banner-bottom-slider .logo-slider-wrapper {
  position: relative;
}
.banner-bottom-slider h1 {
  text-align: center;
  padding-bottom: 40px;
}
.banner-bottom-slider .swiper-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding-top: 50px;
}
.banner-bottom-slider .swiper-control .swiper-logo span {
  background-color: var(--c-primary);
  width: 12px;
  height: 12px;
}

/* middle-card-sec css start */
.middle-card-sec {
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .middle-card-sec {
    padding-top: 60px;
  }
}
@media screen and (min-width: 992px) {
  .middle-card-sec {
    padding-top: 80px;
  }
}
.middle-card-sec .title span {
  font-weight: normal;
}
.middle-card-sec .inner-card {
  text-align: center;
  padding: 50px 20px;
  border-radius: 5px;
  height: 100%;
  border: 1px solid #bfbfbf;
  border-radius: 30px;
  position: relative;
  -webkit-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
}
.middle-card-sec .inner-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  border-radius: 30px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(121, 40, 145, 0.5490196078)), color-stop(60%, #fff));
  background: linear-gradient(to top, rgba(121, 40, 145, 0.5490196078) 0%, #fff 60%);
  height: 0%;
  width: 100%;
  -webkit-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
}
.middle-card-sec .inner-card .icon {
  position: relative;
  z-index: 77;
}
.middle-card-sec .inner-card h2 {
  color: var(--c-primary);
}
.middle-card-sec .inner-card p {
  font-size: 14px;
  padding-top: 12px;
}
.middle-card-sec .inner-card img {
  margin-bottom: 16px;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
}
.middle-card-sec .inner-card:hover:before {
  height: 100%;
}
.middle-card-sec .inner-card:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.middle-card-sec .col-md-4 {
  padding: 12px;
}

/* different-channels css start */
.different-channels {
  padding-top: 60px;
  display: block;
}
@media screen and (min-width: 768px) {
  .different-channels {
    padding-top: 80px;
  }
}
@media screen and (min-width: 992px) {
  .different-channels {
    padding-top: 100px;
  }
}
.different-channels h2 {
  text-align: center;
}
.different-channels .channels-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
  padding-right: 0;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding-top: 30px;
}
@media screen and (min-width: 992px) {
  .different-channels .channels-icon {
    padding-top: 60px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.different-channels .channels-icon .icon-with-name {
  padding-left: 16px;
  padding-right: 16px;
  text-align: center;
  -webkit-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
}
.different-channels .channels-icon .icon-with-name img {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
}
.different-channels .channels-icon .icon-with-name:hover img {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.different-channels .channels-icon .icon-with-name p {
  font-weight: bold;
}

/* testimonial-sec css start */
.testimonial-sec {
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .testimonial-sec {
    padding: 80px 0;
  }
}
.testimonial-sec .section-title {
  padding-bottom: 50px;
}
.testimonial-sec .section-title h2 {
  text-align: center;
}
@media screen and (min-width: 576px) {
  .testimonial-sec .swiper-control {
    padding-top: 50px;
  }
}
.testimonial-sec .swiper-control .swiper-button-next::after,
.testimonial-sec .swiper-control .swiper-button-prev::after {
  font-weight: 900;
  font-size: 16px !important;
}
@media screen and (min-width: 576px) {
  .testimonial-sec .swiper-control .swiper-button-next::after,
.testimonial-sec .swiper-control .swiper-button-prev::after {
    font-size: 22px !important;
  }
}
.testimonial-sec .swiper-control .swiper-button-prev {
  margin-left: 12px;
}
@media screen and (min-width: 768px) {
  .testimonial-sec .swiper-control .swiper-button-prev {
    margin-left: -22px;
  }
}
.testimonial-sec .swiper-control .swiper-button-next {
  margin-right: 12px;
}
@media screen and (min-width: 768px) {
  .testimonial-sec .swiper-control .swiper-button-next {
    margin-right: -22px;
  }
}
.testimonial-sec .container {
  position: relative;
}
.testimonial-sec .logo-img {
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  margin-bottom: -30px;
}
.testimonial-sec .logo-img img {
  background-color: var(--c-white);
  padding: 10px;
  border-radius: 50%;
  margin: 0 auto;
  width: 100%;
  min-width: 160px;
  min-height: 160px;
  max-width: 160px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
          box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.testimonial-sec .desc {
  color: var(--c-black);
  position: relative;
  z-index: 4;
}
.testimonial-sec .desc img {
  width: 20px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.testimonial-sec .desc img.right {
  margin-left: auto;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.testimonial-sec .desc h6 {
  font-weight: bold;
  padding-top: 12px;
}
@media screen and (min-width: 576px) {
  .testimonial-sec .testimonialSlider {
    padding: 30px 0;
  }
}
.testimonial-sec .swiper-slide {
  text-align: center;
  color: var(--c-gray);
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  padding-bottom: 50px;
}
@media screen and (min-width: 576px) {
  .testimonial-sec .swiper-slide {
    padding-bottom: 30px;
  }
}
.testimonial-sec .swiper-slide .inner-slide {
  position: relative;
  background-color: var(--c-white);
  height: 100%;
  padding: 0 20px 20px;
  margin: 0 12px;
  border: 1px solid var(--c-primary);
  border-radius: 10px;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
}
.testimonial-sec .swiper-slide .inner-slide::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  border-radius: 10px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(121, 40, 145, 0.5490196078)), color-stop(60%, #fff));
  background: linear-gradient(to top, rgba(121, 40, 145, 0.5490196078) 0%, #fff 60%);
  height: 0%;
  width: 100%;
  -webkit-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
}
.testimonial-sec .swiper-slide .inner-slide:hover:before {
  height: 100%;
}

#multi_level_2 {
  display: none;
}

/*  industries-sec css start */
.industries-sec {
  padding-top: 60px;
  display: block;
}
@media screen and (min-width: 768px) {
  .industries-sec {
    padding-top: 80px;
  }
}
.industries-sec .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.industries-sec .wrapper .box-item {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center;
  height: 100%;
  padding: 16px 12px;
  width: 50%;
  position: relative;
  margin-top: -1px;
  border-right: 1px solid var(--c-gray);
  border-top: 1px solid var(--c-gray);
  border-bottom: 1px solid var(--c-gray);
  -webkit-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
}
@media screen and (min-width: 576px) {
  .industries-sec .wrapper .box-item {
    padding: 30px 12px;
    width: 33.3333333333%;
  }
}
@media screen and (min-width: 768px) {
  .industries-sec .wrapper .box-item {
    width: 25%;
    padding: 50px 12px;
  }
}
@media screen and (min-width: 992px) {
  .industries-sec .wrapper .box-item {
    width: 20%;
  }
}
.industries-sec .wrapper .box-item.horizontal-left {
  border-left: 1px solid var(--c-gray);
}
.industries-sec .wrapper .box-item img {
  height: 50px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.industries-sec .wrapper .box-item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.industries-sec .wrapper .box-item p {
  font-weight: bold;
  padding-top: 6px;
}
.industries-sec .vertical-line1 {
  border: none;
  height: 100%;
  display: none;
}
@media screen and (min-width: 992px) {
  .industries-sec .vertical-line1 {
    border-right: 2px solid;
    -o-border-image: linear-gradient(to top, #bfbfbf, rgba(0, 0, 0, 0)) 1 100%;
       border-image: -webkit-gradient(linear, left bottom, left top, from(#bfbfbf), to(rgba(0, 0, 0, 0))) 1 100%;
       border-image: linear-gradient(to top, #bfbfbf, rgba(0, 0, 0, 0)) 1 100%;
  }
}
.industries-sec .vertical-line2 {
  display: none;
}
@media screen and (min-width: 992px) {
  .industries-sec .vertical-line2 {
    height: 100%;
    border-right: 2px solid;
    -o-border-image: linear-gradient(to bottom, #bfbfbf, rgba(0, 0, 0, 0)) 1 100%;
       border-image: -webkit-gradient(linear, left top, left bottom, from(#bfbfbf), to(rgba(0, 0, 0, 0))) 1 100%;
       border-image: linear-gradient(to bottom, #bfbfbf, rgba(0, 0, 0, 0)) 1 100%;
  }
}

.footer {
  background-color: #202427;
  padding: 60px 0;
}
.footer .footer-menu {
  color: #c2c2c2;
}
@media screen and (max-width: 991px) {
  .footer .footer-menu {
    padding-top: 20px;
  }
}
.footer .footer-menu ul {
  padding: 0;
  margin: 0;
  padding-top: 20px;
  color: inherit;
  font-size: 14px;
}
.footer .footer-menu ul li {
  list-style: none;
  padding-bottom: 8px;
}
.footer .footer-menu ul li a {
  text-decoration: none;
  color: inherit;
}
.footer .social span img {
  margin-right: 10px;
}
.footer .social ul {
  padding: 0;
}
.footer .social ul li {
  color: var(--c-white);
  font-size: 22px;
}
.footer .icon ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  margin: 0;
}
.footer .icon ul li {
  padding: 0 20px;
}
.footer .icon ul li:nth-child(1) {
  padding-left: 0;
}
.footer .icon ul li img {
  width: 22px;
  height: auto;
}

.footer-bottom {
  background-color: #1c1f21;
  padding: 10px;
  color: #c2c2c2;
  font-size: 14px;
}
.footer-bottom p {
  margin: 0;
}

.document-page .doc-item {
  height: 100%;
}
.document-page .doc-item a {
  background-color: #fff;
  border: none;
  color: #000;
  height: 100%;
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
          box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.document-page .doc-item a span {
  padding-left: 12px;
  padding-right: 12px;
  display: block;
  padding-bottom: 30px;
  font-weight: bold;
}
.document-page .doc-item a img {
  margin-bottom: 16px;
  height: 250px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  background-color: #fff;
}
.document-page .doc-item a:hover {
  background-color: #fff;
  color: #782891;
}
.document-page .banner-caption {
  padding-top: 150px;
}

.error-message {
  color: red;
}


/*# sourceMappingURL=style.css.map */




