@media (max-width: 1175px) {
  nav {
    display: none;
  }
}

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

.brand-logo {
  position: absolute;
  top: -35px;
  left: 20px;
}
.brand-logo img {
    width: 250px;
}
@media (max-width: 1175px) {
  .brand-logo {
    top: -20px;
	left: 0px;
  }
	.brand-logo img {
		width: 150px;
	}
}

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

.mobile-container {
  margin: 13px auto 0 auto;
  padding: 0 30px;
}

.shrink {
  margin-top: -30px;
  box-shadow: 0px 2px 6px -3px rgba(0, 0, 0, 0.5);
}
@media (max-width: 1175px) {
  .shrink {
    margin-top: 0px;
  }
}
.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;
  margin-top: 7px;
  padding: 0 50px;
}
.shrink .menu-bar-wrapper .menu-bar-wrapper-inner {
  position: static;
}
.shrink .menu-bar-wrapper .img-fluid {
  width: 190px;
  margin-top: 16px;
}

.menu-top {
  position: relative;
  left: 50%;
}
.about-text h1 span {
    color: #4573A7;
}
.menu-top-inner {
  display: flex;
  flex-direction: row;
  background: #636363;
  font-size: 13px;
  margin-bottom: 0;
  padding: 5px 40px 5px 10px;
  border-radius: 0 0 0 15px;
}
.menu-top-inner li {
  padding: 0 5px;
  display: flex;
  align-items: center;
}
.menu-top-inner li a {
  color: #fff;
  position: relative;
  transition: all 0.5s;
}
.menu-top-inner li a:before {
  content: "";
}
.menu-top-inner li.tel {
  position: relative;
  margin-left: 20px;
}
.menu-top-inner li.tel:hover a {
  color: #9CC6E8;
}
.menu-top-inner li.tel a:before {
  position: absolute;
  top: 0px;
  left: -15px;
  background: url(icons/icon-phone.svg) no-repeat;
  padding: 7px;
}
.menu-top-inner li.email {
  position: relative;
  margin-left: 20px;
}
.menu-top-inner li.email a:before {
  position: absolute;
  top: 0px;
  left: -20px;
  background: url(icons/icon-mail.svg) no-repeat;
  padding: 7px;
}
.menu-top-inner li.email:hover a {
  color: #9CC6E8;
}
.menu-top-inner li.inquiry {
  position: relative;
  z-index: 5;
  margin-left: 20px;
}
.menu-top-inner li.inquiry:hover a {
  color: #9CC6E8;
}
.menu-top-inner li.inquiry a:before {
  position: absolute;
  top: 0px;
  left: -20px;
  background: url(icons/icon-inquiry.svg) no-repeat;
  padding: 7px;
}
.menu-top-inner li.inquiry .inquiry-number {
  position: absolute;
  display: block;
  width: 16px;
  height: 16px;
  text-align: center;
  line-height: 16px;
  background: #00225A;
  font-size: 12px;
  color: #fff;
  top: -5px;
  right: -8px;
  border-radius: 100%;
}
.menu-top-inner li.search {
  position: relative;
  margin-left: 20px;
}
.menu-top-inner li.search:hover a {
  color: #9CC6E8;
}
.menu-top-inner li.search a:before {
  position: absolute;
  left: -20px;
  top: 0px;
  background: url(icons/icon-search.svg) no-repeat;
  padding: 7px;
}
.menu-top-inner li.lang {
  position: relative;
}

/* Language =====================================================================*/
.btn-lang {
  position: relative;
  cursor: pointer;
  background-color: transparent;
  padding: 4px 25px 4px 10px;
  color: #fff;
  line-height: 12px;
  text-transform: uppercase;
  transition: all 1s;
  width: 107px;
  text-align: center;
}
.btn-lang:after {
  position: absolute;
  top: 7px;
  left: 86px;
  content: "";
  border-top: 0.4em solid;
  border-right: 0.4em solid transparent;
  border-bottom: 0;
  border-left: 0.4em solid transparent;
  color: #fff;
  transition: all 0.2s;
}
.btn-lang.open:after {
  transform: rotate(180deg);
}
.btn-lang:hover {
  background-color: #393939;
}

.lang-options {
  display: none;
  position: absolute;
  z-index: 7;
  top: 23px;
  left: 5px;
  width: 107px;
  text-align: center;
}
.lang-options a {
  display: block;
  padding: 5px 5px;
  color: #fff;
  background: #393939;
  transition: all 0.2s;
}
.lang-options a:hover {
  background: #636363;
}

.mobile-lang {
  margin-bottom: 10px;
  position: relative;
}

.mobile-btn-lang {
  position: relative;
  cursor: pointer;
  background-color: #636363;
  padding: 10px 10px 10px 25px;
  color: #fff;
  line-height: 12px;
  transition: all 1s;
  width: 150px;
  text-align: center;
  border-radius: 5px;
}
.mobile-btn-lang:before {
  position: absolute;
  content: "";
  top: 6px;
  left: 14px;
  background: url(icons/icon-lang.svg) no-repeat;
  padding: 10px;
}
.mobile-btn-lang:after {
  position: absolute;
  right: 10px;
  top: 13px;
  content: "";
  border-top: 0.4em solid;
  border-right: 0.4em solid transparent;
  border-bottom: 0;
  border-left: 0.4em solid transparent;
  color: #fff;
  transition: all 0.2s;
}
.mobile-btn-lang.open:after {
  transform: rotate(180deg);
}

.mobile-lang-options {
  display: none;
  position: absolute;
  z-index: 7;
  top: 32px;
  left: 0px;
  width: 150px;
  text-align: center;
}
.mobile-lang-options a {
  display: block;
  padding: 5px;
  color: #fff;
  background: #636363;
  transition: all 0.2s;
  border-radius: 5px;
  margin-top: 1px;
}
.mobile-lang-options a:hover {
  background: #909090;
}

/* Search =====================================================================*/
.search-box {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  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: 77;
}
.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 .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);
}