@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,700;1,500&display=swap');
@import "template/helpers.css?v=65782154513223151564516";
@import "template/footer.css?v=65782154513223151564516";
@import "template/header.css?v=65782154513223151564516";
@import "template/home.css?v=65782154513223151564516";

:root {
  --brightRed: #AB1927;
  --deepSkyBlue: #0B4152;
  --persimmon: #EC660B;
  --studio: #744A97;
  --deepSea: #177766;
  --fontColor1: #1D1D1B;
  --fontColor2: #575756;
  --fontColor3: #9D9D9C;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--fontColor1);
}

.text-EC660B {
  color: var(--persimmon);
}

.text-0B4152 {
  color: var(--deepSkyBlue);
}

.text-744A97 {
  color: var(--studio);
}

.text-177766 {
  color: var(--deepSea);
}

.whatsapp-api {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 20px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 15px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #25d366;
  z-index: 100;
}

.whatsapp-api:focus, .whatsapp-api:hover {
  text-decoration: none;
  color: #25d366;
  background-color: #fff;
}

.whatsapp-float {
  margin-top: 16px;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--brightRed);
  border-top-color: var(--brightRed);
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

.red-button {
  background: linear-gradient(to bottom, var(--brightRed) 5%, var(--brightRed) 100%);
  background-color: var(--brightRed);
  border-radius: 28px;
  border: 1px solid var(--brightRed);
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-size: 14px;
  padding: 10px 30px;
  text-decoration: none;
  text-shadow: 0px 1px 0px #2f6627;
}

.red-button:hover {
  background: linear-gradient(to bottom, var(--brightRed) 5%, var(--brightRed) 100%);
  background-color: var(--brightRed);
  color: #ffffff;
  text-decoration: none;
}

.red-button:active {
  position: relative;
  top: 1px;
}

.grey-button:active {
  position: relative;
  top: 1px;
}

.grey-button {
  background: linear-gradient(to bottom, var(--fontColor3) 5%, var(--fontColor3) 100%);
  background-color: var(--fontColor3);
  border-radius: 28px;
  border: 1px solid var(--fontColor3);
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-size: 14px;
  padding: 10px 30px;
  text-decoration: none;
  text-shadow: 0px 1px 0px #2f6627;
}

.grey-button:hover {
  background: linear-gradient(to bottom, var(--fontColor3) 5%, var(--fontColor3) 100%);
  background-color: var(--fontColor3);
  color: #ffffff;
  text-decoration: none;
}

.form-control:focus {
  border-color: var(--brightRed);
  -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(171 25 39 / 60%);
  box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(171 25 39 / 60%);
}

.header-spacing {
  margin-top: 150px;
}

.nav-init {
  position: initial;
}

.swal2-popup {
  font-size: 1.5rem !important;
}

@media only screen and (max-width: 600px) {}