#cookiePopup {
  z-index: 9999;
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  padding: 20px;
  text-align: center;
}
#cookiePopup a {
  font-size: 1.2rem;
}
#cookiePopup button {
  background-color: rgb(46, 115, 32);
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  margin: 20px;
  transition: all 0.2s ease-in-out;
}
#cookiePopup button:hover {
  color: rgb(46, 115, 32);
  outline: 1px solid rgb(46, 115, 32);
  background-color: #ffffff;
  text-decoration: underline;
}

.os-header {
  z-index: 999;
  height: 100px;
  width: 100vw;
  background-color: rgb(255, 255, 255);
  border-bottom: 1px solid rgba(65, 65, 65, 0.15);
}

.os-header__logo {
  max-height: 80px;
  overflow: hidden;
}
.os-header__logo__img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  max-width: 200px;
  padding: 10px;
  padding-top: 0;
  padding-bottom: 5px;
  padding-left: 0;
}
@media (min-width: 768px) {
  .os-header__logo__img img {
    max-width: 300px;
  }
}
.os-header__logo h2 {
  max-width: 90%;
  font-size: clamp(0.7rem, 2vw, 1.2rem);
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .os-header__logo h2 {
    max-width: 100%;
  }
}

.os-navbar__btn {
  z-index: 10;
  padding: 14px;
  top: 32px;
  right: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  cursor: pointer;
}
.os-navbar__btn__bar {
  position: absolute;
  width: 25px;
  height: 3px;
  background-color: rgb(46, 115, 32);
  transition: all 0.4s ease-in-out;
}
.os-navbar__btn__bar:nth-child(1) {
  transform: translateY(-8px);
}
.os-navbar__btn__bar:nth-child(3) {
  transform: translateY(8px);
}

.os-navbar__btn.active .os-navbar__btn__bar:nth-child(1) {
  transform: rotate(45deg);
  background-color: rgb(255, 255, 255);
}
.os-navbar__btn.active .os-navbar__btn__bar:nth-child(2) {
  transform: translateX(-20px);
  background-color: rgb(255, 255, 255);
  opacity: 0;
}
.os-navbar__btn.active .os-navbar__btn__bar:nth-child(3) {
  transform: rotate(-45deg);
  background-color: rgb(255, 255, 255);
}

.os-header__links {
  position: fixed;
  background-color: rgba(65, 65, 65, 0.95);
  width: 100%;
  height: 0%;
  top: 0;
  left: 0;
  overflow: hidden;
  transition: height 0.2s ease-in-out;
}
.os-header__links.active {
  height: 100%;
}
.os-header__links ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.os-header__links ul li {
  list-style: none;
}
.os-header__links ul li:first-child {
  margin-top: 1.5rem;
}
.os-header__links ul li a {
  color: #fefefe;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  font-size: 1.5rem;
}
.os-header__links ul li a:hover {
  color: rgb(46, 115, 32);
}

.os-header__links.active {
  display: block;
}

@media (min-width: 768px) {
  .os-navbar__btn {
    display: none;
  }
  .os-header__logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem 0 1rem;
  }
  .os-header__logo__wrapper {
    width: 100%;
  }
  .os-header__links {
    position: static;
    background-color: unset;
    height: 100%;
  }
  .os-header__links ul {
    margin: 0;
    gap: 5px;
    font-size: 0.8rem;
    display: flex;
    flex-direction: row;
  }
  .os-header__links ul li {
    margin: 0;
  }
  .os-header__links ul li a {
    color: #000;
    font-size: clamp(13px, 1.5vw, 17px);
  }
  .os-header__links ul li:first-child {
    margin-top: 0rem;
  }
}
@media screen and (height < 550px) {
  .os-header__links ul {
    gap: 0;
    margin-top: 0;
  }
  .os-header__links ul li {
    margin-bottom: 1rem;
  }
  .os-header__links ul li a {
    font-size: 1rem;
  }
}
.fd-dropdown {
  position: relative;
  display: inline-block;
  font-size: 14px;
}

.fd-dropdown > a,
.fd-dropdown > button {
  font-size: 14px;
  background-color: white;
  border: 1px solid #ccc;
  padding: 6px 20px 6px 10px;
  border-radius: 4px;
  display: inline-block;
  color: black;
  text-decoration: none;
}

.fd-dropdown > a:before,
.fd-dropdown > button:before {
  position: absolute;
  right: 7px;
  top: 12px;
  content: " ";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid black;
}

.fd-dropdown input[type=checkbox] {
  position: absolute;
  display: block;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  margin: 0px;
  opacity: 0;
}

.fd-dropdown input[type=checkbox]:checked {
  position: fixed;
  z-index: 0;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
}

.fd-dropdown ul {
  width: 50px;
  position: absolute;
  border: 1px solid #ccc;
  border-radius: 3px;
  top: 30px;
  left: 0px;
  list-style: none;
  padding: 4px 0px;
  display: none;
  background-color: white;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.175);
}

.fd-dropdown input[type=checkbox]:checked + ul {
  display: block;
}

.fd-dropdown ul li {
  display: block;
  padding: 0px 7px;
  white-space: nowrap;
}

.fd-dropdown ul li:hover {
  background-color: #f5f5f5;
  cursor: pointer;
}

.fd-dropdown ul li a {
  text-decoration: none;
  display: block;
  color: black;
  font-size: 1rem;
  text-align: center;
}

.fd-dropdown button {
  width: 50px;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .fd-dropdown ul {
    position: fixed;
    left: unset;
    top: 48px;
    right: 21px;
  }
}
#slider-wrap {
  min-width: 90%;
}
@media (min-width: 576px) {
  #slider-wrap {
    max-width: 90%;
  }
}
@media (min-width: 768px) {
  #slider-wrap {
    max-width: 100%;
  }
}
#slider-wrap section {
  position: relative;
}

#slider {
  list-style: none;
  width: 100%;
  text-align: center;
  position: relative;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 25px 25px 0 0;
}
#slider li {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 0;
  transition: opacity 2s ease-in-out;
  opacity: 0;
  max-height: 600px;
  overflow: hidden;
}
#slider li.active {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  opacity: 1;
}
#slider li a img {
  height: 100%;
  width: 100%;
  border-radius: 25px 25px 0 0;
}
@media (min-width: 768px) {
  #slider li a img {
    border-radius: 25px 0 0 25px;
    aspect-ratio: 16/10;
    position: relative;
  }
}
@media screen and (min-width: 1800px) {
  #slider li a img {
    top: -3rem;
  }
}

#dot-navigation {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 1rem;
  text-align: center;
}
#dot-navigation li {
  width: 18px;
  height: 18px;
  margin: 10px;
  display: inline-block;
  border: none;
  background-color: #c9c5c5;
  transition: opacity 0.5s ease-in-out;
  cursor: pointer;
  border-radius: 6px;
}
#dot-navigation li.active {
  background-color: rgb(255, 255, 255);
  border: 2px solid rgb(46, 115, 32);
}

.slider-panel {
  background-color: rgb(46, 115, 32);
  padding: 1rem;
  display: block;
  border-radius: 0 0 25px 25px;
  text-align: center;
}
.slider-panel .slider-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.slider-panel .slider-text p {
  text-align: center;
  color: #ffffff;
  margin: 0;
  font-size: 1.3rem;
}
@media screen and (min-width: 485px) {
  .slider-panel .slider-text {
    display: inline-block;
    text-align: center;
  }
  .slider-panel .slider-text p {
    display: inline-block;
    font-size: clamp(1rem, 3vw, 3rem);
  }
}
@media (min-width: 768px) {
  .slider-panel .slider-text {
    display: flex;
  }
  .slider-panel .slider-text p {
    display: block;
  }
}

@media (min-width: 768px) {
  #dot-navigation {
    position: relative;
    top: 0;
    margin-bottom: 0rem;
    margin-left: 35%;
  }
  #slider-wrap section {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
  }
  #slider {
    width: 60%;
    border-radius: 0px 25px 25px 0px;
    box-shadow: 6px 6px 15px 0px rgba(0, 0, 0, 0.5);
    border-radius: 25px 0 0 25px;
  }
  .slider-panel {
    z-index: 5;
    position: absolute;
    top: 10rem;
    left: 0;
    width: 42%;
    background-color: rgb(46, 115, 32);
    padding: 1rem;
    border-radius: 0 50px 50px 0;
    box-shadow: 6px 6px 15px 0px rgba(0, 0, 0, 0.5);
    border-radius: 0px 25px 25px 0px;
  }
  .slider-panel .slider-text {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10%;
  }
}
@media (min-width: 992px) {
  .slider-panel {
    top: 11rem;
  }
}
@media (min-width: 1200px) {
  .slider-panel {
    left: 0;
    width: 42%;
    background-color: rgb(46, 115, 32);
    padding: 1rem;
    top: 12rem;
  }
  .slider-panel .slider-text {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 1400px) {
  .slider-panel {
    top: 13rem;
  }
  .slider-text {
    margin-left: 35%;
  }
}
@media (min-width: 1300px) {
  .container--slider {
    max-width: 1980px !important;
  }
}
@media (min-width: 2000px) {
  .slider-panel {
    border-radius: 25px;
  }
  .slider-panel li {
    border-radius: 25px;
  }
  .slider-panel li img {
    border-radius: 25px;
  }
  #slider {
    border-radius: 25px;
  }
}
p,
li,
a {
  font-size: clamp(0.8rem, 2vw, 1.3rem);
}

.active-page {
  color: #3e9b2b !important;
  border-bottom: 1px solid #3e9b2b !important;
}
@media (min-width: 768px) {
  .active-page {
    color: rgb(46, 115, 32) !important;
    border-bottom: 1px solid rgb(46, 115, 32) !important;
  }
}

.subpage-name {
  font-size: clamp(22px, 2.5vw, 72px);
  text-transform: uppercase;
  color: #000;
}
.subpage-name span {
  font-weight: bold;
}

.os-services__wrapper {
  background-color: #cccccc;
  border-radius: 30px;
  padding: 1.5rem;
}

.os-services__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.os-product__card {
  display: flex;
  flex: 1;
  aspect-ratio: 1/1;
  position: relative;
  max-height: 300px;
  max-width: 350px;
  box-shadow: 2px 2px 7px 1px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
  border-radius: 20px;
}
.os-product__card a,
.os-product__card a:visited {
  color: rgb(0, 0, 0) !important;
  text-decoration: none;
}
.os-product__card a::before,
.os-product__card a:visited::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}
.os-product__card:hover, .os-product__card:focus, .os-product__card:focus-visible {
  transition: all 0.3s ease-in-out;
  transform: scale(1.05);
}

.os-product__card__img {
  display: flex;
  justify-items: center;
  align-items: center;
  max-width: 250px;
  max-height: 230px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .os-product__card__img {
    max-width: 300px;
    max-height: 220px;
  }
}
.os-product__card__img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}

.os-product__card__desc > h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: bold;
}

.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: #ffffff;
  padding: 0.5rem 1rem;
  color: #000000 !important;
  min-height: 4rem;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
  border: 1px solid rgb(255, 0, 0);
  font-size: clamp(0.8rem, 2vw, 1rem);
  flex: 1;
}
.download-btn:hover {
  background-color: #ffffff;
  color: rgb(0, 0, 0) !important;
  text-decoration: underline;
}

.download-btn__youtube {
  position: relative;
}
.download-btn__youtube::before {
  content: "";
  height: 32px;
  width: 38px;
  background: url("../files/youtube.svg") no-repeat;
  margin-right: 5px;
}

.download-btn__pdf {
  position: relative;
}
.download-btn__pdf::before {
  content: "";
  height: 32px;
  width: 45px;
  background: url("../files/pdf.svg") no-repeat;
}
@media (min-width: 768px) {
  .download-btn__pdf::before {
    width: 65px;
  }
}
@media (min-width: 992px) {
  .download-btn__pdf::before {
    width: 45px;
  }
}

.os-about__img {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  max-height: 150px;
  overflow: hidden;
  margin: 0 auto 1rem auto;
  border-radius: 10px;
}
@media (min-width: 576px) {
  .os-about__img {
    margin: 0 1rem 1rem 1rem;
    max-width: 220px;
    max-height: 200px;
    float: right;
    aspect-ratio: 4/3;
  }
}
@media (min-width: 768px) {
  .os-about__img {
    max-height: 200px;
  }
}
@media (min-width: 992px) {
  .os-about__img {
    max-width: 350px;
    max-height: 300px;
  }
}
.os-about__img a > img {
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
}
@media (min-width: 992px) {
  .os-about__img a > img {
    border-radius: 20px;
  }
}

.os-contact__text {
  color: #fefefe !important;
  font-weight: 400;
}
.os-contact__text > a {
  color: #fefefe;
  font-weight: 400;
}
.os-contact__text > a:visited {
  color: #fefefe;
}

.os-item {
  border: 1px solid rgb(46, 115, 32);
  border-radius: 1rem;
  padding: 1rem;
}

.os-item__img {
  height: 30%;
}
@media (min-width: 768px) {
  .os-item__img {
    width: 70%;
    height: auto;
  }
}
@media (min-width: 992px) {
  .os-item__img {
    width: 30%;
  }
}

.os-item__desc {
  height: 70%;
}
@media (min-width: 768px) {
  .os-item__desc {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 992px) {
  .os-item__desc {
    width: 70%;
  }
}

.os-item__desc__body p {
  font-size: clamp(0.8rem, 2vw, 1.25rem);
}

.os-item__desc__heading h2 {
  font-size: clamp(20px, 2vw, 30px);
  font-weight: bold;
}

.os-item__desc__btns__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
  border-radius: 10px;
  border: 1px solid rgb(46, 115, 32);
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  flex: 1 0 47%;
  transition: all 0.3s ease-in-out;
  background-color: #fefefe;
  border: 1px solid rgb(255, 0, 0);
}
.os-item__desc__btns__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  padding: 0.5rem;
  width: 100%;
  height: 100%;
  color: rgb(0, 0, 0);
  font-size: 0.8rem;
}
@media (min-width: 992px) {
  .os-item__desc__btns__btn a {
    font-size: 1rem;
  }
}
.os-item__desc__btns__btn a,
.os-item__desc__btns__btn a:visited,
.os-item__desc__btns__btn a:focus {
  text-decoration: none;
}
.os-item__desc__btns__btn a:hover,
.os-item__desc__btns__btn a:visited:hover,
.os-item__desc__btns__btn a:focus:hover {
  text-decoration: underline;
  color: #000000;
}
.os-item__desc__btns__btn a a,
.os-item__desc__btns__btn a:visited a,
.os-item__desc__btns__btn a:focus a {
  padding: 1.2rem;
}
.os-item__desc__btns__btn:last-child {
  flex: 1 0 100%;
}
@media (min-width: 768px) {
  .os-item__desc__btns__btn:last-child {
    flex: 1 0 50%;
  }
}
@media (min-width: 992px) {
  .os-item__desc__btns__btn:last-child {
    flex: 1 0 30%;
  }
}
@media (min-width: 768px) {
  .os-item__desc__btns__btn {
    flex: 1 0 31%;
  }
}
.os-item__desc__btns__btn img {
  height: 1.8rem;
  width: 1.8rem;
}

.os-item__desc__btns__btn a {
  font-size: 0.8rem;
}
@media (min-width: 992px) {
  .os-item__desc__btns__btn a {
    font-size: 1rem;
  }
}

.os-item__desc__btns__btn a:hover {
  text-decoration: underline;
}

.os-item__desc__btns__btn:last-child {
  background-color: rgb(46, 115, 32);
  border: 1px solid rgb(46, 115, 32);
}
.os-item__desc__btns__btn:last-child:hover {
  border: 1px solid rgb(46, 115, 32);
  background-color: #ffffff;
}

.os-item__desc__btns__btn:last-child a {
  color: #fefefe;
}
.os-item__desc__btns__btn:last-child a:hover {
  color: rgb(46, 115, 32);
}

/* modal content styles */
.modal-content-wrapper {
  max-width: 1400px;
  display: flex;
  margin: auto;
  justify-content: space-between;
  align-items: center;
}

.modal-content-wrapper .image-modal-content {
  cursor: pointer;
  transition: 300ms ease-in-out;
}

@media (min-width: 992px) {
  .modal-content-wrapper .image-modal-content {
    flex: 0 0 45%;
  }
}
@media (min-width: 576px) {
  .modal-content-wrapper .image-modal-content {
    flex: 0 0 100%;
  }
}
.modal-content-wrapper .image-modal-content:hover {
  cursor: pointer;
}

.modal-content-wrapper .image-modal-content img {
  width: 100%;
  max-height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
}
@media (min-width: 992px) {
  .modal-content-wrapper .image-modal-content img {
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    border-radius: 10px;
    max-width: 280px;
  }
}

/* modal popup styles */
.image-modal-popup {
  z-index: 999;
  position: fixed;
  overflow: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  -webkit-animation: 500ms fadeIn;
          animation: 500ms fadeIn;
  display: none;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.image-modal-popup .description {
  text-align: center;
}

.image-modal-popup img {
  width: 80%;
  max-height: calc(100vh - 150px);
  margin-bottom: 10px;
  cursor: pointer;
}

.image-modal-popup .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 30% auto;
  position: relative;
}
@media (min-width: 768px) {
  .image-modal-popup .wrapper {
    margin: 5% auto;
  }
}

.image-modal-popup p {
  margin: 5px auto;
  font-size: 1.1rem;
}

.image-modal-popup a {
  margin-bottom: 5px;
  display: inline-block;
  color: #222;
  font-weight: 500;
  text-decoration: none;
  background: #fff;
  margin: 10px 10px;
  padding: 10px 15px;
  border-radius: 6px;
}

.os-form__heading {
  margin: 1rem 0;
}
.os-form__heading h2 > span {
  color: #000000;
  letter-spacing: 1px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .os-form__heading {
    margin: 2rem 0;
  }
}

.os-form__body {
  padding: 1rem;
}
.os-form__body form input,
.os-form__body form textarea {
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  border: none;
  outline: none;
}
.os-form__body form input:focus-within, .os-form__body form input:focus,
.os-form__body form textarea:focus-within,
.os-form__body form textarea:focus {
  background-color: rgb(167, 167, 167);
}
.os-form__body form textarea {
  width: 100%;
  min-height: 150px;
}

.os-form__body__input {
  margin-bottom: 1rem;
  width: 100%;
}
@media (min-width: 420px) {
  .os-form__body__input {
    width: 48%;
  }
}
@media (min-width: 576px) {
  .os-form__body__input {
    width: 48%;
  }
}
@media (min-width: 992px) {
  .os-form__body__input {
    width: 23%;
  }
}

.os-form-submit {
  width: 100%;
  display: flex;
  justify-content: center;
}
.os-form-submit > button {
  border: 1px solid rgb(46, 115, 32);
  background-color: rgb(46, 115, 32);
  border-radius: 10px;
  padding: 0.5rem;
  transition: all 0.3s ease-in-out;
  color: #fefefe;
  outline: none !important;
}
.os-form-submit > button:hover {
  background-color: #fefefe;
  color: rgb(46, 115, 32);
}

.os-legal-documents {
  color: #fefefe;
  padding: 0.2rem 1rem;
  background-color: #024b02;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.os-legal-documents__copyright {
  font-size: 0.8rem;
}
.os-legal-documents__copyright a {
  font-size: 1rem;
  text-decoration: none;
}
.os-legal-documents__copyright a:hover {
  text-decoration: underline;
}

.os-legal-documents__files a {
  font-size: 1rem;
  color: #fefefe;
  text-decoration: none;
}
.os-legal-documents__files a:hover {
  color: #000000;
  text-decoration: underline;
}

#contactform {
  padding-top: 100px;
}

.os-about__header h2 span {
  font-weight: bold;
}

.fd-mt--6 {
  margin-top: -6rem !important;
}

.os-contact__text {
  font-size: 1.2rem;
  color: #000000 !important;
}
.os-contact__text a {
  font-size: 1.2rem;
  color: #000000 !important;
}

html,
body {
  height: 100% !important;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
}

.bg-color-primary {
  background-color: rgb(46, 115, 32) !important;
}

.os-background__grey {
  background-color: #e0dddd !important;
}

.os-background__dark-grey {
  background-color: rgb(155, 155, 155) !important;
}

.os-section {
  margin: 1rem 0;
}

.os-section--100 {
  margin-top: 100px;
}/*# sourceMappingURL=main.css.map */