@charset "UTF-8";
:root {
  --scrollbar-thumb-rgb: 219, 218, 222;
}

html {
  scroll-behavior: smooth;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

a,
a:hover {
  text-decoration: none;
}

.icon {
  vertical-align: middle;
}
.icon svg {
  height: 1em;
  width: auto;
}

.btn-dvc,
.btn-outline-dvc {
  --btn-main-color: #f16e1d;
  --btn-hover-color: #d46621;
  --btn-active-color: #be591a;
  --btn-main-text-color: #fff;
  --btn-main-border-color: #c55d1d;
  --btn-shadow: 0 0 0 0.2rem rgba(230, 123, 57, 0.2);
  --outline-btn-shadow: 0 0 0 0.2rem rgba(255, 133, 57, 0.2);
}

.btn-dvc {
  background-color: var(--btn-main-color);
  border-color: var(--btn-main-color);
  color: var(--btn-main-text-color);
}
.btn-dvc:hover {
  background-color: var(--btn-hover-color);
  border-color: var(--btn-main-border-color);
  color: var(--btn-main-text-color);
}
.btn-dvc:focus,
.btn-dvc .focus {
  background-color: var(--btn-hover-color);
  border-color: var(--btn-main-border-color);
  color: var(--btn-main-text-color);
  box-shadow: var(--btn-shadow);
}
.btn-dvc.disabled, .btn-dvc:disabled {
  background-color: var(--btn-main-color);
  border-color: var(--btn-main-color);
  color: var(--btn-main-text-color);
}
.btn-dvc:not(:disabled):not(.disabled):active, .btn-dvc:not(:disabled):not(.disabled).active {
  background-color: var(--btn-main-border-color);
  border-color: var(--btn-active-color);
  color: var(--btn-main-text-color);
}
.btn-dvc:not(:disabled):not(.disabled):active:focus, .btn-dvc:not(:disabled):not(.disabled).active:focus {
  box-shadow: var(--btn-shadow);
}

.btn-outline-dvc {
  color: var(--btn-main-color);
  border-color: var(--btn-main-color);
}
.btn-outline-dvc:hover {
  color: var(--btn-main-text-color);
  background-color: var(--btn-main-color);
  border-color: var(--btn-main-color);
}
.btn-outline-dvc:focus, .btn-outline-dvc.focus {
  box-shadow: var(--outline-btn-shadow);
}
.btn-outline-dvc.disabled, .btn-outline-dvc:disabled {
  color: var(--btn-main-color);
  background-color: transparent;
}
.btn-outline-dvc:not(:disabled):not(.disabled):active, .btn-outline-dvc:not(:disabled):not(.disabled).active {
  color: var(--btn-main-text-color);
  background-color: var(--btn-main-color);
  border-color: var(--btn-main-color);
}
.btn-outline-dvc:not(:disabled):not(.disabled):active:focus, .btn-outline-dvc:not(:disabled):not(.disabled).active:focus {
  box-shadow: var(--outline-btn-shadow);
}

.show > .btn-dvc.dropdown-toggle {
  color: var(--btn-main-text-color);
  background-color: var(--btn-main-border-color);
  border-color: var(--btn-active-color);
}
.show > .btn-dvc.dropdown-toggle:focus {
  box-shadow: var(--btn-shadow);
}
.show > .btn-outline-dvc.dropdown-toggle {
  color: var(--btn-main-text-color);
  background-color: var(--btn-main-color);
  border-color: var(--btn-main-color);
}
.show > .btn-outline-dvc.dropdown-toggle:focus {
  box-shadow: var(--outline-btn-shadow);
}

@keyframes rise {
  0% {
    transform: translate(0px, 80px);
    animation-timing-function: cubic-bezier(0.4, 0.8, 0.74, 1);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@keyframes linear-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.initial-animation:not(.animate) {
  opacity: 0;
}
.initial-animation.animate {
  animation: 1000ms ease 100ms 1 normal both running rise, 400ms linear 0s 1 normal both linear-fade;
}

.custom-scrollbar {
  scrollbar-color: rgba(var(--scrollbar-thumb-rgb), 1) rgba(var(--scrollbar-thumb-rgb), 0.3);
  scrollbar-width: thin;
}
.custom-scrollbar::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: rgba(var(--scrollbar-thumb-rgb), 1);
  border-radius: 4px;
  border-collapse: collapse;
  box-shadow: inset 2px 2px 2px rgba(255, 255, 255, 0.2), inset -2px -2px 2px rgba(0, 0, 0, 0.08);
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: rgb(196, 194, 201);
}
.custom-scrollbar::-webkit-scrollbar-track {
  background-color: #f4f4f5;
  border-radius: 0 3px 3px 0;
}
.custom-scrollbar.transparent-track {
  scrollbar-color: rgba(var(--scrollbar-thumb-rgb), 1) transparent;
}
.custom-scrollbar.transparent-track::-webkit-scrollbar-track {
  background-color: transparent;
}

.nano-scroller .nano-pane {
  background-color: transparent;
  width: 8px;
  z-index: 3;
}
.nano-scroller > .nano-pane > .nano-slider {
  background-color: rgba(var(--scrollbar-thumb-rgb), 1);
  width: 4px;
  transition: background-color 0.2s linear, width 0.2s ease-in-out;
  /* margin-left: auto; */
  margin: 0;
  position: absolute;
  right: 3px;
}
.nano-scroller > .nano-pane.active > .nano-slider, .nano-scroller > .nano-pane:hover > .nano-slider {
  width: 6px;
}

.nano .inactivated {
  overflow: visible !important;
}
.nano .inactivated > .nano-content {
  overflow: visible !important;
  overflow-x: visible !important;
}
.nano .inactivated .nano-pane {
  display: none !important;
}

.vertical-overflow-shadow {
  position: absolute;
  z-index: 1;
  height: 55px;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity ease-in-out 0.15s;
}
.vertical-overflow-shadow.shadow-top {
  top: 0;
  bottom: auto;
  background: linear-gradient(rgb(255, 255, 255) 5%, rgba(255, 255, 255, 0.75) 45%, rgba(255, 255, 255, 0.2) 80%, transparent);
}
.vertical-overflow-shadow.shadow-bottom {
  top: auto;
  bottom: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.2) 42%, rgba(255, 255, 255, 0.75) 72%, rgb(255, 255, 255));
}

.nano-scroller.scrolled-to-top .vertical-overflow-shadow.shadow-top {
  opacity: 0;
}
.nano-scroller.scrolled-to-top .vertical-overflow-shadow.shadow-bottom {
  opacity: 1;
}
.nano-scroller.scrolled-to-bottom .vertical-overflow-shadow.shadow-top {
  opacity: 1;
}
.nano-scroller.scrolled-to-bottom .vertical-overflow-shadow.shadow-bottom {
  opacity: 0;
}
.nano-scroller.scrolled:not(.scrolled-to-bottom) .vertical-overflow-shadow.shadow-bottom {
  opacity: 1;
}

.flip-container {
  width: 100%;
  perspective: 1000px;
  box-shadow: 0 6px 20px 0 rgba(8, 175, 223, 0.2);
}
.flip-container:hover .flipper {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}
.flip-container .flipper {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.flip-container .back,
.flip-container .front {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.flip-container .front {
  transform: rotateX(0deg);
}
.flip-container .back {
  transform: rotateY(180deg);
}

.select2-elem-wrapper {
  position: relative;
}

select.select2 {
  visibility: hidden;
}

.select2-container.select2 {
  width: 100% !important;
}
.select2-container .select2-selection--single {
  min-height: 2.75rem;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
  transform: translateY(-50%) rotate(-180deg);
}
.select2-container--default .select2-selection--single {
  border-radius: 6px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAGCAYAAAD37n+BAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACZSURBVHgBbYs9DoJAEEa/XRWl8wgewStwBE8gpXZrYmxs7EzUxO0sbPAkHkGO4BG2IeF/YBJIWGCqyffeEzt1XZXO7DcB1Ot2/GDk9qfHtgA0UeLJGAsjQP8SFDAYk5mx876fQxnog0nSqVezsB+1MjM3jdiBaKGvnsu5k3/rdy0hfN66stYXYwX9qJkseRBYEcG4WbTpynwVT1lN926mwM8AAAAASUVORK5CYII=");
  background-position: 0;
  background-repeat: no-repeat;
  background-size: auto;
  transition: transform 0.25s ease;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: 0 !important;
  display: none;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #8f8fb1;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
  font-size: 1.9rem;
  display: flex;
  align-items: center;
  font-weight: 400;
  margin-right: 16px;
  padding-right: 3px;
  line-height: 1;
  opacity: 0.58;
}
.select2-container--default .select2-selection--single .select2-selection__clear:hover {
  opacity: 1;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  font-size: 1.046rem;
  font-weight: 600;
  display: inline-flex;
  line-height: 1.5;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
  color: #6b7280;
  background-color: #e5e7eb;
  margin: 2px;
  padding: 0 25px 0 0;
  border-radius: 6px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  padding: 3px 3px 3px 6px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  border: 0;
  border: 0;
  right: 0;
  left: auto;
  bottom: 0;
  padding: 0px 0.492rem;
  border-radius: 0 6px 6px 0;
}
.select2-container--default .select2-selection--multiple .select2-selection__clear {
  font-size: 1.9rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  margin-right: 8px;
  margin-bottom: 5px;
  padding: 1px 4px;
  line-height: 0.8;
  opacity: 0.58;
}
.select2-container--default .select2-selection--multiple .select2-selection__clear:hover {
  opacity: 1;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border-radius: 3px;
  border: 1px solid #e8e8f7 !important;
  height: 2.5rem;
  width: 100%;
  padding: 0.5rem 0.67rem;
}
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  border-color: #66afe9 !important;
  outline: none;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  color: inherit !important;
  background-color: rgba(237, 237, 247, 0.5) !important;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selected {
  color: inherit !important;
  background-color: rgba(237, 237, 247, 0.95) !important;
}
.select2-container--default .select2-results__option--selected.select2-results__option--selectable {
  color: inherit !important;
  background-color: rgba(237, 237, 247, 0.7) !important;
}

.select2-selection {
  display: flex !important;
  align-items: center !important;
}

.form-control.select2-selection--single {
  padding-right: 2.5rem;
}
.form-control .select2-selection__rendered {
  line-height: inherit !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.select2-results__option {
  padding: 0.5rem 0.75rem;
}

.select2-dropdown {
  min-width: 9rem;
  border: 1px solid #e8e8f7;
  border-top: 0 solid #e8e8f7;
}
.select2-dropdown.select2-dropdown--below {
  border-radius: 0 0 7px 7px;
  box-shadow: 0 8px 8px 0 hsla(0, 0%, 50.2%, 0.28), 0 0 8px 0 hsla(0, 0%, 50.2%, 0.12), 0 0 0 1px hsla(0, 0%, 50.2%, 0.12);
}
.select2-dropdown.select2-dropdown--above {
  border-radius: 7px 7px 0 0;
  box-shadow: 0 -8px 8px 0 hsla(0, 0%, 50.2%, 0.18), 0 0 8px 0 hsla(0, 0%, 50.2%, 0.12), 0 0 0 1px hsla(0, 0%, 50.2%, 0.12);
}

.select2-search--dropdown {
  padding: 0.5rem;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.modal-content {
  border-radius: 1rem;
}

.modal-header {
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  overflow: hidden;
}

.site-header {
  position: relative;
  z-index: 10;
}
.site-header .hamburger-menu {
  padding-right: 4.5rem;
}
@media (min-width: 768px) {
  .site-header .hamburger-menu {
    padding-right: 6rem;
  }
}
.site-header .hamburger-menu-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  overflow-x: hidden;
}
.site-header .hamburger-menu-container > * {
  pointer-events: all;
}
.site-header .hamburger-menu-btn-wrapper {
  position: absolute;
  right: -73px;
  top: -70px;
  z-index: 100;
  width: 140px;
  height: 148px;
  background-color: #fff;
  border-radius: 50% 50% 50% 50%;
  transition: 0.25s ease-in-out;
  box-shadow: 0 0 0 0 #fff, 0 0 0 0 #fff;
  cursor: pointer;
}
@media (min-width: 768px) {
  .site-header .hamburger-menu-btn-wrapper {
    right: -95px;
    top: -85px;
    width: 200px;
    height: 200px;
  }
}
.site-header .hamburger-menu-btn {
  position: absolute;
  top: 105px;
  left: 30px;
  width: 26px;
  height: 2px;
  background: rgba(46, 42, 41, 0.85);
  display: block;
  transform-origin: center;
  transition: 0.25s ease-in-out;
}
@media (min-width: 768px) {
  .site-header .hamburger-menu-btn {
    top: 135px;
    left: 50px;
    width: 30px;
  }
}
.site-header .hamburger-menu-btn::after, .site-header .hamburger-menu-btn::before {
  transition: 0.5s ease-in-out;
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(46, 42, 41, 0.85);
}
.site-header .hamburger-menu-btn::before {
  top: -8px;
}
.site-header .hamburger-menu-btn::after {
  bottom: -8px;
}
@media (min-width: 768px) {
  .site-header .hamburger-menu-btn::before {
    top: -10px;
  }
  .site-header .hamburger-menu-btn::after {
    bottom: -10px;
  }
}
.site-header .hamburger-menu-btn-checkbox {
  display: none;
}
.site-header .hamburger-menu-btn-checkbox:checked + .hamburger-menu-btn-wrapper {
  position: fixed;
  box-shadow: 0 0 0 100vw #fff, 0 0 0 100vh #fff;
  border-radius: 0;
}
.site-header .hamburger-menu-btn-checkbox:checked + .hamburger-menu-btn-wrapper::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 250;
  cursor: pointer;
}
.site-header .hamburger-menu-btn-checkbox:checked + .hamburger-menu-btn-wrapper .hamburger-menu-btn {
  transform: rotate(45deg);
}
.site-header .hamburger-menu-btn-checkbox:checked + .hamburger-menu-btn-wrapper .hamburger-menu-btn:after {
  transform: rotate(90deg);
  bottom: 0;
}
.site-header .hamburger-menu-btn-checkbox:checked + .hamburger-menu-btn-wrapper .hamburger-menu-btn:before {
  transform: rotate(90deg);
  top: 0;
}
.site-header .hamburger-menu-btn-checkbox:checked + .hamburger-menu-btn-wrapper + .site-main-nav {
  pointer-events: unset;
  overflow-y: auto;
}
.site-header .hamburger-menu-btn-checkbox:checked + .hamburger-menu-btn-wrapper + .site-main-nav .nav-menu-list {
  opacity: 1;
}

.site-main-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 200;
  pointer-events: none;
}
.site-main-nav ul {
  font-size: 1.3rem;
  list-style: disc;
  color: #502d0d;
}
.site-main-nav ul ::marker {
  font-size: 0.8em;
  color: #e0e4cc;
}
.site-main-nav .nav-menu-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 4rem 1.5rem;
  text-align: left;
  opacity: 0;
  transition: 0.25s 0s ease-in-out;
}
.site-main-nav .nav-menu-item-link {
  margin-bottom: 1em;
  display: block;
  color: inherit;
  text-decoration: none;
  opacity: 0.95;
}
.site-main-nav .nav-menu-item-link:hover {
  color: #f38630;
}

.app-link-btn {
  background-color: #fff;
  transition: color 0.3s, border-color 0.3s, background-color 0.3s;
}
.app-link-btn img,
.app-link-btn svg {
  width: auto;
}

.mobile-app-instal-prompt {
  position: fixed;
  bottom: 0;
  left: 0.35rem;
  right: 0.35rem;
  color: black;
  font-weight: 600;
  padding: 1.5rem 1.5rem 1.25rem;
  box-shadow: 2px -4px 20px 0 rgba(0, 0, 0, 0.15);
  background-color: #fff;
  border-radius: 1.05rem 1.05rem 0 0;
  z-index: 3000;
}
@media (min-width: 576px) {
  .mobile-app-instal-prompt {
    left: 0.75rem;
    right: 0.75rem;
  }
}
.mobile-app-instal-prompt .dvc-logo-image img {
  width: 2.65rem !important;
  height: auto;
  border-radius: 0.35rem;
}
.mobile-app-instal-prompt .prompt-text {
  vertical-align: middle;
}
.mobile-app-instal-prompt .install-btn {
  font-size: 0.86rem;
}
.mobile-app-instal-prompt .install-btn .icon {
  font-size: 1.1em;
  vertical-align: baseline;
  margin-right: 0.2rem;
}
.mobile-app-instal-prompt .close-btn {
  position: absolute;
  top: 0.75rem;
  right: 1.05rem;
  font-size: 0.9rem;
  cursor: pointer;
}
.mobile-app-instal-prompt .close-btn:hover {
  opacity: 0.75;
}

.site-header .logo-image {
  position: relative;
  z-index: 60;
}
@media (max-width: 767.98px) {
  .site-header .logo-image {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
}
.site-header .logo-image img {
  border-radius: 1rem;
  width: 3.5rem;
  height: auto;
}
@media (min-width: 768px) {
  .site-header .logo-image img {
    width: 5rem;
  }
}
.site-header .select-language-btn-wrapper {
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-block;
  color: #fff;
}
.site-header .select-language-btn-wrapper .select2-selection {
  width: 7rem;
}
.site-header .select-language-btn-wrapper .select2-dropdown {
  min-width: 7rem;
}
.site-header .select-language-btn-wrapper .opt-text {
  vertical-align: middle;
  flex-grow: 1;
}
.site-header .select-language-btn-wrapper .opt-image {
  margin-right: 0.5rem;
}
.site-header .select-language-btn-wrapper .opt-image img {
  width: auto;
  height: 1.5em;
}
.site-header .select-language-btn-wrapper .slctd-item-sign-icon {
  font-size: 1.125rem;
  color: rgb(16, 185, 129);
}
.site-header .select-language-btn-wrapper .dropdown-toggle {
  font-size: inherit;
  font-weight: inherit;
  position: relative;
  color: inherit;
  margin-top: -1.25rem;
}
.site-header .select-language-btn-wrapper .dropdown-toggle::after {
  display: none;
}
.site-header .select-language-btn-wrapper .dropdown-toggle:hover {
  opacity: 0.88;
}
.site-header .select-language-btn-wrapper .btn-image img {
  width: 1.3rem;
  height: auto;
  margin-right: 0.125rem;
  margin-top: -1px;
}
.site-header .select-language-btn-wrapper .dropdown-menu {
  font-size: 0.92rem;
  min-width: 8.5rem;
}
.site-header .select-language-btn-wrapper .dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
}
.site-header .menu-hamburger-btn {
  font-size: 2.25rem;
  border: none;
  background-color: transparent;
  outline: none;
  box-shadow: none;
  color: inherit;
}

.hero-section {
  position: relative;
  background-color: rgba(0, 0, 0, 0.91);
  background-image: url("../images/screen-main-bg.webp");
  height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  color: #fdfdfc;
}
@media (max-width: 1199.98px) {
  .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 1;
  }
  .hero-section .caption-box {
    position: relative;
    font-weight: 500;
    z-index: 5;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section::before {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
@media (max-width: 767.98px) {
  .hero-section::before {
    background-color: rgba(0, 0, 0, 0.58);
  }
}
@media (min-width: 576px) {
  .hero-section {
    height: 450px;
  }
}
@media (min-width: 768px) {
  .hero-section {
    height: 650px;
  }
}
@media (min-width: 992px) {
  .hero-section {
    height: 750px;
  }
}
@media (min-width: 1200px) {
  .hero-section {
    height: 850px;
  }
}
.hero-section .mobile-app-image {
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 55px;
  width: 250px;
  pointer-events: none;
}
.hero-section .mobile-app-image img {
  rotate: 25deg;
  opacity: 0.95;
}
@media (min-width: 576px) {
  .hero-section .mobile-app-image {
    top: 12px;
    right: 75px;
    width: 350px;
  }
}
@media (min-width: 768px) {
  .hero-section .mobile-app-image {
    top: 13px;
    right: 80px;
    width: 450px;
  }
}
@media (min-width: 992px) {
  .hero-section .mobile-app-image {
    top: 15px;
    right: 95px;
    width: 475px;
  }
}
@media (min-width: 1200px) {
  .hero-section .mobile-app-image {
    width: 630px;
  }
}
.hero-section .caption-box {
  position: absolute;
  bottom: 20px;
}
.hero-section .caption-box .caption-text {
  font-size: inherit;
  line-height: 1.5;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .hero-section .caption-box {
    font-size: 1.25rem;
    left: 60px;
    bottom: 5rem;
  }
}
@media (min-width: 992px) {
  .hero-section .caption-box {
    bottom: 10rem;
  }
}
@media (min-width: 1200px) {
  .hero-section .caption-box {
    bottom: 6rem;
  }
}
.hero-section .caption-box .digivcard-logo-image img {
  width: 125px;
}
@media (min-width: 768px) {
  .hero-section .caption-box .digivcard-logo-image {
    padding-left: 5.5rem;
  }
  .hero-section .caption-box .digivcard-logo-image img {
    width: 350px;
  }
}
@media (min-width: 992px) {
  .hero-section .caption-box .digivcard-logo-image {
    padding-left: 4rem;
  }
  .hero-section .caption-box .digivcard-logo-image img {
    width: 500px;
  }
}
@media (max-width: 768px) {
  .hero-section .caption-box .caption {
    font-weight: 600;
  }
}
@media (min-width: 992px) {
  .hero-section .caption-box .caption {
    text-align: center;
  }
}
.hero-section .caption-box .app-links {
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}
@media (max-width: 575.98px) {
  .hero-section .caption-box .app-link-btn-item-wrapper {
    min-width: 11rem;
    margin-top: 0.75rem;
    width: 100%;
  }
}
@media (min-width: 576px) {
  .hero-section .caption-box .app-link-btn-item-wrapper {
    display: inline-block;
    margin-top: 3rem;
    margin-bottom: 0;
  }
  .hero-section .caption-box .app-link-btn-item-wrapper:not(:first-child) {
    margin-left: 0.75rem;
  }
}
.hero-section .caption-box .app-link-btn {
  border-radius: 0.5rem;
  border: 1px solid #eee;
  padding-right: 1.5rem;
  padding-left: 1.25rem;
}
@media (max-width: 575.98px) {
  .hero-section .caption-box .app-link-btn {
    display: inline-block;
    min-width: inherit;
  }
}
.hero-section .caption-box .app-link-btn:hover {
  background-color: #ff7300;
  border-color: #ff7300;
}
.hero-section .caption-box .app-link-btn img,
.hero-section .caption-box .app-link-btn svg {
  height: 2.5rem;
  width: auto;
}

.features-section .app-storage-item .apple-icon,
.features-section .app-storage-item .android-icon,
.features-modal .app-storage-item .apple-icon,
.features-modal .app-storage-item .android-icon {
  position: absolute;
  bottom: 0.25rem;
}
.features-section .app-storage-item .apple-icon img,
.features-section .app-storage-item .android-icon img,
.features-modal .app-storage-item .apple-icon img,
.features-modal .app-storage-item .android-icon img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 1em;
  min-width: 1em;
}
.features-section .app-storage-item .apple-icon,
.features-modal .app-storage-item .apple-icon {
  left: 1.95em;
}
.features-section .app-storage-item .android-icon,
.features-modal .app-storage-item .android-icon {
  left: 3em;
}
.features-section .feature-icon,
.features-modal .feature-icon {
  display: inline-block;
  width: 100%;
}
.features-section .feature-icon svg,
.features-section .feature-icon img,
.features-modal .feature-icon svg,
.features-modal .feature-icon img {
  max-width: 1em;
  max-height: 1em;
}

.features-section .features-list {
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}
.features-section .feature-item {
  position: relative;
  display: inline-block;
  margin: 1rem auto;
  width: 14rem;
  height: 15rem;
  padding: 1rem;
  border-radius: 1rem;
  border-radius: 0.25rem;
  box-shadow: 0 6px 20px 0 rgba(183, 155, 138, 0.2);
}
@media (min-width: 768px) {
  .features-section .feature-item {
    width: 18rem;
    height: 18rem;
  }
}
.features-section .feature-item .front,
.features-section .feature-item .back {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  height: 100%;
}
.features-section .feature-item .icon svg,
.features-section .feature-item .icon img {
  display: block;
  margin: 0 auto;
  width: 100%;
}
.features-section .feature-item .title {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgb(54, 71, 76);
  line-height: 1.75;
}
@media (min-width: 768px) {
  .features-section .feature-item .title {
    font-size: 1.25rem;
  }
}
.features-section .feature-item .vertical-overflow-shadow {
  opacity: 1;
  height: 70px;
}
.features-section .app-storage-item .apple-icon,
.features-section .app-storage-item .android-icon {
  font-size: 1.35rem;
}
.features-section .feature-icon-wrapper {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
.features-section .feature-icon {
  font-size: 6rem;
}
@media (min-width: 768px) {
  .features-section .feature-icon {
    font-size: 6.75rem;
  }
}
.features-section .card-text {
  font-size: 0.9rem;
  height: 9rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .features-section .card-text {
    font-size: 1rem;
    height: 10rem;
  }
}

@media (min-width: 768px) {
  .features-modal .modal-dialog {
    max-width: 675px;
  }
}
.features-modal .modal-header,
.features-modal .modal-footer {
  border: 0;
}
.features-modal .modal-header {
  padding: 0.75rem 1.125rem 1rem;
}
.features-modal .modal-body {
  padding: 0 1.25rem 1.75rem;
}
@media (min-width: 576px) {
  .features-modal .modal-body {
    padding: 0 1.75rem 1.75rem;
  }
}
.features-modal .carousel-inner {
  display: flex;
  align-items: center;
}
.features-modal .carousel-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  background-color: #fff;
  padding: 0.25rem 1.75rem 1.25rem;
}
@media (min-width: 576px) {
  .features-modal .carousel-item {
    flex-direction: row;
    padding: 0.25rem 2.5rem 1.25rem;
  }
}
@media (min-width: 768px) {
  .features-modal .feature-image,
  .features-modal .caption-box {
    display: inline-block;
    float: left;
  }
}
.features-modal .feature-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 1rem;
}
@media (min-width: 575.98px) {
  .features-modal .feature-image {
    order: 0;
  }
}
@media (min-width: 768px) {
  .features-modal .feature-image {
    width: 10rem;
  }
}
.features-modal .feature-image > div {
  max-width: 10rem;
  margin: 0 auto;
}
.features-modal .feature-icon {
  font-size: 10rem;
  display: inline-block;
  display: flex;
  align-items: center;
  width: 100%;
}
.features-modal .feature-icon svg,
.features-modal .feature-icon img {
  max-width: 1em;
  max-height: 1em;
  min-width: 100%;
}
.features-modal .app-storage-item .apple-icon,
.features-modal .app-storage-item .android-icon {
  font-size: 2rem;
}
.features-modal .app-storage-item .apple-icon {
  left: 2.75em;
}
.features-modal .app-storage-item .android-icon {
  left: 3.75em;
}
@media (max-width: 575.98px) {
  .features-modal .caption-box {
    order: 1;
  }
}
@media (min-width: 768px) {
  .features-modal .caption-box {
    align-items: flex-start;
    width: calc(100% - 10.5rem);
  }
}
.features-modal .caption-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.15rem;
}
.features-modal .caption-text {
  font-size: 0.975rem;
  position: relative;
  margin-bottom: 1.25rem;
  padding-right: 0.85rem;
  margin-bottom: 0.85rem;
  height: 11rem;
  overflow-y: auto;
}
.features-modal .caption-text .vertical-overflow-shadow {
  transition: opacity ease-in-out 0.08s;
}
.features-modal .caption-text .shadow-top {
  height: 35px;
}
.features-modal .btn-dismiss-modal {
  font-size: 0.95rem;
  border-radius: 3rem;
  padding: 0.25rem 1.5rem;
  font-weight: 600;
}
.features-modal .carousel-control-prev {
  left: -1.25rem;
}
.features-modal .carousel-control-next {
  right: -1.25rem;
}
.features-modal .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJMYXllcl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgdmlld0JveD0iMCAwIDQ5MiA0OTIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ5MiA0OTI7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnPg0KCTxnPg0KCQk8cGF0aCBkPSJNMTk4LjYwOCwyNDYuMTA0TDM4Mi42NjQsNjIuMDRjNS4wNjgtNS4wNTYsNy44NTYtMTEuODE2LDcuODU2LTE5LjAyNGMwLTcuMjEyLTIuNzg4LTEzLjk2OC03Ljg1Ni0xOS4wMzJsLTE2LjEyOC0xNi4xMg0KCQkJQzM2MS40NzYsMi43OTIsMzU0LjcxMiwwLDM0Ny41MDQsMHMtMTMuOTY0LDIuNzkyLTE5LjAyOCw3Ljg2NEwxMDkuMzI4LDIyNy4wMDhjLTUuMDg0LDUuMDgtNy44NjgsMTEuODY4LTcuODQ4LDE5LjA4NA0KCQkJYy0wLjAyLDcuMjQ4LDIuNzYsMTQuMDI4LDcuODQ4LDE5LjExMmwyMTguOTQ0LDIxOC45MzJjNS4wNjQsNS4wNzIsMTEuODIsNy44NjQsMTkuMDMyLDcuODY0YzcuMjA4LDAsMTMuOTY0LTIuNzkyLDE5LjAzMi03Ljg2NA0KCQkJbDE2LjEyNC0xNi4xMmMxMC40OTItMTAuNDkyLDEwLjQ5Mi0yNy41NzIsMC0zOC4wNkwxOTguNjA4LDI0Ni4xMDR6Ii8+DQoJPC9nPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=");
}
.features-modal .carousel-control-next-icon {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJMYXllcl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgdmlld0JveD0iMCAwIDQ5Mi4wMDQgNDkyLjAwNCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDkyLjAwNCA0OTIuMDA0OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8Zz4NCgk8Zz4NCgkJPHBhdGggZD0iTTM4Mi42NzgsMjI2LjgwNEwxNjMuNzMsNy44NkMxNTguNjY2LDIuNzkyLDE1MS45MDYsMCwxNDQuNjk4LDBzLTEzLjk2OCwyLjc5Mi0xOS4wMzIsNy44NmwtMTYuMTI0LDE2LjEyDQoJCQljLTEwLjQ5MiwxMC41MDQtMTAuNDkyLDI3LjU3NiwwLDM4LjA2NEwyOTMuMzk4LDI0NS45bC0xODQuMDYsMTg0LjA2Yy01LjA2NCw1LjA2OC03Ljg2LDExLjgyNC03Ljg2LDE5LjAyOA0KCQkJYzAsNy4yMTIsMi43OTYsMTMuOTY4LDcuODYsMTkuMDRsMTYuMTI0LDE2LjExNmM1LjA2OCw1LjA2OCwxMS44MjQsNy44NiwxOS4wMzIsNy44NnMxMy45NjgtMi43OTIsMTkuMDMyLTcuODZMMzgyLjY3OCwyNjUNCgkJCWM1LjA3Ni01LjA4NCw3Ljg2NC0xMS44NzIsNy44NDgtMTkuMDg4QzM5MC41NDIsMjM4LjY2OCwzODcuNzU0LDIzMS44ODQsMzgyLjY3OCwyMjYuODA0eiIvPg0KCTwvZz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjwvc3ZnPg0K");
}
.features-modal .carousel-control-prev,
.features-modal .carousel-control-next {
  top: 46%;
  bottom: auto;
  transform: translateY(-50%);
  height: 5rem;
  width: 8%;
  min-width: 2.5rem;
}
.features-modal .carousel-indicators {
  position: relative;
}
.features-modal .carousel-indicators li {
  background-color: currentColor;
}
.features-modal .carousel-indicators li:not(.active) {
  opacity: 0.35;
}

.maintaining-values-section {
  padding: 5rem 0;
  background: linear-gradient(rgba(14, 14, 52, 0.6), rgba(14, 14, 52, 0.6)), url("../images/pattern-bg-3.jpg");
  background-position: center;
  color: #fff;
}
@media (max-width: 576.98px) {
  .maintaining-values-section {
    background-size: cover;
  }
}
.maintaining-values-section .section-heading {
  font-size: 2.875rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}
.maintaining-values-section .calc-block {
  display: flex;
  width: 520px;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  flex-direction: column;
  justify-content: space-around;
  align-items: stretch;
  margin-top: 0;
  padding: 30px 20px;
}
@media (max-width: 991.98px) {
  .maintaining-values-section .calc-block {
    width: 100%;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    justify-content: space-around;
    margin-top: 40px;
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .maintaining-values-section .calc-block {
    margin-left: auto;
  }
}
@media (min-width: 1200px) {
  .maintaining-values-section .calc-block {
    width: 660px;
    margin-right: 0;
  }
}
.maintaining-values-section .calc-block label {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.715;
  color: #f8f8f8;
  margin-bottom: 0.32rem;
}
.maintaining-values-section .calc-block .card,
.maintaining-values-section .calc-block .numbers {
  color: #000;
}
.maintaining-values-section .calc-block .card {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 1.25rem;
  margin-top: 0.625rem;
}
.maintaining-values-section .calc-block .card img {
  margin-bottom: 0.625rem;
  border-radius: 50%;
  padding: 1rem;
  background-color: #f1f1f1;
}
.maintaining-values-section .calc-block .card .title {
  color: #646d7a;
  text-align: center;
  font-weight: 700;
  line-height: 2;
}
.maintaining-values-section .calc-block .card .value {
  font-size: 2rem;
  font-weight: 600;
  color: #0f1e35;
  margin-bottom: 0.25rem;
  line-height: 1.28;
}
.maintaining-values-section .calc-block .card .description {
  opacity: 0.6;
  color: #646d7a;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.85;
}
.maintaining-values-section .calc-block .numbers {
  background-color: #fff;
}
.maintaining-values-section .btn,
.maintaining-values-section .card,
.maintaining-values-section .numbers {
  border-radius: 0.5rem;
}
.maintaining-values-section .btn {
  padding: 1rem;
}
.maintaining-values-section .btn-block + .btn-block {
  margin-top: 1.25rem;
}
.maintaining-values-section .range-slide-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}
.maintaining-values-section .range-slide-item.disabled .range-slider-input {
  pointer-events: none;
  opacity: 0.65;
}
.maintaining-values-section .range-slide-item.disabled .numbers {
  opacity: 0.75;
}
.maintaining-values-section .range-slider-wrapper,
.maintaining-values-section .numbers {
  display: inline-block;
}
.maintaining-values-section .range-slider-wrapper {
  width: calc(100% - 6.5rem);
  padding-right: 1.25rem;
}
@media (min-width: 576px) {
  .maintaining-values-section .range-slider-wrapper {
    width: calc(100% - 9.5rem);
  }
}
.maintaining-values-section .numbers {
  font-weight: 500;
  width: 5.5rem;
  padding: 1.125rem 0.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 576px) {
  .maintaining-values-section .numbers {
    width: 8.5rem;
  }
}
.maintaining-values-section .range-slider-input {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  max-height: 16px;
  background: #646D7A;
  border-radius: 8px;
  outline: none;
}
.maintaining-values-section .range-slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 40px;
  border-radius: 8px;
  background: #fff;
}
.maintaining-values-section .range-slider-input::-moz-range-thumb {
  width: 24px;
  height: 40px;
  border-radius: 8px;
  background: #fff;
}
.maintaining-values-section .range-slider-input::-webkit-slider-thumb:hover {
  background: linear-gradient(96.74deg, #D33F49 0%, #FE7575 100%);
}
.maintaining-values-section .range-slider-input::-moz-range-thumb:hover {
  background: linear-gradient(96.74deg, #D33F49 0%, #FE7575 100%);
}

.get-apps-section {
  padding-top: 5.5rem;
  padding-bottom: 8rem;
  background-color: #f8f8f8;
}
.get-apps-section .section-heading {
  font-size: 2.05rem;
  font-weight: 700;
  color: #f16e1d;
  margin-bottom: 1rem;
}
.get-apps-section .app-link-btn {
  border: 2px solid #c5c5c5;
  border-radius: 0.75rem;
  padding-right: 2.5rem;
  padding-left: 2rem;
}
.get-apps-section .app-link-btn:hover {
  background-color: #ffa937;
  border-color: #ffa937;
  color: #fff;
}
.get-apps-section .app-link-btn img,
.get-apps-section .app-link-btn svg {
  height: 3rem;
}
.get-apps-section .qrcode-image {
  width: 514px;
  max-width: 100%;
}
.get-apps-section .qrcode-image img {
  width: inherit;
  border-radius: 1rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25);
}

.our-customers-section {
  padding-top: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.37;
  margin-bottom: 5rem;
}
.our-customers-section .description {
  font-weight: 700;
}
.our-customers-section .icon {
  font-size: 5rem;
  max-width: 5.72rem;
}
.our-customers-section .icon img {
  height: 1em;
  width: auto;
}

.packages-section {
  position: relative;
  background-color: #f1f1f1;
  color: #fff;
  padding-top: 3rem;
  padding-bottom: 8rem;
}
.packages-section::before, .packages-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.packages-section::before {
  background: linear-gradient(0deg, #d5d5d5 15%, #262626 87%, #262626 100%);
  -webkit-clip-path: polygon(0% 0%, 0% calc(100% - 0.75vw), 100% calc(100% - 2vw), 100% 0%);
          clip-path: polygon(0% 0%, 0% calc(100% - 0.75vw), 100% calc(100% - 2vw), 100% 0%);
}
.packages-section::after {
  background-color: rgba(38, 38, 38, 0.85);
  -webkit-clip-path: polygon(0% 0%, 0% 100%, 100% calc(100% - 6vw), 100% 0%);
          clip-path: polygon(0% 0%, 0% 100%, 100% calc(100% - 6vw), 100% 0%);
}
.packages-section .packages-section-content {
  position: relative;
  z-index: 5;
}
.packages-section .packages-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.packages-section .package-item {
  width: 375px;
  max-width: 100%;
  height: 650px;
  border: 3px solid #f16e1d;
  padding: 1rem 1.5rem;
  margin: 0 auto;
}
.packages-section .package-item .header {
  text-align: center;
  height: 5rem;
  margin-top: 1.5rem;
  padding: 0 1rem;
}
.packages-section .package-item .title {
  font-size: 1.35rem;
  font-weight: 600;
}
.packages-section .package-item .description {
  font-size: 1.075rem;
}
.packages-section .package-item ul {
  font-size: 0.85rem;
  font-weight: 600;
  list-style: disc;
  padding-left: 1.75rem;
  padding-right: 1rem;
  margin-top: 1.5rem;
  height: 350px;
  overflow-y: auto;
}
.packages-section .package-item ul ::marker {
  font-size: 1.3em;
}
.packages-section .package-item li {
  margin-bottom: 0.25rem;
}
.packages-section .package-item .btn-wrapper {
  padding: 0 1rem;
}

.site-footer {
  display: flex;
  flex-direction: column;
}
.site-footer .footer-bottem {
  background-color: #e5e5e5;
  text-align: center;
  padding: 0.75rem 0;
  color: #040404;
  font-weight: 300;
}

.site-footer-content {
  font-size: 1.15rem;
  background-color: #f1f1f1;
  color: #cb5c37;
  flex-grow: 1;
}
.site-footer-content .box-heading {
  font-size: 1.933rem;
  margin-bottom: 1.5rem;
}
.site-footer-content .contact-way-item a,
.site-footer-content .site-link-item a {
  color: inherit;
}
.site-footer-content .contact-way-item {
  margin-bottom: 1.125rem;
}
.site-footer-content .contact-way-item a {
  transition: opacity ease 0.375s;
}
.site-footer-content .contact-way-item a:hover {
  opacity: 0.775;
}
.site-footer-content .contact-way-item a:hover .link-text {
  padding-left: 0.275rem;
}
.site-footer-content .contact-way-item .link-icon,
.site-footer-content .contact-way-item .link-text {
  vertical-align: middle;
  transition: padding-left ease 0.375s;
}
.site-footer-content .contact-way-item .link-icon {
  display: inline-block;
  font-size: 2.2rem;
  width: 1em;
  height: 1em;
  text-align: center;
  margin-right: 0.875rem;
  margin-bottom: 0.25rem;
}
.site-footer-content .contact-way-item svg {
  display: block;
  max-width: 1em;
  max-height: 1em;
  margin: 0 auto;
}
.site-footer-content .contact-way-item .link-text {
  display: inline-block;
}
.site-footer-content .site-link-item {
  margin-bottom: 1rem;
}
.site-footer-content .site-link-item a {
  position: relative;
  padding-left: 1.25rem;
  transition: padding-left ease 0.375s, opacity ease 0.375s;
}
.site-footer-content .site-link-item a::before {
  content: "•";
  font-size: 1.35em;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.site-footer-content .site-link-item a:hover {
  opacity: 1.525rem;
  padding-left: 1.5rem;
}
.site-footer-content .dgvc-brand-image {
  position: relative;
  margin-top: 2rem;
  width: 20rem;
  max-width: 100%;
}
@media (min-width: 992px) {
  .site-footer-content .dgvc-brand-image {
    width: 16rem;
  }
}
.site-footer-content .dgvc-brand-image img {
  display: block;
  margin: 0 auto;
  width: inherit;
  border-radius: 0.5rem;
}

.site-footer-content-inner {
  padding: 5rem 1rem 2rem;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .site-footer-content-inner {
    max-width: 575px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .site-footer-content-inner {
    max-width: 650px;
  }
}
@media (max-width: 991.98px) {
  .site-footer-content-inner {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .site-footer-content-inner {
    padding: 5rem 3rem 4rem;
  }
}
@media (min-width: 1200px) {
  .site-footer-content-inner {
    padding: 7rem 4rem 6rem;
  }
}
@media (min-width: 1450px) {
  .site-footer-content-inner {
    padding: 8rem 4rem 6rem;
  }
}

.site-cookies-notice-box {
  position: fixed;
  max-width: 700px;
  border-radius: 6px;
  background-color: #fff;
  left: auto;
  right: 1rem;
  bottom: 1rem;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 2147483645;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.2);
  padding: 0 1.25rem 1.5rem;
  transform: translateY(115%);
  transition: transform ease 0.65s;
}
.site-cookies-notice-box.show {
  transform: translateY(0);
}
.site-cookies-notice-box:focus {
  outline-color: #146aff;
  outline-width: 1px;
}
.site-cookies-notice-box .box-content {
  margin-top: 1.5rem;
}
.site-cookies-notice-box .close-btn-wrapper {
  position: absolute;
  top: 10px;
  right: 20px;
}
.site-cookies-notice-box .close-btn-wrapper .btn {
  font-size: 0.9em;
  display: inline-block;
  background-image: url("../images/close.svg");
  color: #555;
  line-height: 38px;
  text-decoration: none;
  background-color: transparent;
  border-radius: 2px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  height: 44px;
  width: 44px;
  background-size: 12px;
  margin: -10px -10px 0 0;
  border: none;
  padding: 0px;
}
.site-cookies-notice-box .policy-title {
  font-size: 1rem;
  font-weight: 600;
  display: inline-block;
  max-width: calc(100% - 75px);
  padding-bottom: 10px;
  color: #282828;
}
.site-cookies-notice-box .policy-text {
  font-size: 0.86rem;
  margin: 0;
  color: #282828;
}
.site-cookies-notice-box .policy-text a[href] {
  font-size: inherit;
  color: #183444;
  font-weight: bold;
  text-decoration: underline;
}
.site-cookies-notice-box .policy-text a[href]:hover {
  text-decoration: none;
}
.site-cookies-notice-box .cookies-banner-options .btn {
  font-size: 0.8125rem;
  font-weight: 500 !important;
  line-height: 36px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 0 1rem;
  min-width: 10em;
}
.site-cookies-notice-box .cookies-banner-options .btn:not(:first-child) {
  margin-left: 1em;
}

@keyframes progressiveReveal {
  0% {
    transform: scale(1.01);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.progressive {
  position: relative;
  display: block;
}
.progressive.icon img {
  display: block;
}
.progressive.animated img.preview {
  border-radius: 15px !important;
  filter: blur(0.1vw);
  transform: scale(1.01);
}
.progressive.animated img.reveal {
  animation: progressiveReveal 0.25s ease-out;
}
.progressive.image-thumbnail-wrapper.img-load-err img, .progressive.image-thumbnail-wrapper.replace:before,
.progressive.image-thumbnail-wrapper img.image-base-placeholder {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 59px;
}
.progressive.image-thumbnail-wrapper.replace:before,
.progressive.image-thumbnail-wrapper img.image-base-placeholder {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Svg Vector Icons : http://www.onlinewebfonts.com/icon --%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 1000 1000' enable-background='new 0 0 1000 1000' xml:space='preserve' style='fill: %23ebebeb;'%3E%3Cmetadata%3E Svg Vector Icons : http://www.onlinewebfonts.com/icon %3C/metadata%3E%3Cg%3E%3Cpath d='M867.5,941h-735C65,941,10,886,10,818.5v-637C10,113.9,65,59,132.5,59h735C935,59,990,113.9,990,181.5v637C990,886,935,941,867.5,941L867.5,941z M941,181.5c0-40.5-33-73.5-73.5-73.5h-735C92,108,59,141,59,181.5v637C59,859,92,892,132.5,892h735c40.5,0,73.5-33,73.5-73.5V181.5L941,181.5z M843,818.5H157c-13.5,0-24.5-11-24.5-24.5v-49c0-5.7,2-11.2,5.6-15.6C149.2,716,249.2,598,342.3,598c48.1,0,79.1,19.2,109.1,37.9c28.2,17.6,54.9,35.6,98.5,35.6h0c32,0,50.3-26.7,80.1-73.8c37.6-59.5,89-141,207-170.5c7.3-1.9,15.1-0.2,21,4.4c5.9,4.6,9.4,11.8,9.4,19.3v343C867.5,807.5,856.5,818.5,843,818.5L843,818.5z M818.5,484.3c-77.6,29.6-114.3,87.7-147.1,139.6c-31.4,49.7-61,96.7-119.7,96.7l-3.6-0.1c-56.7-1.9-91.8-23.7-122.7-42.9c-26.3-16.4-49.1-30.5-83.2-30.5c-55.8,0-130.2,71.9-160.8,107v15.5h637V484.3L818.5,484.3L818.5,484.3z M377.5,500c-54.1,0-98-44-98-98c0-54.1,43.9-98,98-98c54,0,98,43.9,98,98C475.5,456,431.5,500,377.5,500L377.5,500z M377.5,353c-27,0-49,22-49,49c0,27,22,49,49,49s49-22,49-49C426.5,375,404.5,353,377.5,353L377.5,353z'/%3E%3C/g%3E%3C/svg%3E");
}
.progressive.image-thumbnail-wrapper.img-load-err:before, .progressive.image-thumbnail-wrapper.img-load-err img {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='300' width='300' fill='%23ebebeb' viewBox='0 0 66 66' xmlns:v='https://vecta.io/nano'%3E%3Cpath d='M21.79 38.05h.01a7.89 7.89 0 0 0 5.48-13.48 7.86 7.86 0 1 0-5.49 13.48zm-.05-13.25h.04a5.27 5.27 0 0 1 3.73 1.54 5.35 5.35 0 1 1-3.78-1.54zm9.25 15.95a5.26 5.26 0 0 0-4.27 2.51l-.67.94-1.57 2.2h-9.94a7.46 7.46 0 0 0-7.45 7.45v2.68l49.58-.03v.06a2.43 2.43 0 0 0 1.87-.81 2.05 2.05 0 0 0 .37-1.63l-.06-.24a2020.6 2020.6 0 0 0-11.21-20.29 2.39 2.39 0 0 0-1.99-1.41 2.65 2.65 0 0 0-2.06 1.31l-.06.1c-.21.35-4.79 7.69-5.4 8.65-1.27 2.04-1.84 1.72-2.35 1.42a6.4 6.4 0 0 1-1.17-.99A5.15 5.15 0 0 0 31 40.76zm9.25 2.81l5.33-8.54 10.55 19.04c-3.76.01-30.9-.01-46.54-.03v-.18a4.95 4.95 0 0 1 4.95-4.95h11.23l3-4.19a2.83 2.83 0 0 1 2.23-1.46c.61 0 1.11.45 1.86 1.2a8.28 8.28 0 0 0 1.67 1.37c2.1 1.22 4.02.46 5.71-2.26zm22.69-15.8a1.25 1.25 0 0 0-1.25 1.25v31.85H4.32V18h29.2a1.25 1.25 0 1 0 0-2.5H1.82v47.86h62.36V29.01a1.25 1.25 0 0 0-1.25-1.25zm-12.06 1.5a13.31 13.31 0 1 0-13.31-13.31 13.32 13.32 0 0 0 13.31 13.31zm0-24.12a10.79 10.79 0 0 1 8.47 17.5L44.18 7.48a10.75 10.75 0 0 1 6.7-2.34zm-8.46 4.11l15.17 15.17A10.79 10.79 0 0 1 42.41 9.25z'/%3E%3C/svg%3E");
}
.progressive.image-thumbnail-wrapper.no-icons,
.progressive.image-thumbnail-wrapper .image-base-placeholder.no-icons {
  background-image: none !important;
}
.progressive img {
  border-radius: inherit;
}
.progressive img.preview {
  width: 100%;
}
.progressive img.reveal {
  will-change: transform, opacity;
  animation: progressiveReveal 0s ease-out;
}

.progressive img.reveal,
.image-thumbnail-wrapper.replace img:not(.preview),
[class^=image-thumbnail-wrapper-] img:not(.preview),
[class*=" image-thumbnail-wrapper-"] img:not(.preview) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.image-thumbnail-wrapper {
  position: relative;
  display: block;
  /*background-color: #efefef;*/
}
.image-thumbnail-wrapper:before {
  display: block;
  line-height: 0;
}

.image-thumbnail-wrapper-square:before,
.image-thumbnail-wrapper-1-1:before {
  content: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'/%3E");
}

.image-thumbnail-wrapper-3-2:before {
  content: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'/%3E");
}

.image-thumbnail-wrapper-4-3:before {
  content: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 3'/%3E");
}

.image-thumbnail-wrapper-5-3:before {
  content: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 3'/%3E");
}

.image-thumbnail-wrapper-16-9:before {
  content: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 9'/%3E");
}/*# sourceMappingURL=main.css.map */