/* CSS Document */
/*FLEX CONTAINER TO PUSH FOOTER DOWN*/
.flex-container {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
main {
  flex-grow: 1;
}
header, main, footer {
  flex-shrink: 0;
}
.carousel-inner {
  overflow: visible;
}
body, html {
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: hidden;
  padding: 0px;
}
/*SWUP page transitions*/
.transition-fade {
  transition: 0.4s;
  opacity: 1;
}
html.is-animating .transition-fade {
  opacity: 0;
}
/*RESET*/
a {
  color: inherit;
}
a:hover {
  color: none;
  /*  opacity: 0.7;*/
  text-decoration: none;
}
ul {
  padding-inline-start: 0px;
}
/*COLORS*/
.bg-red {
  background-color: #8F023D;
}
.bg-gold {
  background-color: #A97F4F;
}
.bg-black {
  background-color: #3A3A3A;
}
.bg-offwhite {
  background-color: #F6F6F6;
}
.text-red {
  color: #8F023D;
}
.text-gold {
  color: #A97F4F;
}
.text-red:hover {
  opacity: 0.8;
}
.opacity-60 {
  opacity: 60%;
}
.small {
  font-size: 0.8rem !important;
  padding-bottom: 10px;
  margin: 0;
  display: block;
}
/*STYLES*/
.hero-font {
  font-family: 'Cardo', serif;
  font-weight: bold;
  line-height: 111.1%;
  /* or 80px */
  letter-spacing: 0.07em;
}
.main-heading {
  font-family: cardo, serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 123.1%;
}
.sub-heading {
  /* Sub Heading */
  font-family: Cardo, serif;
  font-style: normal;
  font-weight: normal;
  font-size: 26px;
  line-height: 112.6%;
  /* or 29px */
  color: #4F5665;
}
.paragraph {
  font-family: century-gothic, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 192.5%;
  letter-spacing: 0.025em;
}
.button-font {
  font-family: century-gothic, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
}
.label {
  font-family: century-gothic, sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
}
.copy {
  font-family: century-gothic, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 14px;
}
/* BUTTONS*/
.button-primary {
  background-color: #8F023D;
  min-width: 215px;
  color: white;
  text-align: center;
  padding: 16px 32px;
  border: 2px #8F023D solid;
  border-radius: 5px;
  font-family: century-gothic, Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
  font-style: normal;
  /*  font-weight: bold;*/
  font-size: 16px;
  line-height: 19px;
}
.button-header {
  background-color: #8F023D;
  min-width: 215px;
  color: white !important;
  text-align: center;
  padding: 8px 16px;
  border-radius: 5px;
  font-family: century-gothic, Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
  font-style: normal;
  font-size: 16px;
  line-height: 19px;
  transition: .3s ease-in-out;
}
@media (max-width: 776px) {
  .button-header {
    border-radius: 0px;
  }
}
.button-header:hover {
  color: white;
  opacity: .8;
}
.button-secondary {
  background-color: transparent;
  min-width: 215px;
  color: white;
  text-align: center;
  padding-top: 8px;
  padding-bottom: 8px;
  border: 2px white solid;
  border-radius: 5px;
  font-family: century-gothic, Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
}
/*NAVBAR*/
.navbar-item {
  margin: 0 1.6rem;
}
.navbar_logo {
  height: 50px;
  margin-bottom: 15px !important;
}
.nav-link {
  position: relative;
  color: black !important;
  font-weight: bold !important;
  transition: 0.5;
}
.nav-link::after {
  content: "" !important;
  bottom: -10px;
  left: 0;
  position: absolute !important;
  background: linear-gradient(90deg, rgba(196, 196, 196, 0) 0%, rgba(143, 2, 61, 0.51) 48.96%, rgba(196, 196, 196, 0) 100%);
  width: 0 !important;
  height: 0 !important;
  transition: 0.5s;
}
.nav-link:hover::after {
  width: 100% !important;
  height: 2px !important;
}
.nav-link:hover {}
.nav-item .active {
  color: #8F023D !important;
}
@media (max-width: 991px) {
  .navbar-item {
    margin: 0;
    color: white !important;
    width: 100%;
    padding: 15px 40px;
    padding-right: 40px;
    float: right;
    text-align: right;
  }
  .navbar_logo {
    margin-bottom: 15px !important;
  }
  .navbar-toggler {
    margin-bottom: 15px !important;
  }
  .navbar_logo {
    height: 35px;
  }
  .nav-link {
    padding-right: 25px !important;
  }
  .mobile-nav-red {
    background-color: #8F023D !important;
  }
  .mobile-nav-gold {
    background-color: #A97F4F !important;
  }
  .mobile-nav-black {
    background-color: #3A3A3A !important;
  }
  .nav-link::after {
    display: none;
  }
  .nav-link:hover::after {
    display: none;
  }
}
/*FOOTER*/
.footer {
  height: 220px;
  color: white;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.footer_logo {
  height: 75px;
}
.footer_items {
  padding-top: 1rem;
  margin: 0 auto;
}
.footer_item {
  margin: 0 40px;
}
.footer_div {
  width: 80%;
  height: 1px;
  background-color: white;
  margin: 1.5rem auto;
}
@media (max-width: 991px) {
  .footer {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .footer_logo {
    padding-top: 1rem;
    height: 75px;
  }
  .footer_items {
    padding-top: none;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    text-align: center;
  }
  .footer_item {
    margin: 0.6rem 0;
  }
}
/*HERO SECTION*/
.hero {
  background-color: transparent;
  position: relative;
  height: 100%;
  overflow-x: hidden;
}
.hero::after {
  position: absolute;
  content: "";
  top: 25px;
  left: 25px;
  height: 12px;
  background-color: #8F023D;
  animation: hero2 0.75s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: linear
}
.hero::before {
  position: absolute;
  content: "";
  bottom: 25px;
  left: 25px;
  width: 12px;
  background-color: #8F023D;
  animation: hero1 0.75s;
  animation-fill-mode: forwards;
  animation-timing-function: linear
}
.hero span::after {
  position: absolute;
  content: "";
  top: 25px;
  right: 25px;
  width: 12px;
  background-color: #8F023D;
  animation: hero3 0.75s;
  animation-delay: 1.55s;
  animation-fill-mode: forwards;
  animation-timing-function: linear
}
@keyframes hero1 {
  from {
    height: 0%;
  }
  to {
    height: calc(100% - 50px);
  }
}
@keyframes hero2 {
  from {
    width: 0%;
  }
  to {
    width: calc(100% - 50px);
  }
}
@keyframes hero3 {
  from {
    height: 0%;
  }
  to {
    height: calc(50%);
  }
}
@media (max-width: 1267px) {
  .hero_wrapper {
    display: none;
  }
}
.hero_header {
  font-size: 3.5rem;
}
.hero_right_img {
  margin-right: -25px;
  width: 800px;
}
.hero_left {
  margin-top: 80px;
  margin-right: auto;
}
.hero_left_body {
  margin-left: 75px;
}
.hero_button {
  margin-top: 20px;
}
.hero_left p {
  width: 80%;
}
.hero_mobile {
  display: none;
}
.hero_left_img {
  margin-left: -15px;
  margin-top: 100px;
  width: 500px;
  display: block;
}
.hero_acorn {
  position: absolute;
  top: 50px;
  right: 120px;
  height: 65%;
  width: 65%;
  z-index: 0;
}
@media (max-width: 991px) {
  .hero {
    padding: 25px;
    max-height: none;
    height: 100%;
    ;
    border-bottom: 8px #8F023D solid;
    text-align: center;
  }
  .hero-font {
    font-size: 36px !important;
  }
  .hero_acorn {
    display: none;
  }
  .hero_header {
    font-size: 48px;
  }
  .hero_mobile {
    display: block;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }
  .hero_right_img {
    display: none;
  }
  .hero_left {
    margin-top: 0;
    margin-right: 0;
  }
  .hero_left_body {
    margin-left: 0;
  }
  .hero_button {
    margin: 10px 0;
    width: 100%;
    border: 2px white solid;
  }
  .hero_left p {
    width: 100%;
  }
  .hero_left_img {
    display: none;
  }
  .hero_wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-top: 8px #3A3A3A solid;
    border-left: 8px #3A3A3A solid;
    border-right: 8px #3A3A3A solid;
  }
  .hero::after {
    display: none;
  }
  .hero::before {
    display: none;
  }
  .hero span::after {
    display: none;
  }
}
/*SUB-HERO-TAG*/
.offwhite-container {
  position: relative;
  clip-path: polygon(0 11%, 100% 0%, 100% 100%, 0 100%);
  background-color: #F6F6F6;
  padding-top: 250px;
  margin-top: -255px;
  z-index: -1000;
}
.tag {
  margin: 50px auto 0 auto;
  width: 45%;
}
@media (max-width: 991px) {
  .tag {
    width: 100%;
    margin: 0px auto -100px auto;
  }
  .offwhite-container {
    position: relative;
    clip-path: none;
    background-color: #F6F6F6;
    padding-top: 50px;
    margin-top: 0px;
    padding-bottom: 0px;
    transform: none;
    z-index: -1000;
  }
}
/*TESTIMONIAL CARDS*/
.carousel-indicators .active {
  background-color: black;
}
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}
.testimonial_cards {
  width: 1198px;
  height: 100%;
  margin: 0 auto;
  padding-bottom: 50px;
}
.testimonial_cards_mobile {
  display: none;
}
.card_one_row {
  background-color: red;
}
.card_one {
  position: relative;
  max-width: 316px;
  background-color: white;
  border-radius: 16px;
  margin: 0 25px;
}
.card_one_quote_vector {
  position: absolute;
  top: -25px;
  left: -25px;
  height: 60px;
  width: 69px;
}
.card_one_decoration_vector {
  position: absolute;
  bottom: 0;
  right: 0;
}
.card_one_testimonial {
  min-height: 400px;
}
.card_one_signature {
  margin-top: 50px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .testimonial_cards {
    height: 600px;
    display: none;
  }
  .testimonial_cards_mobile {
    display: block;
    min-height: 800px;
  }
  .card_one {
    padding: 50px 0;
    margin: 50px auto;
  }
}
/*TESTIMONIAL CARDS HORIZONTAL*/
.testimonial_cards_horizontal {
  width: 100%;
  background-color: white;
  margin-bottom: 50px;
}
.testimonial_card_horizontal:after {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(100% 0, 0 0, 52% 42%);
  cursor: default;
  content: "";
  height: 50px;
  width: 50px;
  z-index: 500;
  background-color: white;
  box-shadow: 0px 10px 20px rgba(41, 41, 42, 0.15);
}
.testimonial_card_horizontal {
  margin-top: -75px;
  position: relative;
  min-height: 310px;
  padding: 25px;
  height: 100%;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0px 10px 20px rgba(41, 41, 42, 0.15);
}
.testimonial_profile {
  height: 35px;
  width: 35px;
}
@media (max-width: 991px) {
  .testimonial_card_horizontal {
    display: none;
  }
}
/*FEATURES PANELS*/
.features {
  margin: 100px 0;
}
.features .row {
  height: 100%;
}
.features img {
  width: 100%;
  max-width: 100px;
}
.features_item p {
  width: 55%;
}
.features_header {
  width: 55%;
}
.features_left {
  clip-path: polygon(0 0, 100% 0%, 87% 100%, 0% 100%);
  height: 100%;
}
.features_right {
  clip-path: polygon(13% 0, 100% 0%, 100% 100%, 0 100%);
  height: 100%;
}
@media (max-width: 1024px) {
  .features_left {
    clip-path: none;
  }
  .features_right {
    clip-path: none;
  }
}
@media (max-width: 991px) {
  .features {
    margin: 50px 0;
  }
  .features img {
    width: 100%;
    max-width: 50px;
  }
  .features_item p {
    width: 100%;
  }
  .features_left {
    clip-path: none;
  }
  .features_right {
    clip-path: none;
  }
  .features_header {
    width: 100%;
  }
}
/*FEATURES LIST*/
.features_list_left img {
  height: 579px;
}
.features_list_right h5 {
  width: 80%;
}
@media (max-width: 991px) {
  .features_list_left img {
    width: 100%;
    height: 100%;
  }
  .features_list_right h5 {
    width: 100%;
  }
  .features_list_left_img {
    max-width: 400px;
  }
}
/* CTA BANNER*/
.cta_banner {
  background-image: url("assets/banner_cta-min.png");
  height: 278px;
  width: 100%;
  margin: 50px auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  color: white;
  padding: 25px;
  border-radius: 16px;
}
.cta_banner h5 {
  width: 20%;
}
.cta_banner_body {
  width: 40%;
}
.cta_banner button {
  width: 75%;
}
@media (max-width: 991px) {
  .cta_banner {
    height: auto;
    width: 100%;
    border-radius: 0px;
  }
  .cta_banner h5 {
    width: 100%;
    margin-bottom: 25px;
  }
  .cta_banner button {
    width: 100%;
  }
  .cta_banner_body {
    width: 100%;
  }
  .cta_banner_body {
    width: 100%;
  }
}
/*AWARDS*/
.awards {
  margin: 100px 0;
}
.awards_divider::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 174.17px;
  right: 20px;
  transform: translateY(-50%);
  background: linear-gradient(180deg, rgba(196, 196, 196, 0) 0%, #999999 50.1%, rgba(255, 255, 255, 0) 102.38%);
}
/*TESTIMONIALS HERO*/
.testimonials_hero {
  position: relative;
  margin-bottom: 100px;
}
.testimonials_hero img:not(:last-child) {
  max-width: 500px;
  width: 100%;
}
.testimonials_hero::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 25px;
  height: 12px;
  width: 25%;
  background-color: #8F023D;
  animation: testimonialWidth1 0.7s ease-in-out;
}
.testimonials_hero::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 25px;
  height: calc(100% - 50px);
  width: 12px;
  background-color: #8F023D;
  animation: testimonialHight 0.7s;
}
.testimonials_hero span::after {
  content: "";
  position: absolute;
  bottom: 25px;
  left: 25px;
  height: 12px;
  width: 0%;
  background-color: #8F023D;
  animation: testimonialWidth2 0.5s ease-in-out;
  animation-delay: 0.57s;
  animation-fill-mode: forwards;
}
@media (max-width: 991px) {
  .testimonials_hero {
    margin-bottom: 50px;
  }
  .testimonial_hero_img {
    width: 80%;
    margin: 0 auto;
  }
  .testimonials_hero::after {
    display: none;
  }
  .testimonials_hero::before {
    display: none;
  }
  .testimonials_hero span::after {
    display: none;
  }
}
@keyframes testimonialWidth1 {
  from {
    width: 0%
  }
  to {
    width: 25%
  }
}
@keyframes testimonialWidth2 {
  from {
    width: 0%
  }
  to {
    width: 50%
  }
}
@keyframes testimonialHight {
  from {
    height: 0%
  }
  to {
    height: calc(100% - 50px)
  }
}
/*TESTIMONIALS SECTION*/
/*SCROLLBAR STYLING*/
.testimonial-wrapper::-webkit-scrollbar {
  -webkit-appearance: none;
}
.testimonial-wrapper::-webkit-scrollbar:vertical {
  width: 11px;
}
.testimonial-wrapper::-webkit-scrollbar:horizontal {
  height: 11px;
}
.testimonial-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.testimonial-wrapper::-webkit-scrollbar-thumb {
  border-radius: 8px;
  border: 2px solid white; /* should match background, can't be transparent */
  background-color: rgba(0, 0, 0, .5);
}
.testimonias-window-item {
  width: 45%;
}
.testimonial-wrapper {
  overflow-y: scroll;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 100px auto;
  width: 1366px;
  height: 400px;
}
@media only screen and (max-width: 991px) {
  .testimonias-window-item {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
}
/*	TESTIMONIALS CTA*/
.testimonial_cta {
  background: linear-gradient(89.88deg, #A97F4F 37.34%, #C7BEAB 99.89%);
  width: 100%;
}
/*CONTACT FORM*/
.contact {
  margin-bottom: 100px;
}
.contact_right img {
  max-width: 691px;
}
form {
  width: 65%;
}
.contact-header {
  width: 45%;
}
.contact-paragraph {
  width: 60%;
}
.form-control {
  transition: all .3s ease-in-out;
}
.contact-image {
  width: 100% !important;
}
.contact_right picture::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 100%;
  height: 65%;
  background-color: #8F023D;
  z-index: -1;
}
#empty-field-label {
  margin-top: 1rem;
  transition: all .3s ease-in-out;
  border: #A97F4F 2px solid;
  min-width: 200px;
  color: #A97F4F;
  border-radius: 4px;
  font-size: 1rem;
  padding: 0.5rem 2rem;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 1024px) {
  .contact_right picture::after {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 100%;
    height: 75%;
    background-color: #8F023D;
    z-index: -1;
  }
}
@media (max-width: 991px) {
  .contact {
    margin-bottom: 50px;
  }
  .contact-image {
    width: 100% !important;
  }
  .contact_right::after {
    height: 300px;
    top: 55%;
  }
  form {
    width: 100%;
  }
  .contact-header {
    width: 100%;
  }
  .contact-paragraph {
    width: 100%;
  }
}
/*TERMS OF SERVICE*/
.terms-of-service {
  max-height: 80vh;
  overflow-y: scroll;
}