@import url("https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Your+Webfont&display=swap");

body {
  font-family: 'Your Webfont', sans-serif;
  font-size: 16px;
  font-weight: normal;
}




@font-face {
  font-family: 'Your Font Family';
  src: url('your-font-url.eot'); /* IE9 Compat Modes */
  src: url('your-font-url.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('your-font-url.woff2') format('woff2'), /* Super Modern Browsers */
       url('your-font-url.woff') format('woff'), /* Pretty Modern Browsers */
       url('your-font-url.ttf') format('truetype'), /* Safari, Android, iOS */
       url('your-font-url.svg#your-font-family') format('svg'); /* Legacy iOS */
}




img {
  width: 120px;
  height: 100px;
}



.qunlogo {
  width: 150px;
  height: 70px;
}

.careers_link {
  color: #1a193b;
  text-decoration: none;
  padding-left: 5px;
  padding-top: 1px;
}

.custom-button {
  color: black;
  background-color: #f9d509;
  width: 100px;
  height: 45px;
  border-width: 0;
  border-radius: 8px;
  margin-right: 0px;
}

.thanking-customers-section {
  background-color: #e6f6ff;
}

.animated-heading {
  font-size: 48px;
  font-weight: bold;
  background: linear-gradient(90deg, #d90d73, #069d06, #6666ff, #8d5604);
  background-size: 400% 400%;
  animation: animate 10s ease-in-out infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes animate {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.imgg {
  max-height: 75vh;
  max-width: 100vw;
  object-fit: cover;
  margin-left: auto;
  margin-right: auto;
  padding-top: 70px;
  padding-left: 0px;
  padding-right: 0px;
}

.card-item {
  border-radius: 16px;
}

.card-link {
  color: #d0b200;
  font-family: "Roboto";
  font-size: 14px;
  font-weight: 500;
}

.card-image {
  border-radius: 16px;
  width: 300px;
  height: 160px;
  background-size: cover;
  align-items: center;
  padding: auto;
}

.text-gradient {
  background: linear-gradient(to top, rgb(133, 3, 247), rgb(255, 0, 238));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: larger;
  margin-top: 10px;
  font-weight: bolder;
}

button {
  background-color: #1bcbeb;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #a9c1cb;
}

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

body {
  background: #f2f2f2;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 60px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.logos-slide img {
  height: 50px;
  margin: 0 40px;
}

.footer-section-1 {
  background-color: #1a193b;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.footer-section-2 {
  background-color: #1a193b;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.footer-section-3 {
  background-color: #1a193b;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.footer-section-4 {
  background-color: #1a193b;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.footer-section-1 {
  animation: royal-fade-in 2s ease-in-out;
}

.footer-section-2 {
  animation: royal-slide-in 2s ease-in-out;
}

.footer-section-3 {
  animation: royal-scale-up 2s ease-in-out;
}

.footer-section-4 {
  animation: royal-fade-in 2s ease-in-out;
}

@keyframes royal-fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes royal-slide-in {
  0% {
    transform: translateX(-100px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes royal-scale-up {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}

.twitter {
  color: #078bf0;
  margin-top: 2px;
  width: 40px;
  height: 40px;
  text-align: center;
  padding-top: 10px;
  line-height: 30px;
  text-decoration: none;
}

.linkedin {
  color: rgb(242, 9, 110);
  margin-top: 2px;
  width: 120px;
  height: 50px;
  border-radius: 10px;
  text-align: center;
  padding-top: 10px;
  text-decoration: none;
}

.instagram {
  color: rgb(242, 8, 203);
  margin-top: 2px;
  width: 120px;
  height: 50px;
  border-radius: 10px;
  text-align: center;
  padding-top: 10px;
  text-decoration: none;
}

.facebook {
  color: rgb(197, 187, 213);
  margin-top: 2px;
  width: 120px;
  height: 50px;
  border-radius: 10px;
  text-align: center;
  padding-top: 10px;
  text-decoration: none;
}

input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.quick {
  color: green;
  padding-top: 10px;
  margin-bottom: 2px;
  font-size: medium;
  text-decoration: none;
}

.carousel-inner img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* Default styling for large screens */
.navbar {
  padding: 1em;
  color: #fff;
}

.navbar-brand {
  font-size: 1.5em;
}

.navbar-nav {
  margin-left: 1em;
}

.navbar-center {
  margin-left: 1em;
}

/* Styling for medium screens */
@media (max-width: 768px) {
  .navbar {
    padding: 0.5em;
  }
  .navbar-brand {
    font-size: 1.2em;
  }
  .navbar-nav {
    margin-left: 0.5em;
  }
  .navbar-center {
    margin-left: 0.5em;
  }
}

/* Styling for small screens */
@media (max-width: 480px) {
  .navbar {
    padding: 0.2em;
  }
  .navbar-brand {
    font-size: 1em;
  }
  .navbar-nav {
    margin-left: 0.2em;
  }
  .navbar-center {
    margin-left: 0.2em;
  }
  .navbar-toggler {
    display: block;
  }
  .collapse {
    display: none;
  }
}

/* Styling for extra small screens */
@media (max-width: 320px) {
  .navbar {
    padding: 0.1em;
  }
  .navbar-brand {
    font-size: 0.8em;
  }
  .navbar-nav {
    margin-left: 0.1em;
  }
  .navbar-center {
    margin-left: 0.1em;
  }
}

.videoo {
  height: 50px; /* decrease the height to 50px */
  width: 100%; /* set the width to 100% */
  object-fit: cover; /* add this property to maintain the aspect ratio */
}

.vcon {
  position:absolute;
  color: white;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.764);
  padding: 5px;
  margin-left: 5px;
  top: 30%;
  right: 70%;

}

h1.text-center {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-decoration: none;
  z-index: 1;
}

.typewriter h1 {
  font-size: 15px;
  font-weight: 400;
  overflow: hidden;
  border-right: 0px solid;
  animation: typewriter 1.5s steps(30) 1 normal both, cursor 1s step-end infinite;
}

.typewriter h1:nth-child(1) {
  animation-delay: 0s;
}

.typewriter h1:nth-child(2) {
  animation-delay: 0.5s;
}

.typewriter h1:nth-child(3) {
  animation-delay: 1s;
}

.typewriter h1:nth-child(4) {
  animation-delay: 1.5s;
}

.typewriter h1:nth-child(5) {
  animation-delay: 2s;
}

@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes cursor {
  50% {
    border-color: transparent;
  }
}

.image-transition {
  position: relative;
  animation: transition-in 5s ease-in-out forwards;

}



@keyframes transition-in {
  0% {
    transform: translateX(-180px);
  }
  100% {
    transform: translateX(0);
  }
}



.containerlet {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  margin-top: 5px;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-info {
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-info li {
  margin-bottom: 10px;
}

.contact-info i {
  margin-right: 10px;
}

.schedule-call {
  margin-bottom: 20px;
}

.schedule-call form {
  margin-top: 20px;
}

.schedule-call input,
.schedule-call textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
}

.schedule-call button[type="submit"] {
  background-color: #4CAF50;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.schedule-call button[type="submit"]:hover {
  background-color: #3e8e41;
}

.social-media {
  margin-bottom: 20px;
}

.social-media ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-media li {
  margin-bottom: 10px;
}

.social-media i {
  margin-right: 10px;
}

.social-media a {
  text-decoration: none;
  color: #337ab7;
}

.social-media a:hover {
  color: #23527c;
}

.footer {
  background-color: #f7f7f7;
  padding: 20px;
  text-align: center;
  clear: both;
}

.footer p {
  margin-bottom: 10px;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer li {
  display: inline-block;
  margin-right: 20px;
}

.footer a {
  text-decoration: none;
  color: #337ab7;
}

.footer a:hover {
  color: #23527c;
}

.copyright {
  margin-top: 10px;
  font-size: 12px;
  color: #666;
}

/* Responsive design */

@media (max-width: 1200px) {
  .container {
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .navbar {
    padding: 10px;
  }
  .navbar-brand {
    font-size: 18px;
  }
  .navbar-nav {
    margin-left: 10px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 5px;
  }
  .navbar-brand {
    font-size: 14px;
  }
  .navbar-nav {
    margin-left: 5px;
  }
  .container {
    padding: 10px;
  }
}

@media (max-width: 576px) {
  .navbar {
    padding: 0;
  }
  .navbar-brand {
    font-size: 12px;
  }
  .navbar-nav {
    margin-left: 0;
  }
  .container {
    padding: 5px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 10px;
  }
  .copyright {
    font-size: 10px;
  }
}

/* Animations */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Miscellaneous */

* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #337ab7;
}

a:hover {
  color: #23527c;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-1 {
  max-width: 8.33%;
}

.col-2 {
  max-width: 16.66%;
}

.col-3 {
  max-width: 25%;
}

.col-4 {
  max-width: 33.33%;
}

.col-5 {
  max-width: 41.66%;
}

.col-6 {
  max-width: 50%;
}

.col-7 {
  max-width: 58.33%;
}

.col-8 {
  max-width: 66.66%;
}

.col-9 {
  max-width: 75%;
}

.col-10 {
  max-width: 83.33%;
}

.col-11 {
  max-width: 91.66%;
}

.col-12 {
  max-width: 100%;
}