@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
   box-sizing: border-box;
   font-family: 'Outfit', sans-serif;
}

:root {
   --clr-dark: #111;
   --clr-white: #fff;
   --clr-primary: #C9B464;
   --clr-btn-gradient: linear-gradient(90deg, rgb(117 99 57) 0%, rgb(227 203 152 / 0%) 100%);
   --clr-gradient: linear-gradient(145deg, rgba(90, 75, 47, 1) 0%, rgba(81, 64, 34, 1) 100%);
   --clr-gradient-text: linear-gradient(80deg, #D71F27 5%, #E3C523 50%, #1B8DB6 95%);
}

body {
   overflow-x: hidden;
   font-size: 16px;
   line-height: 1.5;
   color: var(--clr-dark);
}

a {
   transition: 0.3s ease-in-out;
   text-decoration: none;
   color: var(--clr-primary);
}

a:hover {
   text-decoration: none;
   color: var(--clr-primary);
}

ul {
   margin: 0;
   padding: 0;
   list-style-type: none;
}

img {
   max-width: 100%;
}


/* Header css */

/* header */

header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 999;
   will-change: transform;
   transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1), background 0.3s;
   transform: translateY(0);
   background: rgb(245 245 245 / 25%);
}
ul.navbar-nav {
   align-items: center;
}
.hide-nav {
   transform: translateY(-120%);
}

.navbar {
   transition: all 0.3s ease-in-out;
   padding-bottom: 0;
}

.header-nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   width: 100%;
   gap: 5px;
   flex-direction: column;
}

.navbar-brand {
   margin: 0;
}

.navbar-brand img {
   width: 75px;
   padding-left: 0px;
}
ul.header-btns {
   margin: 0;
}
.navigation-container {
   display: flex;
   gap: 20px;
   align-items: center;
}

.navbar-nav {
   gap: 30px;
}

.navbar-nav .nav-link {
   font-size: 14px;
   font-weight: 500;
   color: var(--clr-dark);
   position: relative;
   text-transform: uppercase;
   min-width: 110px;
   text-align: center;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
   color: #9c8348;
   /* -webkit-background-clip: text;
   -webkit-text-fill-color: transparent; */
}

.sticky-header {
   background: var(--clr-white);
   box-shadow: 0 0 10px rgb(0 0 0 / 30%);
}

/* Header css */

/* Form inputs */

.form-group {
   margin: 0 0 15px;
}

.form-control,
.form-select {
   border-radius: 30px;
   transition: all 0.3s ease-in-out;
   min-height: 50px;
   padding: 5px 20px;
   background: #f5f5f5;
   border: 0;
}

.form-control:focus,
.form-select:focus {
   box-shadow: none;
   outline: none;
   border-color: var(--clr-primary);
}

.form-group>label {
   margin: 0 0 5px;
   font-size: 14px;
   font-weight: 600;
}

.form-group>label span {
   color: #ff0000;
}

.InputBox {
   display: flex;
   width: 100%;
}

.InputBox input {
   border: 1px solid var(--clr-primary);
}

/* Form inputs end */

/* Button */

.ThemeBtn {
   position: relative;
   padding: 5px 25px;
   font-size: 16px;
   display: inline-flex;
   justify-content: center;
   align-items: center;
   gap: 10px;
   font-weight: 500;
   min-height: 50px;
   line-height: normal;
   min-width: fit-content;
   border: 0;
   background: transparent;
   text-transform: uppercase;
   letter-spacing: 1px;
   border-radius: 30px;
   transition: all 0.5s ease-in-out;
}

.ThemeBtn:before {
   content: '';
   position: absolute;
   min-width: 50px;
   width: 50px;
   height: 100%;
   background: var(--clr-btn-gradient);
   border-radius: 30px;
   left: 0;
   top: 0;
   transition: all 0.5s cubic-bezier(0.68, -0.5, 0.2, 1.3);
}

.ThemeBtn span {
   position: relative;
   z-index: 2;
   color: var(--clr-dark);
}

.ThemeBtn i {
   font-size: 18px;
   position: relative;
   left: -5px;
   transition: all 0.3s ease-in-out;
}

.ThemeBtn:hover span {
   background: var(--clr-gradient-text);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}

.ThemeBtn:hover i {
   left: 0;
}

.ThemeBtn:hover:before {
   width: 100%;
}

.icon-btn {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 30px;
   min-width: 30px;
   height: 30px;
   border-radius: 100%;
   background: var(--clr-btn-gradient);
   box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
   border: 0;
}

.icon-btn i {
   font-size: 24px;
   color: var(--clr-dark);
   margin-right: -30px;
   transition: all 0.3s ease-in-out;
}

.icon-btn:hover i {
   margin-right: -40px;
}


/* Button end */

/* scroll top */

#scrollTotop {
   display: flex;
   align-items: center;
   justify-content: center;
   position: fixed;
   bottom: 25px;
   right: -50px;
   cursor: pointer;
   width: 40px;
   height: 40px;
   border-radius: 100%;
   background: linear-gradient(200deg, rgba(90, 75, 47, 1) 0%, rgba(28, 19, 3, 1) 100%);
   z-index: 99;
   box-shadow: 0 3px 10px rgb(0 0 0 / 15%);
   transition: all 0.3s ease-in-out;
   outline: none;
   border: 0;
}

#scrollTotop.showscroll {
   right: 25px;
}

.ScrollArrow {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 100%;
   height: 100%;
}

.ScrollArrow i {
   font-size: 20px;
   color: #fff;
}

/* scroll top */

/* Footer */

footer {
   background-blend-mode: overlay;
}

.footer-content {
   color: var(--clr-white);
   padding: 50px 0 0;
}

.about-footer {
   padding-right: 50px;
}

footer p {
   font-size: 14px;
   color: #fff;
   margin: 0 0 15px;
   font-weight: 300;
}

.about-footer .brandLogo {
   display: flex;
   align-items: center;
   gap: 10px;
   margin: 0 0 15px;
}

.about-footer .brandLogo img {
   width: 100px;
   min-width: 100px;
}

.footer-info h5 {
   font-size: 16px;
   margin: 0 0 15px;
   text-transform: uppercase;
   color: #fff;
}

.footer-nav {
   display: flex;
   flex-direction: column;
   gap: 10px;
}

.footer-nav a {
   color: #fff;
   font-size: 14px;
   font-weight: 300;
   display: flex;
   align-items: center;
   gap: 5px;
}

.footer-nav a:after {
   content: '\f1df';
   font-family: 'Material Icons';
   transition: all 0.3s ease-in-out;
   position: relative;
   left: -20px;
   opacity: 0;
}

.footer-nav a:hover {
   color: var(--clr-primary);
}

.footer-nav a:hover:after {
   left: 0;
   opacity: 1;
}


.copyright {
   display: flex;
   justify-content: space-between;
   padding: 20px 0;
   margin-top: 20px;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
   margin: 0;
   font-size: 12px;
   text-align: center;
}

.footer-social {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 20px;
}

.footer-social a {
   display: flex;
}

.footer-social a:hover {
   opacity: 0.5;
}

.verify-inputbox {
   position: relative;
}

.verify-inputbox .ThemeBtn {
   position: absolute;
   top: 0;
   right: 0;
   background: var(--clr-primary);
   color: var(--clr-white);
}

.verify-inputbox .ThemeBtn::before,
.welcome-modalDetails .btn-row .ThemeBtn:before {
   display: none;
}



/* Footer end */

.custom-spacer {
   padding: 80px 0;
}

.centerInfo {
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
}

.secInfo {
   margin: 0 0 40px;
}

.secInfo h2 {
   font-size: 28px;
   margin: 0 0 20px;
}

.section-divider {
   width: 300px;
   height: 1px;
   background: var(--clr-btn-gradient);
   position: absolute;
   bottom: 0;
   left: 0;
}

.section-divider.right {
   left: auto;
   right: 0;
   transform: rotate(180deg);
}

/* keyframe css */

.rotate-animation {
   animation: rotate-animation 10s infinite linear;
}

@keyframes rotate-animation {
   0% {
      transform: rotate(0deg);
   }

   50% {
      transform: rotate(180deg);
   }

   100% {
      transform: rotate(360deg);
   }
}

.color-effect {
   animation: imgEffect 3s linear infinite;
}

@keyframes imgEffect {
   100% {
      -webkit-filter: drop-shadow(0px 5px 15px rgb(0 0 0 / 30%)) hue-rotate(360deg);
   }
}

.mouse-in {
   animation: animated-mouse 1.5s ease infinite;
}

@keyframes animated-mouse {
   0% {
      opacity: 1;
      transform: translateY(-5px);
   }

   100% {
      opacity: 0;
      transform: translateY(10px);
   }
}

@keyframes marquee {
   0% {
      left: 0;
   }

   100% {
      left: -100%;
   }
}

.pulse {
   animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
   0% {
      box-shadow: 0 0 0 0px rgba(201, 181, 100, 0.3);
   }

   100% {
      box-shadow: 0 0 0 20px rgba(201, 181, 100, 0);
   }
}


/* keyframe css end */

/* Modal Popup */

.VerificationModal {
   background: rgb(0 0 0 / 30%);
   backdrop-filter: blur(10px);
}

.VerificationModal .modal-content {
   background: transparent;
   border: 0;
   border-radius: 20px;
   padding: 0 5px;
}

.popupClose-btn {
   padding: 0;
   margin: 0;
   border: 0;
   background: transparent;
   display: flex;
   position: absolute;
   top: 0;
   right: 0;
   color: #fff;
   outline: none;
}

.Verification-body-wrapper {
   display: flex;
}

.Verification-body-wrapper .thumbImg {
   width: 50%;
   min-width: 50%;
   padding: 50px;
}

.Verification-body-wrapper .PopContent {
   width: 100%;
   padding: 20px;
   display: flex;
   align-items: center;
}

.Verification-body-wrapper .PopContent h2 {
   font-size: 38px;
   margin: 0 0 15px;
   color: #fff;
}

.Verification-body-wrapper .PopContent h6 {
   font-size: 24px;
   font-weight: normal;
   margin: 0 0 30px;
   color: #fff;
}

.verification-inputBox {
   width: 100%;
}

.verificationContent {
   text-align: center;
   width: 100%;
}

.verificationContent .ThemeBtn:before {
   display: none;
}

.verificationContent .ThemeBtn {
   background: var(--clr-white);
   color: var(--clr-dark);
   box-shadow: 0 5px 15px rgb(0 0 0 / 30%);
}

.verificationContent .verificationIcon {
   width: 100px;
   margin: 0 0 20px;
}

#errorModal .Verification-body-wrapper .PopContent h2 {
   color: #ff0000;
}

/* Modal Popup end */