@charset "UTF-8";
@import url(https://fonts.bunny.net/css?family=figtree:400,500,600,700,800|rajdhani:600,700|rubik:400,500,600);

:root {
  --tc-body-font-family: "Figtree", sans-serif;
  --tc-ag-font-family: "Rajdhani", sans-serif;
  --tc-rubik-font-family: "Rubik", sans-serif;
  --tc-body-font-size: 16px;
  --tc-body-line-height: 1.5;
  --tc-theme-primary: #eb1c24;
  --tc-theme-primary-dark: #c9161d;
  --tc-theme-secondary: #2f3293;
  --tc-theme-heading: #2f3293;
  --tc-theme-main: #ffffff;
  --tc-theme-bg-1: #fde8e9;
  --tc-theme-body: #2c2c2c;
  --tc-primary-400: #ee3f46;
  --tc-primary-500: #eb1c24;
  --tc-primary-700: #a61218;
  --tc-primary-home: #eb1c24;
  --tc-dark-950: #000407;
  --tc-neutral-0: #ffffff;
  --tc-border-1: #e8e8e8;
  --tc-graay-500: #a9a9a9;
  --tc-fw-regular: 400;
}

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

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--tc-body-font-family);
  font-size: var(--tc-body-font-size);
  font-weight: var(--tc-fw-regular);
  color: var(--tc-dark-950);
  line-height: var(--tc-body-line-height);
}

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

a {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

/* Preloader */
#preloader {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  background-color: #fff;
}

#preloader .loader .loader-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 3px solid #fdf2f9;
  border-radius: 50%;
}

#preloader .loader .loader-container::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-top: 3px solid var(--tc-theme-primary);
  border-radius: 50%;
  animation: loaderspin 1.8s infinite ease-in-out;
}

#preloader .loader .loader-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  text-align: center;
}

#preloader .loader .loader-icon img {
  animation: loaderpulse alternate 900ms infinite;
  width: 40px;
}

@keyframes loaderspin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes loaderpulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.2); }
}

/* Typography */
.display-ag-2xl {
  font-size: 68px;
  line-height: 115%;
  font-weight: 700;
  font-family: var(--tc-ag-font-family);
}

.sub-heading-fitree-sm {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  font-family: var(--tc-body-font-family);
}

.paragraph-rubik-r {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--tc-rubik-font-family);
}

.primary-500 {
  color: var(--tc-primary-500) !important;
}

.color-white {
  color: var(--tc-theme-main) !important;
}

.desc-banner {
  margin-bottom: 40px;
}

.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-40 { margin-bottom: 40px; }

/* Header */
.header-style-4 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1234;
}

.header-style-4 .navbar {
  background-color: transparent;
  flex-wrap: wrap;
}

.header-style-4 .navbar .header-navbar {
  background-color: var(--tc-theme-main);
  padding: 0;
}

.header-style-4 .navbar .container-topbar {
  display: inline-block;
  width: 100%;
}

.header-style-4 .header-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
}

.header-style-4 .btn-menu {
  margin-right: 0;
  height: auto;
  width: auto;
  border: 0;
  line-height: normal;
  text-align: center;
}

.navbar-stick .container-topbar {
  display: none !important;
}

/* Offcanvas */
.offCanvas__info {
  background: var(--tc-neutral-0);
  height: 100%;
  padding: 30px;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  width: 340px;
  z-index: 9999;
  overflow-y: auto;
  transform: translateX(100%);
}

.offCanvas__info.active {
  transform: translateX(0);
}

.offCanvas__close-icon {
  margin-top: -16px;
  text-align: right;
  position: relative;
}

.offCanvas__close-icon button {
  background: transparent;
  border: 0;
  color: var(--tc-theme-primary);
  cursor: pointer;
  font-size: 20px;
  padding: 0;
  position: absolute;
  top: 5px;
  right: 0;
}

.offCanvas__logo img {
  max-height: 34px;
}

.offCanvas__side-info {
  border-top: 1px solid var(--tc-theme-primary);
  padding-top: 25px;
}

.offCanvas__overly {
  position: fixed;
  background: #000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1235;
  opacity: 0;
  visibility: hidden;
  transition-duration: 0.3s;
}

.offCanvas__overly.active {
  opacity: 0.7;
  visibility: visible;
}

.navbar-nav-mobile {
  display: block !important;
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar-nav-mobile .nav-link {
  color: var(--tc-dark-950);
  padding: 0.65rem 0;
  display: block;
}

/* Buttons */
.btn-primary-square-2-md {
  background-color: var(--tc-theme-primary);
  color: #fff !important;
  font-size: 16px;
  line-height: 32px;
  font-weight: 700;
  border: 0;
  border-radius: 5px;
  padding: 11px 30px 10px;
  text-transform: uppercase;
  font-family: var(--tc-ag-font-family);
  cursor: pointer;
}

.btn-primary-square-2-md:hover {
  background-color: var(--tc-theme-primary-dark);
  color: #fff !important;
}

.btn-get-in-touch {
  padding: 26px 48px;
  background-color: var(--tc-primary-500);
  font-size: 18px;
  line-height: 28px;
  font-weight: bold;
  font-family: var(--tc-body-font-family);
  border-radius: 0 4px 4px 0;
  color: #fff !important;
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-control {
  padding: 10px 20px;
  border-radius: 5px;
  background-color: var(--tc-theme-main);
  height: 50px;
  border: 0;
  width: 100%;
}

.form-control:focus {
  box-shadow: none !important;
  outline: none;
}

.form-contact-us {
  padding-left: 0;
}

.form-contact-us .form-control {
  border: 0;
  border-bottom: 1px solid rgba(33, 33, 33, 0.5);
  border-radius: 0;
  padding: 16px;
}

/* Banner / section */
.box-faq-single-banner-inner {
  position: relative;
  padding: 202px 0;
}

.box-section {
  padding: 60px 0;
}

/* Scroll top */
.btn-scroll-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: inset 0 0 0 0.1rem rgba(227, 229, 233, 0.25);
  z-index: 1010;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.75rem);
  transition: all 0.2s linear;
  background-color: var(--tc-neutral-0);
}

.btn-scroll-top.active-progress {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 991.98px) {
  .display-ag-2xl {
    font-size: 48px;
  }
}

@media (max-width: 767.98px) {
  .display-ag-2xl {
    font-size: 32px;
  }

  .offCanvas__info {
    width: min(340px, 100vw);
    padding: 24px 20px;
  }
}

@media (max-width: 575.98px) {
  .offCanvas__info {
    width: 100%;
    max-width: 100vw;
  }
}
