:root {
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --bg-color: #0a1f33 ;
  --second-bg-color: #ffffff;
  --third-bg-color: #0b253d;
  --border-color: #666b71;
  --text-color: #fff;
  --main-color: #1D75BC;
  --hover-color:#12293f;
  --background-color: #E6F2FA;
}

@font-face {
  font-family: english_font;
  src: url(../font/font_english.ttf);
}
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  font-family: english_font;
}

@media print {
  html,
  body {
    display: none;
    /* hide whole page */
  }
}
html,
body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #1f1e1e;
  background: var(--text-color);
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  /* IE10+/Edge */
  user-select: none;
  /* Standard */
  font-family: english_font;
  scroll-behavior: smooth;
}

.error_contact {
  border: 1px solid var(--main-color) !important;
}

.active-page {
  color: var(--main-color) !important;
}

.active-plus-color::before,
.active-plus-color::after {
  background-color: var(--main-color) !important;
}

a,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

.header_top {
  width: 100%;
  background-color: var(--background-color);
}
.header_top .notice_bar {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid black;
}
.header_top .notice_bar marquee {
  padding-top: 10px;
}
.header_top .notice_bar::before {
  position: absolute;
  content: "Notice :";
  z-index: 1000;
  padding: 10px 20px;
  padding-right: 40px;
  background: linear-gradient(90deg, rgb(29, 117, 188) 0%, rgba(29, 117, 188, 0.9) 0%, rgb(29, 117, 188) 48%, rgb(19, 69, 110) 100%);
  color: white;
  border-bottom-right-radius: 246px;
}
.header_top .social_contact_box .contact_social {
  display: flex;
  justify-content: space-between;
  color: black;
  max-width: 1300px;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  padding: 5px 20px;
  border-bottom: 1px solid black;
}
.header_top .social_contact_box .contact_social .contact {
  display: flex;
  gap: 20px;
}

.header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 100;
  margin: 0 auto;
  padding: 10px 0px;
  background-color: var(--background-color);
}
.header .container-menu-top {
  max-width: 1300px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  margin: 0 auto;
}
.header.sticky {
  position: fixed;
  top: 0;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
  transition: 0.5s;
  background-color: #fff;
  z-index: 100;
}
.header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 5px 0;
}
.header .wrapper .logo-part .logo-img img {
  height: 120px;
  width: auto;
}
.header .menu > .menu-item {
  position: relative;
  display: inline-block;
  margin: 0 0.75rem;
}
.header .menu > .menu-item > a {
  display: block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: inherit;
  padding: 1rem 0;
  border: none;
  outline: none;
  color: black;
  text-transform: capitalize;
  transition: all 0.35s ease;
  text-decoration: none;
}
.header .menu > .menu-item > a .expand {
  position: relative;
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  margin-left: 0.35rem;
  pointer-events: none;
  border: none;
  outline: none;
}
.header .menu > .menu-item > a .expand:before, .header .menu > .menu-item > a .expand:after {
  position: absolute;
  box-sizing: inherit;
  content: "";
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background: black;
  transform: translate(-50%, -50%);
  transition: all 0.35s ease;
}
.header .menu > .menu-item:hover > a {
  color: var(--main-color);
}
.header .menu > .menu-item:hover > a .expand::before, .header .menu > .menu-item:hover > a .expand::after {
  background: var(--main-color);
}
.header .menu > .menu-item > a .expand::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.header .menu > .menu-item > .sub-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  width: 13rem;
  height: auto;
  padding: 0.75rem 0;
  border: none;
  outline: none;
  opacity: 0;
  visibility: hidden;
  border-top: 3px solid var(--main-color);
  background: var(--second-bg-color);
  box-shadow: var(--shadow-medium);
  transform: translateY(1rem);
  transition: all 0.35s ease;
}
.header .menu > .menu-item > .sub-menu > .menu-item {
  display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a {
  display: block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: inherit;
  padding: 0.5rem 1.25rem;
  color: black;
  text-transform: capitalize;
  transition: all 0.35s ease;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover {
  color: var(--main-color);
}
.header .burger {
  position: relative;
  cursor: pointer;
  display: none;
  width: 1.75rem;
  height: 1rem;
  margin-top: -0.25rem;
  outline: none;
  opacity: 0;
  visibility: hidden;
  background: none;
  transform: rotate(0deg);
  transition: all 0.35s ease;
  left: -15px !important;
}
.header .burger-line {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  left: 0;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 0.25rem;
  background: var(--main-color);
  transform: rotate(0deg);
  transition: all 0.25s ease;
}
.header .burger-line:nth-child(1) {
  top: 0;
}
.header .burger-line:nth-child(2), .header .burger-line:nth-child(3) {
  top: 0.5rem;
}
.header .burger-line:nth-child(4) {
  top: 1rem;
}
.header .overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.65);
  transition: all 0.35s ease;
}

#logo-part {
  display: none;
  color: var(--main-color);
}

#container-menu-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#brand_logo img {
  height: 70px;
  width: auto;
}

@media (min-width: 1251px) {
  .header .navbar .closed-menu {
    position: absolute;
    display: none;
    top: 1rem;
    right: 0.5rem;
    justify-content: center;
    cursor: pointer;
    width: 4rem;
    height: 4rem;
    border: none;
    outline: none;
    background: none;
  }
  .header .menu > .menu-item-child:hover > .sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    width: 290px;
  }
  .header .menu > .menu-item-child:hover > a .expand::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
@media (max-width: 1250px) {
  #container-menu-top-row {
    align-items: center;
  }
  #logo-part {
    display: block;
  }
  #brand_logo img {
    height: 100px;
    width: auto;
  }
  .header .container-menu-top .wrapper {
    display: flex;
    justify-content: space-between;
  }
  .header .overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .header .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100%;
    z-index: 999;
    opacity: 0;
    overflow-y: auto;
    visibility: hidden;
    background: black;
    box-shadow: var(--shadow-medium);
    transition: all 0.5s ease;
  }
  .header .navbar.active {
    left: 0rem;
    opacity: 1;
    visibility: visible;
  }
  .header .navbar .closed-menu {
    position: absolute;
    display: flex;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: auto;
    justify-content: center;
    align-items: center;
  }
  .header .navbar .closed-menu #closed-menu {
    color: var(--main-color);
    font-size: 30px;
    text-align: center;
  }
  .header .menu {
    width: 100%;
    height: auto;
    margin-top: 4rem;
  }
  .header .menu > .menu-item {
    display: block;
    margin: 0;
  }
  .header .menu > .menu-item-child > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .menu > .menu-item > a {
    padding: 0.625rem 1.25rem;
    color: white;
  }
  .header .menu > .menu-item > a .expand::before, .header .menu > .menu-item > a .expand::after {
    background: white;
  }
  .header .menu > .menu-item-child.active > a .expand:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .header .menu > .menu-item > .sub-menu {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-height: 0;
    padding: 0px;
    border: none;
    outline: none;
    opacity: 1;
    overflow: hidden;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    transform: translateY(0px);
  }
  .header .menu > .menu-item > .sub-menu > .menu-item > a {
    padding: 0.625rem 2rem;
    color: white;
  }
  .header .burger {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 600px) {
  #brand_logo img {
    width: 280px;
    height: auto;
  }
  .divide {
    display: none;
  }
  .email {
    display: none;
  }
}/*# sourceMappingURL=navbar.css.map */