/*==================== fonts ======================= */

/*------------ google fonts --------- */

@import url("https://fonts.googleapis.com/css2?family=Fjalla+One&family=Merriweather+Sans:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700;800;900&family=Poppins:wght@800&family=Roboto:wght@300;400;500;700&display=swap");

/* global css  */

html {
  scroll-behavior: smooth;
}

body {
  background: #fedc56;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: #000000;
}

*,
*:focus {
  outline: none !important;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

ul {
  list-style: none;
  padding-left: 0;
}

a {
  text-decoration: none !important;
  color: #0069b2;
}

a:hover {
  color: #0069b2;
}

p {
  margin-bottom: 10px;
}

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

/*****************************/

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "Fjalla One", sans-serif;
  font-weight: 400;
  line-height: 1.3;
}

h1,
.h1 {
  font-size: 72px;
  line-height: 72px;
}

h2,
.h2 {
  font-size: 50px;
}

h3,
.h3 {
  font-size: 30px;
}

h4,
.h4 {
  font-size: 20px;
}

h5,
.h5 {
  font-size: 18px;
}

h6,
.h6 {
  font-size: 12px;
}

/******* Helpers ********************************************************************/

/* fonts----------------- */

.font-fjalla-one {
  font-family: "Fjalla One", sans-serif;
}

.font-merriwheather {
  font-family: "Merriweather Sans", sans-serif;
}
.font-montserrat {
  font-family: "Montserrat", sans-serif;
}

.font-poppins {
  font-family: "Poppins", sans-serif;
}
.font-roboto {
  font-family: "Roboto", sans-serif;
}

/* font sizes ================= */

.fs-9 {
  font-size: 9px !important;
}

.fs-11 {
  font-size: 11px !important;
}
.fs-12 {
  font-size: 12px !important;
}
.fs-13 {
  font-size: 13px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-34 {
  font-size: 34px !important;
}

/* text colors=== */

.text-muted {
  color: #666666 !important;
}

.text-dark {
  color: #000000 !important;
}
.text-success {
  color: #007639 !important;
}
.text-success-2 {
  color: #8fc640 !important;
}
.text-info {
  color: #31479e !important;
}
.text-light {
  color: #868686 !important;
}
.text-muted {
  color: #888888 !important;
}
.text-danger {
  color: #df0f0b !important;
}
/* backgrounds ==== */
.bg-gradient-1 {
  background: rgb(225, 225, 225);
  background: linear-gradient(
    0deg,
    rgba(225, 225, 225, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}
.bg-gradient-2 {
  background: rgb(142, 198, 63);
  background: linear-gradient(
    0deg,
    rgba(142, 198, 63, 1) 0%,
    rgba(111, 151, 86, 1) 50%,
    rgba(110, 179, 62, 1) 50%,
    rgba(128, 188, 62, 1) 64%,
    rgba(133, 191, 63, 1) 100%
  );
}

.bg-danger {
  background-color: #e00f0b !important;
}
.bg-brown {
  background-color: #5d2812;
}
.bg-success {
  background-color: #54cd03 !important;
}

.bg-success-2 {
  background-color: #007838;
}
.bg-success-3 {
  background-color: #54cd06 !important;
}

.bg-info {
  background-color: #21409c !important;
}
.bg-info-2 {
  background-color: #1f419c !important;
}
.bg-info-3 {
  background-color: #57d5bc !important;
}
.bg-dark {
  background-color: #3a3a3a !important;
}
.bg-warning {
  background-color: #fedc56 !important;
}
/*************Font Weight****************/

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-medium {
  font-weight: 500 !important;
}

.font-weight-semi {
  font-weight: 600 !important;
}

.font-weight-bolder {
  font-weight: 800 !important;
}
.font-weight-black {
  font-weight: 900 !important;
}
/* *************************/

.letter-spacing-1 {
  letter-spacing: 1px;
}

.letter-spacing-2 {
  letter-spacing: 2px;
}

.letter-spacing-3 {
  letter-spacing: 3px;
}

.letter-spacing-4 {
  letter-spacing: 4px;
}

.letter-spacing-5 {
  letter-spacing: 5px;
}

.letter-spacing-6 {
  letter-spacing: 6px;
}

.letter-spacing-7 {
  letter-spacing: 7px;
}

.py-30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.text-deleted {
  text-decoration: line-through;
}
/***************************/

.btn {
  font-family: "Fjalla One", sans-serif;
  moz-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  text-decoration: none !important;
  font-weight: 400;
  font-size: 20px;
  padding: 10px 30px;
  border: 0;
  text-transform: uppercase;
}

.btn:focus {
  outline: none;
  box-shadow: none;
}

.btn-success {
  background: rgb(142, 198, 63);
  background: linear-gradient(
    0deg,
    rgba(142, 198, 63, 1) 0%,
    rgba(111, 151, 86, 1) 50%,
    rgba(110, 179, 62, 1) 50%,
    rgba(128, 188, 62, 1) 64%,
    rgba(133, 191, 63, 1) 100%
  );
  color: #ffffff !important;
}

.btn-success:hover,
.btn-success:focus {
  background: rgb(142, 198, 63);
  background: linear-gradient(
    0deg,
    rgb(156, 219, 67) 0%,
    rgb(112, 158, 82) 50%,
    rgb(130, 219, 66) 50%,
    rgb(150, 224, 70) 64%,
    rgb(158, 231, 69) 100%
  );
}

.container {
  max-width: 1230px;
  padding: 6px 30px;
}

/*****************************/

.text-shadow {
  text-shadow: 0 5px 5px rgba(0, 0, 0, 0.75);
}

/* ****************** *


/*******************************************************************/

.form-control,
input.form-control,
input.form-control:focus {
  height: calc(2.4em + 0.9rem);
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #c1c1c1;
  color: #000000;
  font-size: 13px;
  outline: none;
  font-weight: normal;
  box-shadow: none;
}

select.form-control {
  height: calc(2.4em + 0.9rem);
  border-color: #c1c1c1;
}

textarea.form-control {
  /* font-size: 14px; */
  resize: none;
}

textarea.form-control:not([rows]) {
  height: 110px;
}

/* placeholder color ======== */

.form-control::-webkit-input-placeholder,
::-webkit-input-placeholder {
  /* Edge */
  color: #7b7b7b;
}

.form-control:-ms-input-placeholder,
:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #7b7b7b;
}

.form-control::placeholder,
::placeholder {
  color: #7b7b7b;
}

.form-control::-moz-placeholder {
  color: #7b7b7b;
  opacity: 1;
}

/* placeholder color ======== */

.form-control.text-white::-webkit-input-placeholder {
  /* Edge */
  color: #ffffff;
}

.form-control.text-white:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #ffffff;
}

.form-control.text-white::placeholder {
  color: #ffffff;
}

.form-control.text-white::-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}

/********** Back To Top Button ***************************************************************************************************/

#scroll {
  background: #6eb33e;
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 99999;
  cursor: pointer;
  width: 45px;
  height: 45px;
  text-indent: -9999px;
  display: none;
  webkit-border-radius: 50px;
  border-radius: 50px;
}

#scroll span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -12px;
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-bottom-color: #ffffff;
}

#scroll:hover {
  background-color: #6fd625;
  opacity: 1;
}

/* ==================== media queries ============= */

/*********************************************************************/

@media (max-width: 991.98px) {
  .btn {
    font-size: 15px;
    padding: 10px 20px;
  }
 #Footer .btn {
	width: 100% !important;
  } 
  h1,
  .h1 {
    font-size: 50px;
  }
  h2,
  .h2 {
    font-size: 35px;
  }
  h5,
  .h5 {
    font-size: 16px;
  }
}

/* *************************************************** */

@media (max-width: 767.98px) {

  h1,
  .h1 {
    font-size: 40px;
  }
  h2,
  .h2 {
    font-size: 30px;
  }
  
}
