* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "DM Sans", sans-serif;
}

body {background: #F3F3E0;}

img {
  max-width: 100%;
}

.heading h3 {
  font-size: 19px;
  position: relative;
  width: fit-content;
}

.heading h3 .heading-dot {
  width: 20px;
  position: absolute;
  height: 3px;
  background: #dda853;
  top: 10px;
  right: -28px;
}

.heading h2 {
  font-family: "Libre Baskerville", serif;
  font-size: 47px;
  font-weight: 400;
  margin: 18px 0;
  color: #000;
}

.top-header {
  background-color: #121932;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 30px;
}

.top-header .info a {
  text-decoration: none;
  font-size: 14px;
  color: #f9efef;
  font-weight: 400;
  margin-left: 27px;
}

.top-header .info a i {
  margin-right: 10px;
}

.top-header .top-nav-icons i {
  color: #fff;
  margin-right: 5px;
  font-size: 14px;
}

.main-header {
  z-index: 9999999;
  position: fixed;
  top: 0;
  width: 100%;
}

.header {
  width: 100%;
  display: flex
;
  background-color: #ffffff;
  justify-content: space-between;
  align-items: center;
  padding: 9px 128px;
  box-shadow: 0px -10px 50px -26px #000;
}

.header .navigation .navbar {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header .navigation .navbar a {
  position: relative;
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  padding: 0px 3px;
  transition: color 0.3s ease;
  font-weight: 500;
}

.header .navigation .navbar a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #121932;
  transition: width 0.3s ease;
}

.header .navigation .navbar a:hover::after {
  width: 100%;
}

.header .navigation .navbar a:hover {
  color: #636b2f;
}

.header .navigation .dropdown {
  position: relative;
}

.header .navigation .dropdown-content {
  position: absolute;
  top: 110%;
  left: 0;
  background-color: #121932;
  min-width: 180px;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.header .navigation .dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header .navigation .dropdown-content a {
  display: block;
  padding: 12px 16px;
  color: #f9fafb;
  text-decoration: none;
  position: relative;
  transition: background 0.3s ease, color 0.3s ease;
}

.header .navigation .dropdown-content a:hover {
  background-color: #121932;
  color: #ffffff;
}

.header .navigation .dropdown-content a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 6px;
  left: 16px;
  background-color: #121932;
  transition: width 0.3s ease;
}

.header .navigation .dropdown-content a:hover::after {
  width: 80%;
}

.btns .button {
     padding: 10px 23px;
     border-radius: 44px;
     background-color: #DDA853;
     border: none;
     color: #fff;
     text-align: center;
     font-size: 15px;
     transition: all 0.5s;
     cursor: pointer;
}

button.button.btn2 {
  background: transparent !important;
  border: 1px solid #636b2f;
  color: #ffffff;
}

.content-wrapper-inner .btns .button {
  margin-right: 10px;
}

.btns .button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.btns .button span:after {
  content: "\00bb";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.btns .button:hover span {
  padding-right: 25px;
}

.btns .button:hover span:after {
  opacity: 1;
  right: 0;
}

.background {
  position: fixed;
  width: 100%;
  height: 130vh; /* 100vh + 30vh offset */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateY(30vh);
  transition: all 1.2s cubic-bezier(0.22, 0.44, 0, 1);
}

.background:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.background:nth-child(1) {
  background-image: url('../images/banner1.png');
  transform: translateY(-15vh);
  z-index: 3;
  background-size: contain !important;
}

.background:nth-child(2) {
  background-image: url("../images/banner2.png");
  z-index: 2;
  background-size: contain !important;
}

.background:nth-child(3) {
  background-image: url("../images/banner3.png");
  z-index: 1;
  background-size: contain !important;
}

.content-wrapper {
  padding-top: 18%;
  color: #fff;
  transform: translateY(40vh);
  will-change: transform;
  backface-visibility: hidden;
  transition: all 1.7s cubic-bezier(0.22, 0.44, 0, 1);
  height: 100vh;
  padding-left: 4%;
}

.content-wrapper-inner {
  /* background-color: rgba(20, 20, 42, 0.5); */
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 50px;
  width: 35%;
}

.content-title {
  line-height: 60px;
  font-size: 51px;
  margin-bottom: 0;
}

p.content-subtitle {
  font-size: 14px;
  font-weight: 300;
  margin-top: 16px;
  margin-bottom: 24px;
}

.background.up-scroll {
  transform: translate3d(0, -15vh, 0);
}

.background.up-scroll .content-wrapper {
  transform: translateY(15vh);
}

.background.up-scroll + .background {
  transform: translate3d(0, 30vh, 0);
}

.background.up-scroll + .background .content-wrapper {
  transform: translateY(30vh);
}

.background.down-scroll {
  transform: translate3d(0, -130vh, 0);
}

.background.down-scroll .content-wrapper {
  transform: translateY(40vh);
}

.background.down-scroll + .background:not(.down-scroll) {
  transform: translate3d(0, -15vh, 0);
}

.background.down-scroll + .background:not(.down-scroll) .content-wrapper {
  transform: translateY(15vh);
}

.scroll-reveal {
  height: 300vh;
  background: transparent;
}

.about-section {
  position: relative;
  background-color: #F3F3E0;
  color: #121223;
  z-index: 999999;
  padding-top: 90px;
}

.event-section {
  background-color: #183B4E;
  margin-top: 90px;
  /* height: 63%;
  max-height: 58.7vh; */
}

.event-section video {
  display: block;
}

.event-section .event-inner {
  padding-left: 80px !important;
  padding: 30px 50px;
}

.event-section .event-inner p {
  color: #ffffff;
}
.our-work{
  padding: 90px 0;
}

.our-work h4{
  margin-top: 16px;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 18px;
  color: #e2e2b0;
  text-transform: capitalize;
}

.our-work-inner {
  border-radius: 20px;
  background: #27548A;
  padding: 30px;
  color: #fff;
}

.our-work-inner p{
  font-size: 14px !important;
}

.our-work-inner img{
  border-radius: 15px;
}

.gallery-section {
  background: #183B4E!important;
  z-index: 999999 !important;
  width: 100%;
  padding: 40px 0 60px;
}

.gallery-section .wrapper {
  top: 20%; 
  left: 3.5%; 
  transform: translate(0, -10%); 
  display: flex;
}

.gallery-section .container {
  width: 33%; 
  transition: transform 0.5s;
}
.gallery-section img {

  border-radius: 10px;
  transition: transform 0.5s;
}

.gallery-section .wrapper:hover .container {
  transform: scale(0.8); 
}


.gallery-section .wrapper:not(:hover) .container {
  transform: scale(1); 
}


.gallery-section .wrapper .container:hover {
  transform: scale(1.2);
  -webkit-box-reflect: below -220px linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}


.contact-sections .contact-right {
  height: 100%;
  padding: 50px 80px;
  background: #f3f3e0 !important;
}

.contact-sections .contact-left{
  background-size: cover !important;
  background: url(..images/contact.png) no-repeat;
  height: 100%;
}



.contact-right .form-control {
  font-size: 13px;
  padding: 11px 10px;
  background: transparent;
  border: 1px solid #3a3a3a;
  color: #000000;
}

.contact-right textarea {
  font-size: 13px;
  padding: 11px 10px;
  background: transparent;
  border: 1px solid #3a3a3a;
  width: 100%;
  height: 105px;
  border-radius: 5px;
  color: #000000;
}

.footer-section {
  background-color: #183b4e;
  padding: 40px 0;
}

.footer-section h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 30px;
  font-weight: 300;
  font-weight: bold;
}

.footer-section ul {
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  list-style: none;
  margin: 12px 0px;
}

.footer-section ul li a {
     text-decoration: none;
    color: #cccccc;
    font-size: 14px;
    font-weight: 300;
    display: flex
;
}

.footer-section p {
     color: #eaeaea;
    font-size: 14px;

}

.footer-section ul li a i {
  margin-right: 12px;
  color: #dda853;
}

.footer-section .footer-input {
  position: relative;
}

.footer-section .footer-input .form-control {
  padding: 18px 41px 18px 13px;
  font-size: 13px;
  position: relative;
  border-radius: 15px;
}

.footer-section .footer-input i {
  position: absolute;
  right: 17px;
  top: 18px;
  font-size: 21px;
  color: #636b2f;
}

.copyright-section {
    display: flex;
    padding: 36px 115px;
    background-color: #183b4e;
    justify-content: center;
    align-items: center;
}

.copyright-section p {
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
}



.copyright-section p a {
  color: #dda853;
  text-decoration: none;
  font-weight: 700;
}
