@font-face {
  font-family: QuantumRise-semibold;
  src: url('../fonts/QuantumRise-Semibold.ttf');
}
@font-face {
  font-family: QuantumRise-regular;
  src: url('../fonts/QuantumRise-Regular.ttf');
}
@font-face {
  font-family: QuantumRise-medium;
  src: url('../fonts/QuantumRise-Medium.ttf');
}

/* Fixed smooth scroll bug */
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: auto;
  }
}

body {
  font-family: Georama, sans-serif;
}

/*
Google Recaptcha Hidden
 */

 .grecaptcha-badge {
  display: none!important;
}


/* Heading Styles */

h1 {
  font-size: 1.125rem;
}

h2 {
  font-size: 1.25rem;
}

h3 {
  font-size: 1.4rem;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 15px;
}

h6 {
  font-size: 10px;
}

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

@media (min-width:992px) {
  h2 {
    font-size: 1.5rem;
  }
}

@media (min-width:992px) {
  h3 {
    font-size: 1.25rem;
  }
}

@media (min-width:992px) {
  h4 {
    font-size: 22px;
  }
}

@media (min-width:992px) {
  h5 {
    font-size: 20px;
    font-weight: 600;
  }
}

@media (min-width:992px) {
  h6 {
    font-size: 26px;
  }
}

h1, h2, h3, h4, h5, h6 {
  text-transform: uppercase;
  /*color: #FFF;*/
  font-family: QuantumRise-semibold, sans-serif;
}

.text-transform-none {
  text-transform: unset;
}


h1.secondary, h2.secondary, h3.secondary, h4.secondary, h5.secondary, h6.secondary {
  color: #E51836;
}

.text-red{
  color: #E51836 !important;
}

/* @media (max-width:768px) {
  p {
    font-size: 14px;
  }
} */

p {
  /*color: #FFF;*/
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.25px;
}

/* p.secondary {
  color: #000;
  font-weight: 500;
} */

a {
  text-decoration: none;
  color: #21272A;
}

/* Default Background Color */

.red-bg {
  background-color: #E51836;
}

.fc-section-bottom-spacing{
  padding-bottom: 1rem;
}

.fc-last-section-bottom-spacing{
  padding-bottom: 3rem;
}

@media (min-width:768px) {
  .fc-section-bottom-spacing {
    padding-bottom: 2rem;
  }
}

.btn-red:hover, .btn-red:focus, .btn-red:active, .btn-red {
  background-color: #E51836 !important;
  color: #fff !important;
  border-radius: 0;
}

/* Animated Rounded Button */

.fc-def-btn {
  width: 200px;
}

.fc-def-btn > * {
  display: flex;
  align-items: center;
}

.fc-btn {
  position: relative;
  text-align: center;
  transition: 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition-property: width, padding, margin;
}

.fc-btn.background-main {
  background-color: transparent;
}

.fc-btn span {
  display: inline-block;
}

.fc-btn .fc-btn-icon {
  margin: 0 auto;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50px;
  z-index: 0;
}

@media (min-width:768px) {
  .fc-btn .fc-btn-icon {
    width: 40px;
    height: 40px;
    line-height: 45px;
  }
}

.fc-btn .fc-btn-icon .fa-angle-right {
  color: #fff;
  font-weight: 700;
  font-size: 12px;
}

@media (min-width:768px) {
  .fc-btn .fc-btn-icon .fa-angle-right {
    font-size: 22px;
  }
}

.fc-btn-icon::before {
  content: "";
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: inherit;
}

.fc-btn-icon.btn-icon-left:before {
  left: 0;
  transition: 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition-property: width, padding, margin;
}

.fc-btn .title-btn {
  position: relative;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 1px;
  z-index: 2;
  color: #fff;
  margin-left: 10px;
  font-weight: 600;
}

@media (min-width: 768px) {
  .fc-btn .title-btn {
    font-size: 16px;
  }
}

.fc-btn .btn-bg-before {
  background-color: #E51836;
}

.fc-btn .fc-btn-icon > * {
  position: relative;
  z-index: 1;
}

.fc-btn:hover.has-icon-left {
  padding-right: 20px;
}

.fc-btn:hover .fc-btn-icon:before {
  width: 100%;
  background-color: #E51836;
}

.fc-btn:hover.has-icon-left .fc-btn-icon i {
  margin-left: calc(15px / 2);
}

.fc-btn .title-btn {
  z-index: 2;
}

.fc-btn:hover .title-btn {
  color: #fff;
}

/* Rounded animation end */

/* [1] The container */

.img-hover-zoom {
  /* height: 100%; */
  overflow: hidden;
}

/* [2] Transition property for smooth transformation of images */

.img-hover-zoom img {
  transition: transform .5s ease;
}

/* [3] Finally, transforming the image when container gets hovered */

.img-hover-zoom:hover img {
  transform: scale(1.2);
}

.card .img-hover-zoom img {
  height: 100%;
}

/* Specifications Table */

.specs-table.table > :not(caption) > * > *, .inner-table.table > :not(caption) > * > * {
  padding: 1rem 1.5rem;
}

.table-bordered > :not(caption) > * > * {
  border: none;
}

.specs-table thead tr {
  border-top: 0;
}

.inner-table {
  margin-bottom: 0;
}

.inner-table tr td {
  border-bottom: 0;
}

.form-check-input:checked {
  background-color: #E51836;
  border-color: #E51836;
}

.form-check-input:focus {
  box-shadow: none;
}


.section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width:768px) {
  .section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.section-bottom {
  padding-bottom: 3rem;
}

.dark-grey-bg {
  background-color: #4D4D4D;
}

.concent-checkbox {
  border: 1px solid #000;
}

/* General card */
.general-card{
  margin: 15px 0;
    border-radius: 0;
    box-shadow: 0 5px 10px 0 #969696;
}

.general-card h5{
  font-family: Georama, sans-serif;
  text-transform: initial;
}

.general-card p{
  font-size: 1rem;
  margin-bottom: 2rem;
}