html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: var(--bs-dark);
  font: 400 1rem/1.6 "Gill Sans", sans-serif;
}

a {
  text-decoration: none;
  color: var(--bs-dark);
  outline: none;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  font-family: "Gill Sans", sans-serif;
  color: #1d1d1d;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  font-family: "Gill Sans", sans-serif;
  color: #1d1d1d;
  line-height: 1.2;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.3;
  font-family: "Gill Sans", sans-serif;
  color: #1d1d1d;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  font-family: "Gill Sans", sans-serif;
  color: #1d1d1d;
}

h5 {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
  font-family: "Gill Sans", sans-serif;
  color: #1d1d1d;
}

h6 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  font-family: "Gill Sans", sans-serif;
  color: #1d1d1d;
  margin-bottom: 5px;
}

p {
  font: 400 1.2rem/1.6 "Gill Sans", sans-serif;
  margin-bottom: 1.5625rem;
  color: var(--bs-dark);
}

.btn {
  font: 600 1rem/1.6 "Gill Sans", sans-serif;
  padding: 10px 35px;
  border-radius: 0px;
  min-width: 180px;
  text-transform: capitalize;
  color: #fff;
  background: url(../img/btn-bg.png) no-repeat center center;
  background-size: 100% 100%;
  border-radius: 12px;
}

.btn:hover {
  text-decoration: none;
}

.btn:focus {
  outline: none;
  box-shadow: none;
}

.btn-primary {
  background-color: #a71216;
  border-color: #a71216;
  color: #fff;
}

.btn-primary:active + .btn-primary, .btn-check:checked + .btn-primary, .btn-primary.active, .btn-primary:active, .show > .btn-primary.dropdown-toggle, .btn-primary:hover {
  background-color: #fff;
  border-color: #a71216;
  color: #a71216;
  text-decoration: none;
}

.btn-secondary {
  background-color: #1d1d1d;
  color: #fff;
  border-color: #1d1d1d;
}

.btn-secondary:active + .btn-secondary, .btn-check:checked + .btn-secondary, .btn-secondary.active, .btn-secondary:active, .show > .btn-secondary.dropdown-toggle, .btn-secondary:hover {
  background-color: #fff;
  border-color: #1d1d1d;
  color: #1d1d1d;
  text-decoration: none;
}

.image-radius {
  border-radius: 20px;
}

.wrapper {
  overflow: hidden;
}

.fullwidth {
  position: relative;
  margin-left: 50%;
  width: 100vw;
  max-width: 100vw;
  clear: both;
}

ul {
  margin: 0;
  padding: 0;
}

ul.list {
  padding: 0;
  margin: 0 0 25px;
  list-style: none;
}

ul.list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
  font-size: 16px;
}

ul.list li:before {
  content: "\f105";
  font-family: fontAwesome;
  position: absolute;
  left: 0;
  top: -5px;
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-padding-top {
  padding-top: 5rem;
}

.section-padding-bottom {
  padding-bottom: 5rem;
}

.primary-color {
  color: #a71216;
}

.card {
  margin: 0;
  padding: 0;
}
.card .card-header, .card .card-body {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.form-control {
  height: 48px;
  border: 0;
}

select.form-control {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}

/* Owl Carousel */
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  outline: none !important;
  margin: 0;
}

.owl-carousel .owl-nav button.owl-next {
  right: 0%;
  background: url(../img/next.png) center center no-repeat rgba(0, 0, 0, 0.5) !important;
}

.owl-carousel .owl-nav button.owl-prev {
  left: 0%;
  background: url(../img/prev.png) center center no-repeat rgba(0, 0, 0, 0.5) !important;
}

/*	------ HEADER PART ------  */
.header {
  background: transparent;
  padding: 20px 0 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.header .menu-bar-btn {
  background: none;
  border: 0;
  font-size: 30px;
}

.menu-logo img {
  filter: brightness(1) invert(1);
}

.main-nav-area ul {
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 25px;
  display: flex;
  flex-wrap: wrap;
}
.main-nav-area ul li {
  display: block;
  flex: 0 0 100%;
}

body.menu-open {
  overflow: hidden;
}

.navigation .logo {
  position: fixed;
  left: 32px;
  top: 42px;
  z-index: 10;
  opacity: 1;
  transition: opacity 0.3s;
}
.navigation .hamburger-menu {
  width: 40px;
  height: 40px;
  position: fixed;
  padding: 15px 8px;
  top: 32px;
  right: 32px;
  cursor: pointer;
  z-index: 999;
  opacity: 1;
}
.navigation .hamburger-menu:hover .hamburger::before {
  transform: translate(0, -2px);
}
.navigation .hamburger-menu:hover .hamburger::after {
  transform: translate(0, -1px);
}
.navigation .hamburger-menu .hamburger {
  border-bottom: 2px solid #ffffff;
  width: 24px;
  height: 10px;
  position: relative;
}
.navigation .hamburger-menu .hamburger::before, .navigation .hamburger-menu .hamburger::after {
  content: "";
  width: 24px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}
.navigation .hamburger-menu .hamburger::before {
  top: -10px;
}
.navigation .hamburger-menu .hamburger::after {
  top: -1px;
}
.menu-open .navigation .hamburger-menu .hamburger {
  border-bottom-color: transparent;
}
.menu-open .navigation .hamburger-menu .hamburger::before, .menu-open .navigation .hamburger-menu .hamburger::after {
  background: #fff;
}
.menu-open .navigation .hamburger-menu .hamburger::before {
  transform: rotate(45deg);
  top: -1px;
}
.menu-open .navigation .hamburger-menu .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}
.navigation .menu-container {
  width: 0%;
  height: 100%;
  position: fixed;
  display: block;
  top: 0;
  right: 0;
  z-index: 800;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.99, 0.04, 0.87, 1) 0.3s;
  background: #8f8278;
  opacity: 0;
}
.menu-open .navigation .menu-container {
  width: 100%;
  opacity: 1;
}
.navigation .menu-container .menu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  list-style: none;
  margin: 0;
}
@media (max-width: 667px) and (min-width: 320px) and (orientation: landscape) {
  .navigation .menu-container .menu {
    display: initial;
  }
  .navigation .menu-container .menu li {
    display: inline-block;
    margin: 0 16px;
  }
  .navigation .menu-container .menu li:nth-child(4) {
    margin: 0;
  }
}
.navigation .menu-container .menu li {
  padding: 0;
  flex: 1;
}
.menu-open .navigation .menu-container .menu li:nth-child(1) {
  opacity: 1;
  transition: 0.2s opacity 0.95s;
}
.menu-open .navigation .menu-container .menu li:nth-child(2) {
  opacity: 1;
  transition: 0.2s opacity 1.05s;
}
.menu-open .navigation .menu-container .menu li:nth-child(3) {
  opacity: 1;
  transition: 0.2s opacity 1.15s;
}
.menu-open .navigation .menu-container .menu li:nth-child(4) {
  opacity: 1;
  transition: 0.2s opacity 1.25s;
}
.menu-open .navigation .menu-container .menu li:nth-child(5) {
  opacity: 1;
  transition: 0.2s opacity 1.35s;
}
.menu-open .navigation .menu-container .menu li:nth-child(6) {
  opacity: 1;
  transition: 0.2s opacity 1.45s;
}
.navigation .menu-container .menu li:nth-child(1) {
  opacity: 0;
  transition: 0.2s opacity 0.05s;
}
.navigation .menu-container .menu li:nth-child(2) {
  opacity: 0;
  transition: 0.2s opacity 0.1s;
}
.navigation .menu-container .menu li:nth-child(3) {
  opacity: 0;
  transition: 0.2s opacity 0.15s;
}
.navigation .menu-container .menu li:nth-child(4) {
  opacity: 0;
  transition: 0.2s opacity 0.2s;
}
.navigation .menu-container .menu li:nth-child(5) {
  opacity: 0;
  transition: 0.2s opacity 0.25s;
}
.navigation .menu-container .menu li:nth-child(6) {
  opacity: 0;
  transition: 0.2s opacity 0.3s;
}
.navigation .menu-container .menu li:nth-child(4) p {
  margin: 16px 0;
}
@media (max-width: 667px) and (min-width: 320px) and (orientation: landscape) {
  .navigation .menu-container .menu li:nth-child(4) p {
    margin: 0;
  }
}
.navigation .menu-container .menu li.menu-line {
  width: 30px;
  height: 1px;
  background: #fff;
  margin: 32px auto 16px;
  padding: 0;
  flex: initial;
}
@media (max-width: 667px) and (min-width: 320px) and (orientation: landscape) {
  .navigation .menu-container .menu li.menu-line {
    display: none;
  }
}
@media (min-width: 667px) {
  .navigation .menu-container .menu li.menu-line {
    width: 1px;
    height: 87px;
  }
}
.navigation .menu-container .menu li a {
  display: block;
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s;
  padding: 16px 0;
  outline: 0;
}
.navigation .menu-container .menu li a:hover {
  color: #333;
}
@media (min-width: 1190px) {
  .navigation .menu-container .menu li a {
    font-size: 2rem;
  }
}
.navigation .menu-container .menu li p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0;
}
@media (min-width: 930px) {
  .navigation .menu-container .menu li p {
    font-size: 1.2rem;
  }
}
@media (min-width: 1190px) {
  .navigation .menu-container .menu li p {
    font-size: 1.5rem;
  }
}
.navigation .menu-container .menu-info {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 16px;
  line-height: 1.6em;
  left: 0;
  color: #fff;
  z-index: 1;
  padding: 0 16px;
  transform: translate(0, calc(100% + 16px));
  transition: 0.3s 1s;
}
.navigation .menu-container .menu-info p {
  font-size: 1rem;
  margin-bottom: 0;
}
@media (min-width: 930px) {
  .navigation .menu-container .menu-info p {
    font-size: 1.4rem;
  }
}
@media (min-width: 1190px) {
  .navigation .menu-container .menu-info p {
    font-size: 1.7rem;
  }
}
.menu-open .navigation .menu-container .menu-info {
  transform: translate(0, 0);
}

/*	------ HEADER PART END ------  */
/* ---  BANNER AREA-----*/
.home-banner {
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}
.home-banner .container {
  position: absolute;
  top: 52%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
}
.home-banner .banner-backgound {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: calc(100vh - 20px);
  border-radius: 22px;
  overflow: hidden;
}
.home-banner .banner-backgound img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.home-banner .background-content {
  text-align: center;
  max-width: 550px;
  margin: auto;
}
.home-banner .background-content img {
  width: 0;
  animation: zoom-in 5s normal;
  width: 100%;
  max-width: 550px;
  transform: translateY(-73%);
  opacity: 1;
}

/* ---  FIRST SECTION -----*/
.first-section {
  padding: 0 10px;
  width: 100%;
}
.first-section .container-fluid {
  background-color: #fff;
  border-radius: 20px;
  min-height: calc(100vh - 20px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.first-section .content-area {
  max-width: 550px;
  text-align: center;
  margin: auto;
}
.first-section .content-area #text {
  color: #000;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
}

/* ---  VIDEO SECTION -----*/
.video-section {
  padding-top: 10px;
  padding-bottom: 10px;
}
.video-section .container-fluid {
  height: calc(100vh - 20px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.video-section .container-fluid .image-area {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.video-section .container-fluid .image-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-section .container-fluid a {
  position: absolute;
}

/* ---  Projects SECTION -----*/
.project-section {
  padding: 10px 10px 30px;
}
.project-section .project-section-wrapper {
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #fff;
  border-radius: 20px;
  padding: 15px;
}
.project-section .container-fluid {
  padding: 0;
}
.project-section .heading-area {
  margin-bottom: 30px;
  text-align: center;
}
.project-section .heading-area h2 {
  color: #000;
  margin-bottom: 10px;
}
.project-section .heading-area h4 {
  color: #000;
  margin: 0;
}
.project-section .heading-area p {
  margin: 0;
  color: #6C6C6C;
  font-size: 18px;
}
.project-section .project-slider-area {
  position: relative;
  display: flex;
  align-items: end;
  border-radius: 16px;
  overflow: hidden;
}
.project-section .project-slider-area .image-area {
  width: 100%;
  height: 400px;
}
.project-section .project-slider-area .image-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.project-section .project-slider-area .content-area {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 450px;
  height: auto;
  padding: 30px;
  z-index: 3;
}
.project-section .project-slider-area .content-area .btn {
  height: 40px;
  display: inline-flex;
  align-items: center;
  min-width: auto;
  font-size: 14px;
  padding: 5px 20px;
  font-weight: 400;
  border-radius: 7px;
}
.project-section .project-slider-area .content-area h4 {
  color: #fff;
}
.project-section .project-slider-area .content-area p {
  color: #fff;
  margin-bottom: 15px;
}
.project-section .project-slider-area .content-area a {
  background-color: #111;
  border-color: #111;
}
.project-section .project-slider-area .content-area a:hover {
  background-color: #fff;
  color: #111;
}
.project-section .project-slider-area::before {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  transition: 0.4s;
}
.project-section .project-slider-area::after {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 0%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 100%);
  transition: 0.4s;
}
.project-section .project-slider-area:hover::after {
  height: 100%;
  transition: 0.4s;
}

/* ---  FIFTH SECTION -----*/
.fifth-section .image-area img {
  width: 100%;
}
.fifth-section .content-area {
  height: 100%;
  border-radius: 20px;
  background-color: #8F8278;
  padding: 60px 30px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
.fifth-section .content-area .head-area ul {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(235, 240, 230, 0.6352941176);
  border-bottom: 1px solid rgba(235, 240, 230, 0.6352941176);
  padding: 25px 0;
}
.fifth-section .content-area .head-area ul li {
  display: inline-block;
  color: #EBF0E6;
  line-height: 1;
  padding: 0 18px;
  position: relative;
  font-size: 14px;
}
.fifth-section .content-area .head-area ul li::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #EBF0E6;
  position: absolute;
  top: 0;
  right: 0;
}
.fifth-section .content-area .head-area ul li:nth-last-child(1)::after {
  display: none;
}
.fifth-section .content-area .middle-area {
  padding: 30px 0;
  padding-left: 10%;
  padding-right: 5%;
}
.fifth-section .content-area .middle-area h2 {
  color: #fff;
  margin-bottom: 40px;
}
.fifth-section .content-area .middle-area p {
  color: #fff;
  margin: 0;
}
.fifth-section .content-area .border-area {
  width: 100%;
}
.fifth-section .content-area .border-area .bdr {
  border-bottom: 1px solid rgba(235, 240, 230, 0.6352941176);
}

/* ---  ABOUT SECTION -----*/
.about-section {
  padding: 10px;
  width: 100%;
}
.about-section .container-fluid {
  background-color: #fff;
  border-radius: 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.about-section .content-area {
  text-align: center;
  max-width: 670px;
  margin: auto;
}
.about-section .content-area h2 {
  color: #000;
  margin-bottom: 26px;
}
.about-section .content-area h5 {
  color: #000;
  font-size: 1.8rem;
  margin-bottom: 0;
  font-weight: 400;
}

.about-content-section {
  padding: 4.5rem 0.85rem 6rem;
}
.about-content-section .content-area {
  max-width: 850px;
  margin: auto;
  text-align: center;
}
.about-content-section .content-area p {
  color: #6C6C6C;
  font-size: 18px;
}
.about-content-section .content-area p:nth-last-child(1) {
  margin: 0;
}

.articles-section {
  padding: 60px 0;
}
.articles-section .articles-area {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}
.articles-section .articles-area .image-area {
  width: 100%;
  height: 250px;
}
.articles-section .articles-area .image-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.articles-section .articles-area .content-area {
  background: #fff;
  padding: 30px;
  height: 100%;
}
.articles-section .articles-area .content-area h4 {
  font-size: 20px;
  font-weight: 600;
  color: #48533b;
}
.articles-section .articles-area .content-area p {
  margin: 0;
  font-size: 14px;
}

/* ----------------------------------  INNER PAGES --------------------------------------*/
.inner-banner {
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}
.inner-banner .inner-backgound {
  position: relative;
  width: 100%;
  height: calc(100vh - 20px);
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-banner .inner-backgound img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.inner-banner .inner-backgound .hover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 1;
  transition: 0.3s;
}
.inner-banner .inner-backgound .hover-area {
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0;
  position: absolute;
  z-index: 3;
  background-color: transparent;
  cursor: pointer;
}
.inner-banner .inner-backgound .hover-image.selected {
  opacity: 0;
  transition: 0.3s;
}

.about-inner .container-fluid {
  min-height: 100vh;
}
.about-inner .content-area {
  max-width: 810px;
}
.about-inner .content-area h2 {
  font-size: 3.8rem;
  margin-bottom: 10px;
}
.about-inner .content-area h4 {
  font-size: 1.2rem;
  color: #000;
  margin-bottom: 3rem;
}
.about-inner .content-area p {
  line-height: 2;
  color: #6C6C6C;
}

.inner-second-section {
  margin-top: 3rem;
}
.inner-second-section .image-area {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.inner-second-section .image-area img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.03);
}
.inner-second-section .content-area {
  padding: 10% 10%;
  background-color: #8F8278;
  border-radius: 0px;
  height: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.inner-second-section .content-area h2 {
  color: #EBF0E6;
  margin-bottom: 3rem;
}
.inner-second-section .content-area p {
  color: #EBF0E6;
}
.inner-second-section .row.type2 .content-area {
  background-color: #F5F2EA;
}
.inner-second-section .row.type2 h2, .inner-second-section .row.type2 p {
  color: #000;
}

.inner-project-section {
  margin-top: 2rem;
}
.inner-project-section .project-section-wrapper {
  padding: 4.5rem 15px;
}

/* --------------------  FOOTER AREA --------------------------------------*/
.contact-section {
  padding: 10px;
}
.contact-section .container-fluid {
  background-color: #fff;
  border-radius: 20px;
  padding: 0;
}
.contact-section .container-fluid .content-area-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
.contact-section .content-area {
  padding: 60px 8%;
}
.contact-section .content-area ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-section .content-area ul li {
  display: block;
  color: #5e5e5e;
}
.contact-section .content-area .head-area {
  padding-bottom: 35px;
  margin-bottom: 35px;
  border-bottom: 1px solid #6c6c6c;
}
.contact-section .content-area .head-area h5 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}
.contact-section .content-area .head-area p {
  margin: 0;
  color: #5e5e5e;
}
.contact-section .content-area .middle-area {
  padding-bottom: 35px;
  margin-bottom: 35px;
  border-bottom: 1px solid #6c6c6c;
}
.contact-section .content-area .bottom-area {
  display: flex;
  flex-wrap: wrap;
}
.contact-section .content-area .bottom-area .item {
  flex: 0 0 33.33%;
}
.contact-section .content-area .bottom-area .item h6 {
  font-size: 18px;
  font-weight: 600;
  color: #4d4d4d;
}
.contact-section .content-area .bottom-area .item li a {
  color: #5e5e5e;
}
.contact-section .content-area .bottom-area .item li a:hover {
  color: #181818;
}
.contact-section .image-area img {
  border-radius: 20px;
  width: 100%;
}

.video-modal .modal-content {
  background-color: #000;
}
.video-modal iframe {
  height: 100%;
  width: 100%;
}
.video-modal .btn-close {
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: #fff;
  padding: 10px;
}

@keyframes zoom-in {
  from {
    width: 0%;
    opacity: 0;
  }
  to {
    width: 100%;
    max-width: 550px;
    transform: translateY(-73%);
    opacity: 1;
  }
}
/* ============ RESPONSIVE CSS ============ */
@media all and (max-width: 767px) {
  .fifth-section .content-area {
    margin-top: 10px;
  }
  .fifth-section .content-area .head-area ul {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .about-section {
    margin-top: 15px;
  }
  .articles-area {
    margin-bottom: 15px;
  }
  .articles-section {
    padding: 20px 0;
  }
  .contact-section > .container-fluid > .row {
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 575px) {
  .home-banner .banner-backgound {
    height: calc(60vh - 20px);
  }
  .home-banner .background-content img {
    width: 80%;
  }
  @keyframes zoom-in {
    from {
      width: 0%;
      opacity: 0;
    }
    to {
      width: 80%;
      max-width: 550px;
      transform: translateY(-73%);
      opacity: 1;
    }
  }
  .fifth-section .content-area .middle-area {
    padding-left: 0%;
    padding-right: 0;
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */

.fifth-section .content-area {
    height: 100%;
     border-radius: 0px; 
    background-color: black;
    padding: 60px 30px;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}

.fifth-section .content-area .middle-area h2 {
    color: white;
    margin-bottom: 40px;
}

.fifth-section .content-area .middle-area p {
    color: white;
    margin: 0;
}

.header {
    background: transparent;
    padding: 0px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /*backdrop-filter: blur(10px);*/
    z-index: 1000;
}

.header .offcanvas.offcanvas-end {
    height: 100vh;    
}

.team-section .card {
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 25px;
}

.team-section .image-area img {
    width: 100%;
    height: auto;
}

.team-section .contact-person {
    padding: 20px;
}

.team-section .contact-person p {
    margin-bottom: 10px;
}

.custom-logo-link img {
    filter: invert(1);
    height: 80px;
}

.container-fluid {
    padding: 0;
}

.home-banner {
    padding-top: 0px;
}

.articles-section .articles-area {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/*.content-area h4 {*/
/*    color: #48533b !important;*/
/*}*/

/*.content-area p {*/
/*    color: #212529 !important;*/
/*}*/

.contact-section .content-area-wrapper {
    background-color: black !important;
}

/*.contact-section h1,h2,h3,h4,h5,p,li {*/
/*    color: white !important;*/
/*}*/

/* Import the Gill Sans font */
@font-face {
    font-family: 'Gill Sans';
    src: url('assets/fonts/GillSans.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    font-family: 'Gill Sans', sans-serif;
}

.content-box h2 {
    font-family: 'Gill Sans', sans-serif;
}

.content-box p {
    font-family: 'Gill Sans', sans-serif;
}

.contact-info p {
    font-family: 'Gill Sans', sans-serif;
}

.social-icons {
    display: flex;
    list-style: none;
}

.social-icons li {
    margin-right: 10px;
    padding: 10px 20px;
    background-color: black;
}

.social-icons li i {
    color: white;
}

.articles-area {
    border-radius: 0px !important;
    overflow: hidden;
    height: 100%;
}

.image-area img {
    border-radius: 0px !important;
    width: 100%;
}

.team-section .card {
    border-radius: 0px !important;
}

.wpforms-submit {
    background-color: #000000 !important;
    color: #ffffff !important;
    border: none;
    font-size: 1em !important;
    padding: 10px 15px !important;
}







@media (max-width: 768px) {
    .home-banner {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100% !important; 
        background-color: transparent;
    }
    
    .banner-background img {
        height: 250px !important;
        position: relative !important;
    }
    
    .banner-text h1 {
        font-size: 35px !important;
        margin-bottom: 10px;
        color: white;
    }
    
    .video-section .container-fluid {
        height: 100%; 
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    .inner-second-section .content-area h2 {
        font-size: 1.5rem;
        color: #EBF0E6;
        margin-bottom: 10px; 
    }
    
    .video-section iframe {
        height: 190px;
    }
    
    .inner-second-section .content-area {
        padding: 10% 5%;
        background-color: #8F8278;
        border-radius: 0px;
        height: 100%;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .first-section .container-fluid {
        min-height: 200px !important;
    }
    
    .first-section h4 {
        font-size: 1.2rem;
        color: black;
    }
    
    
    .contact-section .content-area .bottom-area .item {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    html, body {
        margin-bottom: 0px;
    }
    
    .custom-logo-link img {
        filter: invert(1);
        height: 60px;
    }
    
    .inner-banner .inner-backgound img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: contain;
        -o-object-position: center center;
        object-position: center center;
        /*margin-top: 30px;*/
    }
    
    .inner-banner .inner-backgound {
        height: 100%;
    }
    
    .about-section .container-fluid {
        background-color: #fff;
        border-radius: 20px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100%; 
    }
    
    .about-section .content-area h5 {
        font-size: 1rem;
    }
    
    /* h1 is usually the largest, typically 1.5x or 2x the size of h2 */
    h1 {
        font-size: 2.4rem; /* ~1.4 times h2 size */
    }
    
    /* Base font size for h2 in mobile view */
    h2 {
        font-size: 1.7rem;
    }
    
    /* h3 is usually smaller than h2, around 1.1x or 1.2x */
    h3 {
        font-size: 1.9rem; /* ~1.1 times h2 size */
    }
    
    /* h4 is typically smaller, around 1x or 0.9x the size of h2 */
    h4 {
        font-size: 1.6rem; /* ~0.9 times h2 size */
    }
    
    /* h5 is usually smaller than h4, around 0.8x */
    h5 {
        font-size: 1.4rem; /* ~0.8 times h2 size */
    }
    
    /* h6 is usually the smallest heading, around 0.7x */
    h6 {
        font-size: 1.2rem; /* ~0.7 times h2 size */
    }
    
    /* Paragraph (p) is typically smaller than h2, usually around 0.8x */
    p {
        font-size: 0.95rem; /* ~0.8 times h2 size */
    }

}