/*
 *
 * Mixin Component
 *
 */
/*
 *
 * Mixin Component
 *
 */
/*
 *
 * Extend Component
 *
 */
.dFlexStartCenter {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}

.dFlexCenterCenter {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.dFlexAroundCenter {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  align-items: center;
}

.dFlexBetweenCenter {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

.dFlexEndCenter {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: center;
  align-items: center;
}

.dFlexCenterStart {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.backgroundImage {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
}

/*
 *
 * Variables
 *
 */
.bg-grey-3 {
  background-color: #f7f7f7;
}

.textPrimary {
  color: #cb8e23;
}

.textSecondary {
  color: #1d4d4f;
}

.error {
  color: red;
}

/*
 *
 * Global
 *
 */
body {
  font-family: "Raleway", sans-serif;
}

a {
  color: #1d4d4f;
}
a:hover {
  text-decoration: none;
  color: inherit;
}

button:focus {
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  -o-box-shadow: none !important;
  box-shadow: none !important;
  outline: none;
}

.section-padding {
  padding: 100px 0;
}

.section-intro {
  margin-bottom: 50px;
}
.section-intro h1 {
  color: #1d4d4f;
}

.show-more {
  width: fit-content;
  display: block;
  margin-top: 50px;
  text-transform: uppercase;
  font-size: 16px;
}
.show-more:hover {
  color: #cb8e23;
}
.show-more:hover i {
  left: 15px;
}

.icon-position {
  position: relative;
  top: 1px;
  left: 3px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.note-danger {
  background-color: #feedef;
  padding: 20px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  color: #db0000;
  line-height: 30px;
  margin-top: 50px;
}

.text-secondary {
  color: #1d4d4f !important;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(222, 222, 222, 0.75);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #cb8e23;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #1d4d4f;
}

/*# sourceMappingURL=global.css.map */
