@font-face {
  font-family: 'CircularStd';
  src: url('/fonts/CircularStd/CircularStd-Bold.eot');
  src: url('/fonts/CircularStd/CircularStd-Bold.eot?#iefix') format('embedded-opentype'), url('/fonts/CircularStd/CircularStd-Bold.svg#CircularStd-Bold') format('svg'), url('/fonts/CircularStd/CircularStd-Bold.woff') format('woff');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'CircularStd';
  src: url('/fonts/CircularStd/CircularStd-Medium.eot');
  src: url('/fonts/CircularStd/CircularStd-Medium.eot?#iefix') format('embedded-opentype'), url('/fonts/CircularStd/CircularStd-Medium.svg#CircularStd-Medium') format('svg'), url('/fonts/CircularStd/CircularStd-Medium.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'CircularStd';
  src: url('/fonts/CircularStd/CircularStd-Book.eot');
  src: url('/fonts/CircularStd/CircularStd-Book.eot?#iefix') format('embedded-opentype'), url('/fonts/CircularStd/CircularStd-Book.svg#CircularStd-Book') format('svg'), url('/fonts/CircularStd/CircularStd-Book.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "CircularStd", sans-serif;
  overflow-x: hidden;
}
#content {
  min-height: calc(100vh - 150px);
}
.background-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.header {
  position: fixed;
  left: 0;
  top: 0;
  height: 100px;
  width: 100%;
  background-color: transparent;
  color: black;
  display: flex;
  z-index: 150;
  transition: all 0.2s ease-out;
}
.header.dummy {
  position: relative;
}
.header.dummy.transparent {
  display: none;
}
.header .header-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: white;
  top: 0;
  left: 0;
  transition: all 0.2s ease-out;
  opacity: 1;
}
.header .header-logo {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 104px;
  height: 55px;
  margin: auto 50px;
  background-image: url('/files/layouts/logo.svg');
  left: 0px;
}

.header #fixed-menu {
    position: absolute;
    margin: 0px;
    top: 51px;
    right: 15px;
}

.header #fixed-menu a{
  transition: .5s  ease-in-out all;
}

.header #fixed-menu a:hover{
  opacity: 0.5;
}

.header #fixed-menu .fixed-menu-option{
    display: block;
    float: left;
    position: relative;
    margin: 0px;
    margin-right: 45px;
    font-size: 20px;
}

.header .menu-button {
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.8);
  height: 50px;
  width: 50px;
  float: right;
  margin: auto;
  margin-right: 50px;
  cursor: pointer;
  position: relative;
  transition: all 0.4s ease-out;
  display:none;
}
.header .menu-button:hover .menu-button-bar.top,
.header .menu-button:hover .menu-button-bar.bottom,
.header .menu-button:hover .menu-button-bar.middle {
  top: calc(50% - 1px);
}
.header .menu-button .menu-button-bar {
  position: absolute;
  height: 2px;
  width: 60%;
  left: 20%;
  background-color: black;
  border-radius: 2px;
  transition: all 0.2s ease-out;
}
.header .menu-button .menu-button-bar.top {
  top: calc(35% - 1px);
}
.header .menu-button .menu-button-bar.middle {
  top: calc(50% - 1px);
}
.header .menu-button .menu-button-bar.bottom {
  top: calc(65% - 1px);
}
.header.transparent:not(.solid) {
  color: white;
}
.header.transparent:not(.solid) .header-background {
  opacity: 0;
}
.header.transparent:not(.solid) .header-logo {
  background-image: url('/files/layouts/logo-white.svg');
}
.header.transparent:not(.solid) .menu-button {
  border-color: rgba(255, 255, 255, 0.8);
}
.header.transparent:not(.solid) .menu-button .menu-button-bar {
  background-color: white;
}
.header.solid .menu-button {
  border-color: black;
}
.header.menu-opened,
.header.menu-opened.transparent,
.header.menu-opened.transparent.solid,
.header.menu-opened.solid {
  color: black;
}
.header.menu-opened .header-logo,
.header.menu-opened.transparent .header-logo,
.header.menu-opened.transparent.solid .header-logo,
.header.menu-opened.solid .header-logo {
  background-image: url('/files/layouts/logo.svg');
}
.header.menu-opened .menu-button .menu-button-bar,
.header.menu-opened.transparent .menu-button .menu-button-bar,
.header.menu-opened.transparent.solid .menu-button .menu-button-bar,
.header.menu-opened.solid .menu-button .menu-button-bar {
  background-color: black;
}
.header.menu-opened .menu-button .menu-button-bar.top,
.header.menu-opened.transparent .menu-button .menu-button-bar.top,
.header.menu-opened.transparent.solid .menu-button .menu-button-bar.top,
.header.menu-opened.solid .menu-button .menu-button-bar.top,
.header.menu-opened .menu-button .menu-button-bar.bottom,
.header.menu-opened.transparent .menu-button .menu-button-bar.bottom,
.header.menu-opened.transparent.solid .menu-button .menu-button-bar.bottom,
.header.menu-opened.solid .menu-button .menu-button-bar.bottom,
.header.menu-opened .menu-button .menu-button-bar.middle,
.header.menu-opened.transparent .menu-button .menu-button-bar.middle,
.header.menu-opened.transparent.solid .menu-button .menu-button-bar.middle,
.header.menu-opened.solid .menu-button .menu-button-bar.middle {
  top: calc(50% - 1px);
}
.header.menu-opened .menu-button .menu-button-bar.top,
.header.menu-opened.transparent .menu-button .menu-button-bar.top,
.header.menu-opened.transparent.solid .menu-button .menu-button-bar.top,
.header.menu-opened.solid .menu-button .menu-button-bar.top,
.header.menu-opened .menu-button .menu-button-bar.bottom,
.header.menu-opened.transparent .menu-button .menu-button-bar.bottom,
.header.menu-opened.transparent.solid .menu-button .menu-button-bar.bottom,
.header.menu-opened.solid .menu-button .menu-button-bar.bottom {
  transform: rotate(45deg);
  transform-origin: center;
}
.header.menu-opened .menu-button .menu-button-bar.middle,
.header.menu-opened.transparent .menu-button .menu-button-bar.middle,
.header.menu-opened.transparent.solid .menu-button .menu-button-bar.middle,
.header.menu-opened.solid .menu-button .menu-button-bar.middle {
  transform: rotate(-45deg);
  transform-origin: center;
}
.menu {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  justify-content: center;
  display: flex;
  background-color: white;
  transition: all 0.4s ease-out;
  transform: scale(0);
  transform-origin: calc(100% - 70px) 40px;
}
.menu.show {
  transform: scale(1);
}
.menu.show .menu-option {
  animation: animate-menu-option 1.3s ease-out;
}
.menu.show .instagram-icon {
  animation: animate-menu-ig 1.3s ease-out;
}
.menu .menu-options {
  position: relative;
  height: 100px;
  width: 85%;
  margin: auto;
  line-height: 100px;
  font-weight: bold;
  font-size: 50px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.menu .menu-options .menu-option {
  display: block;
  position: relative;
  width: 30%;
  margin: auto;
  height: 100%;
  text-align: center;
  background: linear-gradient(to right, #67666b, #67666b 50%, black 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: 100%;
  transition: all 0.6s ease;
}
.menu .menu-options .menu-option:hover {
  background-position: 0 100%;
}
.menu .instagram-icon {
  position: absolute;
  bottom: 150px;
  right: 100px;
  height: 26px;
  width: 26px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(/files/layouts/instagram.svg);
  transition: all 0.2s ease;
}
.menu .instagram-icon:hover {
  transform: scale(1.2);
}
@keyframes animate-menu-option {
  0% {
    top: 150%;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@keyframes animate-menu-ig {
  0% {
    bottom: -100%;
    opacity: 0;
  }
  100% {
    bottom: 50px;
    opacity: 1;
  }
}
.footer {
  position: relative;
  width: 100%;
  height: auto;
  background-color: black;
  color: white;
}
.footer .footer-contents {
  position: relative;
  display: flex;
  justify-content: space-around;
  height: auto;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}
.footer .footer-contents .footer-logo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  height: 70px;
  width: 131px;
  margin: auto;
  margin-left: 50px;
}
.footer .footer-contents .footer-data {
  position: relative;
  width: 700px;
  text-align: right;
  margin: auto;
  margin-right: 50px;
}
.footer .footer-contents .footer-data .footer-detail {
  position: relative;
  width: 100%;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
}
.footer .footer-contents .footer-data .footer-detail.icon {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: -20px auto;
  width: 20px;
  height: 20px;
  float: right;
  cursor: pointer;
}
.footer .footer-contents .footer-data .footer-detail.icon:hover {
  opacity: 0.7;
}
.footer .copy-right {
  position: relative;
  width: 100%;
  height: 30px;
  line-height: 30px;
  font-size: 12px;
  text-align: center;
}
.svg-icon {
  max-width: 100%;
  max-height: 100%;
}
#alertMessageLogo {
  width: 80%;
}
.mobileElement {
  display: none;
}
.selectize-input.customCss {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  overflow-y: auto;
  height: 100%;
  line-height: 37px;
  margin-top: 3px;
  background-color: transparent;
}
.slick-dots {
  /* z-index: 1000 !important; */
  display: none !important;
}
.slick-dots li button:before {
  opacity: 0.75 !important;
  color: white !important;
  font-size: 15px !important;
}
.slick-dots li.slick-active button:before {
  opacity: 1 !important;
  color: white !important;
}
.slick-prev,
.slick-next,
.slick-next:before {
  z-index: 0 !important;
  display: none;
}
a {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  html {
    width: 100%;
    height: auto;
    min-height: 100%;
    position: relative;
  }
  .mobileElement {
    display: block;
  }
  .desktopElement {
    display: none !important;
  }
  #content {
    min-width: 0px;
    height: fit-content;
    overflow: hidden;
    width: 100%;
    font-size: 13px;
  }
  #loaderDiv {
    position: relative;
    margin: 0px auto;
    top: calc(50% - 20px);
    width: 40px;
  }
  .responsiveElement {
    min-width: 0px !important;
  }
  .header {
    height: 75px;
  }
  .header .header-logo {
    margin: auto;
    margin-left: 5%;
  }
  .header .menu-button {
    margin-right: 5%;
    height: 40px;
    width: 40px;
  }
  .menu .menu-options {
    flex-direction: column;
    width: 100%;
    text-align: center;
    height: 40%;
    font-size: 40px;
  }
  .menu .menu-options .menu-option {
    width: 100%;
  }
  .menu .instagram-icon {
    right: calc(50% - 13px);
    height: 30px;
    width: 29px;
  }
  .footer .footer-contents {
    display: block;
    padding-bottom: 20px;
  }
  .footer .footer-contents .footer-logo {
    width: 50%;
    margin: auto;
  }
  .footer .footer-contents .footer-data {
    width: 90%;
    text-align: center;
    margin: auto;
    margin-top: 20px;
  }
  .footer .footer-contents .footer-data .footer-detail {
    width: 100%;
    margin: auto;
    height: auto;
    font-size: 15px;
  }
  .footer .footer-contents .footer-data .footer-detail.icon {
    float: none;
    display: block;
  }
  .footer .copy-right {
    font-size: 11px;
  }

  .footer .footer-contents .footer-data .footer-detail.icon{
    margin: 10px auto;
  }

  .header .menu-button {
    display:block;
  }
  .header #fixed-menu {
    display:none;
  }
}
