/*-import font-*/
@font-face {
  font-family: "Garamond";
  src: url("fonts/Garamond-Bold.eot");
  src: url("fonts/Garamond-Bold.eot?#iefix") format("embedded-opentype"),
    url("fonts/Garamond-Bold.woff2") format("woff2"),
    url("fonts/Garamond-Bold.woff") format("woff"),
    url("fonts/Garamond-Bold.ttf") format("truetype"),
    url("fonts/Garamond-Bold.svg#Garamond-Bold") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Kade-bold";
  src: url("fonts/Kade-Bold.eot");
  src: url("fonts/Kade-Bold.eot?#iefix") format("embedded-opentype"),
    url("fonts/Kade-Bold.woff2") format("woff2"),
    url("fonts/Kade-Bold.woff") format("woff"),
    url("fonts/Kade-Bold.ttf") format("truetype"),
    url("fonts/Kade-Bold.svg#Kade-Bold") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

:root {
  --bodyFont: "Garamond", sans-serif;
  --HeadlineFont: "Garamond", sans-serif;
  --baseColor: #000000;
  --secondarycolor: #61030e;
  --white: #ffffff;
  --black: #000000;
}

*:after,
*:before {
  pointer-events: none;
}

body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--bodyFont);
  font-weight: normal;
  font-style: normal;
  color: var(--baseColor);
  font-size: 18px;
  line-height: 1.5;
  background-color: var(--white);
}

b,
strong {
  font-weight: 700;
}

p {
  margin: 0 0 22px 0;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 25px 0;
  font-family: var(--HeadlineFont);
  font-weight: 700;
  color: var(--baseColor);
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1,
.title_h1 {
  font-weight: 700;
  font-size: 90px;
  line-height: 1;
}

h2,
.title_h2 {
  font-weight: 700;
  font-size: 70px;
  line-height: 1;
}

h3,
.title_h3 {
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
}

h4 {
  font-size: 24px;
  line-height: 1.2;
}

h5 {
  font-size: 20px;
  line-height: 1.2;
}

a {
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  color: var(--baseColor);
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: var(--secondarycolor);
}

img {
  max-width: 100%;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
  background-color: transparent;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  height: 58px;
  padding: 0 16px;
  outline: none !important;
  font-family: var(--bodyFont);
  font-size: 18px;
  color: var(--baseColor);
}

textarea {
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 12px 16px;
  width: 100%;
  height: 158px;
  outline: none !important;
  font-family: var(--bodyFont);
}

select {
  border: 1px solid rgba(255, 255, 255, 0.7);
  width: 100%;
  padding: 0 11px;
  background: url(images/sort-down.svg) no-repeat calc(100% - 16px) center
    transparent;
  background-size: 18px;
  padding-right: 40px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type="submit"] {
  font-family: var(--bodyFont);
  font-size: 18px;
  background: var(--baseColor);
  color: var(--white);
  height: 58px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  padding-left: 30px;
  padding-right: 30px;
  cursor: pointer;
  outline: none !important;
  transition: all 0.3s ease-in-out;
}

input[type="submit"]:hover {
  background: var(--secondarycolor);
  color: var(--white);
}

::-webkit-input-placeholder {
  opacity: 0.7;
  color: var(--baseColor);
}

:-ms-input-placeholder {
  opacity: 0.7;
  color: var(--baseColor);
}

::-moz-placeholder {
  opacity: 0.7;
  color: var(--baseColor);
}

:-moz-placeholder {
  opacity: 0.7;
  color: #000;
}

/* images alignment for wordpress content pages */
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  float: none;
  clear: both;
}

/* custom checkbox */

.form_input_check label {
  position: relative;
  margin: 0;
  padding-left: 40px;
  display: inline-block;
}

.form_input_check label span {
  margin: 0;
  padding: 0;
}

.form_input_check label input[type="checkbox"] {
  visibility: hidden;
  display: none;
}

.form_input_check label input[type="checkbox"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  border: 1px solid #3e3e42;
  background: transparent;
}

.form_input_check label input[type="checkbox"] + span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  transition: all 0.2s ease;
  background: url(images/tick.svg) no-repeat center center;
  background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked) + span::after {
  opacity: 0;
  transform: scale(0);
}

.form_input_check label input[type="checkbox"]:checked + span:after {
  opacity: 1;
  transform: scale(1);
}

.form_input_radio label {
  position: relative;
  margin: 0;
  padding-left: 30px;
  display: inline-block;
}

.form_input_radio label span {
  margin: 0;
  padding: 0;
}

.form_input_radio label input[type="radio"] {
  visibility: hidden;
  display: none;
}

.form_input_radio label input[type="radio"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border: 2px solid #000000;
  border-radius: 100%;
  background: #fff;
}

.form_input_radio label input[type="radio"] + span::after {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--baseColor);
  position: absolute;
  top: 6px;
  left: 5px;
  border-radius: 100%;
  transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked) + span::after {
  opacity: 0;
  transform: scale(0);
}

.form_input_radio label input[type="radio"]:checked + span:after {
  opacity: 1;
  transform: scale(1);
}

/* back to top */
#scroll {
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  width: 55px;
  height: 55px;
  background-color: var(--secondarycolor);
  display: none;
  border-radius: 100%;
  line-height: 68px;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  z-index: 9;
  opacity: 0.5;
  color: var(--white);
  font-size: 44px;
}

#scroll:hover {
  opacity: 1;
}

#scroll i {
  transition: all 0.3s ease-in-out;
  transform: translateY(0);
}

#scroll:hover i {
  transition: all 0.3s ease-in-out;
  transform: translateY(-6px);
}

/*---*/
body.home {
  background-color: var(--baseColor);
  color: var(--white);
  overflow: hidden;
}

.loader {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  background-color: var(--black);
  align-items: center;
  justify-content: center;
}

body:not(.showPage) .loader > * {
  display: none;
}
.pr_cls1 {
  opacity: 0;
}

.circle_progress {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4.9875vw;
  font-size: 1vw;
  color: var(--white);
  min-width: 100px;
}

.circle_progress svg {
  width: 100%;
  height: auto;
  -webkit-filter: drop-shadow(0px 0px 4vw rgba(255, 255, 255, 0.25));
  filter: drop-shadow(0px 0px 4vw rgba(255, 255, 255, 0.25));
}

.pr_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5vw;
  color: var(--white);
}

.loader_logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-150%);
  white-space: nowrap;
  font-family: var(--bodyFont);
  font-size: 2vw;
}

/*hamburger*/
.navbar-toggler {
  position: relative;
  z-index: 5;
  height: 40px;
  width: 40px;
  display: flex;
  align-content: center;
  justify-content: center;
  padding: 10px;
  border-radius: 50%;
  border: 1px solid transparent;
  cursor: pointer;
  background-color: #808080;
  color: var(--baseColor);
  transition: all 0.5s ease-in;
  margin-left: auto;
}

.navbar-toggler > * {
  pointer-events: none;
}

.navbar-toggler svg {
  width: 100%;
  height: auto;
  display: inline-block;
  transform: translateZ(0) scale(1);
  transition: 600ms transform;
}

.navbar-toggler svg line {
  stroke: currentColor;
  transition: 0.45s all;
}

.navbar-toggler.open svg {
  -webkit-animation: 1350ms flip;
  animation: 1350ms flip;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.navbar-toggler.open svg line:nth-child(1) {
  transform: translate(0, 7px);
}

.navbar-toggler.open svg line:nth-child(2) {
  transform: translate(20px, -4px) rotate(90deg);
  transition: 0.45s transform 0.6s, 0.45s color;
}

.navbar-toggler.open svg line:nth-child(3) {
  transform: translate(0, -7px);
}

.navbar-toggler.open {
  background-color: var(--baseColor);
  border: 1px solid var(--white);
  color: var(--white);
}

@-webkit-keyframes flip {
  15% {
    opacity: 0.8;
    transform: translateZ(0) scale(0.8) rotateZ(0);
  }

  30% {
    transform: translateZ(0) scale(0.8) rotateZ(0);
  }

  100% {
    opacity: 1;
    transform: translateZ(0) scale(1) rotateZ(405deg);
  }
}

@keyframes flip {
  15% {
    opacity: 0.8;
    transform: translateZ(0) scale(0.8) rotateZ(0);
  }

  30% {
    transform: translateZ(0) scale(0.8) rotateZ(0);
  }

  100% {
    opacity: 1;
    transform: translateZ(0) scale(1) rotateZ(405deg);
  }
}

/* navbar*/
.navbarCollapse {
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 3;
  padding: 80px 0px 60px 55px;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  overflow: auto;
}

.navbarCollapse:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  transform: scaleX(0) translateX(-50%);
  transform-origin: right center;
  opacity: 0;
  will-change: transform, opacity;
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.6s ease;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.navbarCollapse:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondarycolor);
  transform: scaleX(0);
  transform-origin: right center;
  opacity: 0;
  will-change: transform, opacity;
  transition: all 1.5s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.6s ease;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}

.navbarCollapse.open {
  pointer-events: all;
}

.navbarCollapse.open:after {
  transform: scale(1) translateX(-50%);
  opacity: 1;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.navbarCollapse.open:before {
  transform: scale(1);
  opacity: 1;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.navbarCollapse > .navbar-nav {
  padding-right: 40px;
}
.navbar-brand {
  padding: 0;
  margin: 0;
  display: inline-block;
  color: var(--white);
  font-family: var(--bodyFont);
  font-size: 1.4vw;
}

.navbar-brand:hover {
  color: var(--white);
}

.navbar {
  background: none;
  margin: 0;
  padding: 0;
  min-height: inherit;
  height: inherit;
  border: none;
  border-radius: 0;
}

.navbar-nav li {
  position: relative;
  list-style: none;
}

.navbar-nav > li {
  margin: 8px 0;
  padding: 10px 0;
  position: relative;
}

.navbar-nav > li > a {
  color: var(--black);
  font-size: 27px;
  line-height: 1.2;
  position: relative;
  font-weight: normal;
  display: block;
  text-align: left;
}

.navbar-nav > li > a:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--secondarycolor);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}

.navbar-nav > li.current-menu-item > a,
.navbar-nav > li > a:hover,
.navbar-nav > li.menu-item-has-children:hover > a {
  color: var(--secondarycolor);
}

.navbar-nav > li.current-menu-item > a:after,
.navbar-nav > li > a:hover:after,
.navbar-nav > li.menu-item-has-children:hover > a:after {
  width: 100%;
}

/* navbar submenu*/
.sub-menu {
  background: var(--white);
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  width: 140px;
  padding: 0;
}

.sub-menu > li > a {
  color: var(--black);
  display: block;
  width: 100%;
  padding: 6px 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.sub-menu > li {
  width: 100%;
  display: block;
}

.sub-menu > li > a:hover,
.sub-menu > li.menu-item-has-children:hover > a,
.sub-menu > li.current-menu-item > a {
  background: var(--black);
  color: var(--white);
}

.navbar-nav > li:last-child > .sub-menu {
  right: 0;
  left: inherit;
  padding: 0;
}

/* 2nd level submenu */
.navbar-nav > li > .sub-menu .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
}

/* for push-menu */
#navoverlay {
  display: block;
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  margin: 0;
  padding: 0 !important;
  z-index: 99;
  transition: background-color 0.5s linear;
}

/* for push-menu end*/

.cmn_gap {
  padding: 60px 0px;
}

/* ========= main style ========= */

.main-head {
  padding: 15px 0px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

/*--model--*/
.model_wrapper {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

/* ========== responsive css =========== */
@media (min-width: 1025px) {
  /* navbar*/
  .navbar-nav .clickD {
    display: none;
  }

  .navbar-nav li.menu-item-has-children:hover > .sub-menu {
    display: block;
  }
}

@media (max-width: 1920px) {
}

@media (max-width: 1600px) {
  .navbar-brand {
    font-size: 24px;
  }
}

@media (max-width: 1199px) {
  .pr_text {
    font-size: 16px;
  }

  .loader_logo {
    font-size: 28px;
  }
}

@media (max-width: 1024px) {
}

@media (max-width: 991px) {
}

@media (max-width: 767px) {
}

@media (max-width: 575px) {
}

@media (max-width: 479px) {
}
