/*! CSS Used from: http://127.0.0.1:5502/assets/css/style.css */

h1 {
  font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }
}

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


.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}

@media (min-width: 992px) {
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  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: #212529;
}

.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn:disabled {
  pointer-events: none;
  opacity: 0.65;
}

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

.ms-2 {
  margin-left: 0.5rem !important;
}

.fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-arrow-circle-right:before {
  content: '\f0a9';
}

.fas {
  font-family: 'Font Awesome 5 Free';
}

.fas {
  font-weight: 900;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

h1 {
  line-height: 1.2333333333;
}

h1 {
  color: var(--heading-color);
  font-weight: 700;
}

p {
  color: var(--paragraph-color);
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  margin-bottom: 10px;
}

a {
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
}

a:hover {
  color: var(--main-color);
}

a i {
  padding: 0 2px;
}

.btn {
  height: 60px;
  line-height: 60px;
  padding: 0 35px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  border: 0;
  font-size: 16px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: 700;
  z-index: 0;
}

.btn:focus,
.btn:active {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn:after {
  content: '';
  background: var(--main-color-2);
  position: absolute;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  z-index: -1;
  height: 100%;
  left: -35%;
  top: 0;
  -webkit-transform: skew(30deg);
  transform: skew(30deg);
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  width: 0;
}

.btn:hover {
  color: #fff;
}

.btn:hover:after {
  height: 100%;
  width: 135%;
}

.btn-base {
  color: #fff;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f01111),
    color-stop(15%, #ff8d35),
    color-stop(30%, #ff8d35),
    color-stop(55%, #f01111),
    to(#f01111)
  );
  background: linear-gradient(
    to right,
    #f01111 0%,
    #ff8d35 15%,
    #ff8d35 30%,
    #f01111 55%,
    #f01111 100%
  );
  background-position: 50% 0;
  background-size: 200%;
}

.btn-base:active,
.btn-base:focus,
.btn-base:hover {
  color: #fff;
  background-position: 0;
}

.btn-base::after {
  display: none;
}

.banner-area {
  width: 960px;
  margin: 0 auto;
  padding: 40px 0;
}


.banner-inner {
  position: relative;
}

.banner-inner .title {
  color: #fff;
}

.banner-inner p {
  margin-top: 25px;
  color: #fff;
}

.banner-inner .btn-wrap {
  margin-top: 50px;
}

.banner-inner .b-animate-2 {
  -webkit-animation: 1.5s 0.4s fadeInLeft both;
  animation: 1.5s 0.4s fadeInLeft both;
}

.banner-inner .b-animate-4 {
  -webkit-animation: 1.5s 0.8s fadeInLeft both;
  animation: 1.5s 0.8s fadeInLeft both;
}

@media all and (max-width: 1199px) {
  .banner-inner .title {
    color: #fff;
    font-size: 50px;
  }
}

@media all and (max-width: 991px) {
  .banner-inner {
    position: relative;
    padding: 160px 0 170px 0;
  }

  .banner-area {
    width: 100%;
  }
  
}

@media all and (max-width: 767px) {
  .banner-inner .title {
    color: #fff;
    font-size: 35px;
  }
}

@media all and (max-width: 375px) {
  .banner-inner .title {
    font-size: 35px;
  }
}

@media all and (max-width: 360px) {
  .banner-inner .title {
    font-size: 35px;
  }
}

/*! CSS Used fontfaces */
