/*  font */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap");
@font-face {
  font-family: myFont1;
  /*src: url("../font/Classyvogueregular.ttf");*/
  src: url("../font/Butler_Light.otf");
}
@font-face {
  font-family: myFont2;
  src: url("../font/Marthin.otf");
}
@font-face {
  font-family: myFont3;
  src: url("../font/AvegasRoyale-Regular.ttf");
}
@font-face {
  font-family: myFont4;
  src: url("../font/AdamMedium.ttf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --primaryColor: #f69520;
  --secondaryColor: #0e417e;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #F9F6F3;
}

/* width */
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.048);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #c6c6c6;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primaryColor);
}

.container {
  width: calc(100% - 220px);
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .container {
    width: calc(100% - 100px);
  }
}
@media (max-width: 768px) {
  .container {
    width: calc(100% - 50px);
  }
}
@media (max-width: 480px) {
  .container {
    width: calc(100% - 20px);
  }
}
a,
article,
button,
div,
span,
i,
b,
h1,
h2,
h3,
h4,
h5,
h6,
p,
input,
ul,
li,
select,
label,
textarea {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  font-family: "Montserrat", sans-serif;
}

input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

input {
  -webkit-tap-highlight-color: transparent;
}

::-webkit-datetime-edit-year-field:not([aria-valuenow]),
::-webkit-datetime-edit-month-field:not([aria-valuenow]),
::-webkit-datetime-edit-day-field:not([aria-valuenow]) {
  color: transparent;
}

video::-internal-media-controls-overlay-cast-button {
  display: none;
}

textarea {
  resize: vertical;
  font-family: "Montserrat", sans-serif;
}

::-moz-selection {
  color: white;
  background: #1d1d1d;
}

::selection {
  color: white;
  background: #1d1d1d;
}

.shimmer {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7254901961);
  top: 0;
  left: 0;
  z-index: 105;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  display: none;
}

.sidemenu {
  position: fixed;
  z-index: 200;
  width: 100%;
  height: 100vh;
  background: #F9F6F3;
  top: 0;
  left: 0;
  display: none;
}
.sidemenu .sidemenuClose {
  position: absolute;
  right: 5%;
  top: 5%;
  cursor: pointer;
  font-size: 2em;
}
.sidemenu .sidemenuLink {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sidemenu .sidemenuLink li {
  list-style: none;
}
.sidemenu .sidemenuLink li:nth-child(1) a {
  margin-top: 0;
}
.sidemenu .sidemenuLink li a {
  text-decoration: none;
  display: block;
  text-align: center;
  font-size: 2em;
  color: black;
  font-weight: 300;
  margin-top: 40px;
  transition: 0.2s;
  font-family: myFont4;
}
.sidemenu .sidemenuLink li a:hover {
  color: #eee;
  transition: 0.2s;
}
@media (max-width: 480px) {
  .sidemenu .sidemenuLink li a {
    font-size: 25px;
  }
}
.sidemenu .sidemenuLink li .sidemenuLinkActive {
  position: relative;
}
.sidemenu .sidemenuLink li .sidemenuLinkActive::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border-top: 2px solid #f3c046;
  border-left: 2px solid #f3c046;
  top: -5px;
  left: -15px;
}
.sidemenu .sidemenuLink li .sidemenuLinkActive::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border-bottom: 2px solid #f3c046;
  border-right: 2px solid #f3c046;
  bottom: 0;
  right: -10px;
}

nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  transition: 0.2s;
  z-index: 100;
  height: 70px;
}
@media (max-width: 1024px) {
  nav {
    height: 60px;
  }
}
nav .navlogo {
  float: left;
  height: 70px;
  display: none;
  align-items: center;
  text-decoration: none;
}
@media (max-width: 1024px) {
  nav .navlogo {
    height: 40px;
    width: 60px;
    display: flex;
    margin-top: 10px;
  }
}
nav .navlogo img {
  width: 90%;
  height: 90%;
  -o-object-fit: contain;
  object-fit: contain;
}
nav .navBar {
  float: right;
  height: 70px;
  display: none;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  nav .navBar {
    height: 60px;
    display: flex;
  }
}
nav .navBar .navBarBox {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  transition: 0.3s;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
nav .navBar .navBarBox::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 0%;
  background: #f3c046;
  transition: 0.3s;
  z-index: -1;
  border-radius: 50%;
}
nav .navBar .navBarBox:hover {
  transition: 0.3s;
}
nav .navBar .navBarBox:hover::after {
  width: 110%;
  height: 110%;
  transition: 0.3s;
}
nav .navBar .navBarBox span {
  width: 100%;
  height: 2px;
  background: white;
  margin-top: 6px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.096);
}
@media (max-width: 1024px) {
  nav .navBar .navBarBox span {
    background: black;
  }
}
nav .navBar .navBarBox span:nth-child(1) {
  margin-top: 0;
}
nav .navLink {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  nav .navLink {
    height: 60px;
    display: none;
  }
}
nav .navLink ul {
  display: flex;
  align-items: center;
}
nav .navLink ul li {
  float: left;
  list-style: none;
}
nav .navLink ul li a {
  text-decoration: none;
  color: black;
  font-size: 18px;
  font-weight: 300;
  margin: 0px 50px;
  font-family: myFont4;
  transition: 0.2s;
  text-transform: uppercase;
}
@media (max-width: 1800px) {
  nav .navLink ul li a {
    margin: 0px 30px;
  }
}
nav .navLink ul li .navLinkLogo {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav .navLink ul li .navLinkLogo img {
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
nav .navLink .navDropdown {
  position: relative;
}
nav .navLink .navDropdown:hover .navDropdownPopup {
  display: flex;
}
nav .navLink .navDropdown .navDropdownBtn {
  cursor: pointer;
}
nav .navLink .navDropdown .navDropdownPopup {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  display: flex;
  flex-direction: column;
  padding: 5px 0px;
  display: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.0784313725);
}
nav .navLink .navDropdown .navDropdownPopup a {
  color: black;
  padding: 10px 40px;
  display: flex;
  margin: 0;
  transition: 0.3s;
}
nav .navLink .navDropdown .navDropdownPopup a:hover {
  transition: 0.3s;
  background: #eee;
}

.indexNav {
  background: #F9F6F3;
}

footer {
  width: 100%;
  background: #2d2d2d;
  padding: 50px 10%;
}
@media (max-width: 1800px) {
  footer {
    padding: 50px 0%;
  }
}
footer .footerMain {
  width: 100%;
  display: flex;
  flex-direction: column;
}
footer .footerMain .hr {
  width: 100%;
  height: 1px;
  background: #686868;
  margin-top: 80px;
}
footer .footerMain .hr:nth-child(1) {
  margin-top: 0;
}
footer .footerMain h1 {
  font-size: 18px;
  color: white;
  margin-top: 80px;
  font-weight: 300;
  letter-spacing: 1px;
  font-family: myFont4;
}
@media (max-width: 768px) {
  footer .footerMain h1 {
    text-align: justify;
  }
}
footer .footerMain .footerContact {
  width: 100%;
  display: flex;
}
@media (max-width: 768px) {
  footer .footerMain .footerContact {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
footer .footerMain .footerContact .footerContactBox {
  margin-right: 200px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 853px) {
  footer .footerMain .footerContact .footerContactBox {
    margin-right: 150px;
  }
}
@media (max-width: 768px) {
  footer .footerMain .footerContact .footerContactBox {
    margin-right: 0;
    width: 100%;
  }
}
footer .footerMain .footerContact .footerContactBox a {
  text-decoration: none;
  margin-top: 20px;
  color: white;
  font-size: 14px;
  font-weight: 200;
  font-family: myFont4;
}
footer .footerMain .footerContact .footerContactBox a:nth-child(1) {
  margin-top: 40px;
}
footer .footerMain .footerContact .footerContactBox a:hover {
  color: #f3c046;
}
footer .footerMain .footerContact .footerContactBox p {
  color: white;
  margin-top: 40px;
  font-size: 12px;
  font-family: myFont4;
}
footer .footerMain .footerContact .footerContactBox .footerSocial {
  width: 100%;
  display: flex;
  margin-top: 20px;
}
footer .footerMain .footerContact .footerContactBox .footerSocial a {
  margin-right: 40px;
  margin-top: 0;
}
footer .footerMain .footerContact .footerContactBox .footerSocial a img {
  width: 12px;
  height: 12px;
}
footer .footerMain .footerStrip {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .footerMain .footerStrip .footerStripRights {
  margin-top: 50px;
}
footer .footerMain .footerStrip .footerStripRights p {
  color: #bebebe;
  font-size: 12px;
  font-family: myFont4;
}
footer .footerMain .footerStrip .footerStripCreat {
  margin-top: 50px;
}
footer .footerMain .footerStrip .footerStripCreat p {
  color: #bebebe;
  font-size: 12px;
  font-family: myFont4;
}
footer .footerMain .footerStrip .footerStripCreat p i {
  margin: 0px 10px;
  color: white;
}
footer .footerMain .footerStrip .footerStripCreat p a {
  text-decoration: none;
  font-family: myFont4;
  color: white;
}
footer .footerMain .footerStrip .desined {
  font-size: 12px;
  display: flex;
  align-items: center;
  color: white;
}
footer .footerMain .footerStrip .desined i {
  color: white;
  margin: 0px 10px;
  font-size: 16px;
}
footer .footerMain .footerStrip .desined a {
  text-decoration: none;
}
footer .footerMain .footerStrip .desined a .footerStripLogo {
  width: 60px;
}
footer .footerMain .footerStrip .desined a .footerStripLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  filter: grayscale(1);
}

#spotlight {
  background: rgba(0, 0, 0, 0.7803921569) !important;
}/*# sourceMappingURL=main.css.map */