@import url('https://fonts.googleapis.com/css2?family=Belanosima:wght@400;600;700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');



@media (prefers-reduced-motion) {
  /* styles to apply if a user's device settings are set to reduced motion */
  .slideInRight {
    animation: 0s;
  }
  .zoomIn {
    animation: 0s;
  }
  .slideInLeft {
    animation: 0s;
  }
  .slideInBottom {
    animation: 0s;
  }
}

body {
  font: 16px 'Montserrat', sans-serif;
  color: #2c2a29;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  overflow-x: hidden;
  position: relative;
  background-color:#fff;
}

dl, ol, ul {margin:0!important;}
li {margin:10px 0; line-height: 1.25em;}

p {font-family: 'Montserrat', sans-serif; font-size: 18px; color: #2c2a29; line-height: 1.8em;}

a {color:#BA0C2F; text-decoration: none;}
a:hover {color:#2c2a29; text-decoration: none;}
a:focus {color:#007864!important; text-decoration: none; outline: #000000 auto 1px!important;}
a:focus-visible {color:#ffffff!important; text-decoration: none; outline: -webkit-focus-ring-color auto 5px;}

.section {scroll-margin-top: 250px!important;}

section {
  padding: 100px 0px;
}

.max-container {max-width:856px;}

/*ON SCROLL*/
:root {
  --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --animation-duration: 1s;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes zoomReverseIn {
  0% {
    opacity: 0;
    transform: scale(1.25);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInleft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInBottom {
  0% {
    opacity: 0;
    transform: translateY(35%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

[data-animation] {
  opacity: 0;
  animation-timing-function: var(--animation-timing-function);
  animation-fill-mode: both;
  animation-duration: var(--animation-duration);
  will-change: transform, opacity;
}

.animations-disabled {
  &,
  [data-animation] {
    animation: none !important;
    opacity: 1 !important;
  }
}

.zoomIn {animation-name: zoomIn;}
.zoomReverseIn {animation-name: zoomReverseIn;}
.slideInLeft {animation-name: slideInleft;}
.slideInRight {animation-name: slideInRight;}
.slideInBottom {animation-name: slideInBottom;}
/*END ON SCROLL*/

/*SKIP TO CONTENT*/
.skip-to-content-link {
    left: 0%;
    position: absolute;
    transform: translateY(-100%);
    background: #BA0C2F;
    height: 70px;
    padding: 8px;
    transition: transform 0.3s;
	scroll-padding-top:110px;
}
.skip-to-content-link:focus {
    transform: translateY(0%);
	width:100%;
	background-color:#fff;
	z-index:99999999999;
	line-height:50px;
	font-weight:bold;
	color:#2c2a29;
	border:none;
	text-align: center!important;
}
/*END SKIP TO CONTENT*/

.small {font-size: 90%!important;}
.smaller {font-size: 80%!important;}
.smallest {font-size: 70%!important;}
.large {font-size: 110%!important;}
.larger {font-size: 120%!important;}
.largest {font-size: 135%!important;}

.lh-sm {line-height: 1.5em!important;}
.lh-md {line-height: 1.6em!important;}
.lh-lg {line-height: 1.7em!important;}

.red {color:#BA0C2F;}
.green {color:#007864;}
.tan {color:#dfbd9b;}
.black {color:#2c2a29;}
.white {color:#fff;}

.bar-red {width:100px; border-top:10px solid #BA0C2F; border-radius: 20px;}
.bar-green {width:100px; border-top:10px solid #007864; border-radius: 20px;}
.bar-tan {width:100px; border-top:10px solid #dfbd9b; border-radius: 20px;}
.bar-white {width:100px; border-top:10px solid #fff; border-radius: 20px;}
.bar-black {width:100px; border-top:10px solid #2c2a29; border-radius: 20px;}

.bg-light-tan {
  background-color: #F9F2EB;
  color: #2c2a29;
}
.bg-red {
  background-color: #BA0C2F;
  p {
    color: #ffffff;
  }
}
.bg-green-no-img {
  background-color: #007864;
  p {
    color: #ffffff !important;
  }
}

.bg-white {
  background-color: #ffffff;
  color: #2c2a29;
  h2 {
    color:#007864;
  }
}
.bg-black {
  background-color: #2C2A29;
  p {
    color: #ffffff !important;
  }
}
.bg-tan {
  background-color: #DFBD9B;
  color: #2c2a29;
}

.divider {border-top: 1px solid #dfbd9b;}

.border-red {border: 2px solid #BA0C2F;}
.border-green {border: 2px solid #007864;}
.border-rounded {border-radius: 30px;}
.shadow {box-shadow: 0px 20px 20px -10px rgba(0,0,0,0.75)!important; -webkit-box-shadow: 0px 20px 20px -10px rgba(0,0,0,0.75); -moz-box-shadow: 0px 20px 20px -10px rgba(0,0,0,0.75);}
.shadow-lt {box-shadow: 0px 20px 20px -10px rgba(0,0,0,0.25)!important; -webkit-box-shadow: 0px 20px 20px -10px rgba(0,0,0,0.35); -moz-box-shadow: 0px 20px 20px -10px rgba(0,0,0,0.35);}

/* globals */
.p-100 {
  padding: 100px 0px;
}

.card {
  padding: 25px;
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 11px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 0px 11px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 0px 11px 1px rgba(0, 0, 0, 0.16);
  border: none;
  margin-bottom: 60px;
  margin-top: 100px;
  font-weight: 400;
    h2 {
      font-size: 40px;
      line-height: 44px;
      text-align: center;
    }
    .pizzas {
      margin: auto;
      max-width: 220px;
      height: auto;
      margin-bottom: 45px;
      margin-top: -150px;
    }
    @media (max-width: 768px) {
      min-height: auto;
    }
}

.selling-card {
  min-height: 400px;
  text-align: left;
}

.company-card {
  min-height: 325px !important;
  padding: 50px;
  margin-top: 35px;
  img {
    max-width: 90%;
    margin: auto;
  }
}

.pizza-card {
  min-height: 735px !important;
}

.mustache {
  background-image: url("graphics/mustache.svg");
  background-repeat: no-repeat;
  margin-top: -100px;
  margin-right: -50px;
  right: 70px;
  position: absolute;
  height: auto;
  @media (max-width: 768px) {
      display: none;
    }
}

.mustache-form {
    background-repeat: no-repeat;
    margin-top: 0px;
    margin-right: 0px;
    position: absolute;
    height: auto;
    top: -50px;
    left: 50%;
    transform: translate(-50%);
}

.hand {
  background-image: url("graphics/hand.svg");
  background-repeat: no-repeat;
  bottom: 584px;
  left: 10px;
  position: absolute;
  height: auto;
  width: 173px;
  @media (max-width: 1002px) {
      display: none;
    }
}

.hand-pizzas {
  display: block;
  @media (max-width: 1400px) {
      display: none;
    }
}

.logo {
  margin-top: 0px;
}

h1 {
	font-family: "Belanosima", sans-serif;
	font-size: 3.5em;
	font-weight: 700;
	color:#BA0C2F;
	letter-spacing: -.5px;
	text-transform: uppercase;
	margin-bottom: -10px;
}

h2 {
	font-family: "Belanosima", sans-serif;
	font-size: 2.55em;
	font-weight: 400;
	color:#BA0C2F;
	text-transform: uppercase;
}

h3 {
	font-family: "Belanosima", sans-serif;
	font-size: 2em;
	font-weight: 800;
	color:#007864;
	letter-spacing: -.5px;
}

h4 {
	font-family: "Belanosima", sans-serif;
	font-size: 1.35em;
	font-weight: 400;
	color:#BA0C2F;
	letter-spacing: -.25px;
}

/*BACK TO TOP*/
#button {
  display: inline-block;
  background-color: #BA0C2F;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 0;
  position: fixed;
  bottom: 30px;
  right: 0;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #007864;
}
#button:active {
  background-color: #BA0C2F;
}
#button.show {
  opacity: 1;
  visibility: visible;
}





#modalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Semi-transparent black */
  z-index: 1000;
  /* Ensure modal is above other content */
}

#modalContent {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Center the modal */
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  z-index: 1001;
  /* Ensure modal is above overlay */
}

#modalContent h2 {
  font-size: 20px;
}

#modalContent p{
  font-size: 16px;
  line-height: 20px;
}

.hidden {
  display: none;
}

#modalContent ul {
  padding-left: 0px
}





.contact-button::after {
  content: "\f0da";
  color: #007864;
  font-family: 'Font-Awesome';
  font-size: 20px;
}

.input {
  border: solid 3px #007864;
  font-size: 18px;
  border-radius: 40px!important;
  padding: 15px 40px;
}

.input:focus {
  border: solid 3px #007864;
  outline: solid 3px #000000;
  box-shadow: none;
  outline-offset: 3px;
}

.label {
  padding-left: 40px;
  font-size: 20px;
  font-family: 'Belanosima', sans-serif;
}

/*END BACK TO TOP*/

.header {
  background:#2c2a29;
  z-index: 999999;
  -webkit-box-shadow: 0px 1px 10px 2px rgba(0,0,0,0.15);
  box-shadow: 0px 1px 10px 2px rgba(0,0,0,0.15);
  clear: both;
  padding:0!important;
  margin:0!important;
	height: 210px!important;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background: #2c2a29;
  z-index: 10;
}

.sticky + .content {
  padding-top: 102px;
}

.offcanvas {background:#2c2a29; border-top: none!important; padding:0!important;}
.offcanvas-header {padding:0!important;}
.offcanvas-header img {height:85px!important; padding-top:25px; margin:0 0 0 20px!important;}
.offcanvas-header .btn-close {margin-top: 0.5rem; margin-right: 0.5rem; margin-bottom: 0.5rem;}

.navbar-light .navbar-nav .nav-link {
  font-family: 'Belanosima', sans-serif;
  font-size: 1em;
  font-weight: 500;
  color: #fff;
  padding: 15px 1rem!important;
  margin:15px 0 0 0;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-bottom:3px solid #2c2a29;
}
.navbar-light .navbar-nav .nav-link:hover {color:#fff!important; border-bottom:3px solid #ffffff;}
.navbar-light .navbar-nav .nav-link:focus {border:2px solid #ffffff; color:#fff!important;}
.navbar-light .navbar-nav .nav-link:focus-visible {border:2px solid #ffffff; color:#fff!important;}

.navbar-toggler {border-color:#000!important; background-color:transparent!important; border:0!important; color:(0,0,0,1.0)!important;}
.navbar-light .navbar-toggler {outline: none;}

.navbar-brand {height:100%; z-index: 10; position: relative; margin:75px 0 0 25px;}
.navbar-brand img {height:175px; 
  @media (max-width: 587px) {
    height: 130px !important;
  }
}
.navbar-brand.js-scrolling img {
	height: 150px;
	-webkit-transition: height 0.5s ease!important; 
	-moz-transition: height 0.5s ease!important; 
	-ms-transition: height 02.5s ease!important; 
	-o-transition: height 0.5s ease!important; 
	transition: height 0.5s ease!important;
}

.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link {color:#b4ab98!important;}

.btn-top {
	background-color:#BA0C2F;
	font-family: 'Belanosima', sans-serif;
	font-size: 1.2em;
	font-weight: 500;
	text-transform: uppercase;
	text-align: center;
	text-shadow: none!important;
	color:#fff!important;
	letter-spacing: .5px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border:4px solid #BA0C2F;
	border-radius: 30px;
}
.btn-top:hover {
	background:#2c2a29;
	color:#fff!important;
	cursor: pointer;
	border:4px solid #BA0C2F;
}

.btn-hidden {
  display: none;
  @media (max-width: 1399px) {
      display: block;
      line-height: 50px;
      margin-top: -70px;
      float: right;
      position: absolute;
      top: 8px;
      right: 50px;
    }
    @media (max-width: 587px) {
      font-size: 16px;
      width: 170px;
      line-height: 20px;
      padding: 5px;
    }
}

.form-card {
  margin-top: -300px;
  background-color: #ffffff;
  padding: 100px 20px 0px;
  -webkit-box-shadow: 0px 0px 11px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 0px 11px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 0px 11px 1px rgba(0, 0, 0, 0.16);
  position: relative;
  @media (max-width: 991px) {
      margin-top: 100px;
    }
}

.btn-black-alt, .btn-black-alt-green-text {
  background-color: #2c2a29;
  font-family: 'Belanosima', sans-serif;
  font-size: 1.2em;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  text-shadow: none !important;
  color: #fff !important;
  letter-spacing: .5px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 35px;
  display: inline-block;
  padding-left: 20px!important;
  padding-right: 20px!important;
  border: solid 4px #2c2a29 !important;
}

.btn-white-border:hover {
  border: solid 4px #ffffff!important;
}

.btn-black-alt:focus,
.btn-black-alt-green-text:focus {
  outline: solid 3px #000000 !important;
  outline-offset: 3px !important;
}

.btn-black-alt:hover, .btn-black-alt-green-text:hover {
  background-color: transparent;
  font-size: inherit;
  font-family: 'Belanosima', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  text-shadow: none !important;
  color: #fff !important;
  letter-spacing: .5px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 4px solid #BA0C2F;
  border-radius: 35px;
}

.btn-black-alt-green-text:hover {
  color: #007864!important;
}

.btn-top:focus {border:4px solid #BA0C2F;}
.btn-top:focus-visible {border:4px solid #BA0C2F; color: #000000!important}

.content {min-height:750px; font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 500; letter-spacing: -.5px;}
.content a {color:#BA0C2F; text-decoration:none; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;}
.content a:hover {color:#2c2a29; text-decoration:none;}
.btn-content, .contact-button {
	background-color:#2c2a29;
	font-family: 'Belanosima', sans-serif;
	font-size: 1.05em;
	font-weight: 500;
	text-transform: uppercase;
	text-align: center;
	text-shadow: none!important;
	color:#fff!important;
	letter-spacing: .5px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border:4px solid #2c2a29;
	border-radius: 35px;
  margin-bottom: 10px;
}
.btn-content:hover {
	background:#BA0C2F;
	color:#fff!important;
	cursor: pointer;
	border:10px solid #BA0C2F;
}
.btn-content:focus {outline: solid 3px #000000; outline-offset: 3px;}
.btn-content:focus-visible {border:2px solid #000; background-color: #ffffff; color: #000000;}

.content-index {min-height:350px; font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 500; letter-spacing: -.5px;}
.content-index a {color:#BA0C2F; text-decoration:none; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;}
.content-index a:hover {color:#2c2a29; text-decoration:none;}
.index-text {font-size: 22px; font-weight: 700; line-height: 1.8em;}

.questions-section {
  background-image: url("graphics/bg-hero.jpg");
  p {
    font-size: 40px;
    line-height: 44px;
    text-transform: uppercase;
  }
}

.callout-box {
  border-radius: 26px;
  padding: 50px;
  font-size: 30px;
  line-height: 36px;
  font-style: italic;
  font-weight: 700;
  color: #ffffff;
  background-color: #BA0C2F;
  position: relative;
  z-index: 2;
}

.callout-box.white:hover {
  color: #fff !Important;
}

.callout-box::after {
  content: '';
  position: absolute;
  top: -11px;
  left: -11px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  z-index: -1;
  border-radius: 26px;
}

.red-callout-box {
  color: #ffffff;
  background-color: #BA0C2F;
  font-size: 26px;
  a {
    text-decoration: underline;
  }
  a:focus {
    color: #ffffff!important;
  }
  h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
  }
  @media (max-width: 991px) {
      margin-top: 20px;
    }
}

.red-callout-box::after {
    border: 4px solid #BA0C2F;
}

.tan-callout-box {
  background-color: #DFBD9B;
  color: #2c2a29;
  @media (max-width: 991px) {
      margin-bottom: 20px;
    }
}

.tan-callout-box::after {
  border: 4px solid #DFBD9B;
}

.white-callout-box {
  background-color: #ffffff;
  color: #2c2a29;
  @media (max-width: 991px) {
    margin-top: 20px;
  }
}

.white-callout-box::after {
  border: 4px solid #ffffff;
}

.modal-backdrop {
  z-index: 0;
}

.modal-body a {
  text-decoration: underline;
}

.modal-body ul{
  padding-left: 0px;
}

.footer {font-family: 'Montserrat', sans-serif; font-size: 1.1em; font-weight:500; color:#2c2a29; letter-spacing: -.5px;}
.footer a {color: #2c2a29; font-weight: 800; text-decoration: none; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;}
.footer a:hover {color: #BA0C2F; text-decoration: none; border-bottom: 2px solid #BA0C2F;}
.footer ul {padding:0!important; margin:0; text-align:center;}
.footer ul li {list-style-type:none; display:inline;}
.footer ul li:before {content:'';}
.footer ul li:after {content:''; margin:0 0 0 50px;}
.footer ul li:last-child:after {content:''; margin-left: 0;}

.footer-socials {font-size: 2em; color:#BA0C2F;}
.footer-socials a:hover, .modal-body a:hover {text-decoration: underline!important;}
li.footer-socials {list-style-type: none !important;}
.footer-socials a {color: #BA0C2F; text-decoration: none; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;}
.footer-socials a:hover {color: #2c2a29; text-decoration: none!important; transition: .5; margin-top: -10px;}

.bg-anchor {background:#2c2a29; color:#fff; font-size: .75em; font-weight: 400; letter-spacing: -.25px;}
.bg-anchor a {color:#fff; text-decoration:underline; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;}
.bg-anchor a:hover, .bg-anchor a:focus {color: #C58749 !important; text-decoration:underline;}

.anchor-L a {color:#fff; text-decoration:underline; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;}
.anchor-L a:hover {color:#dfbd9b; text-decoration:underline; font-weight: bold;}
.anchor-L ul {padding:0; margin:0; text-align:left!important;}
.anchor-L ul li {list-style-type:none; display:inline;}
.anchor-L ul li:before {content:'';}
.anchor-L ul li:after {content:'|'; color:#007864; font-weight: 900; margin:0 10px;}
.anchor-L ul li:last-child:after {content:'';}

.anchor-R a {color:#fff; text-decoration:underline; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;}
.anchor-R a:hover {color:#dfbd9b; text-decoration:underline; font-weight: bold;}
.anchor-R ul {padding:0; margin:0; text-align:right!important;}
.anchor-R ul li {list-style-type:none; display:inline;}
.anchor-R ul li:before {content:'';}
.anchor-R ul li:after {content:'|'; color:#007864; font-weight: 900; margin:0 10px;}
.anchor-R ul li:last-child:after {content:'';}

.bg-hero {background-image: url("graphics/bg-hero.jpg"); text-shadow: 2px 2px 4px #000;}
.bg-hero-now{
  /* background-image: url("graphics/hero-now.png");   */
  text-shadow: 2px 2px 4px #000; 
  /* background-position: 56% 28%; */
  background-color: #cf2243;
  width: 100%;}
.labels {margin-left: 0;}
.bg-black {background:#2c2a29!important;}
.bg-red {background:#BA0C2F!important;}
.bg-green {background-image: url("graphics/bg-green.jpg"); background-size: cover;}

.intro-container-box {max-width: 70%; margin:0 15%!important;}
.intro-border {border:5px solid #BA0C2F; border-radius: 35px; z-index: 1; margin: 0 -50px 50px 0;}
.intro-container {background:#fff; border-radius: 35px; z-index: 2; margin: 0 -50px -50px 0;}
.intro-text {font-size: 18px; font-weight: 500; line-height: 1.8em;}

.comment-red {color:#BA0C2F; font-family: 'Belanosima', sans-serif; font-size: 2.5em; font-weight: 400; text-transform: uppercase;}
.comment-green {color:#007864; font-family: 'Belanosima', sans-serif; font-size: 3.25em; font-weight: 600; text-transform: uppercase;}

.highlight-red {background:#BA0C2F; font-family: 'Belanosima', sans-serif; font-size: 2em; font-weight: 600; text-transform: uppercase; color:#fff;}
.highlight-white {background:#fff; font-family: 'Belanosima', sans-serif; font-size: 2.5em; font-weight: 600; text-transform: uppercase; color:#2c2a29;}

.btn-selling {
	background-color:#2c2a29;
	font-family: 'Belanosima', sans-serif;
	font-size: 17px;
	font-weight: 500;
	text-transform: uppercase;
	text-align: center;
	text-shadow: none!important;
	color:#fff!important;
	letter-spacing: .5px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border:4px solid #2c2a29;
	border-radius: 35px;
}
.btn-selling:hover {
	background:#007864;
	color:#fff!important;
	cursor: pointer;
	border:10px solid #007864;
  font-size: 17px;
}
.btn-selling:focus {border:2px solid #000;}
.btn-selling:focus-visible {border:2px solid #000;}

@media (max-width: 1399px) {
.navbar-brand {margin:-20px 0 0 0;}
.navbar-brand img {height: 150px;}
.navbar-brand.js-scrolling img {height: 150px;}
.navbar-toggler {margin-top:-59px!important;}
.offcanvas-header img {height:150px!important; padding-top:25px; margin:0 0 0 20px!important;}
.offcanvas-header .btn-close {background-image: url(graphics/btn-close.png); opacity: 1;}
}

@media (max-width: 1199px) {
.navbar-light .navbar-nav .nav-link {margin:-10px 0!important;}
.btn-top {margin-top:15px!important;}
.footer ul li:after {content:''; margin:0 0 0 25px;}
.labels {margin-left: 30px;}
.intro-container-box {max-width: 80%; margin:0 12.5% 0 7.5%!important;}
}

@media (max-width: 991px) {
.footer ul li {display:block;}
.footer ul li:after {margin:0;}
.anchor-R ul {text-align:center!important;}
.anchor-L ul {text-align:center!important;}
.labels {margin-left: 0;}
.intro-border {margin:0 0 20px 0;}
}

@media (max-width: 768px) {
.intro-container-box {max-width: 95%; margin:0 2.5%;}	
}

@media (max-width: 575px) {
.anchor-R ul li {display:block;}
.anchor-R ul li:after {content:''; margin:0;}
.anchor-L ul li {display:block;}
.anchor-L ul li:after {content:''; margin:0;}
h1 {font-size: 3em;}
.intro-container-box {max-width: 100%; margin:0;}
.comment-green {font-size: 3em;}
}

@media (max-width: 480px) {
.comment-green {font-size: 2.75em;}
}

@media (max-width: 375px) {
.header {height: 90px!important;}
.navbar-brand img {height: 110px;}
.navbar-brand.js-scrolling img {height: 110px;}
.navbar-toggler {margin-top:-50px!important;}
h1 {font-size: 2.75em;}
.intro-border {border:none; margin-left: -25px;}
.comment-green {font-size: 2.25em;}
}