@font-face {
  font-family: "lightFont";
  src: url("../fonts/BebasNeue Thin.otf");
}
@font-face {
  font-family: "boldFont";
  src: url("../fonts/BebasNeue-Regular.ttf");
}
@font-face {
  font-family: "Signed";
  src: url("../fonts/signed.ttf");
}
:root {
  --colorMain: #af8d32;
  --colortwo: #f09a1f;
  --colorthree: #8ec1c0;
  --colorFour: #5b6466;
  --colorWhite: #fff;
  --colorDarkFour: #242829;
  --gapTopHeader: 7vw;
}

.pace {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 99999999999999;
  position: fixed;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  border: 0px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  transition: all 1s;
}
.pace .pace-progress {
  transform: translate3d(0, 0, 0);
  max-width: 300px;
  position: fixed;
  z-index: 99999999999999;
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  width: 100%;
  background: #af8d32;
}
.pace.pace-inactive {
  width: 100vw;
  opacity: 0;
}
.pace.pace-inactive .pace-progress {
  max-width: 100vw;
}

#preloader {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  z-index: 9999999;
}
#preloader::after, #preloader::before {
  content: "";
  position: fixed;
  left: 0;
  height: 50vh;
  width: 100%;
  background: #252531;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
#preloader::before {
  top: 0;
}
#preloader::after {
  bottom: 0;
}
#preloader.isdone {
  visibility: hidden;
  transition-delay: 1.5s;
}
#preloader.isdone::after, #preloader.isdone::before {
  height: 0;
  transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  transition-delay: 1s;
}

.loading-text {
  font-size: 25px;
  font-family: "fontMedium", sans-serif;
  text-transform: uppercase;
  position: absolute;
  top: calc(50% - 30px);
  left: 50%;
  transform: translate(-50%, -50%);
  color: #af8d32;
  z-index: 9999;
}
.loading-text.isdone {
  top: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 0.5s;
}

body,
html {
  width: 100%;
  height: 100%;
  display: block;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: interstate, "sans-serif";
  color: var(--colorMain);
  font-weight: 400;
  line-height: 1;
  height: 100vh;
  overflow: hidden;
}
pre,
p {
  font-family: interstate, "sans-serif";
}

pre:not(.pre_editor),
p:not(.pre_editor) {
  white-space: pre-line;
}

.title p,
footer p {
  white-space: inherit !important;
}

a {
  text-decoration: none !important;
  color: var(--colorMain);
  cursor: pointer;
}

section {
  overflow: hidden;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media all and (max-width: 767px) {
  section.section_b_0_768 {
    padding-bottom: 0 !important;
  }
}
@media all and (max-width: 991px) {
  section.section_t_0_992 {
    padding-top: 0 !important;
  }
}
@media all and (max-width: 767px) {
  section.section_t_0_768 {
    padding-top: 0 !important;
  }
}

img {
  width: 100%;
  height: auto;
}

h2 {
  margin-bottom: 0;
}

h2.title {
  font-weight: 600;
}

li {
  list-style: none;
}

@media (min-width: 1024px) {
  .border-lg-end {
    border-right: 1px solid #dee2e6 !important;
  }
}
#mouse-effect {
  display: none;
  border: 1px solid #af8d32;
  height: 60px;
  width: 60px;
  position: fixed;
  top: 500px;
  left: 500px;
}
#mouse-effect,
#mouse-effect .dot {
  border-radius: 50%;
}
#mouse-effect .dot {
  width: 10px;
  height: 10px;
  background-color: #af8d32;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.scroll-down-effect {
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
  z-index: 2;
}
.mouse-circal {
  height: 58px;
  width: 32px;
  border: 2px solid #fff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: auto;
  left: auto;
}
.mouse-circal,
.mouse-circal * {
  transition: all ease-in-out 0.3s;
}
.mouse-circal .dot {
  width: 5px;
  height: 5.5px;
  background-color: #fff;
  margin: auto;
  border-radius: 50%;
  transform: translateY(-10px);
}
.mouse-circal:not(.active) .dot {
  animation: mov-dot 1.5s infinite ease-in;
}
.mouse-circal.active {
  width: 58px;
  border-color: #af8d32;
  border-radius: 50%;
  cursor: pointer;
}
.mouse-circal.active .dot {
  width: 30%;
  height: 30%;
  transform: translateY(-2px);
  background-color: #af8d32;
  -webkit-clip-path: polygon(50% 20%, 100% 79%, 85% 80%, 50% 40%, 15% 81%, 0 80%);
          clip-path: polygon(50% 20%, 100% 79%, 85% 80%, 50% 40%, 15% 81%, 0 80%);
}

@keyframes mov-dot {
  0% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-5px);
  }
}
.font-family-default {
  font-family: inherit !important;
}

.lines {
  position: relative;
}
.lines::after, .lines::before {
  content: "";
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.lines.horizontal_line {
  width: 100%;
  height: 2px;
}
.lines.horizontal_line::before {
  height: 20%;
}
.lines.horizontal_line::after {
  width: 40%;
}
.lines.vertical_line {
  height: 100%;
  width: 1.5px;
}
.lines.vertical_line::before {
  width: 25%;
}
.lines.vertical_line::after {
  height: 50%;
}

.slider_img_card {
  display: grid;
}
.slider_img_card > * {
  grid-row: 1/1;
  grid-column: 1/1;
  opacity: 0;
  transition: all ease-in-out 1s;
}
.slider_img_card > *.active {
  opacity: 1;
}

.strok_logo {
  position: absolute;
  top: 8%;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.strok_logo svg {
  height: 100%;
}

.app_lines {
  position: relative;
  width: 100%;
}
.app_lines .border_dotted {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 1px;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='rgb(34 73 83 / 50%)' stroke-width='4' stroke-dasharray='2%2c 5' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
}
.app_lines.app_lines_horizontal *::before {
  height: 100%;
}
.app_lines.app_lines_horizontal *::after {
  height: 200%;
}
.app_lines.app_lines_horizontal .border_dotted {
  height: 1px;
  width: 100%;
}
.app_lines .lines.horizontal_line {
  width: 160px;
  margin: auto;
}
.app_lines .lines.vertical_line {
  height: 60%;
  width: 1px;
  top: 50%;
  transform: translateY(-50%);
}
.app_lines .lines.vertical_line::before {
  width: 100%;
  opacity: 0.5;
}
.app_lines .lines.vertical_line::after {
  width: 500%;
  height: 40%;
}

.title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  text-align: center;
}
.title .content_title {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.title .content_title svg {
  height: 10px;
  margin-bottom: 0.5rem;
}
.title .content_title h2 {
  font-size: 2.1rem;
  font-weight: 400;
  margin-bottom: 0rem;
  color: var(--colorMain);
  text-transform: uppercase;
  text-align: center;
  font-family: "boldFont";
}
@media all and (max-width: 767px) {
  .title .content_title h2 {
    font-size: 20px;
  }
}
.title .content_title .lines {
  width: 55%;
  margin-bottom: 1rem;
}
.title .content_title .lines::after, .title .content_title .lines::before {
  background-color: var(--colorMain);
}
.title .content_title p {
  font-family: "lightFont";
  opacity: 0.7;
  letter-spacing: 3px;
  font-size: 1.2rem;
  margin-top: 6px;
}
@media all and (max-width: 767px) {
  .title .content_title p {
    font-size: 10px;
  }
}
.title .lines {
  width: 80px;
  height: 2px;
}
.title .lines::before {
  opacity: 0.4;
}
.title .lines::after, .title .lines::before {
  background-color: var(--colortwo);
}
.title .lines::after {
  transform: translate(-50%, 20%);
}

.title-left {
  text-transform: uppercase;
}
.title-left h2 {
  font-size: 3.2rem;
  line-height: 1;
  font-family: "boldFont";
  color: #2f4b62;
}
.title-left p {
  font-family: "lightFont";
  font-size: 1.4rem;
  margin-bottom: 0;
  color: #3a3a3a;
}
.title-left .colorMain {
  color: #af8d32;
}

.rotate_title {
  justify-content: flex-end;
  padding-top: 150px;
}
@media all and (max-width: 575px) {
  .rotate_title {
    padding-top: 80px;
  }
}
.rotate_title .parent_rotate {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  transform: rotate(270deg) translateX(55%);
  position: absolute;
  right: 10%;
  bottom: 0;
}
.rotate_title .parent_rotate h2 {
  font-size: 1rem;
  line-height: 0.7;
  color: var(--colortwo);
}
@media all and (max-width: 480px) {
  .rotate_title .parent_rotate {
    gap: 10px;
  }
}
@media all and (max-width: 575px) {
  .rotate_title .right-auto {
    left: -40px;
  }
  .rotate_title .parent_rotate:not(.right-auto) {
    right: 0px;
  }
}
.rotate_title.left_title {
  justify-content: flex-start;
}
.rotate_title.left_title .parent_rotate {
  right: auto;
  left: 0px;
}
.rotate_title .lines {
  width: 80px;
}
@media all and (max-width: 575px) {
  .rotate_title .lines {
    width: 32px;
  }
}
.rotate_title .lines::before {
  opacity: 0.4;
}
.rotate_title .lines::after, .rotate_title .lines::before {
  background-color: var(--colortwo);
}
.rotate_title .lines::after {
  transform: translate(-50%, 20%);
}

.swiper-slide {
  justify-content: center;
  align-items: center;
  display: flex;
}

.parentSilder {
  mix-blend-mode: multiply;
  position: relative;
}

.swiper-pagination.pagination_style_one span {
  width: 30px;
  height: 5px;
  border-radius: 0;
  background-color: var(--colorthree);
}
.swiper-pagination.pagination_style_one span.swiper-pagination-bullet-active {
  background-color: var(--colortwo);
}
.swiper-pagination.pagination_style_one span:not(.swiper-pagination-bullet-active) {
  opacity: 0.3;
}

.card_style_one img {
  -o-object-fit: cover;
     object-fit: cover;
}
.card_style_one h2 {
  margin-top: 1.5rem;
  font-size: 1.3rem;
}
.card_style_one p {
  margin-top: 0.3rem;
  color: var(--colorFour);
  font-size: 1.2rem;
}

.container_img_zoom {
  overflow: hidden;
  border-radius: 7px;
}

.imgZoomGroup img,
img.imgZoom,
.container_img_zoom img {
  opacity: 0;
  transform: scale(1.2);
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
}

.imgZoomGroup img.active,
img.imgZoom.active,
.container_img_zoom img.imgZoom.active {
  opacity: 1;
  transform: scale(1);
}

.btn_arrow {
  width: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.btn_arrow img {
  opacity: 0.5;
  transition: all ease-out 0.2s;
}
.btn_arrow img:hover {
  opacity: 1;
}
.btn_arrow.arrow_left {
  left: 0;
}
.btn_arrow.arrow_right {
  right: 0;
}
@media all and (max-width: 1199px) {
  .btn_arrow {
    width: 15px;
  }
}
@media all and (max-width: 1199px) {
  .btn_arrow {
    width: 12px;
  }
}
@media all and (max-width: 1199px) {
  .btn_arrow {
    width: 10px;
  }
}

.btn_style {
  border: none;
  border-radius: 7px;
  color: var(--colorWhite);
  font-weight: 500;
  padding: 1.2rem 2.5rem;
  transition: all ease-in-out 0.2s;
  background-color: var(--colorWhite);
  display: inline-block;
}
.btn_style.btn_one {
  border: 2px solid var(--colorMain);
  background-color: var(--colorMain);
  color: #fff;
}
.btn_style.btn_one:hover {
  background-color: #fff;
  color: var(--colorMain);
}
.btn_style.btn_two {
  color: var(--colorthree);
}
.btn_style.btn_two:hover {
  color: var(--colortwo);
}
.btn_style.btn_three {
  padding: 35px 50px;
  background-color: var(--colorMain);
  border-radius: 0;
  color: var(--colorWhite);
  font-size: 1.5rem;
  font-weight: 300;
  transition: all ease-in-out 0.3s;
}
.btn_style.btn_three:hover {
  background-color: var(--colortwo);
  color: var(--colorMain);
}
@media all and (max-width: 1199px) {
  .btn_style.btn_three {
    padding: 25px 40px;
  }
}
@media all and (max-width: 575px) {
  .btn_style.btn_three {
    padding: 15px 40px;
  }
}
.btn_style.btn_four {
  border-radius: 0;
  position: relative;
  overflow: hidden;
  color: #af8d32;
  min-width: 200px;
  padding: 20px 15px;
  text-align: start;
}
.btn_style.btn_four::before {
  content: "";
  position: absolute;
  left: 15%;
  background-color: rgba(175, 141, 50, 0.3);
  width: 300px;
  height: 300px;
  transform: rotate(45deg);
}
.btn_style.btn_four::after {
  content: "";
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  height: 15px;
  width: 15px;
  background-color: #af8d32;
  -webkit-clip-path: polygon(45% 0, 100% 50%, 45% 100%, 25% 100%, 80% 50%, 25% 0);
          clip-path: polygon(45% 0, 100% 50%, 45% 100%, 25% 100%, 80% 50%, 25% 0);
}
@media all and (max-width: 1199px) {
  .btn_style {
    font-size: 0.8rem;
    padding: 1rem 1.5rem;
  }
}

.arrow-img {
  height: 15px;
  width: 15px;
  background-color: #af8d32;
  -webkit-clip-path: polygon(45% 0, 100% 50%, 45% 100%, 25% 100%, 80% 50%, 25% 0);
          clip-path: polygon(45% 0, 100% 50%, 45% 100%, 25% 100%, 80% 50%, 25% 0);
}
.arrow-img.left {
  transform: rotate(180deg);
}

.form-group {
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.form-group > *:not(button) {
  width: 100%;
}
.form-group button {
  margin-top: 2.5rem;
}

input,
textarea {
  height: 3.5rem;
  border-radius: 7px;
  border: none;
  padding: 15px;
  color: var(--colorMain);
  outline: none;
  transition: all ease-in-out 0.2s;
}
input:hover,
textarea:hover {
  box-shadow: inset 0px 0px 10px 3px rgba(36, 73, 83, 0.1019607843);
}

label {
  color: var(--colorWhite);
  margin-bottom: 0.7rem;
}

.effect_scroll {
  transition: all cubic-bezier(0.18, 0.6, 0.25, 0.69) 0.4s;
}
/* helper class */
.mw-300 {
  max-width: 300px;
}

.text-justify {
  text-align: justify;
}

.p-6 {
  padding: 4rem !important;
}

@media (min-width: 1200px) {
  .p-xl-6 {
    padding: 4rem !important;
  }
}
.p-7 {
  padding: 5rem !important;
}

@media (min-width: 1200px) {
  .p-xl-7 {
    padding: 5rem !important;
  }
}
.cover_img {
  -o-object-fit: cover;
     object-fit: cover;
}

.p_relative {
  position: relative;
}

.p_absolute {
  position: absolute;
}

.z-not {
  z-index: -1;
}

.z-0 {
  z-index: 0;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.d-grid {
  display: grid;
}

.colorMain {
  color: var(--colorMain);
}

.colortwo {
  color: var(--colortwo);
}

.colorthree {
  color: var(--colorthree);
}

.colorWhite {
  color: var(--colorWhite);
}

.l-height-1 {
  line-height: 1;
}

/*========== header ==========*/
.top_header,
nav {
  padding: 40px 0;
}
@media all and (max-width: 991px) {
  .top_header,
  nav {
    padding: 25px 0;
  }
}

header {
  position: relative;
}
header .top_header {
  background-image: url("../img/dots.png");
  position: relative;
  color: var(--colorWhite);
  background-color: transparent;
  overflow: hidden;
}
@media all and (max-width: 575px) {
  header .top_header {
    padding: 15px 0;
  }
}
header .top_header .svg_top_header {
  position: absolute;
  top: -100%;
  left: 16%;
}
header .top_header .svg_top_header img {
  opacity: 0.1;
  max-width: 600px;
}
header .top_header .content_top_header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  justify-content: space-between;
  grid-gap: 25px;
  position: relative;
}
@media all and (max-width: 991px) {
  header .top_header .content_top_header {
    align-items: center;
  }
}
@media all and (max-width: 400px) {
  header .top_header .content_top_header {
    grid-template-columns: repeat(3, auto);
    grid-template-columns: auto auto 1fr;
  }
  header .top_header .content_top_header .singl_item_none {
    display: none !important;
  }
}
@media all and (max-width: 575px) {
  header .top_header .content_top_header {
    grid-gap: 10px;
    display: flex;
  }
}
header .top_header .content_top_header .lines_header {
  display: flex;
  justify-content: center;
  height: 100%;
}
header .top_header .content_top_header .lines_header div {
  height: 100%;
  width: 1.7px;
  background-color: rgba(200, 205, 209, 0.737254902);
}
header .top_header .content_top_header .single .content-text {
  -moz-column-gap: 15px;
       column-gap: 15px;
  row-gap: 10px;
  display: flex;
}
@media all and (max-width: 900px) {
  header .top_header .content_top_header .single .content-text {
    flex-direction: column;
  }
}
@media all and (min-width: 1024px) {
  header .top_header .content_top_header .single .content-text {
    display: grid;
    grid-template-columns: auto 1fr auto;
  }
}
@media all and (max-width: 1401px) {
  header .top_header .content_top_header .single .content-text {
    flex-wrap: wrap;
  }
}
@media all and (max-width: 1200px) {
  header .top_header .content_top_header .single .content-text .text p.text-pp {
    font-size: 1.1rem;
    margin-top: 4px;
  }
}
@media all and (min-width: 1024px) {
  header .top_header .content_top_header .single .content-text .text p.text-pp {
    font-size: 20px;
  }
}
header .top_header .content_top_header .single a {
  transition: all ease-in-out 0.3s;
}
@media all and (min-width: 1024px) {
  header .top_header .content_top_header .single a {
    font-size: 16px;
  }
}
header .top_header .content_top_header .single a:hover {
  color: rgba(175, 141, 50, 0.5);
}
header .top_header .content_top_header .singl_item {
  display: flex;
  gap: 1rem;
  position: relative;
}
header .top_header .content_top_header .singl_item .icon {
  height: 34px;
  margin-bottom: 2px;
}
header .top_header .content_top_header .singl_item .icon svg {
  height: 100%;
}
header .top_header .content_top_header .singl_item h2 {
  text-transform: uppercase;
  font-size: 0.85rem;
  justify-content: start;
  color: #333;
  font-weight: 400;
}
@media all and (max-width: 575px) {
  header .top_header .content_top_header .singl_item h2 {
    font-size: 1rem;
  }
}
@media all and (min-width: 1024px) {
  header .top_header .content_top_header .singl_item h2 {
    font-size: 15px;
  }
}
header .top_header .content_top_header .singl_item p {
  text-transform: capitalize;
  white-space: inherit;
  color: var(--colorMain);
  margin-bottom: 0px;
  font-size: 1.3rem;
}
@media all and (max-width: 575px) {
  header .top_header .content_top_header .singl_item p {
    font-size: 0.8rem;
    text-transform: lowercase;
  }
}
header .top_header .content_top_header .singl_item .lines {
  position: absolute;
  left: calc(100% + var(--gapTopHeader) / 2);
}
header .top_header .content_top_header .singl_item .lines::after, header .top_header .content_top_header .singl_item .lines::before {
  background-color: #d3dae0;
}
header .top_header .content_top_header .singl_item .lines::before {
  opacity: 0.7;
}
header .top_header .content_top_header .singl_item .btn_style {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media all and (max-width: 420px) {
  header .top_header .content_top_header .singl_item .btn_style {
    font-size: 0.7rem;
  }
}
@media all and (max-width: 991px) {
  header .top_header .content_top_header .singl_item {
    height: -moz-max-content;
    height: max-content;
  }
  header .top_header .content_top_header .singl_item .icon {
    max-height: 20px;
    display: none;
  }
}
header nav {
  background-color: rgba(24, 28, 33, 0.5) !important;
  border-bottom: 2px solid rgba(175, 141, 50, 0.5);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 0;
}
header nav .menu_links li a {
  color: #fff;
  font-size: 1.2rem;
}
header nav .menu_links {
  position: relative;
}
header nav .menu_links li:not(:last-child) {
  padding: 55px 15px;
}
@media all and (max-width: 1399.9px) {
  header nav .menu_links li:not(:last-child) {
    padding: 55px 0px;
  }
}
@media all and (max-width: 1199px) {
  header nav .menu_links li:not(:last-child) {
    padding: 35px 0px;
  }
}
header nav .menu_links li:not(:last-child):hover a {
  color: #af8d32;
}
header nav .menu_links li.active a {
  color: #af8d32;
}
header nav .menu_links .active-link {
  transition: all ease-in-out 0.5s;
  position: absolute;
  top: 0;
  left: 0;
  height: 7px;
  width: 40px;
  background-color: #af8d32;
}

nav {
  background-color: #fff;
  transition: top ease-in-out 0.7s;
  z-index: 999;
}
nav .d-grid {
  grid-template-columns: auto 1fr;
}
nav .logo {
  width: 270px;
}
@media all and (max-width: 1199px) {
  nav .logo {
    width: 200px;
  }
}
@media all and (max-width: 991px) {
  nav .logo {
    width: 150px;
  }
}
nav .links {
  -moz-column-gap: 50px;
       column-gap: 50px;
}
@media all and (max-width: 991px) {
  nav .links {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}

body > nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: all ease-out 0.4s;
  transform: translateY(-100%);
  padding: 25px 0;
  background-color: transparent !important;
}
body > nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(24, 28, 33, 0.6039215686);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1019607843);
  -webkit-backdrop-filter: blur(8.5px);
          backdrop-filter: blur(8.5px);
}
body > nav .menu_links li a {
  color: #fff !important;
}
body > nav .menu_links li a.active {
  color: var(--colortwo) !important;
}
body > nav .logo svg {
  width: 110px;
}
@media all and (max-width: 991px) {
  body > nav .logo svg {
    width: 80px;
  }
}
body > nav.active {
  transform: translateY(-1%);
}

.icon_list {
  /* ELEVEN */
}
.icon_list .hamburger .line {
  width: 45px;
  height: 5px;
  background-color: var(--colorMain);
  display: block;
  margin: 6px auto;
  transition: all 0.3s ease-in-out;
}
@media all and (max-width: 991px) {
  .icon_list .hamburger .line {
    width: 35px;
    height: 4px;
    margin: 5px auto;
  }
}
.icon_list #hamburger-11 {
  transition: all 0.3s ease-in-out;
}
@keyframes smallbig {
  0%, 100% {
    transform: scale(1);
  }
  30% {
    transform: scale(0.5);
  }
}
.icon_list .hamburger:hover {
  cursor: pointer;
}
.icon_list.active #hamburger-11,
.icon_list .act_mobile #hamburger-11 {
  animation: smallbig 0.6s forwards;
}
.icon_list.active #hamburger-11 .line:nth-child(1),
.icon_list.active #hamburger-11 .line:nth-child(2),
.icon_list.active #hamburger-11 .line:nth-child(3),
.icon_list .act_mobile #hamburger-11 .line:nth-child(1),
.icon_list .act_mobile #hamburger-11 .line:nth-child(2),
.icon_list .act_mobile #hamburger-11 .line:nth-child(3) {
  transition-delay: 0.2s;
  background-color: var(--colortwo);
}
.icon_list.active #hamburger-11 .line:nth-child(2),
.icon_list .act_mobile #hamburger-11 .line:nth-child(2) {
  opacity: 0;
}
.icon_list.active #hamburger-11 .line:nth-child(1),
.icon_list .act_mobile #hamburger-11 .line:nth-child(1) {
  transform: translateY(13px) rotate(45deg);
}
.icon_list.active #hamburger-11 .line:nth-child(3),
.icon_list .act_mobile #hamburger-11 .line:nth-child(3) {
  transform: translateY(-13px) rotate(-45deg);
}
.icon_list.active header nav .icon_list #hamburger-11 .line:nth-child(1),
.icon_list .act_mobile header nav .icon_list #hamburger-11 .line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.icon_list.active #hamburger-11 .line:nth-child(3),
.icon_list .act_mobile #hamburger-11 .line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media all and (max-width: 991px) {
  .icon_list.active header nav .icon_list #hamburger-11 .line:nth-child(1),
  .icon_list .act_mobile header nav .icon_list #hamburger-11 .line:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }
  .icon_list.active #hamburger-11 .line:nth-child(3),
  .icon_list .act_mobile #hamburger-11 .line:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }
}

.social {
  position: absolute;
  top: 55%;
  right: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 1;
}
.social .content {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg) translateY(550%);
  position: absolute;
  left: -20px;
}
.social .content p {
  color: var(--colorWhite);
  margin-bottom: 0;
  transform: rotate(180deg);
  font-size: 0.7rem;
}
.social .content .line_border {
  width: 40px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.431372549);
  margin: 0 20px;
}
.social .content .icon_social {
  display: flex;
  gap: 15px;
  padding-left: 6px;
}
.social .content .icon_social .singl_icon svg {
  height: 16px;
  transform: rotate(270deg);
}
.social .content .icon_social .singl_icon svg * {
  fill: #e3e3e3;
}
.social .content .icon_social .singl_icon:first-child {
  margin-right: 5px;
}

.crad_news .titleCard,
.title_news .titleCard {
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
  font-size: 1.3rem;
}
.crad_news .titleCard span,
.title_news .titleCard span {
  color: var(--colortwo);
  padding-right: 10px;
}

.crad_news {
  width: 100%;
  /* IMAGE ICON BOX */
}
.crad_news .image-icon-box {
  border: 2px solid transparent;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  transition: all ease-in-out 0.3s;
}
@media all and (max-width: 767px) {
  .crad_news .image-icon-box {
    padding-bottom: 70px;
  }
}
.crad_news .image-icon-box:hover {
  border-color: #af8d32;
}
.crad_news .image-icon-box.is-inview .content-image img {
  opacity: 1;
  transform: scale(1);
  min-height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
.crad_news .image-icon-box:hover .content-box .expand {
  max-height: 190px;
  text-align: center;
  margin-top: 20px;
}
.crad_news .image-icon-box * {
  transition: 0.4s ease-in-out;
}
.crad_news .image-icon-box .icon {
  width: 100px;
  height: 100px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #94ffc4;
  position: absolute;
  left: 30px;
  top: 30px;
  z-index: 1;
}
.crad_news .image-icon-box .icon img {
  height: 50px;
}
.crad_news .image-icon-box .content-image {
  width: 100%;
  display: block;
  margin: 0;
  overflow: hidden;
}
.crad_news .image-icon-box .content-image img {
  width: 100%;
  display: block;
  opacity: 0;
  transform: scale(1.2);
  transition-duration: 0.7s;
  -webkit-transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
}
.crad_news .image-icon-box .content-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  padding: 30px;
  background: #fff;
  background-color: rgb(252, 251, 249);
}
.crad_news .image-icon-box .content-box .expand {
  width: 100%;
  max-height: 0;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
.crad_news .image-icon-box .content-box b {
  width: 100%;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
}
.crad_news .image-icon-box .content-box h4 {
  width: 100%;
  display: block;
  font-size: 34px;
  font-family: "Cinzel", serif;
  margin-bottom: 0;
}
.crad_news .image-icon-box .content-box p {
  width: 100%;
  max-width: 400px;
  margin: auto;
  margin-top: 0;
  margin-bottom: 0;
  text-align: justify;
}
.crad_news .image-icon-box .content-box a {
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
  margin: 0 auto;
  font-weight: 500;
  font-size: 15px;
}
.crad_news .image-icon-box .content-box a:hover {
  text-decoration: none;
}
.crad_news .image-icon-box .content-box a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 0;
  transition: width 0s ease, background 0.25s ease;
}
.crad_news .image-icon-box .content-box a:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 4px;
  width: 0;
  background: #94ffc4;
  transition: width 0.25s ease;
}
.crad_news .image-icon-box .content-box a:hover:before {
  width: 50%;
  background: #94ffc4;
  transition: width 0.25s ease;
}
.crad_news .image-icon-box .content-box a:hover:after {
  width: 100%;
  background: transparent;
  transition: all 0s ease;
}

.crad_news_top {
  background-color: var(--colorWhite);
}
.crad_news_top img {
  height: 33vh;
  min-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.crad_news_top .content-box {
  padding: 2rem;
}
.crad_news_top .content-box p {
  text-align: justify;
  margin-bottom: 0;
}

@media all and (max-width: 991.9px) {
  nav .menu_links {
    display: none !important;
  }
}

.menu_links {
  text-transform: uppercase;
}
.menu_links li a {
  transition: all ease-in-out 0.2s;
  padding: 5px 0;
  font-size: 1rem;
}
.menu_links li a:hover, .menu_links li a.active {
  color: var(--colortwo);
}
@media all and (max-width: 991px) {
  .menu_links li a {
    padding: 5px 15px;
  }
}
@media all and (max-width: 767px) {
  .menu_links li a {
    padding: 5px 10px;
  }
}

.overlay_menu {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
}
.overlay_menu.active {
  cursor: pointer;
  display: block;
}

.other_menu {
  display: flex;
  flex-wrap: wrap;
  z-index: 999999;
  position: fixed;
  left: 0;
  top: 0;
  background-color: #181c21;
  height: 100vh;
  width: 450px;
  max-width: 100%;
  transition: ease-out all 0.5s;
  align-content: space-around;
  transform: translateX(-100%);
}
.other_menu.active {
  transform: translateX(0%);
}
.other_menu .icon_list {
  width: auto;
  position: absolute;
  top: 27px;
  right: 35px;
}
.other_menu .icon_list span {
  background-color: var(--colorWhite) !important;
  opacity: 0.5;
  width: 25px !important;
  height: 2px !important;
  margin: 6.5px auto !important;
}
.other_menu .logo .st0logo {
  fill: #fff;
}
.other_menu .logo svg {
  width: 150px;
  margin-bottom: 1.2rem;
}
.other_menu > * {
  width: 100%;
}
.other_menu span,
.other_menu a {
  font-weight: 300;
  font-size: 1.4rem;
}
.other_menu a,
.other_menu p {
  font-size: 0.9rem;
  line-height: 1.3;
}
.other_menu a {
  color: #c8d2d4 !important;
}
.other_menu ul {
  flex-direction: column;
  padding-left: 0;
}
.other_menu ul li:not(:last-child) {
  margin-bottom: 1rem;
}
@media all and (max-width: 480px) {
  .other_menu ul li:not(:last-child) {
    margin-bottom: 0.3rem;
  }
}
.other_menu ul li a {
  padding-left: 0;
  font-size: 1.4rem;
  padding-right: 0;
  font-weight: 400;
  color: #fff !important;
}
.other_menu .Quick_links span {
  margin-bottom: 0.7rem;
}
.other_menu .Quick_links a {
  display: block;
  margin-top: 5px;
  transition: all ease-out 0.2s;
}
.other_menu .Quick_links a:hover {
  color: #fff !important;
}
.other_menu span,
.other_menu p,
.other_menu a {
  color: #91a4a9;
}
.other_menu .GetInTouch p {
  margin-top: 10px;
}
.other_menu .horizontal_line {
  align-self: flex-end;
}
.other_menu .horizontal_line::after, .other_menu .horizontal_line::before {
  background-color: #91a4a9;
}

/*========== footer ==========*/
footer {
  background-color: #181c21;
  padding: 70px 0;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 300;
}
footer .singl_card {
  position: relative;
}
@media all and (min-width: 1200px) {
  footer .singl_card .single_ {
    width: -moz-max-content;
    width: max-content;
    margin: auto;
  }
}
footer .singl_card .single_.border-x::before, footer .singl_card .single_.border-x::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: rgba(136, 148, 164, 0.3058823529);
  left: 0;
  top: 0;
}
footer .singl_card .single_.border-x::after {
  left: auto;
  right: 0;
}
@media all and (max-width: 1199px) {
  footer .singl_card .single_.border-x::after {
    display: none;
  }
}
footer .singl_card h4 {
  color: #af8d32;
  font-weight: 300;
  font-size: 1.8rem;
  text-transform: uppercase;
  line-height: 1;
}
footer .singl_card h3 {
  color: #8894a4;
  font-weight: 300;
  font-size: 1.1rem;
  margin-bottom: 3px;
}
footer .singl_card p {
  max-width: 300px;
}
footer .singl_card svg {
  width: 22px;
  height: 22px;
  fill: #485059;
}
footer .copyright {
  font-size: 0.8rem;
  text-transform: capitalize;
}
footer .copyright a {
  text-transform: capitalize;
  color: #fff;
}

.banner-top {
  max-height: 500px;
  border-bottom: 3px solid #af8d32;
}
.banner-top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#owner_section {
  color: #2f4b62;
}
#owner_section .card_owner img {
  border-radius: 7px;
  max-height: 480px;
}
#owner_section .card_owner .text_card p {
  font-size: 1.8rem;
  font-weight: 300;
}
@media all and (max-width: 767px) {
  #owner_section .card_owner .text_card p {
    font-size: 16px;
  }
}
#owner_section .card_owner .text_card span {
  font-size: 5.4rem;
  font-family: "Signed";
  white-space: pre;
}
@media all and (max-width: 767px) {
  #owner_section .card_owner .text_card {
    margin-bottom: 3rem;
  }
}
#owner_section .description {
  max-height: 70%;
}
#owner_section .description h2 {
  font-size: 1.8rem;
  font-weight: 900;
}
#owner_section .description p {
  font-size: 1.1rem;
}

#exhibitions h1 {
  font-size: 25px;
  padding: 10px 15px;
  border-left: 2px solid #f6c33b;
  margin-bottom: 30px;
}

.exhibitions {
  overflow: hidden;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
@media all and (max-width: 991px) {
  .exhibitions {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width: 767px) {
  .exhibitions {
    grid-template-columns: 1fr;
  }
}
.exhibitions .exhibition-exh {
  width: 100%;
  max-width: 400px;
  margin: auto;
  transition: all 0.2s ease;
  overflow: hidden;
  border: 3px solid transparent;
}
.exhibitions .exhibition-exh .exh-img {
  width: 99.9%;
  position: relative;
  overflow: hidden;
}
.exhibitions .exhibition-exh .exh-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.exhibitions .exhibition-exh .exh-img:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: all 0.2s ease;
}
.exhibitions .exhibition-exh:hover .exh-img {
  position: relative;
}
.exhibitions .exhibition-exh:hover .exh-img:after {
  opacity: 1;
}
.exhibitions .exhibition-exh:hover {
  border: 3px solid #d3a837;
  box-shadow: 0 0 18px 0px rgba(0, 0, 0, 0.3411764706);
}
.exhibitions .exhibition-exh:hover,
.exhibitions .exhibition-exh:hover * {
  color: #d3a837;
}
.exhibitions .exhibition-exh:hover .info {
  background: #fff;
}
.exhibitions .exhibition-exh .info {
  padding: 60px 20px 20px 20px;
  background: #f5f5f5;
  -webkit-clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 100%);
  margin-top: -50px;
}
.exhibitions .exhibition-exh .info,
.exhibitions .exhibition-exh .info * {
  transition: all 0.2s ease;
}
.exhibitions .exhibition-exh .info .title {
  font-size: 20px;
  margin-bottom: 25px;
  width: 100%;
  height: 21px;
  display: block;
  overflow: hidden;
}
.exhibitions .exhibition-exh .info .para {
  font-size: 14px;
  color: #000;
  text-align: justify;
}
.exhibitions .exhibition-exh .info .location,
.exhibitions .exhibition-exh .info .date {
  color: #414042;
  margin-bottom: 24px;
}
.exhibitions .exhibition-exh .info .location i,
.exhibitions .exhibition-exh .info .date i {
  float: left;
}
.exhibitions .exhibition-exh .info .location i {
  color: #221f1f;
  font-size: 24px;
  padding-right: 10px;
  padding-left: 1px;
}
.exhibitions .exhibition-exh .info .date {
  margin-bottom: 0;
}
.exhibitions .exhibition-exh .info .date i {
  color: #000;
  font-size: 17px;
  padding-right: 10px;
  padding-left: 1px;
}

.popup_ .videoo {
  height: auto;
  width: 800px;
  max-width: 90%;
  height: 500px;
  max-height: 90vh;
  margin: auto;
  display: block;
  border: none;
}
.popup_ .popup-btn,
.popup_ .close-btn {
  display: block;
  cursor: pointer;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.popup_ .popup-btn:hover {
  color: white;
  box-shadow: 0 0 10px 0 #f7b73a;
}
.popup_ .video-popup {
  display: none;
  width: 100%;
  height: 100vh;
  margin: auto;
  position: fixed;
  top: 0;
  box-shadow: 10px 10px 10px 10px black;
  z-index: 100000000000000000000;
  background-color: rgba(0, 0, 0, 0.756);
  overflow: hidden;
}
.popup_ .popup-bg {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.popup_ .popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  max-height: 80%;
  max-width: 90%;
  z-index: 550050550505055040;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup_ .popup-content img {
  width: auto;
  height: 80vh;
}
.popup_ .popup-title {
  padding: 30px;
  margin: 0 auto;
  color: red;
  text-transform: uppercase;
}
.popup_ .popup-content > iframe {
  width: 100% !important;
  height: 100% !important;
}

.card .card-img {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}
.card .card-img button {
  width: 0;
  height: 0;
  padding: 0;
  border: none;
}
.card .card-img .card-img-top {
  position: absolute;
  left: 0px;
  top: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  transform: translateY(-50%);
  height: 140%;
}
.card .card-img a {
  border-radius: 50%;
  position: relative;
  box-shadow: 0px 0px 25px 3px rgba(182, 162, 212, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.card .card-img a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 1;
  border-radius: 50%;
  border: 1px solid rgb(182, 162, 212);
  background: rgba(198, 16, 0, 0);
}
.card .card-img:hover a::before {
  width: 150%;
  height: 150%;
  animation-delay: 0s;
  animation: pulsate1 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
}
.card .card-body {
  width: 100%;
  height: 73px;
  letter-spacing: 0.5px;
  line-height: 1.3;
  color: #fff;
  margin-top: 22px;
}
.card .card-body .card-title {
  height: 50px;
  width: 100%;
  text-transform: uppercase;
  font-size: 21px;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 5px;
}
.card .card-body .card-text {
  font-size: 13px;
  overflow: hidden;
  height: 35px;
  margin: 0;
  font-family: "Montserrat", serif;
  font-weight: 200;
}

.video_parent {
  z-index: 10;
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video_parent .video {
  border-radius: 50%;
  position: relative;
  box-shadow: 0px 0px 25px 3px rgba(182, 162, 212, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.video_parent .video:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 1;
  border-radius: 50%;
  border: 1px solid rgb(182, 162, 212);
  background: rgba(198, 16, 0, 0);
}
.video_parent:hover .video::before {
  width: 150%;
  height: 150%;
  animation-delay: 0s;
  animation: pulsate1 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
}
.video_parent .play {
  cursor: pointer;
  height: 100px !important;
  width: 100px !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

@keyframes pulsate1 {
  0% {
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    transform: scale(1);
    opacity: 0;
    box-shadow: none;
  }
}
/*========== media ==========*/
@media all and (max-width: 1199px) {
  html {
    font-size: 14px;
  }
}
@media all and (max-width: 991px) {
  html {
    font-size: 13px;
  }
  :root {
    --gapTopHeader: 20px;
  }
  .container,
  .container-sm {
    max-width: calc(100% - 5rem) !important;
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }
}
@media all and (max-width: 767px) {
  html {
    font-size: 11px;
  }
}
@media all and (max-width: 575px) {
  .container,
  .container-sm {
    max-width: calc(100% - 3rem) !important;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
}/*# sourceMappingURL=global.css.map */