@import url("https://fonts.googleapis.com/css2?family=Open+Sans&family=Poppins:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");

* {
  padding: 0;
  margin: 0;
}

body {
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  background-position: top center;
  background-repeat: repeat;
  font-family: "Open Sans", sans-serif;
  background-image: url(../images/pattern.png);
  background-repeat: repeat;
}

/*=====Start Font Styles====*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0;
  line-height: 1.2em;
  color: #385723;
}
h1 {
  font-size: 40px;
  font-weight: 600;
}
h2 {
  font-size: 34px;
}
h3 {
  font-size: 30px;
}
h4 {
  font-size: 24px;
}
h5 {
  font-size: 20px;
}
h6 {
  font-size: 18px;
}
p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  padding: 0;
  margin: 0;
  line-height: 1.6em;
}

ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
ul li {
  display: inline-block;
}
a {
  color: #000000;
}
a:hover {
  color: #000000;
  text-decoration: none;
}
a:active {
  color: #000000;
}
a:focus {
  color: #000000 !important;
  text-decoration: none !important;
}
/*=====End Font Styles====*/

/*======START HEADER======*/
button.navbar-toggler {
  display: none;
}
header.main-header {
  position: relative;
  z-index: 9;
  padding: 15px 0 5px 0;
}
.logo_area img {
  max-width: 80px;
}
.desktop-header .nav_area ul.navbar-nav li a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  padding-left: 15px;
  padding-right: 15px;
}
.desktop-header .nav_area ul.navbar-nav li a:hover {
  color: #f9cc00;
}
.desktop-header .nav_area ul.navbar-nav li a.active {
  color: #00d158;
  font-size: 14px;
  font-weight: 300;
}
.desktop-header .nav_area ul li:hover ul {
  display: block;
}
.desktop-header .container {
  background-image: url(../images/header-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100px;
  min-height: 100px;
  max-width: 1400px;
}

.navbar-expand-lg .navbar-collapse .nav-item {
  position: relative;
}
.navbar-expand-lg .navbar-collapse .nav-item:after {
  content: "|";
  position: absolute;
  top: 9px;
  right: 0px;
  color: #ffffff;
}
.navbar-expand-lg .navbar-collapse .nav-item:last-child:after {
  content: none;
}
#navbarSupportedContent {
  justify-content: end;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.switch-language a {
  font-weight: 600;
}
/*======END HEADER======*/

/*======START BANNER======*/
section#banner {
  padding: 30px 0;
  color: #ffffff;
}
#banner .content-wraper {
  background-image: linear-gradient(
    to right,
    rgba(151, 71, 17, 1),
    rgba(238, 116, 33, 1)
  );
  border: 1px solid #974711;
  border-radius: 10px;
}
#banner h1 {
  color: #ffffff;
}
.banner-video {
  position: relative;
  cursor: pointer;
}
.banner-video span {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  transform: translateY(70%);
}
.banner-video span i {
  font-size: 120px;
}
.banner-video:hover span i {
  color: #ff0000;
}
video {
  width: 100%;
}
/*======END BANNER======*/

/*======START VIDEOS======*/
section#videos {
  padding: 30px 0;
  color: #385723;
}
.content-wraper {
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 1),
    rgba(174, 218, 154, 1)
  );
  border: 1px solid #507e32;
  border-radius: 10px;
}
.video-item {
  position: relative;
  cursor: pointer;
}
.video-item span {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  transform: translateY(70%);
}
.video-item span i {
  font-size: 60px;
  color: #ffffff;
}
.video-item:hover span i {
  color: #ff0000;
}

/* Add for 5-item video row centering and sizing */
section#videos .row.content-wraper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
}

section#videos .video-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 220px;
  margin: 0 auto 24px auto;
}

section#videos .col-xl-2,
section#videos .col-lg-2,
section#videos .col-md-4,
section#videos .col-sm-6,
section#videos .col-12 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* Remove padding to avoid double gutters */
  padding-left: 0;
  padding-right: 0;
}

/* Center the play icon absolutely over the image */
section#videos .video-item img {
  display: block;
  margin: 0 auto;
}

section#videos .video-item span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: auto;
  margin: 0;
  /* Ensures pointer events pass through except for the icon */
  pointer-events: none;
}

section#videos .video-item span i {
  pointer-events: auto;
}

/* Responsive: stack on small screens */
@media (max-width: 991px) {
  section#videos .row.content-wraper {
    flex-wrap: wrap;
    justify-content: center;
  }
  section#videos .col-xl-2,
  section#videos .col-lg-2,
  section#videos .col-md-4,
  section#videos .col-sm-6,
  section#videos .col-12 {
    max-width: 50%;
    flex: 0 0 50%;
  }
  section#videos .video-item {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  section#videos .col-xl-2,
  section#videos .col-lg-2,
  section#videos .col-md-4,
  section#videos .col-sm-6,
  section#videos .col-12 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
/*======END VIDEOS======*/

/*======START ABOUT======*/
section#about {
  padding: 30px 0;
  color: #385723;
}
.about-item a {
  cursor: pointer;
}
.about-item img {
  border-radius: 30px;
  border: 2px solid #fff;
}
.about-item a:hover img {
  border-color: #385723;
}
.about-item p {
  font-size: 20px;
}
.owl-theme .owl-item img {
  max-height: 400px;
  width: auto;
}
.owl-prev {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 40%;
  margin-left: -20px;
  display: block !important;
  border: 0px solid black;
}
.owl-next {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 40%;
  right: -10px;
  display: block !important;
  border: 0px solid black;
}
.owl-prev i,
.owl-next i {
  transform: scale(2);
  color: #ccc;
}
.owl-prev i:hover,
.owl-next i:hover {
  color: #ffffff;
}
.owl-prev:hover,
.owl-next:hover {
  background-color: #db100a;
}
.owl-theme .owl-nav [class*="owl-"] {
  background-color: #ff0000 !important;
  color: #ffffff !important;
}
.owl-theme .owl-nav [class*="owl-"]:hover i {
  color: #ffffff;
  text-decoration: none;
}
/*======END ABOUT======*/

/*======START ARTICLE======*/
section#article {
  padding: 30px 0;
  color: #385723;
}
.article-item a {
  cursor: pointer;
}
.article-item img {
  border-radius: 30px;
  border: 2px solid #fff;
}
.article-item a:hover img {
  border-color: #385723;
}
.article-item p {
  font-size: 20px;
}
/*======END ARTICLE======*/

/*======START CONTACT======*/
section#contact {
  padding: 30px 0;
  color: #ffffff;
}
#contact h2 {
  color: #ffffff;
}
.content-wraper-red {
  background-color: #b80000;
  border-radius: 10px;
}
.form-control:focus {
  box-shadow: none;
}
.btn-green {
  background-color: #548134;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 20px;
  border: none;
}
.btn-green:hover {
  background-color: #72ac49;
}
/*======END CONTACT======*/

/*======SCROLL TO TOP BUTTON START======*/
#btn-back-to-top {
  background-color: #b80000;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
}
#btn-back-to-top:hover {
  background-color: #d51d1d;
}
/*======SCROLL TO TOP BUTTON END======*/

/* CHANGE IN MODAL ROOT, REMOVING PADDING-RIGHT:15PX */
.modal {
  padding-right: 0px !important;
}

/*  */

/*============Start Responsive Styling============*/
@media (max-width: 990px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 20px;
  }
  h5 {
    font-size: 18px;
  }
  h6 {
    font-size: 16px;
  }
  p {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding: 0;
    margin: 0;
    line-height: 1.7em;
  }

  .navbar-collapse {
    position: absolute !important;
    width: 100%;
    left: 0;
  }
  .navbar {
    position: static;
  }
  .navbar-collapse {
    position: absolute;
    top: 120px;
    width: 80vw !important;
    right: 0px;
    left: auto !important;
    margin: 0 auto;
    padding: 10px;
    float: right;
    background-color: #7e0603;
  }
  .navbar-expand-lg .navbar-collapse .nav-item::after {
    content: none;
  }
  button.navbar-toggler {
    display: block;
  }
  .logo_area {
    width: 100%;
    text-align: left;
  }
  .desktop-header {
    display: block;
  }
  button.navbar-toggler {
    float: right;
    background-color: #ffffff;
  }
  .d_block {
    display: block !important;
    width: 100%;
    text-align: left;
  }
  ul.navbar-nav.d_block li {
    display: block;
  }

  .navbar > .container-fluid {
    justify-content: end;
  }
}

@media (max-width: 768px) {
}

@media (max-width: 576px) {
  .container {
    width: 90%;
  }
  header.main-header {
    padding: 15px 0 0 0;
  }
  .desktop-header .container {
    width: 100%;
  }
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 800px;
  }
}

@media (max-width: 480px) {
  .banner-video span {
    transform: translateY(65%);
  }
  .banner-video span i {
    font-size: 60px;
  }
}
/*============End Responsive Styling============*/
