@font-face {
  font-family: "poppins";
  src: url("../fonts/Poppins.ttf") format("truetype");
}

@font-face {
  font-family: "poppins-Bold";
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
  background: #ffffff;
}

a,
a:active,
i,
i:active,
div,
div:active,
div:focus,
span:focus,
span:active {
  outline: none !important;
}

dl,
ol,
ul,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0;
}

section:focus {
  outline: none !important;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-weight: normal;
  letter-spacing: 0px;
  color: #101010;
  text-transform: unset;
  font-style: normal;
  font-family: "poppins-Bold";
  clear: both;
}

h1 {
  font-size: 2em;
  line-height: 1.2;
}

h2 {
  font-size: 1.7em;
}

h3 {
  font-size: 1.5em;
}

h4 {
  font-size: 1.3em;
}

h5 {
  font-size: 1.2em;
}

h6 {
  font-size: 1.1em;
}

p {
  color: #747474;
}

a.text-primary:focus,
a.text-primary:hover {
  color: #FFA849 !important;
  opacity: .8;
}

.text-white {
  color: white !important;
}

.text-dark {
  color: rgba(0, 0, 0, 0.01);
}

.text-primary {
  color: #FFA849 !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

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

/* ====================================================
- - - - - - - - - 0/ Generale
=====================================================*/
button {
  outline: none !important;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
  line-height: 100%;
  white-space: nowrap;
  border: none;
}

button:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 0.8;
}

button:hover {
  opacity: 0.9;
  background: unset !important;
}

.btn {
  text-align: center;
  padding: 0.8rem 2rem;
  line-height: 1.5;
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  transition: 0.25s cubic-bezier(0, 0, 0.41, 1);
  position: relative;
  font-weight: 500;
  font-size: 1.1rem;
  font-family: "poppins-Bold";
  border-radius: 5px;
  color: #31456A;
}

.btn:hover {
  transform: scale(1.02);
}

.btn-round {
  border-radius: 50rem;
}

.btn-outline {
  border: solid 2px;
  background: transparent !important;
}

/* =====================================================
- - - - - - - - - 1/ Button sizes
======================================================*/
.btn-sm {
  padding: 0.3rem 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.btn-lg {
  padding: 0.7rem 2rem;
  font-size: 17px;
  line-height: 1.7;
}

/* ==================================================+===
- - - - - - - - - 2/ Button variations
=======================================================*/
.btn-primary {
  background: #FFA849;
  color: #fff;
  border: solid 2px #FFA849;
}

.btn-primary:hover {
  outline: none;
  background: #ffa33f !important;
  border: solid 2px #FFA849;
}

/* ====================================================
- - - - - - - - - 0/ section
=====================================================*/
.section {
  position: relative;
  z-index: 1;
}

.section .section-head {
  margin-bottom: 60px;
  width: 100%;
}

.section .section-title {
  font-size: 40px;
  max-width: 40rem;
  color: #54538B;
  text-align: left;
  text-transform: capitalize;
  position: relative;
  overflow: hidden;
}

.section .section-title ::before {
  content: "";
  position: absolute;
  top: -10px;
  height: 4px;
  left: 0;
  width: 40px;
  background: #FFA849;
}

.section .section-title ::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 4px;
  background-color: #282828;
  left: 42px;
  top: -10px;
}

.section .section-title.is-center {
  max-width: auto;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 60rem;
}

.section .section-title.is-center ::before {
  content: "";
  position: absolute;
  top: -10px;
  height: 4px;
  left: 50%;
  width: 40px;
  background: #FFA849;
}

.section .section-title.is-center ::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 4px;
  background-color: #282828;
  left: 50%;
  top: -10px;
}

.section.is-lg {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media screen and (max-width: 992px) {
  .section.is-lg {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.section.is-sm {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media screen and (max-width: 576px) {
  .section.is-sm {
    padding: 60px 0;
  }
}

.section.section-index-feautures {
  background-color: #f1eff5;
  position: relative;
}

.demo-title {
  margin-bottom: 2rem;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
  max-width: 40rem;
  color: #31456A;
}


.card {
  border-radius: 5px;
  box-shadow: 0 0 0 0 #f3f3f3;
}

.card .card-content {
  padding: 2rem;
}

.card.in-demo {
  background: #54538A;
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

.card.in-demo .card-title2 {
  color: #fff;
  padding-left: 20px;
  padding-bottom: 0;
  padding-top: 0;
}

.card.in-demo .card-subtitle {
  color: #aaa;
  padding-top: 10px;
  padding-left: 20px;
}

.card.in-demo figure {
  margin: 0;
}

.card.in-demo .feather {
  width: 50px;
  height: 50px;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  color: #fff;
}

.card.in-demo:hover {
  transform: translateY(-0.5rem);
}