@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
html.modal-active #modal-container,
body.modal-active #modal-container {
  pointer-events: all;
}

#modal-container {
  pointer-events: none;
  position: fixed;
  display: table;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  transform: scale(0);
  z-index: 10000;
}
#modal-container.two {
  transform: scale(1);
}
#modal-container.two .modal-background {
  background: rgba(0, 0, 0, 0);
  animation: fadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.two .modal-background .modal {
  opacity: 0;
  animation: scaleUp 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.two + .content {
  animation: scaleBack 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.two.out {
  animation: quickScaleDown 0s 0.5s linear forwards;
}
#modal-container.two.out .modal-background {
  animation: fadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.two.out .modal-background .modal {
  animation: scaleDown 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.two.out + .content {
  animation: scaleForward 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container .modal-background {
  display: table-cell;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  vertical-align: middle;
}
#modal-container .modal-background .modal {
  width: 900px;
  background: white;
  display: inline-block;
  border-radius: 10px;
  font-weight: 300;
  position: relative;
  max-width: 100vw;
  background: #EDC023;
}
#modal-container .modal-background .modal iframe {
  border-radius: 0 0 10px 10px;
}
#modal-container .modal-background .modal h2 {
  font-size: 25px;
  line-height: 25px;
  margin-bottom: 15px;
}
#modal-container .modal-background .modal p {
  font-size: 18px;
  line-height: 22px;
}
#modal-container .modal-background .modal .close {
  text-align: right;
  padding: 1rem;
  display: flex;
  align-items: end;
  justify-content: end;
  gap: 0.5rem;
  cursor: pointer;
}
#modal-container .modal-background .modal .close img {
  height: 25px;
  width: 25px;
}
#modal-container .modal-background .modal .modal-svg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 3px;
}
#modal-container .modal-background .modal .modal-svg rect {
  stroke: #fff;
  stroke-width: 2px;
  stroke-dasharray: 778;
  stroke-dashoffset: 778;
}

#modal-container .content {
  min-height: 100%;
  height: 100%;
  background: white;
  position: relative;
  z-index: 0;
}
#modal-container .content h1 {
  padding: 75px 0 30px 0;
  text-align: center;
  font-size: 30px;
  line-height: 30px;
}
#modal-container .content .buttons {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
#modal-container .content .buttons .button {
  display: inline-block;
  text-align: center;
  padding: 10px 15px;
  margin: 10px;
  background: red;
  font-size: 18px;
  background-color: #efefef;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
#modal-container .content .buttons .button:hover {
  color: white;
  background: #009bd5;
}

@keyframes fadeIn {
  0% {
    background: rgba(0, 0, 0, 0);
  }
  100% {
    background: rgba(0, 0, 0, 0.7);
  }
}
@keyframes fadeOut {
  0% {
    background: rgba(0, 0, 0, 0.7);
  }
  100% {
    background: rgba(0, 0, 0, 0);
  }
}
@keyframes scaleUp {
  0% {
    transform: scale(0.8) translateY(1000px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0px);
    opacity: 1;
  }
}
@keyframes scaleDown {
  0% {
    transform: scale(1) translateY(0px);
    opacity: 1;
  }
  100% {
    transform: scale(0.8) translateY(1000px);
    opacity: 0;
  }
}
@keyframes scaleBack {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.85);
  }
}
@keyframes scaleForward {
  0% {
    transform: scale(0.85);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes quickScaleDown {
  0% {
    transform: scale(1);
  }
  99.9% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
}

.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-results__option--selectable {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
  padding-right: 0px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid #aaa;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #f1f1f1;
  color: #333;
  outline: none;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--group {
  padding: 0;
}

.select2-container--default .select2-results__option--disabled {
  color: #999;
}

.select2-container--default .select2-results__option--selected {
  background-color: #ddd;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: -o-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: -o-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
  padding-bottom: 5px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
  outline: none;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option--group {
  padding: 0;
}

.select2-container--classic .select2-results__option--disabled {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3875d7;
  color: #fff;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

/*======================
   Set Cookies
=======================*/
#cookie-bar {
  background: #1A3617;
  display: block;
  position: fixed;
  bottom: 0px;
  width: 100%;
  left: 0px;
  color: #fff;
  width: 100%;
  max-width: 100%;
  z-index: 9999999999999;
}

#cookie-bar p {
  font-size: 0.8rem;
  line-height: 24px;
  color: #adadad;
}

#cookie-bar button {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 15px 20px;
  text-transform: uppercase;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
}
#cookie-bar button:hover {
  background: #FFFFFF;
  color: #1A3617;
}

#cookie-bar a {
  color: #fff;
}

#contentcookie {
  display: grid;
  grid-gap: 1rem;
}

@media (max-width: 767px) {
  #cookie-bar p {
    width: 100%;
    font-size: 14px;
  }
  #cookie-bar button {
    width: 100%;
  }
  #cookie-bar a {
    color: #fff;
  }
  #contentcookie {
    padding: 20px 0px;
    width: 90%;
    margin: auto;
  }
}
@media only screen and (min-width: 768px) {
  #contentcookie {
    grid-template-columns: 1fr 200px;
    grid-gap: 2rem;
  }
}
@media only screen and (min-width: 1024px) {
  #contentcookie {
    padding: 20px;
  }
}
@media only screen and (min-width: 1280px) {
  #contentcookie {
    padding: 20px 0;
  }
}
/**
 * Text-underline-animation
 */
a.underline {
  text-decoration: none;
  background: linear-gradient(currentColor, currentColor) bottom/0 0.1em no-repeat;
  transition: 500ms background-size;
  background-position: left bottom;
}

a.underline:hover {
  background-size: 100% 0.1em;
}

.menu-btn-3 {
  height: 32px;
  width: 40px;
  cursor: pointer;
}

.menu-btn-3 span,
.menu-btn-3 span::before,
.menu-btn-3 span::after {
  background: #073763;
  content: "";
  position: absolute;
  width: 40px;
  height: 6px;
  margin-top: 13px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(deg);
  transform: rotate(180deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.menu-btn-3 span::before {
  margin-top: -12px;
}

.menu-btn-3 span::after {
  margin-top: 12px;
}

.menu-open.menu-btn-3 span::before,
.menu-open.menu-btn-3 span::after {
  background: white;
}

.menu-btn-3.menu-open span::before {
  margin-top: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-btn-3.menu-open span::after {
  transform: rotate(-45deg);
  margin-top: 0;
}

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

video {
  border: 0 !important;
}

html {
  scroll-behavior: smooth;
  margin-top: 0 !important;
  overflow-x: hidden !important;
  position: relative;
  --content-space: 2rem;
  --page-max-width: 75rem;
}

address {
  font-style: normal;
}

textarea {
  font-family: "Raleway", sans-serif;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000000s ease-in-out 0s;
}

input {
  font-family: "Raleway", sans-serif, sans-serif;
}

img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

img {
  max-width: 100%;
}

body {
  color: #073763;
  background: white;
  position: relative;
  width: 100vw;
  overflow-x: hidden !important;
}

.mtb1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

html,
body {
  max-width: 100%;
  position: relative;
}

.container {
  padding: 1.5rem;
}

ul {
  padding-left: 15px;
}

.notmobile {
  display: none;
}

.notmobile--table {
  display: none;
}

.hidden {
  display: none !important;
}

@media only screen and (min-width: 768px) {
  .nottablet {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .notmobile {
    display: initial;
  }
  .notmobile--table {
    display: table-cell;
  }
  .nottablet {
    display: initial;
  }
  .notdesktop {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .scroll-lock {
    position: fixed;
    overflow-y: hidden;
  }
}
.final-grid {
  display: grid;
  grid-gap: 1.5rem;
}

@media only screen and (min-width: 1024px) {
  .container {
    padding: 80px;
    max-width: 1114px;
    margin-left: auto;
    margin-right: auto;
  }
  .final-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .final-grid section {
    max-height: 370px;
  }
}
@media only screen and (min-width: 1280px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }
  .final-grid section {
    max-height: 305px;
  }
}
b {
  font-weight: bold !important;
}

.bottom-cloud {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

a {
  text-decoration: underline;
  color: #073763;
}
a:hover {
  text-decoration: none;
}

nav ul {
  list-style-type: none;
}
nav ul a {
  text-decoration: none;
}

body {
  font-family: "Raleway", sans-serif;
}

h1,
h2,
h3 {
  font-weight: 800;
}

h2 {
  color: #0094FF;
}

h4 {
  font-weight: 400;
}

h1,
h2,
h3,
h4 {
  font-family: "Raleway", sans-serif;
}

h1,
.h1 {
  font-size: 55px;
  line-height: 120%;
}
@media only screen and (max-width: 768px) {
  h1,
  .h1 {
    font-size: 40px;
    text-align: center;
  }
}

@media only screen and (max-width: 768px) {
  .hero h4,
  .hero--detail h4,
  .contact-form-wrapper h4 {
    text-align: center;
  }
}

h2,
.h2 {
  font-size: 55px;
  line-height: 120%;
}
@media only screen and (max-width: 768px) {
  h2,
  .h2 {
    font-size: 40px;
    text-align: center;
  }
}
h2 span,
.h2 span {
  display: block;
  font-size: 30px;
  color: #073763;
  font-weight: 400;
  line-height: 1.75rem;
  margin-bottom: 1rem;
}

h3,
.h3 {
  font-size: 25px;
  line-height: 140%;
}

h4,
.h4 {
  font-size: 23px;
  line-height: 140%;
}

p {
  font-size: 16px;
  line-height: 180%;
}

.info,
.info p {
  font-size: 14px;
  opacity: 0.5;
}
.info--upper,
.info p--upper {
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.btn {
  position: relative;
  z-index: 10;
  transition: all ease-in-out 250ms;
  text-decoration: none;
  border-radius: 15px;
  text-align: center;
  cursor: pointer;
  padding: 11px 4rem;
  background: #0094FF;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-weight: 800;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .btn {
    padding: 20px 70px;
    margin-left: auto;
    margin-right: auto;
  }
}
.btn:hover {
  text-decoration: none;
  background: #073763;
  color: #0094FF;
}
.btn svg path {
  transition: all ease-in-out 250ms;
}
.btn--alt {
  background: #FFFFFF;
}
.btn--alt:hover {
  background: #073763;
  color: #FFFFFF;
}
.btn--arrow {
  width: fit-content;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
  color: #FFFFFF;
  font-weight: bold;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn--arrow span {
  display: inline-block;
  margin-right: 10px;
}
.btn--arrow .arrow {
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: #FFFFFF;
  position: relative;
  transition: width 0.3s ease;
}
.btn--arrow .arrow:after {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  border-right: 2px solid #0094FF;
  border-bottom: 2px solid #0094FF;
  transform: rotate(-45deg);
}
.btn--arrow:hover .arrow {
  width: 40px;
}
.btn--arrow.white {
  color: white;
}
.btn--arrow.white .arrow {
  background-color: white;
}
.btn--arrow.white .arrow:after {
  border-color: white;
}
.btn--arrow--pdf span {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.btn--main {
  padding: 6px 1.7rem;
  font-size: 18px;
  background: transparent;
  border: 2px solid #073763;
  color: #073763;
  border-color: #073763;
}
.btn--main:hover {
  background: #073763;
  color: #FFFFFF;
  border-color: #073763;
}
.btn--main:hover svg path {
  fill: white;
}
.btn--main--alt {
  border-color: white;
  color: white;
}
.btn--main--alt svg path {
  fill: white;
}
.btn--main--alt:hover {
  background: white;
  color: #073763;
}
.btn--main--alt:hover svg path {
  fill: #073763;
}

.btn--arrow.blue {
  display: flex;
  background-color: #073763;
  color: white;
  border-radius: 10px;
  padding: 1rem 2rem;
  font-size: 18px;
}

button.btn {
  text-transform: uppercase;
  background: #073763;
  color: #FFFFFF;
  border: 3px solid transparent;
  font-family: "Raleway", sans-serif;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
button.btn:hover {
  background-color: transparent;
  color: #073763;
  border-color: #073763;
}

.overlay .btn {
  margin: 0 auto;
}
.overlay nav {
  width: 100%;
}

.two-one-layout {
  padding-top: 0;
  display: grid;
  position: relative;
}

.one-one-layout {
  display: grid;
  grid-gap: 2.5rem;
}

.one-two-layout {
  display: grid;
  grid-gap: 1rem;
}

@media only screen and (min-width: 1024px) {
  .two-one-layout {
    grid-template-columns: 2fr 1fr;
    grid-gap: 1.5rem;
  }
  .one-one-layout {
    grid-template-columns: repeat(2, 1fr);
  }
  .one-two-layout {
    grid-template-columns: 1fr 2fr;
  }
}
.header {
  max-height: 100px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0.5px 0.7px 19px -39px rgba(0, 0, 0, 0.085), 1.6px 2.5px 63.7px -39px rgba(0, 0, 0, 0.125), 7px 11px 285px -39px rgba(0, 0, 0, 0.21);
}
.header--fixed {
  position: relative;
  max-height: 100%;
}
.header > .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .header > .container {
    display: flex;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.header a.highlight {
  color: #0094FF;
}
.header div,
.header nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}
.header nav ul {
  padding: 0;
}
.header .container .right {
  gap: 2rem;
}
@media only screen and (max-width: 1280px) {
  .header .container .right {
    justify-content: center;
  }
}
@media only screen and (max-width: 550px) {
  .header .container .right {
    display: none;
  }
}
.header nav ul {
  gap: 2rem;
}
.header nav ul a {
  color: #1A3617;
  font-weight: bold;
  font-size: 18px;
  color: #073763;
  text-transform: uppercase;
}
.header nav ul li:hover a {
  color: #0094FF;
}
.header .mobile-menu-trigger {
  margin-top: -12px;
  display: none;
  position: relative;
  z-index: 9999999;
  height: 44.5px;
  width: 60px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media only screen and (max-width: 1280px) {
  .header .mobile-menu-trigger {
    display: flex;
  }
}
.header .mobile-menu-trigger.menu-open {
  border-color: white;
}
.header .mobile-menu-trigger.menu-open .svg-container {
  transition: all ease-in-out 250ms;
  transform: rotate(180deg);
}
.header .mobile-menu-trigger.menu-open .svg-container svg path {
  fill: white;
}
@media only screen and (max-width: 1280px) {
  .header .header-nav--desktop,
  .header .btn--header {
    display: none;
  }
}
.header .header-logo img {
  max-width: 276px;
}
@media only screen and (max-width: 768px) {
  .header .header-logo img {
    height: 30px;
  }
}

/*nav menu*/
.overlay-slidedown {
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.4s ease-in-out, visibility 0s 0.4s;
  transition: transform 0.4s ease-in-out, visibility 0s 0.4s;
  justify-content: center;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #e8a133;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay nav {
  text-align: right;
  position: relative;
  top: 50%;
  height: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
}

.overlay ul {
  list-style: none;
  padding: 0;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.overlay ul li {
  display: block;
  height: 20%;
  height: 20%;
  min-height: 54px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.overlay ul li:hover a {
  color: white !important;
}

.overlay ul li a {
  font-size: 54px;
  font-weight: 300;
  display: block;
  color: #fff;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
@media only screen and (max-width: 1280px) {
  .overlay ul li a {
    font-size: 34px;
  }
}
.overlay ul li a:hover {
  text-decoration: underline;
  color: white !important;
}

.overlay-slidedown.open {
  visibility: visible;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
}

.header .overlay nav ul {
  justify-content: center;
}

.footer {
  overflow: hidden;
  position: relative;
}
.footer__main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem 0;
}
.footer__main nav ul {
  z-index: 10;
  position: relative;
  display: flex;
  font-weight: bold;
  gap: 2rem;
}
@media only screen and (max-width: 500px) {
  .footer__main nav ul {
    flex-direction: column;
    text-align: center;
  }
}
.footer__main nav ul a {
  color: #0094FF;
  text-transform: uppercase;
}
.footer__bottom {
  background: #0094FF;
  font-weight: 600;
  position: relative;
  z-index: 5;
}
.footer__bottom a {
  color: #FFFFFF;
}
.footer__bottom .container {
  padding-top: 0;
  padding-bottom: 0;
  color: #FFFFFF;
  height: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 500px) {
  .footer__bottom .container {
    flex-direction: column;
    text-align: center;
    height: fit-content;
    padding-top: 1rem;
    padding-bottom: 1rem;
    gap: 1rem;
  }
}
.footer__bottom .container nav ul {
  display: flex;
  gap: 1rem;
}
.footer__bottom .container p {
  margin-bottom: 0 !important;
}

.section-contacts {
  position: relative;
  z-index: 10;
  margin-top: 10rem;
  margin-bottom: -3rem;
}
@media only screen and (max-width: 500px) {
  .section-contacts {
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .section-contacts {
    text-align: center;
  }
}
.section-contacts .container {
  display: flex;
  gap: 3rem;
  padding-bottom: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.section-contacts .container .left {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.section-contacts .container .location__title {
  font-weight: 800;
  font-size: 20px;
}
.section-contacts .container .location__address {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
@media only screen and (max-width: 500px) {
  .section-contacts .container .location__address {
    flex-direction: column;
  }
}
@media only screen and (max-width: 768px) {
  .section-contacts .container .location__address {
    text-align: center;
  }
}
.section-contacts .container .location__address address {
  max-width: 315px;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .section-contacts .container .location__address address {
    margin-left: auto;
    margin-right: auto;
  }
}
.section-contacts .container .company-id {
  font-size: 18px;
}
.section-contacts .container .contacts {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  border-radius: 50px;
  border: 2px solid #1A3617;
  padding: 3rem;
  height: fit-content;
  background: white;
}
@media only screen and (max-width: 500px) {
  .section-contacts .container .contacts {
    width: 100%;
    padding: 2rem 1.5rem;
  }
}
.section-contacts .container .contacts__phones {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
}
@media only screen and (max-width: 500px) {
  .section-contacts .container .contacts__phones {
    grid-template-columns: 1fr;
    width: 100%;
  }
}
.section-contacts .container .contacts .contact__title {
  font-weight: 800;
  font-size: 20px;
}
.section-contacts .container .contacts .contact__value {
  font-size: 21px;
}
@media only screen and (max-width: 500px) {
  .section-contacts .container .contacts .contact__value {
    font-size: 1.2rem;
  }
}
.section-contacts .container .contacts .contact__value a {
  text-decoration: underline;
}
.section-contacts .container .contacts .contact__value a:hover {
  text-decoration: none;
}
.section-contacts .map-iframe {
  width: 570px;
  list-style: none;
  transition: none;
  overflow: hidden;
  max-width: 570px;
  height: 377px;
  border-radius: 40px;
  overflow: hidden;
  max-width: 100%;
}
@media only screen and (max-width: 620px) {
  .section-contacts .map-iframe {
    width: 100%;
    max-width: 100%;
    transform: scale(1.1);
  }
}

.table-container {
  border: 2px solid #E8F4FF;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  width: fit-content;
  margin-top: 1.5rem;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
  font-weight: bold;
}
table td,
table th {
  padding: 1rem;
}
table td {
  background-color: white;
}
table th {
  background: #073763;
  color: white;
  text-transform: uppercase;
}
table tr:nth-of-type(odd) td {
  background: #E8F4FF;
}
table td:first-of-type {
  text-transform: uppercase;
  text-decoration: underline;
}

.page--error {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  text-align: center;
}
