@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

:root {
  --primary-color: #6F1E51;
  --secondary-color: #FF323E;
  --yellow-color: #FEC456;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
}

.navbar {
  padding-bottom: 10rem;
}

.navbar-collapse .navbar-mobile {
  display: none;
}

.text-primary-color {
  color: var(--primary-color);
}

.btn-primary,
.btn-primary:hover,
.btn-primary.focus,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-warning,
.btn-warning:hover,
.btn-warning.focus,
.btn-warning:focus,
.btn-warning:not(:disabled):not(.disabled).active,
.btn-warning:not(:disabled):not(.disabled):active,
.show>.btn-warning.dropdown-toggle {
  background-color: var(--yellow-color);
  border-color: var(--yellow-color);
  font-weight: 700;
  color: #000;
}

.btn-help,
.btn-help.focus,
.btn-help:focus,
.btn-help:not(:disabled):not(.disabled).active,
.btn-help:not(:disabled):not(.disabled):active,
.show>.btn-help.dropdown-toggle {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  border-radius: .75rem;
  bottom: 1rem;
  right: 1rem;
  z-index: 1;
}

.btn-help>svg {
  margin-right: .25rem;
}

.btn-help:hover {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
  color: #fff;
}

.hero {
  background: url('../images/section-hero-bg.png') no-repeat;
  background-size: 100% 100%;
  min-height: 500px;
  color: #fff;
  padding-top: 5rem;
}

.hero h1 {
  font-weight: 700;
}

.hero p {
  font-weight: 600;
}

.video {
  background: url('../images/section-video-bg.png') no-repeat;
  background-size: 100% 100%;
  min-height: 680px;
  height: 680px;
}

.nav-item {
  margin: 0 1rem;
}

.navbar-light .navbar-nav .nav-link {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #fff;
  text-decoration: underline;
}

.card-request {
	padding: 5px;
	margin: 5px;
	border-radius: 25px;
}

/* form specific formatting */
.form-group {
	display: flex;
	flex-direction: row;
}
 
.form-group label {
	flex: none;
	display: block;
	width: 125px;
	font-weight: bold;
	font-size: 1em;
}
.form-group label.right-inline {
	text-align: right;  
	padding-right: 8px;
	padding-left: 10px;
	width: auto;
}
 
.form-group .form-control {
	flex: 1 1 auto;
	display: block;
	margin-bottom: 10px;
	margin-right: 8px;
	padding: 4px;
	margin-top: -4px;
}
.mx-6 {
	margin-left: 6rem;
	margin-right: 6rem;
}

.text-feature {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
}

#feature .row:nth-child(odd) .text-feature {
  text-align: right;
  padding-left: 2rem;
}

#feature .row:nth-child(even) .text-feature {
  text-align: left;
  padding-right: 2rem;
}

#feature img {
  width: 95%;
}

#feature-slider {
  background-color: #F3F4F8;
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-top: 3rem;
}

.feature-img {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.feature-img img {
  width: 30% !important;
}

.owl-carousel .card {
  min-height: 340px;
  text-align: center;
  border-radius: .75rem;
}

#footer {
  background-color: #F3F4F8;
}

.quote {
  font-size: 2rem;
  font-weight: bold;
  margin-left: 10rem;
  margin-right: 10rem;
}

#footer {
  background: #F3F4F8 url('../images/section-footer-bg.png') no-repeat;
  background-size: 100% 100%;
  min-height: 447px;
  position: relative;
}

.footer-body {
  position: absolute;
  bottom: 0;
}

.footer-body img {
  width: 25%;
  margin-bottom: 1rem;
}

.wrapper-chat {
  position: fixed;
  bottom: 3rem;
  right: 1rem;
  background-color: #fff;
  width: 350px;
  max-width: 350px;
  z-index: 1;
  border-radius: .5rem;
  opacity: 0;
  pointer-events: none;
  transition: all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper-chat.open {
  opacity: 1;
  bottom: 4.5rem;
  pointer-events: auto;
}

.wrapper-chat .head-text {
  line-height: 60px;
  color: #fff;
  border-radius: .5rem .5rem 0 0;
  padding: 0 20px;
  font-weight: 500;
  font-size: 20px;
  background-color: var(--secondary-color);
}

.wrapper-chat .chat-box {
  padding: 20px;
  width: 100%;
}

.chat-box .desc-text {
  color: #515365;
  line-height: 25px;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 1rem;
}

.chat-box .form-control {
  background-color: #eee;
  border: none;
}

.bg-orange {
  background-color: var(--secondary-color);
  color: #fff !important;
}

@media (max-width: 575.98px) {
  .hero {
    background-size: cover;
    height: 640px;
  }

  .hero-text {
    padding-left: .75rem !important;
    padding-right: .75rem !important;
  }

  .hero-text h1,
  .product-text,
  .feature-text h1 {
    font-size: 1.85rem;
  }

  .product-text {
    font-weight: 500;
  }

  .video {
    height: 440px !important;
    min-height: 440px !important;
    background-size: 150% 70%;
    background-position: center;
  }

  .video-container iframe {
    height: 200px !important;
    width: 70%;
  }

  #feature .row {
    margin-bottom: 2.5rem;
  }

  .feature-text p {
    margin-left: .5rem;
    margin-right: .5rem;
    font-weight: 600;
    margin-top: 1.5rem !important;
  }

  #feature img {
    width: 65%;
    margin-bottom: 2rem;
  }

  #feature .text-feature {
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #feature-slider {
    padding-bottom: 1rem;
  }

  .quote {
    margin-left: .75rem;
    margin-right: .75rem;
    font-weight: 600;
    font-size: 1.75rem;
  }

  #footer {
    background-size: cover;
    background-position: 35% 100%;
  }

  .footer-text {
    margin-bottom: 3rem;
  }

  .footer-body img {
    width: 45%;
  }

  footer {
    padding-bottom: .5rem !important;
  }
}

@media (min-width: 575.99px) and (max-width: 991.98px) {
  .hero {
    background-size: cover;
    height: 640px;
  }

  .hero .col-md-6 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .hero .hero-text {
    padding: 0 !important;
  }

  #product .col-md-7 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  #product .justify-content-center .col-md-2 {
    -ms-flex: 0 0 24%;
    flex: 0 0 24%;
    max-width: 24%;
  }

  #feature .row:nth-child(odd) .text-feature {
    text-align: right;
    padding-left: 0;
    font-size: 1.15rem;
  }
  
  #feature .row:nth-child(even) .text-feature {
    text-align: left;
    padding-right: 0;
    font-size: 1.15rem;
  }

  .quote {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  #footer {
    background-size: cover;
    background-position: 35% 100%;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: #E1101E;
    z-index: 1;
    text-align: center;
    padding: 1rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 450px;
  }

  .navbar-collapse .navbar-mobile {
    background-color: #fff;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: -1rem -1rem 0 -1rem;
    padding: 1rem;
    display: flex;
  }

  .navbar-toggler {
    border: none;
  }

  .navbar-toggler .navbar-toggler-icon {
    background-color: #fff;
  }

  .nav-item {
    margin: .75rem 1rem;
  }
}