@import url("https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");

:root {
  --primary-color: #ba9a50;
  --secondary-color: #fff ;
  --secondary-color-light: #e5ddc8;
  --body-color: #000;
  --light: #fff7e8;
  --facebook: #4267b2;
  --twitter: #00acee;
  --linkedin: #0e76a8;
  --youtube: #ff0000;
  --whatsapp: #25d366;
  --instagram: #c92bb7;
  --golden-gradient: radial-gradient(
      ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%
    ),
    radial-gradient(
      ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%
    );
  --golden-gradient-hover: radial-gradient(
      ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%
    ),
    radial-gradient(
      ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%
    );
}

html{scroll-behavior: smooth;}

body {
  color: var(--body-color);
  font: 400 1rem "Nunito", sans-serif;
  overflow-x: hidden;
  background: rgb(244, 241, 232);
}

svg:not([fill]) {
  fill: currentColor;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
}

a {
  color: var(--body-color);
  transition: all 300ms ease-in-out;
}

a.bg-primary:hover {
  background-color: var(--primary-color) !important;
}

img {
  width: 100%;
  display: block;
}

.object-cover {
  object-fit: cover;
}

.container-fluid {
  padding-left: 3rem;
  padding-right: 3rem;
}

.filter-white {
  -ms-filter: brightness(70);
  filter: brightness(70);
}

.filter-dark {
  -ms-filter: grayscale(1) brightness(0.5);
  filter: grayscale(1) brightness(0.5);
}

/*header*/
.header {
  width: 100%;
  top: 0;
  background: #fff;
  z-index: 997;
  transition: all 300ms ease-in-out;
}

.header.fixed {
  background-color: #fff;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
}
.header .container-lg {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 216px;
  /* height: 75px; */
  position: relative;
  padding: 5px 0;
  min-height: 1px;
  transition: all 300ms ease-in-out;
}
.logo img{
  /* background: #fff; */
  padding: 5px;
}

.menu-section {
}

.navi {
  display: flex;
  gap: 30px;
}

.navi ul {
  gap: 0 10px;
}

.navi li a {
  color: #000000;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 8px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  transition: all 300ms ease-in-out;
}

.navi li a.active,
.navi li:hover > a {
  color: #373734;
}

.header.fixed .navi li a {
  font-size: 12px;
}

.navi li a i {
  font-size: 11px;
  color: var(--primary-color);
}

.menuBtn {
  padding: 0;
  border: 0;
  border-radius: 0;
  background-color: #fff;
  width: 30px; 
  height: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all 300ms ease-in-out;
  position: relative;
  cursor: pointer;
  z-index: 99999;
  padding: 5px;
  right: 0;
}

.menuBtn span {
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  background-color: var(--body-color);
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menuBtn.closeMenuBtn span#menuLine1 {
  -webkit-transform: rotate(45deg) translate(4px, 4px);
  transform: rotate(45deg) translate(4px, 4px);
}

.menuBtn.closeMenuBtn span#menuLine2 {
  right: 100px;
}

.menuBtn.closeMenuBtn span#menuLine3 {
  -webkit-transform: rotate(-45deg) translate(4px, -4px);
  transform: rotate(-45deg) translate(4px, -4px);
}

.menuContainer{
  position: fixed;
  top: 30px;
  width: 300px;
  right: 0;
  bottom: 0;
  height: 100%;
  overflow: auto;
  background-color: #fff;
  padding: 80px 20px 20px;
  display: none;
  z-index: 995;
}
.menuContainer ul li a{
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--body-color);
  padding: 10px;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
}
.menuContainer ul li a:hover{
  color: var(--primary-color);
}

.socialBtn ul i {
  width: 36px;
  height: 36px;
  font-size: 14px;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
  transition: all 300ms ease-in-out;
}

i.fa-facebook-f:hover {
  background-color: var(--facebook);
}
i.fa-twitter:hover {
  background-color: var(--twitter);
}
i.fa-linkedin-in:hover {
  background-color: var(--linkedin);
}
i.fa-instagram:hover {
  background-color: var(--instagram);
}
i.fa-youtube:hover {
  background-color: var(--youtube);
}
/*header*/
.padding
{
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.heading
{
  font-family: "Abhaya Libre", serif;
  font-weight: 400;
  margin-bottom:2rem;
}
.overview-right-section img
{
  border-radius: 10px;
}
.readmore a, .readmore .button {
    padding: 10px 18px;
    display: inline-block;
    color: var(--body-color);
    border: 1px solid var(--primary-color);
    transition: all ease-in-out 0.4s;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}


.hm-img-box .hm-img-img {
    margin-bottom: 20px;
    border-bottom: 4px solid var(--clr);
}

.hm-img-box .hm-img-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hm-img-box .hm-img-meta {
    font-size: 12px;
    margin-bottom: 10px;
}

.hm-img-box .hm-img-meta .hm-img-cat {
    text-transform: uppercase;
    font-size: 16px;
    /* font-weight: normal; */
    /* color: var(--clr); */
    margin-bottom: 0;
    color: var(--body-color);
}

.hm-img-box .hm-img-content h3 {
    color: var(--clr);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: capitalize;
}

.hm-img-box .global-btn {
    padding: 10px 18px;
    display: inline-block;
    color: var(--body-color);
    transition: all ease-in-out 0.4s;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 10px;
    font-size: 14px;
    /* letter-spacing: 2px; */
    border: 1px solid var(--clr);
    background: transparent;
}

.hm-img-box .global-btn:hover {
    color: #fff;
    background-color: var(--clr);
}

.hm-img-box .global-btn i {
    font-size: 14px;
}

/* custom swiper controls */
.swiper-button-next, .swiper-button-prev{
  width: 50px;
  height: 50px;
  margin-top: -25px;
  border-radius: 50%;
  background: url(../images/arrow-right.png) center / 20px no-repeat var(--secondary-color);
  transition: all 300ms ease-in-out;
}
.swiper-button-next.sm, .swiper-button-prev.sm{
  width: 30px;
  height: 30px;
  background-size: 14px;
}

.topBtn{
  top: 25%;
}

.bottomBtn{
  top: 80%;
}

.heading .d-flex{
  gap: 10px;
}
.heading .swiper-button-next, .heading .swiper-button-prev{
  position: static;
  margin-top: 0;
}

.swiper-button-next:hover, .swiper-button-prev:hover{
    scale: 1.2;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next{
  transform: rotate(-180deg);
}

.swiper-button-next:after, .swiper-button-prev:after{
  display: none;
}

.bottom-control{
  top: calc(100% - 1.75rem);
}

.bottom-control.sm{
  top: calc(100% - .5rem);
}

.bottom-control.swiper-button-next{
  right: calc(50% - 55px);
}
.bottom-control.swiper-button-prev{
  left: calc(50% - 55px);
}

.bottom-control.swiper-button-next.sm{
  right: calc(50% - 35px);
}
.bottom-control.swiper-button-prev.sm{
  left: calc(50% - 35px);
}

.swiper-pagination{
  bottom: 0 !important;
}

.swiper-pagination-bullet-active{
  background-color: var(--primary-color);
  width: 20px;
  border-radius: 10px;
}
/* custom swiper controls */

/* Gallery Section */
.gallery-section {
    padding: 30px 0;
    box-shadow: 0px 15px 20px -17px rgb(0 0 0 / 8%);
}

.grid-gallery-section {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    margin: auto
}

.grid-gallery-section .gal-img img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover
}

.img-gallery1 {
    grid-area: 1 / 1 / 3 / 3
}

.img-gallery2 {
    grid-area: 1 / 3 / 2 / 5
}

.img-gallery3 {
    grid-area: 2 / 3 / 3 / 4
}

.img-gallery4 {
    grid-area: 2 / 4 / 3 / 5
}

.img-gallery5 {
    grid-area: 1 / 5 / 3 / 7
}

.gap-3{
  row-gap: 20px;
}

.gallery-slider .swiper-slide{
  height: auto;
}
.gallery-slider .swiper-slide .gal-img{
  height: 100%;
}

.swiper-slide .gal-img img{
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
  aspect-ratio: 3/2;
}


/*Footer*/
.footer-area {
    background: #1a426c;
  position: relative;
  bottom: 0;
  left: 0;
  z-index: 1;
  color: #fff;
}

.footer-area p{
  font-size: 13px;
}

.footer-area a{
  display: inline-block;
  color: #fff;
  font-size: 13px;
  padding: 5px 0;
}
.footer-area a:hover{
  color: var(--yellow);
}

.foot-links{
  position: relative;
  z-index: 1;
}

.foot-menu h6{
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}

.foot-menu.socialBox a{
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.footer-bottom{
  padding: 10px 0;
  border-top: 1px solid rgb(255 255 255 / 15%);
}

.footer-bottom > div{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-logo{
  width: 110px;
}

.copyrights{
  margin-right: 20px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.copyrights p{
  display: flex;
  align-items: center;
  margin-bottom: 0;
  font-size: 12px;
}

.copyrights p img{
  width: 13px;
  margin-left: 5px;
}

.button-top {
  background: var(--primary-color);
  position: fixed;
  cursor: pointer;
  right: 10px;
  bottom: 10px;
  color: #ffffff;
  font-size: 13px;
  opacity: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
  z-index: 99;
}

.button-top:hover {
  background: var(--third-color);
}

.socialBtn i{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 14px;
  color: #fff;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
  border-radius: 50%;
  transition: all 300ms ease-in-out;
}

i.fa-facebook-f{
  background-color: var(--facebook);
}
i.fa-twitter{
  background-color: var(--twitter);
}
i.fa-linkedin-in{
  background-color: var(--linkedin);
}
i.fa-instagram{
  background-color: var(--instagram);
}
i.fa-youtube{
  background-color: var(--youtube);
}
i.fa-phone{
  animation: breathe 1s alternate linear infinite;
}
i.fa-tty{
  background-color: var(--youtube);
  animation: breathe 1s alternate linear infinite 500ms;
}
i.fa-envelope{
  animation: breathe 1s alternate linear infinite 1s;
}
.row-gap
 {
    row-gap: 1rem;
}
/*Footer*/
.global-service-ulbox li {
    padding-left: 0;
    line-height: 2;
    border: none;
    font-size: 1rem;
    /* text-transform: capitalize; */
}
/* contact page */
.form-details .inner {
  background-color:#1a426c;
  padding: 2rem;
  border-radius: 10px 0 0 10px;
}

.address-details .inner {
  padding: 2rem;
  border: 1px solid rgb(0 0 0 / 10%);
  height: 100%;
  border-radius: 0 10px 10px 0;
}

.address-details .contact-details li a,
.address-details .inner p {
  color: rgb(0 0 0 / 50%);
}

.address-details .contact-details li {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

.address-details .contact-details li:not(:last-of-type) {
  margin-bottom: 10px;
}

.address-details .contact-details li i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgb(0 0 0 / 10%);
  color: var(--primary-color);
}

.address-details .contact-details li a:hover {
  color:#292626;
}
/* contact page */
.news-item {
    position: relative;
    overflow: hidden
}

.news-item:hover .news-overlay {
    visibility: visible;
    opacity: 1;
    transition: all 0.4s ease 0s;
    top: 0px;
}

.news-item:hover .news-button a i {
    bottom: 0px;
    transition: all 0.4s ease 0s;
}

.news-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(34, 37, 58, 0.95);
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease 0s;
}

.news-overlay-text {
    text-align: center;
}

.news-overlay-text {
    transform: translateY(-50%);
    top: 50%;
    position: relative;
}

.news-overlay-text .news-button a i {
    color: #011e40;
    font-size: 20px;
    width: 50px;
    height: 50px;
    border: 1px solid #f1c40f;
    line-height: 50px;
    bottom: -140px;
    position: relative;
    transition: all 0.4s ease 0s;
    background: #f1c40f;
}

.news-overlay-text .news-button a i:hover {
    background: #fff;
    border-color: #011e40;
    transition: all 0.4s ease 0s;
}

.news-load-more-btn {
    text-align: center;
    margin-top: 20px;
}

.news-load-more-btn a {
    background: #f58020;
    color: #011e40;
    display: inline-block;
    padding: 10px 26px;
    text-transform: capitalize;
    margin: 0px 10px;
    position: relative;
    z-index: 5;
    font-weight: 600;
    position: related;
    transition: all 0.4s ease 0s;
}

.news-load-more-btn a:hover {
    background: #f9ce2c;
}

.news-load-more-btn a::before {
    content: "\f178";
    font-family: fontawesome;
    float: right;
    top: 0px;
    position: relative;
    color: #011e40;
    padding-left: 10px;
    transition: all 0.4s ease 0s;
    margin-left: 10px;
}
.g-4
{
    row-gap: 1.5rem;
}
/* news-article */
.newsBox .inner {
    height: 100%;
    padding: 2rem;
    display: block;
    color: initial;
    border: 1px solid rgb(0 0 0 / 10%);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.date {
    /* text-transform: uppercase; */
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-color);
}

.news-article h5 {
    /* text-transform: uppercase; */
    font-size: 1.15rem;
}
.global-btn {
    padding: 10px 18px;
    display: inline-block;
    border: 1px solid var(--primary-color);
    color: var(--body-color);
    background-color: transparent;
    transition: all ease-in-out 0.4s;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 10px;
    font-size: 14px;
    /* letter-spacing: 2px; */
}

/* news-article */