header {
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  z-index: 7;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1175px) {
  header {
    background: #fff;
    box-shadow: 0px 2px 6px -3px rgba(0, 0, 0, 0.5);
    height: 70px;
  }
}

@media (max-width: 1175px) {
  .header-wrapper {
    display: none;
  }
}

.brand-logo {
  text-align: right;
}
.brand-logo img {
	width: 232px;
	height: 51px;
}
@media (max-width: 1175px) {
  .brand-logo {
    text-align: left;
  }
 .brand-logo img {
	width: 232px;
	height: 51px;
 }
}

.mobile-header {
  display: none;
}
@media (max-width: 1175px) {
  .mobile-header {
    display: block;
  }
}

.mobile-container {
  margin: auto;
  padding: 10px 15px;
}

.shrink {
  margin-top: -30px;
}
.shrink .menu-bar-wrapper {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  animation: fadeInDown 0.7s ease-in-out;
}
@media (max-width: 1175px) {
  .shrink {
    margin-top: 0;
  }
}

.menu-icons-inner {
  display: flex;
  flex-direction: row;
}
.menu-icons-inner li {
  padding: 0 20px;
  display: flex;
}
.menu-icons-inner li a {
  transition: all 0.5s;
}
.menu-icons-inner li a:before {
  content: "";
}
.menu-icons-inner li.inquiry {
  position: relative;
}
.menu-icons-inner li.inquiry:hover a {
  color: #ffeb3b;
}
.menu-icons-inner li.inquiry a:before {
  position: absolute;
  top: 0px;
  left: 0px;
  background: url(icons/icon-inquiry.svg) no-repeat;
  padding: 10px;
  z-index: 3;
}
.menu-icons-inner li.inquiry:hover a:before {
  background: url(icons/icon-inquiry-v.svg) no-repeat;
}
.menu-icons-inner li.inquiry .inquiry-number {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  background: #00376C;
  font-size: 12px;
  color: #fff;
  top: -7px;
  right: 7px;
  border-radius: 100%;
  z-index: 5;
}
.menu-icons-inner li.search {
  position: relative;
}
.menu-icons-inner li.search a:before {
  position: absolute;
  left: 0px;
  top: 0px;
  background: url(icons/icon-search.svg) no-repeat;
  padding: 10px;
}
.menu-icons-inner li.search:hover a:before {
  background: url(icons/icon-search-v.svg) no-repeat;
}
.menu-icons-inner li.lang {
  position: relative;
}

.mobile-icons {
  display: flex;
  margin-bottom: 30px;
}
.mobile-icons li {
  margin-right: 45px;
  list-style: none;
}

.mobile-inquiry {
  position: relative;
}
.mobile-inquiry a:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  background: url(icons/icon-inquiry.svg) no-repeat;
  padding: 12px;
}
.mobile-inquiry:hover a:before {
  background: url(icons/icon-inquiry-v.svg) no-repeat;
}
.mobile-inquiry .mobile-inquiry-number {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  background: #00376C;
  font-size: 12px;
  color: #fff;
  top: -11px;
  right: -38px;
  border-radius: 100%;
}

/* Language =====================================================================*/
.btn-lang {
  color: #fff;
}
.btn-lang:hover a:before {
  background: url(icons/icon-lang-v.svg) no-repeat;
}
.btn-lang a:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  background: url(icons/icon-lang.svg) no-repeat;
  padding: 10px;
}
.btn-lang:hover {
  background-color: #fabc3d;
}

.lang-options {
  display: none;
  position: absolute;
  z-index: 7;
  top: 23px;
  left: -100%;
  width: 100px;
  text-align: center;
}
.lang-options a {
  display: block;
  padding: 5px 5px;
  color: #fff;
  font-size: 15px;
  background: #7DABDB;
  transition: all 0.2s;
}
.lang-options a:hover {
  background: #00376C;
}

.mobile-lang {
  position: relative;
}

.mobile-btn-lang {
  color: #fff;
}
.mobile-btn-lang:hover a:before {
  background: url(icons/icon-lang-v.svg) no-repeat;
}
.mobile-btn-lang a:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  background: url(icons/icon-lang.svg) no-repeat;
  padding: 12px;
}
.mobile-btn-lang:hover {
  background-color: #fabc3d;
}

.mobile-lang-options {
  display: none;
  position: absolute;
  z-index: 7;
  top: 23px;
  left: 0;
  width: 100px;
  text-align: center;
}
.mobile-lang-options a {
  display: block;
  padding: 5px 5px;
  color: #fff;
  font-size: 15px;
  background: #7DABDB ;
  transition: all 0.2s;
}
.mobile-lang-options a:hover {
  background: #00376C;
}

/* Search =====================================================================*/
.search-box {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease-in-out;
  transform: translate(0px, -100%) scale(0, 0);
  opacity: 0;
}
.search-box.open {
  transform: translate(0px, 0px) scale(1, 1);
  opacity: 1;
  z-index: 17;
}
.search-box input[type=search] {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -51px;
  width: 60%;
  margin-left: 20%;
  color: white;
  background: transparent;
  border-top: 0px solid transparent;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  border-left: 0px solid transparent;
  border-right: 0px solid transparent;
  font-size: 40px;
  font-weight: 300;
  text-align: center;
  outline: none;
  padding: 10px;
}
.search-box input[type=search]::placeholder {
  color: #fff;
}
.search-box .close {
  position: fixed;
  top: 50px;
  right: 50px;
  display: block;
  width: 30px;
  height: 30px;
  opacity: 1;
  font-size: 27px;
  color: #fff;
}
.search-box .close:hover {
  cursor: pointer;
}
.search-box .close:before, .search-box .close:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 2px;
  content: "";
  background-color: #fff;
}
.search-box .close:before {
  transform: translateX(-50%) rotate(45deg);
}
.search-box .close:after {
  transform: translateX(-50%) rotate(-45deg);
}
.search-box .search-btn {
  position: absolute;
  top: 50%;
  right: 16%;
  margin-top: -32px;
  color: #fff;
  background: transparent;
  border: none;
  transition: all 0.5s ease-in-out;
}
.search-box .search-btn:hover {
  transform: scale(1.1);
}