@import url("https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400;500&family=IBM+Plex+Serif:wght@200;300&family=Lato:wght@300;400&family=Noto+Sans&family=Open+Sans:wght@300;400&family=Playfair+Display&family=Poppins:wght@200;300&family=Roboto:wght@300;400&family=Source+Sans+Pro:wght@300;400&display=swap");
@import url("https://fonts.googleapis.com/css?family=Raleway:200,300,400,700&display=swap");
@font-face {
  font-family: "Gill Sans Nova Bold";
  src: url("/fonts/Monotype  - Gill Sans Nova Bold.ttf");
}

@font-face {
  font-family: "Gill Sans Nova Bold Italic";
  src: url("./fonts/Monotype  - Gill Sans Nova Bold Italic.ttf");
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* .container-fluid {
  max-width: 1200px;
  width: 90%;
  margin: auto;
}

* ul {
  margin: 0;
  padding: 0;
}

* li {
  list-style: none;
}

* a {
  text-decoration: none;
  color: black;
}

* .btn {
  border: 0;
  outline: 0;
  display: inline-block;
  border-radius: 10px;
}

.header {
  min-height: 75vh;
  background-color: #f6ebf4;
  position: relative;
}

.header .whatsapp-icon {
  z-index: 999;
  position: fixed;
  right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 1px;
}

.header .whatsapp-icon .icon {
  width: 46px;
}

.header .whatsapp-icon .fa-arrow-alt-circle-up {
  margin-top: 1rem;
  font-size: 2rem;
  color: orange !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header .whatsapp-icon .fa-arrow-alt-circle-up:hover {
  color: orangered !important;
}

.header .nav-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 6vh;
  width: 100%;
  z-index: 99;
  padding: 1rem 0;
}

.header .nav-bar .nv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .nav-bar .nv .nv-item {
  padding: 0 2rem;
  background-color: transparent;
}

.header .nav-bar .nv .nv-item .nv-link {
  font-size: 1.2rem;
  text-transform: capitalize;
  letter-spacing: 1px;
  color: #482673;
  font-weight: 500;
  font-family: "Baloo Bhai 2", cursive;
  position: relative;
  background-color: transparent;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header .nav-bar .nv .nv-item .nv-link:hover {
  color: #190138;
}

.header .nav-bar .nv .nv-item .nv-link::before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  background-color: #482673;
  bottom: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header .nav-bar .nv .nv-item .nv-link:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.header .nav-bar .nv .social-media {
  background-color: transparent;
}

.header .nav-bar .nv .social-media a {
  padding: 0 0.6rem;
  font-size: 1.2rem;
}

.header .nav-bar .nv .social-media .fa-facebook {
  color: #006eff;
}

.header .nav-bar .nv .social-media .fa-instagram {
  color: #ff00bf;
}

.header .nav-bar .nv .social-media .fa-linkedin {
  color: #0077b5;
}

.header .nav-bar .nv .social-media .fa-youtube {
  color: #FF0000;
}

.header .nav-bar .nv .social-media .fa-twitter {
  color: #00acee;
}

.header .nav-bar .hamburger {
  display: none;
  cursor: pointer;
  border: none;
}

.header .nav-bar .hamburger .bar {
  background-color: #482673;
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
  .header .nav-bar .nv {
    position: fixed;
    z-index: 999;
    width: 55%;
    height: 100vh;
    left: -100%;
    top: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: center;
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
    background-color: #4cbfa6;
  }
  .header .nav-bar .nv .nv-item {
    border-bottom: 2px solid #fdfdfd;
    width: 100%;
    text-align: start;
    padding: 0.9rem 2rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .header .nav-bar .nv .nv-item .nv-link {
    color: #f6ebf4;
    text-transform: uppercase;
  }
  .header .nav-bar .nv .nv-item:hover {
    background-color: #482673;
  }
  .header .nav-bar .nv.active {
    left: 0;
  }
  .header .nav-bar .hamburger {
    display: block;
  }
  .header .nav-bar .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .header .nav-bar .hamburger.active .bar:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
            transform: translateY(8px) rotate(-45deg);
  }
  .header .nav-bar .hamburger.active .bar:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
            transform: translateY(-8px) rotate(45deg);
  }
  .header .nav-bar .nv .social-media {
    padding: 0 1.5rem;
    margin-top: 1rem;
  }
  .header .owl-carousel .slide .slide-content h1 {
    font-size: 2rem;
  }
  .header .owl-carousel .slide .slide-content .sub {
    width: 100%;
  }
  .header .owl-carousel .slide .slide-content .sub p {
    font-size: 1.2rem;
  }
}

#footer {
  background-color: #4cbfa6;
  color: #301008;
}

#footer .parent-part {
  padding: 4.5rem 0 6rem 0;
}

#footer .parent-part .first-part .social-info {
  font-size: 1.3rem;
}

#footer .parent-part .first-part .social-info .fa-instagram:hover {
  color: #ff00bf;
}

#footer .parent-part .first-part .social-info .fa-facebook:hover {
  color: #006eff;
}

#footer .parent-part .first-part .social-info .fa-youtube:hover {
  color: #ff0202;
}

#footer .parent-part .first-part .social-info .fa-twitter:hover {
  color: #569af3;
}

#footer .parent-part .first-part .social-info a i {
  color: #301008;
}

#footer .parent-part .second-part h5 {
  text-align: start;
  text-transform: capitalize;
  font-size: 1.5rem;
  font-family: "Helvetica";
  font-weight: 700;
}

#footer .parent-part .second-part .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#footer .parent-part .second-part .link ul {
  padding: 1rem 10rem 0 0;
}

#footer .parent-part .second-part .link ul li a {
  color: #301008;
  text-transform: capitalize;
  font-size: 1.1rem;
  font-family: "PT Serif", serif;
  font-weight: 600;
  letter-spacing: 1px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
}

#footer .parent-part .second-part .link ul li a:hover {
  color: #190138;
}

#footer .parent-part .second-part .link ul li a:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #482673;
  position: absolute;
  bottom: 0%;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#footer .parent-part .second-part .link ul li a:hover::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

#footer .parent-part .third-part {
  padding: 0 1rem;
}

#footer .parent-part .third-part .address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#footer .parent-part .third-part .address p {
  font-size: 1.2rem;
  text-transform: capitalize;
  font-family: "Lato";
  font-weight: 700;
}

#footer .parent-part .third-part .address div a .fas {
  color: #482673;
  font-size: 1.2rem;
}

#footer .parent-part .third-part .address div span {
  font-size: 1rem;
  color: #301008;
}

#footer .copyright {
  padding: 1.8rem;
  background-color: #f6ebf4;
}

#footer .copyright .copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 1rem;
}

#footer .copyright .copy .footer-social {
  width: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#footer .copyright .copy .footer-social a .fab {
  color: #482673;
}

#footer .copyright .copy .footer-social a .fa-instagram:hover {
  color: #ff00bf;
}

#footer .copyright .copy .footer-social a .fa-facebook:hover {
  color: #006eff;
}

#footer .copyright .copy .footer-social a .fa-youtube:hover {
  color: #ff0202;
}

#footer .copyright .copy .footer-social a .fa-twitter:hover {
  color: #569af3;
}

@media screen and (max-width: 786px) {
  .parent-part {
    padding: 2rem 0 !important;
  }
  .parent-part .first-part .social-info {
    text-align: center;
  }
  .parent-part .second-part {
    margin-top: 1rem;
  }
  .parent-part .second-part h5 {
    text-align: center !important;
  }
  .parent-part .second-part .link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .parent-part .second-part .link ul {
    padding: 0.5rem 0 !important;
  }
  .parent-part .second-part .link ul li {
    padding: 0 0 1rem 0 !important;
  }
  .parent-part .third-part .address {
    text-align: center;
  }
  .parent-part .third-part .address p {
    font-size: 1rem !important;
    letter-spacing: 1px;
  }
  .parent-part .third-part .address div {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  #footer .copyright {
    padding: 0.3rem !important;
  }
  #footer .copyright .copy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #footer .copyright .copy strong {
    text-align: center;
    font-size: 0.8rem !important;
  }
  #footer .copyright .copy .footer-social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
  #footer .copyright .copy .footer-social a {
    padding: 0 1rem 0 0;
  }
}

.showcase {
  height: 100vh;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.6))), url("../images/header-images/wiser-by-the-mile-1Frndjy7tkM-unsplash.jpg");
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url("../images/header-images/wiser-by-the-mile-1Frndjy7tkM-unsplash.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.showcase .showcase-content {
  color: white;
  height: inherit;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-animation: contact 2s ease alternate;
          animation: contact 2s ease alternate;
}

.showcase .showcase-content h5 {
  font-size: 2.5rem;
  text-transform: uppercase;
  font-family: "Gill Sans Nova Bold";
  letter-spacing: 1px;
  text-align: center;
}

#poster-bagswala {
  min-height: 100vh;
}

#poster-bagswala .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -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;
  padding: 2rem 0;
}

#poster-bagswala .title h5 {
  font-size: 2.5rem;
  font-family: "Gill Sans Nova Bold";
  text-transform: capitalize;
  color: #482673;
  letter-spacing: 1px;
}

#poster-bagswala .title span {
  font-size: 1.5rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
  text-transform: capitalize;
}

#call-to-action {
  min-height: auto;
  padding: 2rem 0;
}

#call-to-action .call-to-action {
  background-color: #301008;
  padding: 1.3rem 0;
}

#call-to-action .call-to-action .cta {
  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;
}

#call-to-action .call-to-action .cta h6 {
  font-size: 1.2rem;
  font-weight: 500;
  font-family: "Lato", sans-serif;
  text-transform: capitalize;
  letter-spacing: 1.2px;
  color: #f6ebf4;
}

#call-to-action .call-to-action .cta .cta-call {
  width: 30%;
  text-align: center;
}

#call-to-action .call-to-action .cta .cta-call .btn-call {
  background-color: #482673;
  color: #f6ebf4;
  border-radius: 2px !important;
  font-size: 1rem;
  padding: 0.8rem 1.5rem;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#call-to-action .call-to-action .cta .cta-call .btn-call:hover {
  background-color: #190138;
}

#category {
  min-height: 100vh;
}

#category .category-title {
  padding: 2rem 0;
}

#category .category-title h5 {
  text-align: center;
  font-size: 2.5rem;
  font-family: "Gill Sans Nova Bold";
  text-transform: capitalize;
  color: #482673;
  letter-spacing: 1px;
}

#category .owl-carousel .owl-nav .owl-next,
#category .owl-carousel .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  font-size: 3rem;
  color: #301008;
}

#category .owl-carousel .owl-nav button {
  outline: none;
  border: none;
}

#category .owl-carousel .owl-nav .owl-next:hover,
#category .owl-carousel .owl-nav .owl-prev:hover {
  background-color: transparent !important;
  color: green;
}

#category .owl-carousel .owl-nav .owl-prev {
  left: 0;
}

#category .owl-carousel .owl-nav .owl-next {
  right: 0;
}

#category .owl-carousel .owl-dots {
  display: none;
}

#sample {
  min-height: 100vh;
  padding: 2rem 0;
}

#process {
  min-height: 100vh;
  overflow: hidden;
  background-color: #f6ebf4;
}

#process .title {
  text-align: center;
  padding: 2rem 0;
}

#process .title h5 {
  font-size: 2.5rem;
  font-family: "Gill Sans Nova Bold";
  text-transform: capitalize;
  color: #482673;
  letter-spacing: 1px;
}

#process .title span {
  font-size: 1.5rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
  text-transform: capitalize;
}

#process .row {
  margin-bottom: 0.5rem;
}

#process .row strong {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  text-transform: capitalize;
  letter-spacing: 1px;
  color: #301008;
}

#process .row img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

#process .row .descriptions {
  padding: 1rem 0;
}

#process .row .descriptions p {
  line-height: 1.6rem;
  font-size: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Baloo Bhai 2", cursive;
  letter-spacing: 1px;
  color: #482673;
}

#bulk-inq {
  min-height: 30vh;
}

#bulk-inq .row {
  padding: 2rem 0;
}

#bulk-inq .row .get-in-touch h6 {
  font-size: 2rem;
  text-transform: capitalize;
  font-weight: bold;
  color: #482673;
}

#bulk-inq .ne {
  padding: 0 0 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#bulk-inq .ne .what-logo {
  width: 150px;
}

#bulk-inq .ne h6 {
  text-align: center;
  font-size: 2.5rem;
  text-transform: capitalize;
  font-weight: bold;
  color: #301008;
}

#contact {
  min-height: 60vh;
  overflow: hidden;
  background-color: #482673;
}

#contact .row {
  padding: 2.5rem 0;
}

#contact .row .contact-section {
  padding: 1rem;
}

#contact .row .contact-section h5 {
  color: #f6ebf4;
  text-transform: capitalize;
  font-size: 1.4rem;
  letter-spacing: 1px;
  font-weight: 500;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#contact .row .contact-section p {
  color: #f6ebf4;
  text-transform: capitalize;
  letter-spacing: 1.5px;
  font-size: 1rem;
  font-family: "Lato", sans-serif;
  line-height: 1.3rem;
  font-weight: 500;
}

#contact .row .contact-section p strong {
  margin-right: 10px;
}

#contact .row .form form .one-line {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  padding: 1rem 0;
}

#contact .row .form form .one-line input {
  background-color: transparent !important;
  display: block;
  padding: 0.3rem 0;
  margin: 0 2rem 0 0;
  border: 1px solid rgba(202, 199, 199, 0.164);
}

#contact .row .form form .one-line input:focus {
  outline: none;
  border: 1px solid rgba(255, 253, 253, 0.5);
}

#contact .row .form form .one-line input[type=text] {
  font-size: 1rem;
  text-transform: capitalize;
  color: #f6ebf4;
}

#contact .row .form form .one-line ::-webkit-input-placeholder {
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: #f6ebf4;
  text-transform: uppercase;
}

#contact .row .form form .one-line :-ms-input-placeholder {
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: #f6ebf4;
  text-transform: uppercase;
}

#contact .row .form form .one-line ::-ms-input-placeholder {
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: #f6ebf4;
  text-transform: uppercase;
}

#contact .row .form form .one-line ::placeholder {
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: #f6ebf4;
  text-transform: uppercase;
}

#contact .row .form form div textarea {
  background-color: transparent !important;
  width: 60%;
  border: 1px solid rgba(255, 255, 255, 0.171);
  border-radius: 5px;
  resize: none;
}

#contact .row .form form div textarea:focus {
  outline: none;
  border: 1px solid rgba(252, 252, 252, 0.5);
}

#contact .row .form form div textarea[type=text] {
  font-size: 1rem;
  text-transform: capitalize;
  color: #482673;
}

#contact .row .form form div ::-webkit-input-placeholder {
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f6ebf4;
}

#contact .row .form form div :-ms-input-placeholder {
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f6ebf4;
}

#contact .row .form form div ::-ms-input-placeholder {
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f6ebf4;
}

#contact .row .form form div ::placeholder {
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f6ebf4;
}

@-webkit-keyframes contact {
  0% {
    -webkit-transform: translateX(-1000px);
            transform: translateX(-1000px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes contact {
  0% {
    -webkit-transform: translateX(-1000px);
            transform: translateX(-1000px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@media screen and (max-width: 786px) {
  #poster-bagswala {
    min-height: 60vh;
    padding: 2rem 0;
  }
  #poster-bagswala .title h5 {
    text-align: center;
    font-size: 2rem;
  }
  #poster-bagswala .title span {
    font-size: 1.3rem;
    line-height: 1.5rem;
  }
  #process .title h5 {
    font-size: 2rem;
  }
  #process .title span {
    font-size: 1.3rem;
    line-height: 1.5rem;
  }
  #process .row strong {
    text-align: center !important;
  }
  #process .row {
    margin-bottom: 1rem;
    padding: 0;
  }
  #process .row .descriptions p span {
    display: none;
  }
  #call-to-action {
    padding: 0;
  }
  #call-to-action .call-to-action .cta h6,
  #call-to-action .call-to-action .cta h6 {
    font-size: 1rem;
    letter-spacing: 0;
  }
  #call-to-action .call-to-action .cta .cta-call,
  #call-to-action .call-to-action .cta .cta-call {
    width: 50%;
  }
  #call-to-action .call-to-action .cta .cta-call .btn-call,
  #call-to-action .call-to-action .cta .cta-call .btn-call {
    font-size: 0.5rem;
    padding: 0.5rem 1rem;
  }
  #bulk-inq .row .col-4 h6 {
    font-size: 2.2rem;
  }
  #bulk-inq .ne {
    padding-bottom: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #bulk-inq .ne h6 {
    font-size: 1.4rem;
  }
  #contact .row .form form .one-line {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  #contact .row .form form .one-line div {
    display: block;
    padding: 1rem 0;
  }
  #contact .row .form form .one-line div input {
    width: 100%;
  }
  #contact .row .form form div textarea {
    width: 100%;
  }
  #sample .grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}
/*# sourceMappingURL=bulkorder.css.map */