@import url("https://fonts.googleapis.com/css2?family=Bakbak+One&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
body {
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  margin: 0px;
  padding: 0px;
}

body::-webkit-scrollbar {
  width: 0.5em;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #999;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  outline: 1px solid var(--primary-color);
}

html {
  scroll-behavior: smooth;
}

:root {
  --primary-color: #c9a227;
  --secondary-color: #000;
}

*,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

p {
  font-size: 16px;
  color: #000;
}

ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

a,
button {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

a:hover {
  text-decoration: none;
}

button:focus,
input:focus,
textarea:focus,
select:focus,
a:hover {
  outline: none;
  box-shadow: none;
}

section {
  padding: 60px 0 60px;
  overflow: hidden;
}

.inlineHeader {
  display: flex;
  padding: 0px 0;
  align-items: center;
  justify-content: space-between;
}

.large_heading {
  font-size: 4.5rem;
  line-height: 1;
}

.heading {
  font-size: 50px;
  line-height: 1;
}

.heading2 {
  font-size: 35px;
  line-height: 1;
}

.sub_heading {
  font-size: 26px;
}

.small_heading {
  font-size: 22px;
}

.title {
  font-size: 18px;
}
.text {
  font-size: 16px;
}

.fontWeight300 {
  font-weight: 300;
}

.fontWeight400 {
  font-weight: 400;
}

.fontWeight500 {
  font-weight: 500;
}

.fontWeight600 {
  font-weight: 600;
}

.fontWeight700 {
  font-weight: 700;
}

.fontWeight800 {
  font-weight: 800;
}

.fontWeight900 {
  font-weight: 900;
}
.header {
  position: absolute;
  padding: 5px 0;
}
.header.stricky-fixed {
  position: fixed;
  z-index: 999;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  width: 100%;
  background: #fff;
  backdrop-filter: blur(10px);
  -webkit-animation-name: menu_sticky;
  animation-name: menu_sticky;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;

  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
.header.stricky-fixed .leftLogo img {
  width: 200px;
}
.header.stricky-fixed .centerMenu ul li a {
  color: #000 !important;
}
.header.stricky-fixed .logo-title .text-white {
  color: #000 !important;
}
@-webkit-keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }

  50% {
    margin-top: -130px;
  }

  100% {
    margin-top: 0;
  }
}

@keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }

  50% {
    margin-top: -130px;
  }
}
.text_secondary {
  color: var(--secondary-color);
}
.text_primary {
  color: var(--primary-color);
}
.bgPrimary {
  background: var(--primary-color);
}

.bgSecondary {
  background: var(--secondary-color);
}
.containerFull {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.header {
  width: 100%;
  padding: 10px 0;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
}

.leftLogo {
  width: 200px;
}
.leftLogo img {
  max-width: 100%;
}

.btnTheme {
  display: inline-block;
  padding: 10px 30px;
  border: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  font-size: 1rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-weight: 600;

  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  -webkit-clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.btnTheme:after {
  content: "";
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.btnTheme:hover:after {
  width: 100%;
  right: auto;
  left: 0;
}
.btnTheme.hoverPrimary:after{
  background: #d6b54a!important;
}

.btnTheme.hoverPrimary:hover{
  color: #000 !important;
}

.btnTheme.hoverWhite:after{
   background: var(--primary-color)!important;
}
.btnTheme.hoverWhite:hover{
  color: #fff !important;
}
.bgGray {
  background: #f1f1f1;
}
.textGray {
  color: #444;
}
.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 80px;
}
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 5px;
  background-color: var(--primary-color);
  z-index: 999;
  width: 45px;
  height: 45px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  font-size: 16px;
  color: rgb(255, 255, 255);
  border-radius: 50%;
  transition: 0.9s;
  overflow: hidden;
}
.centerMenu ul {
  display: flex;
}
.centerMenu ul li a {
  display: inline-block;
  padding: 10px 10px;
  margin: 0 10px;
  color: #eee;
  font-weight: 600;
  font-size: 15px;
  position: relative;
}
.centerMenu ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  background: var(--primary-color);
  width: 0;
  transition: all 0.3s ease-in-out;
}
.centerMenu ul li:hover a:after {
  width: 100%;
}
.centerMenu ul li:hover a {
  color: var(--primary-color);
}
.btnBorder {
  color: #000;
  padding: 10px 32px;
  background: #fff;
  border: none;
  position: relative;
  clip-path: polygon(9% 0, 100% 0, 91% 100%, 0 100%);
  -webkit-clip-path: polygon(9% 0, 100% 0, 91% 100%, 0 100%);
}

.btnBorder:hover {
  border-color: var(--primary-color);
}
.icon i {
  transform: rotate(-35deg);
  font-size: 12px;
}
.centerMenu ul li {
  position: relative;
}