/* FONTS
   ========================================================================== */
/* MAIN  FILES
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  color: #333333;
  font-family: "font_regular", Helvetica, Arial, sans-serif;
  font-weight: 400;
  height: auto;
  min-height: 100vh;
  position: relative;
  display: -moz-flex;
  display: flex;
  flex-direction: column;
  -moz-flex-direction: column;
}
body ::-moz-selection {
  background: #0c2d80;
  color: #ffffff;
}
body ::selection {
  background: #0c2d80;
  color: #ffffff;
}

#wrap {
  -moz-flex: 1 0 auto;
  flex: 1 0 auto;
}

mark {
  background: none;
}

/* ==========================================================================
   FORMS & TABLE & NAVIGATION
   ========================================================================== */
input, textarea, select {
  outline: 0 none;
  padding: 0 10px;
  transition: all 0.2s ease-in-out;
}

input[type=text], input[type=number], input[type=email], input[type=password], input[type=search], input[type=tel], textarea {
  border: 1px solid #e1e1e1;
  color: #222222;
  font-family: "font_regular", Helvetica, Arial, sans-serif;
  font-size: 16px;
  height: 40px;
  padding: 0 5px 0 10px;
  width: 100%;
}
input[type=text]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, input[type=search]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #4c4c4c;
  font-family: "font_regular", Helvetica, Arial, sans-serif;
  font-size: 16px;
  opacity: 1;
}
input[type=text]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=tel]::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  color: #4c4c4c;
  font-family: "font_regular", Helvetica, Arial, sans-serif;
  font-size: 16px;
  opacity: 1;
}
input[type=text]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type=search]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #4c4c4c;
  font-family: "font_regular", Helvetica, Arial, sans-serif;
  font-size: 16px;
  opacity: 1;
}

textarea {
  height: 120px;
  padding-top: 10px;
  resize: none;
}

button[disabled], html input[disabled] {
  cursor: default;
}

input[type=search], input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none !important;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
}

ul {
  list-style: none;
}

ol {
  list-style: decimal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

p {
  padding-bottom: 20px;
  line-height: 1.5;
}

a {
  color: #0c2d80;
  outline: 0;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  outline: 0;
  text-decoration: underline;
}

img {
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: top;
  backface-visibility: hidden;
}

strong, b {
  font-weight: 700;
}

i {
  font-style: normal;
}

@media screen and (min-width: 1440px) {
  ::-webkit-scrollbar {
    width: 13px;
  }
  ::-webkit-scrollbar-track {
    background-color: #eaeaea;
    border-left: 1px solid #cccccc;
  }
  ::-webkit-scrollbar-thumb {
    background-color: #0c2d80;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: rgb(9.8142857143, 36.8035714286, 104.6857142857);
  }
}
.flex {
  display: -moz-flex;
  display: flex;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

.start {
  display: -moz-flex;
  display: flex;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}

.end {
  display: -moz-flex;
  display: flex;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
}

.around {
  display: -moz-flex;
  display: flex;
  -moz-justify-content: space-around;
  justify-content: space-around;
}

.start-center {
  display: -moz-flex;
  display: flex;
  -moz-align-items: center;
  align-items: center;
}

.end-center {
  display: -moz-flex;
  display: flex;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  -moz-align-items: center;
  align-items: center;
}

.flex-center {
  display: -moz-flex;
  display: flex;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -moz-align-items: center;
  align-items: center;
}

.flex-start {
  display: -moz-flex;
  display: flex;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -moz-align-items: flex-start;
  align-items: flex-start;
}

.flex-end {
  display: -moz-flex;
  display: flex;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -moz-align-items: flex-end;
  align-items: flex-end;
}

[class*=col-] {
  width: 100%;
}

.col-1 {
  -ms-flex-basis: 5.5833333333%;
  flex-basis: 5.5833333333%;
}

.col-2 {
  -ms-flex-basis: 14.1666666667%;
  flex-basis: 14.1666666667%;
}

.col-3 {
  -ms-flex-basis: 22.75%;
  flex-basis: 22.75%;
}

.col-4 {
  -ms-flex-basis: 31.3333333333%;
  flex-basis: 31.3333333333%;
}

.col-5 {
  -ms-flex-basis: 39.9166666667%;
  flex-basis: 39.9166666667%;
}

.col-6 {
  -ms-flex-basis: 48.5%;
  flex-basis: 48.5%;
}

.col-7 {
  -ms-flex-basis: 57.0833333333%;
  flex-basis: 57.0833333333%;
}

.col-8 {
  -ms-flex-basis: 65.6666666667%;
  flex-basis: 65.6666666667%;
}

.col-9 {
  -ms-flex-basis: 74.25%;
  flex-basis: 74.25%;
}

.col-10 {
  -ms-flex-basis: 82.8333333333%;
  flex-basis: 82.8333333333%;
}

.col-11 {
  -ms-flex-basis: 91.4166666667%;
  flex-basis: 91.4166666667%;
}

.col-12 {
  -ms-flex-basis: 100%;
  flex-basis: 100%;
}

.col-50 {
  -ms-flex-basis: 50%;
  flex-basis: 50%;
}

@media (max-width: 960px) {
  .md-1 {
    -ms-flex-basis: 5.5833333333%;
    flex-basis: 5.5833333333%;
  }
  .md-2 {
    -ms-flex-basis: 14.1666666667%;
    flex-basis: 14.1666666667%;
  }
  .md-3 {
    -ms-flex-basis: 22.75%;
    flex-basis: 22.75%;
  }
  .md-4 {
    -ms-flex-basis: 31.3333333333%;
    flex-basis: 31.3333333333%;
  }
  .md-5 {
    -ms-flex-basis: 39.9166666667%;
    flex-basis: 39.9166666667%;
  }
  .md-6 {
    -ms-flex-basis: 48.5%;
    flex-basis: 48.5%;
  }
  .md-7 {
    -ms-flex-basis: 57.0833333333%;
    flex-basis: 57.0833333333%;
  }
  .md-8 {
    -ms-flex-basis: 65.6666666667%;
    flex-basis: 65.6666666667%;
  }
  .md-9 {
    -ms-flex-basis: 74.25%;
    flex-basis: 74.25%;
  }
  .md-10 {
    -ms-flex-basis: 82.8333333333%;
    flex-basis: 82.8333333333%;
  }
  .md-11 {
    -ms-flex-basis: 91.4166666667%;
    flex-basis: 91.4166666667%;
  }
  .md-12 {
    -ms-flex-basis: 100%;
    flex-basis: 100%;
  }
  .md-bottom {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .sm-1 {
    -ms-flex-basis: 5.5833333333%;
    flex-basis: 5.5833333333%;
  }
  .sm-2 {
    -ms-flex-basis: 14.1666666667%;
    flex-basis: 14.1666666667%;
  }
  .sm-3 {
    -ms-flex-basis: 22.75%;
    flex-basis: 22.75%;
  }
  .sm-4 {
    -ms-flex-basis: 31.3333333333%;
    flex-basis: 31.3333333333%;
  }
  .sm-5 {
    -ms-flex-basis: 39.9166666667%;
    flex-basis: 39.9166666667%;
  }
  .sm-6 {
    -ms-flex-basis: 48.5%;
    flex-basis: 48.5%;
  }
  .sm-7 {
    -ms-flex-basis: 57.0833333333%;
    flex-basis: 57.0833333333%;
  }
  .sm-8 {
    -ms-flex-basis: 65.6666666667%;
    flex-basis: 65.6666666667%;
  }
  .sm-9 {
    -ms-flex-basis: 74.25%;
    flex-basis: 74.25%;
  }
  .sm-10 {
    -ms-flex-basis: 82.8333333333%;
    flex-basis: 82.8333333333%;
  }
  .sm-11 {
    -ms-flex-basis: 91.4166666667%;
    flex-basis: 91.4166666667%;
  }
  .sm-12 {
    -ms-flex-basis: 100%;
    flex-basis: 100%;
  }
  .sm-bottom {
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .xs-1 {
    -ms-flex-basis: 5.5833333333%;
    flex-basis: 5.5833333333%;
  }
  .xs-2 {
    -ms-flex-basis: 14.1666666667%;
    flex-basis: 14.1666666667%;
  }
  .xs-3 {
    -ms-flex-basis: 22.75%;
    flex-basis: 22.75%;
  }
  .xs-4 {
    -ms-flex-basis: 31.3333333333%;
    flex-basis: 31.3333333333%;
  }
  .xs-5 {
    -ms-flex-basis: 39.9166666667%;
    flex-basis: 39.9166666667%;
  }
  .xs-6 {
    -ms-flex-basis: 48.5%;
    flex-basis: 48.5%;
  }
  .xs-7 {
    -ms-flex-basis: 57.0833333333%;
    flex-basis: 57.0833333333%;
  }
  .xs-8 {
    -ms-flex-basis: 65.6666666667%;
    flex-basis: 65.6666666667%;
  }
  .xs-9 {
    -ms-flex-basis: 74.25%;
    flex-basis: 74.25%;
  }
  .xs-10 {
    -ms-flex-basis: 82.8333333333%;
    flex-basis: 82.8333333333%;
  }
  .xs-11 {
    -ms-flex-basis: 91.4166666667%;
    flex-basis: 91.4166666667%;
  }
  .xs-12 {
    -ms-flex-basis: 100%;
    flex-basis: 100%;
  }
  .xs-bottom {
    margin-bottom: 15px;
  }
}
/* ==========================================================================
   HELPERS
   ========================================================================== */
.row {
  position: relative;
  width: 1440px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .row {
    width: 100%;
    max-width: 94%;
  }
}

#content {
  padding: 40px 0;
}
@media (max-width: 1440px) {
  #content {
    padding: 20px 0;
  }
}

#wrap {
  min-height: 100%;
  position: relative;
  width: 100%;
}

.c {
  clear: both;
  display: block;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

.cfx:after, .cfx:before {
  clear: both;
  content: " ";
  display: table;
}

.bg-center {
  -webkit-background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.no_select {
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.underline {
  display: inline-block;
  position: relative;
}
.underline:after {
  background: transparent;
  content: "";
  display: block;
  height: 1px;
  margin: auto;
  transition: width 0.5s ease, background-color 0.5s ease;
  width: 0;
}
.underline:hover:after {
  background: #0c2d80;
  width: 100%;
}

.btn {
  background: #0c2d80;
  background-image: linear-gradient(19deg, #0c2d80 0%, rgb(10.2514285714, 38.4428571429, 109.3485714286) 100%);
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  font-weight: normal;
  line-height: 1;
  outline: 0;
  padding: 10px 20px;
  position: relative;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: all 0.4s ease;
}
@media (max-width: 768px) {
  .btn {
    font-size: 14px;
    padding: 8px 15px;
  }
}
.btn:hover {
  background: rgb(8.5028571429, 31.8857142857, 90.6971428571);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.btn:active {
  background: rgb(5.4428571429, 20.4107142857, 58.0571428571);
}

/* ==========================================================================
   SOCIAL LINK
   ========================================================================== */
.s-link {
  font-size: 0;
  display: inline-block;
  width: auto;
  cursor: pointer;
  text-align: center;
}
.s-link a {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0 2px;
  color: #ffffff;
  border-radius: 50%;
  transform: translate3d(0, 0, 0);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}
.s-link a:before {
  font-size: 20px;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.s-link a:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.s-link a.icon-facebook:hover {
  background: #3b5993;
}
.s-link a.icon-twitter:hover {
  background: #55acee;
}
.s-link a.icon-instagram:hover {
  background: #181818;
}
.s-link a.icon-linkedin:hover {
  background: #0177b5;
}
.s-link a.icon-youtube:hover {
  background: #f80000;
}

.block-right {
  text-align: right;
}

.block-center {
  text-align: center;
}

.acf-map {
  width: 100%;
  height: 400px;
  border: #ccc solid 1px;
  margin: 20px 0;
}

.acf-map img {
  max-width: inherit !important;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
header {
  position: relative;
  z-index: 10;
  will-change: transform, opacity;
  margin-bottom: 45px;
}
@media (max-width: 1440px) {
  header {
    margin-bottom: 30px;
  }
}
header .wrapper {
  display: -moz-flex;
  display: flex;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -moz-align-items: center;
  align-items: center;
}
@media (max-width: 960px) {
  header .wrapper {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  header .wrapper {
    flex-direction: column;
    -moz-flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 960px) {
  header .wrapper .logo {
    width: 120px;
  }
}
@media (max-width: 768px) {
  header .wrapper .logo {
    width: 30%;
  }
}
header .wrapper .social-media ul {
  display: -moz-flex;
  display: flex;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -moz-align-items: center;
  align-items: center;
  gap: 28px;
}
header .wrapper .social-media ul li a img {
  width: 24px;
  height: 24px;
}
header .wrapper .btn {
  font-family: "Roboto";
  font-weight: 600;
  font-size: clamp(14px, 2vw, 16px);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background: transparent;
  border: 1px solid #DFB56D;
  padding: 30px 50px;
}
@media (max-width: 1440px) {
  header .wrapper .btn {
    padding: 15px 25px;
  }
}
header .wrapper .btn:hover {
  background: #DFB56D;
  color: #000;
}

body {
/*
  background-image: url("../img/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
*/
  background: #000;
  padding: 22px 0 20px;
  position: relative;
}
body:before {
  background-color: rgba(0, 0, 0, 0.6);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
}

.main-container .wrapper {
  display: -moz-flex;
  display: flex;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -moz-align-items: center;
  align-items: center;
  gap: 159px;
}
@media (max-width: 1440px) {
  .main-container .wrapper {
    gap: 100px;
  }
}
@media (max-width: 1600px) {
  .main-container .wrapper {
    gap: 3vw;
  }
}
@media (max-width: 960px) {
  .main-container .wrapper {
    flex-direction: column;
    -moz-flex-direction: column;
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .main-container .wrapper {
    gap: 30px;
  }
}
.main-container .wrapper .left {
  -moz-flex: 1;
  flex: 1;
  align-self: flex-end;
}
@media (max-width: 960px) {
  .main-container .wrapper .left {
    -ms-flex-basis: auto;
    flex-basis: auto;
    width: 100%;
  }
}
.main-container .wrapper .left .rotating-text-container {
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin: 23px;
}
.main-container .wrapper .left .rotating-text-container:hover::before {
  animation-play-state: paused;
}
.main-container .wrapper .left .rotating-text-container::before {
  position: absolute;
  content: "";
  inset: -23px;
  background-image: url("../img/text-border.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  animation: rotate-animation 10s linear infinite;
  -webkit-animation: rotate-animation 10s linear infinite;
}
@keyframes rotate-animation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 1440px) {
  .main-container .wrapper .left .rotating-text-container img {
    width: 45px;
  }
}
@media (max-width: 960px) {
  .main-container .wrapper .left .rotating-text-container img {
    width: 35px;
  }
}
.main-container .wrapper .left .text-container {
  margin-top: 51px;
}
@media (max-width: 1440px) {
  .main-container .wrapper .left .text-container {
    margin-top: 35px;
  }
}
@media (max-width: 960px) {
  .main-container .wrapper .left .text-container {
    margin-top: 25px;
  }
}
.main-container .wrapper .left .text-container h3 {
  font-family: "Roboto";
  font-weight: 400;
  font-size: clamp(14px, 2vw, 24px);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #dfb56d;
  margin-bottom: 34px;
}
@media (max-width: 960px) {
  .main-container .wrapper .left .image {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .main-container .wrapper .left .image {
    width: 70%;
  }
}
.main-container .wrapper .right {
  -ms-flex-basis: 45.13%;
  flex-basis: 45.13%;
  background: #fff;
  text-align: center;
  padding: 91px 71px 54px;
}
@media (max-width: 960px) {
  .main-container .wrapper .right {
    -ms-flex-basis: auto;
    flex-basis: auto;
    width: 100%;
  }
}
@media (max-width: 1700px) {
  .main-container .wrapper .right {
    padding: max(2vw, 20px) max(2vw, 20px);
  }
}
.main-container .wrapper .right .subtitle {
  font-family: "Roboto";
  font-weight: 600;
  font-size: clamp(14px, 2vw, 16px);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #dfb56d;
  position: relative;
  isolation: isolate;
  margin-bottom: 40px;
}
@media (max-width: 1440px) {
  .main-container .wrapper .right .subtitle {
    margin-bottom: 20px;
  }
}
.main-container .wrapper .right .subtitle:before {
  position: absolute;
  content: "";
  display: block;
  width: 80%;
  height: 1px;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #dfb56d;
  z-index: -2;
}
.main-container .wrapper .right .subtitle:after {
  position: absolute;
  z-index: -1;
  content: "";
  display: block;
  width: 40%;
  height: 100%;
  right: 0px;
  left: -10px;
  top: 0;
  margin: 0 auto;
  background: #fff;
}
.main-container .wrapper .right .image {
  margin-bottom: 84px;
}
@media (max-width: 1700px) {
  .main-container .wrapper .right .image {
    margin-bottom: 2vw;
  }
}
.main-container .wrapper .right .image .send-us {
  max-width: max(180px, 20vw);
  margin: 0 auto;
  width: 100%;
}
.main-container .wrapper .right .form-group {
  margin-bottom: 20px;
  text-align: left;
}
@media (max-width: 1700px) {
  .main-container .wrapper .right .form-group {
    margin-bottom: 2vw;
  }
}
.main-container .wrapper .right .form-group input,
.main-container .wrapper .right .form-group textarea {
  width: 100%;
  padding: 24px 20px;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  font-size: clamp(14px, 2vw, 16px);
  outline: none;
  transition: border-color 0.3s ease;
}
@media (max-width: 1440px) {
  .main-container .wrapper .right .form-group input,
  .main-container .wrapper .right .form-group textarea {
    padding: 10px 0;
  }
}
.main-container .wrapper .right .form-group input:focus,
.main-container .wrapper .right .form-group textarea:focus {
  border-color: #d4a55c;
}
.main-container .wrapper .right .form-group input::-moz-placeholder, .main-container .wrapper .right .form-group textarea::-moz-placeholder {
  font-size: clamp(14px, 2vw, 16px);
}
.main-container .wrapper .right .form-group input::placeholder,
.main-container .wrapper .right .form-group textarea::placeholder {
  font-size: clamp(14px, 2vw, 16px);
}
.main-container .wrapper .right .form-group textarea {
  resize: none;
}
@media (max-width: 1440px) {
  .main-container .wrapper .right .form-group textarea {
    height: 60px;
  }
}
.main-container .wrapper .right .submit-btn {
  font-weight: 600;
  font-size: clamp(14px, 2vw, 16px);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  text-align: center;
  color: #222;
  width: 100%;
  display: inline-block;
  background: #e0b369;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  padding: 30px 10px;
}
@media (max-width: 1440px) {
  .main-container .wrapper .right .submit-btn {
    padding: 15px 10px;
  }
}
.main-container .wrapper .right .submit-btn:hover {
  background: #d19c50;
}

.desctop_hide {
  display: none;
}

@media screen and (max-width: 1440px) {
  .mobile_hide {
    display: none;
  }
  .desctop_hide {
    display: block;
  }
  .burger {
    margin-right: 10px;
    position: absolute;
    right: 10px;
    text-align: left;
    top: 13px;
    z-index: 101;
  }
  .burger .burger-icon {
    display: inline-block;
    position: relative;
    margin-top: 6px;
    margin-bottom: 6px;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .burger .burger-icon, .burger .burger-icon::before, .burger .burger-icon::after {
    display: block;
    width: 18px;
    height: 2px;
    background-color: #0c2d80;
    outline: 1px solid transparent;
    transition-property: background-color, transform;
    transition-duration: 0.4s;
  }
  .burger .burger-icon::before, .burger .burger-icon::after {
    position: absolute;
    content: "";
  }
  .burger .burger-icon::before {
    top: -6px;
  }
  .burger .burger-icon::after {
    top: 6px;
  }
  .burger.is-active .burger-icon {
    background-color: transparent;
  }
  .burger.is-active .burger-icon::before {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.is-active .burger-icon::after {
    transform: translateY(-6px) rotate(-45deg);
  }
  .burger.is-active .burger-icon::before, .burger.is-active .burger-icon::after {
    background: #ffffff;
  }
  .mobile_menu_container {
    background: #0c2d80;
    border-bottom: 3px solid rgb(7.6285714286, 28.6071428571, 81.3714285714);
    border-top: 40px solid rgb(7.6285714286, 28.6071428571, 81.3714285714);
    font-size: 0;
    height: 100vh;
    max-width: 480px;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 5px;
    position: fixed;
    right: 0;
    top: 0;
    width: 80%;
    z-index: 100;
    transform: translateX(110%);
    transition: all 0.2s ease-in-out;
    will-change: transform, opacity;
  }
  .mobile_menu_container nav {
    margin-bottom: 40px;
  }
  .mobile_menu_container li {
    position: relative;
  }
  .mobile_menu_container a {
    display: block;
    z-index: 10;
  }
  .mobile_menu_container .sub-anchor {
    background: rgb(14.1857142857, 53.1964285714, 151.3142857143);
    cursor: pointer;
    height: 30px;
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    z-index: 20;
  }
  .mobile_menu_container .sub-anchor:hover {
    background: rgb(9.8142857143, 36.8035714286, 104.6857142857);
  }
  .mobile_menu_container .sub-anchor:before {
    color: #ffffff;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .mobile_menu_container .sub-menu {
    display: none;
  }
  .mobile_menu_container .sub-menu a {
    color: #ffffff;
    font-size: 13px;
    padding: 10px 40px;
  }
  .mobile_menu_container .sub-menu a:hover {
    background: rgb(16.3714285714, 61.3928571429, 174.6285714286);
  }
  .mobile_menu_container .sub-menu .sub-menu a {
    padding: 10px 60px;
  }
  .mobile_menu_container .level_a > li {
    border-bottom: 1px solid rgb(14.1857142857, 53.1964285714, 151.3142857143);
  }
  .mobile_menu_container .level_a > li > a {
    color: #ffffff;
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    padding-left: 20px;
  }
  .mobile_menu_container .level_a > li > a:hover {
    background: rgb(14.1857142857, 53.1964285714, 151.3142857143);
  }
  /* resp_menu_active
  ========================================================================== */
  .mobile_menu_active {
    overflow: hidden;
  }
  .mobile_menu_active:before {
    background: rgba(0, 0, 0, 0.7);
    content: "";
    height: 100vh;
    margin: 0 auto;
    position: absolute;
    width: 100%;
    z-index: 100;
    transition: all 0.2s ease-in-out;
  }
  .mobile_menu_active .burger {
    position: fixed;
  }
  .mobile_menu_active .burger span {
    position: relative;
    z-index: 101;
  }
  .mobile_menu_active .mobile_menu_container {
    opacity: 1;
    transform: translateX(0);
  }
  /* ==========================================================================
     global style
     ========================================================================== */
  .row {
    max-width: 94%;
    width: 100%;
  }
}/*# sourceMappingURL=main.css.map */