:root {
  --blue: #2780e3;
  --indigo: #6610f2;
  --purple: #613d7c;
  --pink: #e83e8c;
  --red: #ff0039;
  --orange: #f0ad4e;
  --yellow: #ff7518;
  --green: #3fb618;
  --teal: #20c997;
  --cyan: #9954bb;
  --white: #fff;
  --gray: #868e96;
  --gray-dark: #373a3c;
  --primary: #2780e3;
  --secondary: #373a3c;
  --success: #3fb618;
  --info: #9954bb;
  --warning: #ff7518;
  --danger: #ff0039;
  --light: #f8f9fa;
  --dark: #373a3c;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: "Poppins", sans-serif;
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}

*,
:after,
:before {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

figcaption,
footer,
header,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;
  font-family: var(--font-family-sans-serif);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  color: #373a3c;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

h1,
h2,
h3,
h4,
h5 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol,
ul {
  margin-bottom: 1rem;
}

ol,
ul {
  margin-top: 0;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}

b,
strong {
  font-weight: bolder;
}

a {
  color: #2780e3;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #165ba8;
  text-decoration: underline;
}

a:not([href]):not([tabindex]),
a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

img {
  border-style: none;
}

img,
svg {
  vertical-align: middle;
}

svg {
  overflow: hidden;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #868e96;
  text-align: left;
  caption-side: bottom;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

button,
input,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="time"] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

[hidden] {
  display: none !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
h1,
h2,
h3,
h4,
h5 {
  margin-bottom: 0.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.h1,
h1 {
  font-size: 2.34375rem;
}

.h2,
h2 {
  font-size: 1.875rem;
}

.h3,
h3 {
  font-size: 1.640625rem;
}

.h4,
h4 {
  font-size: 1.40625rem;
}

.h5,
h5 {
  font-size: 1.171875rem;
}

.lead {
  font-size: 1.171875rem;
  font-weight: 300;
}

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

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-md-12,
.col-sm-4,
.col-sm-6,
.col-sm-12 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.order-last {
  order: 13;
}

@media (min-width: 576px) {
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

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

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

  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
}

@media (min-width: 768px) {
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #373a3c;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn:hover {
  color: #373a3c;
  text-decoration: none;
}

.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(39, 128, 227, 0.25);
}

.btn.disabled,
.btn:disabled {
  opacity: 0.65;
}

a.btn.disabled {
  pointer-events: none;
}

.btn-info {
  color: #fff;
  background-color: #9954bb;
  border-color: #9954bb;
}

.btn-info:hover {
  color: #fff;
  background-color: #8542a7;
  border-color: #7e3f9d;
}

.btn-info.focus,
.btn-info:focus {
  box-shadow: 0 0 0 0.2rem rgba(168, 110, 197, 0.5);
}

.btn-info.disabled,
.btn-info:disabled {
  color: #fff;
  background-color: #9954bb;
  border-color: #9954bb;
}

.btn-info:not(:disabled):not(.disabled).active,
.btn-info:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #7e3f9d;
  border-color: #773b94;
}

.btn-info:not(:disabled):not(.disabled).active:focus,
.btn-info:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(168, 110, 197, 0.5);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:focus,
.nav-link:hover {
  text-decoration: none;
}

.nav-link.disabled {
  color: #868e96;
  pointer-events: none;
  cursor: default;
}

.navbar {
  position: relative;
  padding: 0.5rem 1rem;
}

.navbar,
.navbar>.container,
.navbar>.container-fluid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.32421875rem;
  padding-bottom: 0.32421875rem;
  margin-right: 1rem;
  font-size: 1.171875rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:focus,
.navbar-brand:hover {
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.171875rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
  text-decoration: none;
}

@media (max-width: 767.98px) {

  .navbar-expand-md>.container,
  .navbar-expand-md>.container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-md>.container,
  .navbar-expand-md>.container-fluid {
    flex-wrap: nowrap;
  }

  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

.navbar-light .navbar-brand,
.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

@keyframes progress-bar-stripes {
  0% {
    background-position: 0.5rem 0;
  }

  to {
    background-position: 0 0;
  }
}

.media {
  display: flex;
  align-items: flex-start;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.show .modal-dialog {
  transform: none;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered:before {
  display: block;
  height: calc(100vh - 1rem);
  content: "";
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #dee2e6;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered:before {
    height: calc(100vh - 3.5rem);
  }
}

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner:after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
  display: block;
}

.active.carousel-item-right,
.carousel-item-next:not(.carousel-item-left) {
  transform: translateX(100%);
}

.active.carousel-item-left,
.carousel-item-prev:not(.carousel-item-right) {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}

.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right,
.carousel-fade .carousel-item.active {
  z-index: 1;
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {

  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    transition: none;
  }
}

.carousel-control-next,
.carousel-control-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {

  .carousel-control-next,
  .carousel-control-prev {
    transition: none;
  }
}

.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: no-repeat 50%/100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3E%3C/svg%3E");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    transition: none;
  }
}

.carousel-indicators .active {
  opacity: 1;
}

@keyframes spinner-border {
  to {
    transform: rotate(1turn);
  }
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }

  50% {
    opacity: 1;
  }
}

.align-middle {
  vertical-align: middle !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:focus,
a.bg-light:hover,
button.bg-light:focus,
button.bg-light:hover {
  background-color: #dae0e5 !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-cell {
  display: table-cell !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-block {
    display: block !important;
  }
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
}

.fixed-top {
  top: 0;
}

.fixed-top {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.ml-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .py-sm-5 {
    padding-top: 3rem !important;
  }

  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media print {

  *,
  :after,
  :before {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  img {
    page-break-inside: avoid;
  }

  h2,
  h3,
  p {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  @page {
    size: a3;
  }

  .container,
  body {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }
}

body {
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  background-color: #a9a9a9;
  outline: 1px solid #708090;
}

#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url(../images/gif/preloader.gif) no-repeat 50%;
}

.back-to-top {
  position: fixed;
  bottom: 60px;
  background: #d8203b;
  width: 40px;
  height: 40px;
  z-index: 10;
  border: none;
  border-radius: 50%;
  right: 1%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.1s ease-in;
}

.back-to-top span {
  -webkit-mask: url(../images/svg/up-arrow.svg) no-repeat 100% 100%;
  mask: url(../images/svg/up-arrow.svg) no-repeat 100% 100%;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #fff;
  width: 15px;
  height: 15px;
  display: inline-block;
}

.button--loading {
  position: relative;
  cursor: wait;
  outline: none;
}

.button--loading:before {
  margin: -13px 0 0 -13px;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  -webkit-border-radius: 24px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 24px;
  -moz-background-clip: padding;
  border-radius: 24px;
  background-clip: padding-box;
  border: 2px solid hsla(0, 0%, 100%, 0.25);
  border-top-color: #fff;
  animation: animation-rotate 0.75s linear infinite;
}

.button--loading:active span,
.button--loading:hover span,
.button--loading span {
  color: transparent;
  text-shadow: none;
}

@keyframes animation-rotate {
  to {
    transform: rotate(1turn);
  }
}

#cont2 .successmsg {
  background-color: #fff;
  color: #4caf50;
  display: flex;
  padding-bottom: 30px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#cont2 svg {
  width: 75px;
  display: block;
  margin: 30px auto;
}

#cont2 .path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
}

#cont2 .path.circle {
  animation: dash 0.9s ease-in-out;
}

#cont2 .path.check {
  stroke-dashoffset: -100;
  animation: dash-check 0.9s 0.35s ease-in-out forwards;
}

@keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dash-check {
  0% {
    stroke-dashoffset: -100;
  }

  to {
    stroke-dashoffset: 900;
  }
}

#header {
  height: 100px;
}

@media (max-width: 768px) {
  #header {
    height: 100px;
  }
}

#header li:nth-last-child(2).nav-item {
  margin-right: 0;
}

#header li.nav-item {
  margin-right: 5px;
}

#header li.nav-item .nav-link {
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: uppercase;
}

#header li.nav-item .nav-link span:after {
  content: "";
  bottom: 0;
  display: block;
  height: 2px;
  background-color: #ba1f39;
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in;
}

#header li.nav-item.active span:after,
#header li.nav-item:hover span:after {
  transform: scaleX(1);
}

#header .menuclosebtn {
  position: relative;
  left: 20px;
  top: 20px;
  width: 34px;
  height: 34px;
  -webkit-mask-image: url(../images/svg/up-arrow.svg);
  mask-image: url(../images/svg/up-arrow.svg);
  background-color: #fff;
  z-index: 2;
  transform: rotate(90deg);
  padding: 10px;
  cursor: pointer;
}

@media (max-width: 768px) {
  #header ul.navbar-nav {
    background: #ba1f39;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    width: 100%;
    max-width: 275px;
    z-index: 99;
    opacity: 0;
    transform: translateX(100%);
    flex-direction: column;
    animation: MobileMenu 0.5s ease-in-out forwards;
  }

  @keyframes MobileMenu {
    0% {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  #header ul.navbar-nav.showmenu {
    transform: translateX(0);
    transition: 0.3s ease-in-out;
  }

  #header ul.navbar-nav.hidemenu {
    transition: 0.3s ease-in-out;
  }

  #header ul.navbar-nav .mobile-logo {
    margin: 30px auto;
    width: 100%;
    padding: 0 20px;
  }

  #header ul.navbar-nav li {
    padding: 5px 20px;
    background: #d8203b;
    margin: 10px;
  }

  #header ul.navbar-nav li.copyrights {
    background: #ba1f39;
    text-align: center;
    margin-top: auto;
  }

  #header ul.navbar-nav li.copyrights p {
    color: #fff;
    font-size: 0.75rem;
  }

  #header ul.navbar-nav li.copyrights p b {
    font-size: 1rem;
  }

  #header ul.navbar-nav li.active {
    background: #8c181e;
  }

  #header ul.navbar-nav li a.nav-link {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 500;
  }

  #header ul.navbar-nav li a.nav-link span:after {
    background-color: transparent;
  }
}

@media (min-width: 769px) {

  #header .copyrights,
  #header .menuclosebtn,
  #header .mobile-logo {
    display: none;
  }
}

@media (max-width: 768px) {
  #header .navbar-brand {
    align-items: center;
    justify-content: flex-start;
    display: flex;
    width: 100%;
  }

  #header .navbar-brand img {
    width: calc(100vw - 135px);
  }
}

#header .navbar-toggler {
  position: absolute;
  right: 15px;
  width: 50px;
  display: block;
  padding: 10px;
  z-index: 1;
  border: none;
  box-shadow: none;
  outline: none;
  transition: all 0.5s;
}

@media (min-width: 769px) {
  #header .navbar-toggler {
    display: none;
  }
}

#header .navbar-toggler div {
  height: 3px !important;
  background: #ba1f39;
  margin: 7px 0;
  border-radius: 25px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

#header .navbar-toggler .one {
  width: 35px;
}

#header .navbar-toggler .two {
  width: 25px;
}

#header .navbar-toggler .three {
  width: 40px;
}

.topheader {
  height: 40px;
  background: #ba1f39;
  display: flex;
  align-items: center;
  font-weight: 400;
  top: 0;
  width: 100%;
}

@media (max-width: 1024px) {
  .topheader {
    display: none;
  }
}

.topheader .header-bar-top-element {
  display: inline-block;
  color: hsla(0, 0%, 100%, 0.65);
  border-right: 1px solid hsla(0, 0%, 100%, 0.35);
  font-size: 0.75rem;
  padding: 10px 20px 10px 0;
}

.topheader .header-bar-top-element:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 15px;
}

.topheader .header-bar-top-element i {
  display: inline-block;
  font-size: 0.75rem;
  color: hsla(0, 0%, 100%, 0.4);
  margin-right: 5px;
}

.topheader .header-bar-top-element i.envelope:before {
  content: "";
  -webkit-mask: url(../images/svg/email.svg) no-repeat 100% 100%;
  mask: url(../images/svg/email.svg) no-repeat 100% 100%;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #fff;
  width: 15px;
  height: 15px;
  display: inline-block;
  position: relative;
  top: 3px;
}

.topheader .header-bar-top-element i.location:before {
  content: "";
  -webkit-mask: url(../images/svg/location.svg) no-repeat 100% 100%;
  mask: url(../images/svg/location.svg) no-repeat 100% 100%;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #fff;
  width: 15px;
  height: 15px;
  display: inline-block;
  position: relative;
  top: 3px;
}

.topheader .header-bar-top-element i.mobile:before {
  content: "";
  -webkit-mask: url(../images/svg/mobile.svg) no-repeat 100% 100%;
  mask: url(../images/svg/mobile.svg) no-repeat 100% 100%;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #fff;
  width: 15px;
  height: 15px;
  display: inline-block;
  position: relative;
  top: 4px;
}

.topheader .header-bar-top-element a {
  color: hsla(0, 0%, 100%, 0.65);
  text-decoration: none;
  transition: 0.1s;
}

.topheader .header-bar-top-element a:hover {
  color: #fff;
}

#intro .carousel-item {
  padding-top: 50px;
  background-color: #000;
}

#intro .carousel-item .m-width {
  max-width: 400px;
  margin: 0 0 0 auto;
}

@media screen and (max-width: 768px) {
  #intro .carousel-item .m-width {
    max-width: 90%;
    margin: 60px auto;
  }
}

#intro .carousel-item .m-width h3 {
  font-size: 2.25rem;
  font-weight: 500;
  color: #d8203b;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  #intro .carousel-item .m-width h3 {
    height: 100px;
    align-items: flex-end;
    display: flex;
  }
}

#intro .carousel-item .m-width p {
  font-size: 1rem;
  font-weight: 300;
  color: #fff;
}

@media screen and (max-width: 768px) {
  #intro .carousel-item .m-width p {
    height: 150px;
  }
}

#intro .carousel-control-next-icon,
#intro .carousel-control-prev-icon {
  background-image: url(../images/svg/next.svg);
}

#intro .carousel-control-prev-icon {
  transform: rotateZ(180deg);
}

#sales {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
}

#sales h2 {
  font-weight: 600;
  margin-bottom: 50px;
}

#sales h2 span {
  position: relative;
  padding-bottom: 10px;
}

#sales h2 span:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #d8203b;
  height: 2px;
  width: 100px;
}

#sales p {
  font-size: 1rem;
  max-width: 500px;
  width: 100%;
  margin: 30px auto;
}

#sales ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  grid-gap: 10px;
  list-style: none;
  margin-bottom: 0;
  text-align: center;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  padding: 30px 0;
  margin-bottom: -100px;
  border: 1px solid rgba(186, 31, 57, 0.3);
  box-shadow: 0 10px 10px rgba(2, 2, 2, 0.2);
}

#sales ul li {
  opacity: 1;
}

#sales ul li img {
  width: 110px;
  height: 75px;
  -o-object-fit: contain;
  object-fit: contain;
}

#weoffers {
  background: hsla(0, 0%, 86%, 0.3);
  padding: 100px 0;
}

@media (max-width: 768px) {
  #weoffers {
    padding: 50px 0 10px;
  }
}

#weoffers h1,
#weoffers h2 {
  font-weight: 600;
  margin-bottom: 50px;
}

#weoffers h1 span,
#weoffers h2 span {
  position: relative;
  padding-bottom: 10px;
}

#weoffers h1 span:after,
#weoffers h2 span:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #d8203b;
  height: 2px;
  width: 100px;
}

#weoffers p.title--desc {
  font-size: 1rem;
  font-weight: 400;
  max-width: 500px;
  width: 100%;
  margin: 30px auto;
}

#weoffers h3 {
  font-weight: 600;
  margin-bottom: 30px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  #weoffers h3 {
    margin-top: 30px;
  }
}

#weoffers h3 span {
  position: relative;
  padding-bottom: 10px;
}

#weoffers h3 span:after {
  position: absolute;
  left: 0;
  content: "";
  bottom: 0;
  background: #d8203b;
  height: 2px;
  width: 55px;
}

#weoffers p {
  max-width: 400px;
}

@media (min-width: 768px) {
  #weoffers .rightalign {
    max-width: 400px;
    margin-left: auto;
  }
}

#weoffers img {
  padding: 20px;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 6px 6px rgba(2, 2, 2, 0.16);
}

#weoffers a {
  display: block;
  text-decoration: none;
}

#weoffers a span {
  display: flex;
  max-width: 200px;
  margin-top: 30px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background-color: #d8203b;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  #weoffers a span {
    margin: 30px auto;
  }
}

#weoffers a:hover {
  opacity: 0.7;
  transition: 0.25s linear;
}

#about {
  padding: 100px 0;
  background-color: #ba1f39;
  color: #fff;
}

#about h2 {
  font-weight: 600;
  margin-bottom: 50px;
}

#about h2 span {
  position: relative;
  padding-bottom: 10px;
}

#about h2 span:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  height: 2px;
  width: 100px;
}

#about p {
  font-size: 1.125rem;
  text-align: justify;
}

@media (max-width: 768px) {
  #about p {
    text-align: left;
    font-size: 1rem;
  }
}

#introheading {
  background-color: rgba(186, 31, 57, 0.85);
  background-blend-mode: multiply;
  background-image: url(../images/jpg/calltoaction.jpg);
  background-size: contain;
  background-position: bottom;
  height: 250px;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  #introheading {
    height: 150px;
  }
}

#introheading h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.375rem;
  font-weight: 500;
  color: #fff;
}

@media (max-width: 768px) {
  #introheading h1 {
    font-size: 1.75rem;
  }
}

footer {
  background-color: #ba1f39;
  color: #fff;
  padding-top: 50px;
}

footer p.bottomline {
  margin: 0;
  border-top: 1px solid #fff;
  padding: 15px 0;
}

footer ul.footerlinks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  justify-items: center;
  list-style: none;
  max-width: 400px;
  padding-left: 0;
  margin: 50px 0;
}

footer ul.footerlinks li a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
}

footer .socialmedia {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  justify-items: center;
  list-style: none;
  max-width: 170px;
  padding-left: 0;
  margin: 50px 0;
}

footer .socialmedia li a {
  display: block;
  color: #fff;
  text-decoration: none;
}

footer .socialmedia li a img {
  width: 25px;
  height: 25px;
}

#rentalbenifits {
  padding: 100px 0;
}

#rentalbenifits h2 {
  font-weight: 600;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  #rentalbenifits h2 {
    font-size: 1.625rem;
  }
}

#rentalbenifits h2 span {
  position: relative;
  padding-bottom: 10px;
}

#rentalbenifits h2 span:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ba1f39;
  height: 2px;
  width: 150px;
}

#rentalbenifits p {
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  #rentalbenifits p {
    font-size: 1rem;
  }
}

#rentalbenifits ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  list-style: none;
  padding: 0;
  margin: 75px 0 0;
}

@media (max-width: 768px) {
  #rentalbenifits ul {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

#rentalbenifits ul li {
  position: relative;
  padding-left: 30px;
}

@media (max-width: 768px) {
  #rentalbenifits ul li {
    font-size: 1rem;
  }
}

#rentalbenifits ul li:before {
  content: "";
  background: url(../images/svg/like.svg) no-repeat 100% 100%;
  background-size: contain;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  left: 0;
}

#rentalbenifits a {
  display: block;
  text-decoration: none;
  cursor: default;
}

#rentalbenifits a span {
  display: flex;
  max-width: 300px;
  margin: 50px auto 0;
  height: 50px;
  align-items: center;
  justify-content: center;
  background-color: #d8203b;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

#rentalbenifits a span:hover {
  opacity: 0.7;
  transition: 0.25s linear;
}

#products {
  background: hsla(0, 0%, 86%, 0.3);
  padding: 100px 0;
}

@media (max-width: 768px) {
  #products {
    padding: 30px 0;
  }
}

#products h2 {
  font-weight: 600;
  margin-bottom: 50px;
}

#products h2 span {
  position: relative;
  padding-bottom: 10px;
}

#products h2 span:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #d8203b;
  height: 2px;
  width: 100px;
}

#products p.title--desc {
  font-size: 1rem;
  font-weight: 400;
  max-width: 500px;
  width: 100%;
  margin: 30px auto;
}

#products h3 {
  font-weight: 600;
  margin-bottom: 30px;
  text-transform: uppercase;
}

#products h3 span {
  position: relative;
  padding-bottom: 10px;
}

#products h3 span:after {
  position: absolute;
  left: 0;
  content: "";
  bottom: 0;
  background: #d8203b;
  height: 2px;
  width: 55px;
}

#products p {
  max-width: 400px;
}

@media (min-width: 768px) {
  #products .rightalign {
    max-width: 400px;
    margin-left: auto;
  }
}

#products img {
  padding: 20px;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 6px 6px rgba(2, 2, 2, 0.16);
}

#products a {
  display: block;
  text-decoration: none;
}

#products a span {
  display: flex;
  max-width: 200px;
  margin-top: 30px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background-color: #d8203b;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

#products a:hover {
  opacity: 0.7;
  transition: 0.25s linear;
}

#products .product--gap {
  padding: 100px 0;
}

@media (max-width: 768px) {
  #products .product--gap {
    padding: 30px 0;
  }
}

#contactus {
  background-image: url(../images/jpg/bg.jpg);
  background-size: auto;
  background-repeat: repeat;
  padding: 75px 0;
}

@media (max-width: 768px) {
  #contactus {
    padding: 30px 0;
  }
}

#contactus h2 {
  font-size: 2rem;
  font-weight: 500;
  padding-bottom: 20px;
  color: #ba1f39;
  text-transform: uppercase;
}

#contactus h2 span {
  position: relative;
  padding-bottom: 10px;
}

#contactus h2 span:after {
  position: absolute;
  left: 0;
  content: "";
  bottom: 0;
  background: #ba1f39;
  height: 2px;
  width: 200px;
}

@media (max-width: 768px) {
  #contactus h2 {
    font-size: 1.125rem;
    padding-bottom: 20px;
  }
}

#contactus h4 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 30px;
}

#contactus h4 b {
  position: relative;
  padding-bottom: 10px;
}

#contactus h4 b:after {
  position: absolute;
  left: 0;
  content: "";
  bottom: 0;
  background: #ba1f39;
  height: 2px;
  width: 120px;
}

#contactus h5 {
  font-size: 1.125rem;
  max-width: 400px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  #contactus h5 {
    font-size: 0.875rem;
  }
}

#contactus p {
  font-size: 1.125rem;
}

#contactus p a,
.form {
  color: #222;
}

.form {
  min-height: 120px;
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 25px 15px 30px;
  text-align: center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
  max-width: 400px;
}

.form input,
.form input:active,
.form input:focus,
.form select,
.form select:active,
.form select:focus,
.form textarea,
.form textarea:active,
.form textarea:focus {
  outline: 0;
  background: #fff;
  width: 100%;
  border: 1px solid #ccc;
  margin: 0 0 15px;
  padding: 10px;
  border-radius: 1px;
  box-sizing: border-box;
  font-size: 0.875rem;
  outline: none;
  box-shadow: none;
}

.form select {
  height: auto !important;
}

.form textarea {
  min-height: 120px;
}

.width-180 {
  width: 100%;
  height: 48px;
  border-radius: 0;
  background-color: #ba1f39;
  color: #fff;
}

.lazyloadimg {
  opacity: 0;
  transition: all 0.5s;
}

.lazyimg {
  min-width: 400px;
  min-height: 375px;
  background-color: #fff;
}

@media (max-width: 768px) {
  .lazyimg {
    min-width: 275px;
    min-height: 150px;
  }
}

img:before {
  content: " ";
  top: -10px;
  height: calc(100% + 10px);
  background-color: #e6e6e6;
  border-radius: 5px;
}

img:after,
img:before {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
}

img:after {
  content: "" attr(alt);
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}

.fadeimg {
  opacity: 1;
  transition: all 0.5s;
}

#enquirypopup .my__close {
  position: absolute;
  right: 0;
  top: 5px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  outline: none;
  box-shadow: none;
  opacity: 0.3;
}

#enquirypopup .my__close:hover {
  opacity: 1;
}

#enquirypopup .my__close:after,
#enquirypopup .my__close:before {
  position: absolute;
  left: 15px;
  content: " ";
  height: 33px;
  width: 2px;
  background-color: #fff;
}

#enquirypopup .my__close:before {
  transform: rotate(45deg);
}

#enquirypopup .my__close:after {
  transform: rotate(-45deg);
}

#enquirypopup .modal-header {
  background-color: #d8203b;
  color: #fff;
  justify-content: center;
}

#enquirypopup .modal-dialog {
  max-width: 400px;
}

#enquirypopup .modal-body {
  padding: 0;
  border: none;
}

#getquotebtn {
  position: fixed;
  top: 40%;
  z-index: 98;
  right: -60px;
  font-size: 0.875rem;
  font-weight: 400;
  margin: 0;
  padding: 8px 16px;
  background: #d8203b;
  color: #fff;
  transform: rotate(-90deg);
  cursor: pointer;
}

.logo-nobg {
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
}

.drivers .list-group a {
  font-weight: 600;
  padding: 8px 0 !important;
  border-bottom: 1px solid #ddd;
  color: #d8203b;
  padding: 3px;
}