@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@100&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');

/* colors */
 /* green: #3AAA36 */
html, body {
  width:100%;
  overflow-x: hidden;
}

body {
  box-sizing: border-box;
  /* background-color: #FFFfFF; */
}

.collapsing {
  /* -webkit-transition: none;
  transition: none;
  display: none; */
}

.container-fluid {
 padding:0px 0px;
}

.container {
  max-width: 1360px;
}

.box-shadow{
  box-shadow: 3px 5px 16px -3px rgba(0,0,0,0.3);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo', sans-serif;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, .5);
  border-color: rgba(255, 255, 255, 0.5);
}

h1.slogan {
  font-size: 1.5rem;
  margin:5px 0;
}

.h-100 {
  height: 100%;
}

.btn-green {
  color: #FFFFFF;
  background-color: #036E4E;
  border: 2px solid #036E4E;
  border-radius: 0 !important;
}

.btn-green:hover {
  color: #036E4E;
  background-color: #FFFFFF;
  border: 2px solid #036E4E;
}

.navbar-brand {
  transition-duration: .6s;
  transition-property: opacity;
}

.v-center {
  display:flex;
  align-items: center;
}

.name-center {
  line-height: 75px;
  height: 75px;
  text-align: center;
  background-color: #FFFFFF;
}

.name-center h6 {
  text-transform: uppercase;
  line-height: 1.5;
  display: inline-block;
  vertical-align: middle;
}

/* text formatting */
.text-small {
  font-size: 12px;
}

.text-lg-large {
  font-size:1.125rem;
}

a.unset {
  color: unset;
}

a.unset:hover {
  text-decoration:none;
  cursor:pointer;
}

/* colors */
.white {
  color: #FFFFFF;
}

.gray {
  color: #888888;
}

.green {
  color: #3AAA36;
}

.dark-green {
  color: #036E4E;
}

.black {
  color: #030201;
}

.bg-white {
  background-color: #FFFFFF;
}

.green-border {
  border: 5px solid #036E4E;
}

.bg-bone {
  background-color: #F8F8F8;
}

.bg-green {
  background-color: #3AAA36;
}

.bg-dark-green {
  background-color: #036E4E;
  /* background: linear-gradient(to bottom, #3AAA36,  #036E4E ); */
}

.bg-green-triangle {
  width: 100vw;
  background-color: white;
  /* background-image: linear-gradient(10deg, rgba(58,170,54,0.75) 50%, transparent 50%), linear-gradient(-50deg, #036E4E 30%, transparent 30%); */
  background-image: linear-gradient(10deg, rgba(58,170,54,0.75) calc(50% - 1px), transparent 50%), linear-gradient(-50deg, #036E4E calc(30% - 1px), transparent 30%);
}

.bg-dark-green-triangle {
  width: 100vw;
  background-image: linear-gradient(-3deg, #036E4E calc(30% - 1px), transparent 30%);
}

.bg-black {
  background-color: #030201;
}

.green-underline {
  position: relative;
}

.green-underline::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgba(255,255,255,0) 75%, #036E4E 25%);
}


.white-underline {
  position: relative;
}

.white-underline::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgba(255,255,255,0) 75%, #FFFFFF 25%);
}

.bg-bone > h6 {
  min-height: 50px;
  display: block;
  width:100%;
  /* background-color:rgba(58,170,54,0.75);
  color: white; */
}

a.list-group-item {
  cursor:pointer;
}

.list-group-item.item-active {
  z-index: 2;
  color: #FFFFFF;
  background-color: rgba(58,170,54,0.75) !important;
  border-color: rgba(58,170,54,0.75) !important;
}

/* material icon class */
.material-icon {
  display: flex;
  align-items: center;
  border: padding: 10px;
}

.material-text-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  border-bottom-color: rgba
}

.material-symbols-outlined {
  font-size:36px;
  margin-right:10px;
  font-variation-settings:
  'FILL' 0,
  'wght' 200,
  'GRAD' 0,
  'opsz' 24
}

.material-symbols-rotated {
  transform:rotate(15deg);
}

/* list-products */

.list-products > a > li {
  font-size: 1.5rem;
  font-family: 'Archivo Black', sans-serif;
}

/* slider theming */
.carousel-item {

}

.carousel-caption {
  position: absolute;
  right: 50%;
  bottom: 25%;
  left: 0px;
  z-index: 10;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #FFFFFF;
  text-align: center;
  background-color:rgba(0,0,0,0.5);
  opacity: 0;
	transition-duration: 1s;
	transition-property: opacity;
}

.carousel-caption > h5 {
  font-size: 2rem;
}

.carousel-item.active > .carousel-caption {
  opacity:1;
}

/* slider fadeing */

.carousel-indicators li {
  background-color: #FFFFFF;
  opacity:1;
}
.carousel-indicators li.active {
  background-color: #036E4E;
}

.carousel-fade .carousel-item {
	opacity: 0;
	transition-duration: .6s;
	transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
	opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
	opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
	transform: translateX(0);
	transform: translate3d(0, 0, 0);
}

@media only screen and (max-width: 767.98px) {
  h1.slogan {
    font-size: 0.8rem;
    margin:5px 0;
  }
  .carousel-caption > h5 {
    font-size: 0.8rem;
  }
}

@media only screen and (max-width: 991.98px) and (min-width: 768px) {
  h1.slogan {
    font-size: 1.1rem;
    margin:5px 0;
  }
  .carousel-caption > h5 {
    font-size: 1.25rem;
  }
}

@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .carousel-caption > h5 {
    font-size: 1.5rem;
  }
}
