/*===== Button =====*/
body {
  background-color: #2d292a !important;
  color: #ffffff !important;
}

.button {
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 500;
}

@media screen and (max-width: 1366px) {
  .button {
    font-size: 16px;
    padding: 8px 16px;
  }
}
@media screen and (max-width: 560px) {
  .button {
    font-size: 14px;
    padding: 6px 12px;
  }
}
.button.primary {
  background-color: var(--primary);
  color: var(--white);
}
.button.primary.outline {
  border: 1px solid var(--primary);
  background-color: transparent;
  color: var(--primary);
}
.button.primary.outline:hover {
  background-color: var(--primary);
  color: var(--white);
}
.button.white {
  background-color: var(--white);
  color: var(--black);
}
header {
  background-color: #2d292a !important;
}

/*===== Color =====*/
body {
  --white: #ffffff;
  --black: #000000;
  --primary: #0093a9;
  --bg: #0093a9;
  --yellow: #fdf003;
  --red: #c0121a;
  --background: #2d292a !important;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  min-height: 100px;
  transition: -webkit-transform 0.1s;
  transition: transform 0.1s;
  transition: transform 0.1s, -webkit-transform 0.1s;
  display: flex;
  align-items: center;
  background-color: var(----background);
}
header nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header nav .navbar-brand img {
  width: auto;
  height: 4.5rem;
}
@media screen and (max-width: 1024px) {
  header nav .navbar-brand img {
    height: 4rem;
  }
}
header nav .navbar-toggle {
  border-style: none;
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
@media screen and (min-width: 1024px) {
  header nav .navbar-toggle {
    display: none;
  }
}
header nav .navbar-toggle svg {
  width: 24px;
  height: 24px;
}
header nav .navbar-toggle:hover {
  cursor: pointer;
  text-decoration: none;
}
header nav .navbar-content {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  header nav .navbar-content {
    display: none;
    flex-direction: column;
    transition: opacity 1s ease-out;
    height: 0;
    opacity: 0;
  }
  header nav .navbar-content.show {
    display: flex;
    height: min-content;
    opacity: 1;
  }
}
@media screen and (max-width: 1024px) {
  header nav .navbar-content > li {
    width: 100%;
    text-align: left;
  }
}
header nav .navbar-content > li > a {
  padding: 1rem;
}
@media screen and (max-width: 1240px) {
  header nav .navbar-content > li > a {
    padding: 1rem 0.5rem;
  }
}
@media screen and (max-width: 1024px) {
  header nav .navbar-content > li > a {
    display: flex;
    justify-content: space-between;
  }
}
header nav .navbar-content > li a {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
}
@media screen and (max-width: 1024px) {
  header nav .navbar-content > li a {
    font-size: 1rem;
  }
}
header nav .navbar-content > li a:hover {
  opacity: 0.9;
}
header nav .navbar-content > li a.button {
  display: inline-block;
  margin-left: 1rem;
  padding: 0.75rem 1.25rem;
}
@media screen and (max-width: 1024px) {
  header nav .navbar-content > li a.button {
    margin-top: 1rem;
  }
}
header nav .navbar-content > li a.button:hover {
  color: white;
}
header nav .navbar-content > li .sub-menu {
  display: none;
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 16px 48px 0 rgba(0, 0, 0, 0.16);
  background-color: var(----background);
  white-space: nowrap;
  padding: 26px 16px;
  width: initial;
  flex-direction: column;
  align-items: flex-start;
  z-index: 9999;
  margin: 6px 0 0 -30px;
  min-width: 260px;
}
@media screen and (max-width: 1024px) {
  header nav .navbar-content > li .sub-menu {
    position: relative;
    left: initial;
    top: initial;
    box-shadow: none;
    background: none;
    border-radius: 0;
    margin: 0;
    padding: 0 1rem;
  }
  header nav .navbar-content > li .sub-menu:hover {
    display: block;
  }
}
header nav .navbar-content > li .sub-menu li {
  position: relative;
  line-height: 22px;
  padding: 6px 0;
  width: 100%;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  header nav .navbar-content > li .sub-menu li {
    padding: 6px 0 6px 1rem;
  }
}
header nav .navbar-content > li .sub-menu li a {
  font-weight: 500;
  text-decoration: none;
}
header nav .navbar-content > li .sub-menu li a:hover {
  color: var(--primary);
}
header nav .navbar-content > li .sub-menu li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  header nav .navbar-content > li .sub-menu li > a {
    padding-right: 0;
    line-height: 28px;
  }
}
header nav .navbar-content > li .sub-menu li:first-child {
  padding-top: 0;
}
header nav .navbar-content > li .sub-menu li:last-child {
  padding-bottom: 0;
}
header nav .navbar-content > li .sub-menu li .sub-menu-children {
  display: none;
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 16px 48px 0 rgba(0, 0, 0, 0.16);
  background-color: var(----background);
  white-space: nowrap;
  padding: 26px 16px;
  width: initial;
  flex-direction: column;
  align-items: flex-start;
  z-index: 9999;
  left: 100%;
  top: 0;
  margin: -15px 0 0 -4px;
  min-width: 240px;
}
header nav .navbar-content > li .sub-menu,
header nav .navbar-content > li .sub-menu li .sub-menu-children {
  background-color: #2d292a !important;
  color: #ffffff !important;
}

@media screen and (max-width: 1024px) {
  header nav .navbar-content > li .sub-menu li .sub-menu-children {
    position: relative;
    left: initial;
    top: initial;
    box-shadow: none;
    background: none;
    border-radius: 0;
    margin: 0;
    padding: 1rem;
  }
  header nav .navbar-content > li .sub-menu li .sub-menu-children:hover {
    display: block;
  }
}
header nav .navbar-content > li .sub-menu li:hover .sub-menu-children {
  display: flex;
}
header nav .navbar-content > li.language {
  position: relative;
}
header nav .navbar-content > li.language .sub-menu {
  min-width: auto;
  margin: 6px 0 0 0;
  padding: 16px;
  left: 50%;
  transform: translateX(-50%);
}
header nav .navbar-content > li:hover ul {
  display: flex;
}
header nav .navbar-content > li.close-button svg {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 1024px) {
  header nav .navbar-content > li.close-button {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 1024px) {
  header nav .navbar-content {
    position: absolute;
    background: var(--background);
    border-radius: 16px;
    top: 0;
    padding: 24px;
    z-index: 111;
    box-shadow: 0 16px 48px 0 rgba(0, 0, 0, 0.16);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  header nav .navbar-content {
    width: 100%;
  }
}
@media screen and (min-width: 576px) and (max-width: 767.98px) {
  header nav .navbar-content {
    width: calc(100% - 35px);
  }
}
@media screen and (max-width: 575.98px) {
  header nav .navbar-content {
    width: calc(100% - 30px);
  }
}
header.navbar-fixed {
  background-color: var(----background);
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/*===================== TYPOGRAPHY =================================
    Font      :     font-family: 'DM Sans';
=====================================================================*/
*:not(i) {
  font-family: "DM Sans", sans-serif !important;
}

body {
  background-color: var(----background);
  min-height: 100vh;
}
body .container {
  position: relative;
  max-width: 1650px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  color: var(--white);
}
@media screen and (max-width: 1920px) {
  body .container {
    max-width: 70%;
  }
}
@media screen and (max-width: 1366px) {
  body .container {
    max-width: 90%;
  }
}
@media screen and (max-width: 1024px) {
  body .container {
    max-width: 95%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 560px) {
  body .container {
    padding: 0 20px;
    max-width: 100%;
  }
}
body .container h1 {
  font-size: 55px;
}
@media screen and (max-width: 1366px) {
  body .container h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 1024px) {
  body .container h1 {
    font-size: 36px;
  }
}
@media screen and (max-width: 560px) {
  body .container h1 {
    font-size: 30px;
  }
}
body .container h2 {
  font-size: 48px;
}
@media screen and (max-width: 1680px) {
  body .container h2 {
    font-size: 42px;
  }
}
@media screen and (max-width: 1366px) {
  body .container h2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 560px) {
  body .container h2 {
    font-size: 32px;
  }
}
body .container h3 {
  font-size: 30px;
}
@media screen and (max-width: 1680px) {
  body .container h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 1366px) {
  body .container h3 {
    font-size: 21px;
  }
}
@media screen and (max-width: 560px) {
  body .container h3 {
    font-size: 18px;
  }
}
body .container h4 {
  font-size: 24px;
}
@media screen and (max-width: 1680px) {
  body .container h4 {
    font-size: 21px;
  }
}
@media screen and (max-width: 1366px) {
  body .container h4 {
    font-size: 18px;
  }
}
@media screen and (max-width: 560px) {
  body .container h4 {
    font-size: 16px;
  }
}
body ::-webkit-scrollbar {
  display: none;
}

section {
  position: relative;
  scroll-margin-top: 150px;
}
@media screen and (max-width: 1366px) {
  section {
    scroll-margin-top: 100px;
  }
}
section.headline-type-2 {
  padding-top: 100px;
  z-index: 1;
}
section.headline-type-2 .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 2;
  height: 600px;
}
@media screen and (max-width: 1680px) {
  section.headline-type-2 .container {
    height: 550px;
  }
}
@media screen and (max-width: 1366px) {
  section.headline-type-2 .container {
    height: 500px;
  }
}
@media screen and (max-width: 1024px) {
  section.headline-type-2 .container {
    height: auto;
    padding: 60px 1rem;
  }
}
section.headline-type-2 .container .text-area {
  display: flex;
  flex-direction: column;
  text-align: left;
  max-width: 50%;
  flex: 0 0 50%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  padding-right: 2rem;
}
@media screen and (max-width: 1024px) {
  section.headline-type-2 .container .text-area {
    max-width: 100%;
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    padding-right: 0;
    text-align: center;
  }
}
section.headline-type-2 .container .text-area h1 {
  font-size: 72px;
  line-height: 1.3;
}
@media screen and (max-width: 1680px) {
  section.headline-type-2 .container .text-area h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 1440px) {
  section.headline-type-2 .container .text-area h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 1024px) {
  section.headline-type-2 .container .text-area h1 {
    font-size: 36px;
  }
}
section.headline-type-2 .container .text-area p {
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1440px) {
  section.headline-type-2 .container .text-area p {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  section.headline-type-2 .container .text-area p {
    font-size: 14px;
  }
}
section.headline-type-2 .container .text-area p span {
  font-weight: 500;
  margin-right: 4px;
}
section.headline-type-2 .container .text-area .detail-area {
  display: flex;
  flex-direction: column;
}
section.headline-type-2 .container .text-area .detail-area .button {
  width: min-content;
  white-space: nowrap;
  background-color: var(--red);
  color: var(--black);
  padding: 8px 16px;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 5px;
}
section.headline-type-2 .img-area {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 45vw;
  overflow: hidden;
  border-radius: 50px 0 0 50px;
}
@media screen and (max-width: 1024px) {
  section.headline-type-2 .img-area {
    display: none;
  }
}
section.headline-type-2 .img-area img {
  height: 550px;
  width: auto;
}
@media screen and (max-width: 1680px) {
  section.headline-type-2 .img-area img {
    height: 520px;
  }
}
@media screen and (max-width: 1366px) {
  section.headline-type-2 .img-area img {
    height: 480px;
  }
}
section.headline-type-3 {
  padding-top: 160px;
  z-index: 1;
  margin-bottom: 60px;
}
@media screen and (max-width: 560px) {
  section.headline-type-3 {
    padding-top: 100px;
  }
}
section.headline-type-3 .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 2;
  height: auto;
  padding: 60px 1rem;
}
section.headline-type-3 .container .text-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}
section.headline-type-3 .container .text-area h1 {
  font-size: 72px;
  line-height: 1;
}
@media screen and (max-width: 1680px) {
  section.headline-type-3 .container .text-area h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 1440px) {
  section.headline-type-3 .container .text-area h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 1024px) {
  section.headline-type-3 .container .text-area h1 {
    font-size: 36px;
  }
}
section.headline-type-3 .container .text-area p {
  font-size: 20px;
  line-height: 1.5;
  opacity: 0.75;
}
@media screen and (max-width: 1440px) {
  section.headline-type-3 .container .text-area p {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  section.headline-type-3 .container .text-area p {
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  section.headline-type-3 .container .text-area p {
    font-size: 14px;
  }
}
section.headline-type-4 {
  padding: 200px 0 100px;
  z-index: 1;
  margin-bottom: 60px;
}
section.headline-type-4::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  opacity: 0.5;
}
@media screen and (max-width: 560px) {
  section.headline-type-4 {
    padding: 100px 0;
  }
}
section.headline-type-4 .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 2;
  height: auto;
  padding: 60px 1rem;
}
section.headline-type-4 .container .text-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  color: var(--white);
}
section.headline-type-4 .container .text-area h1 {
  font-size: 72px;
  line-height: 1;
}
@media screen and (max-width: 1680px) {
  section.headline-type-4 .container .text-area h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 1440px) {
  section.headline-type-4 .container .text-area h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 1024px) {
  section.headline-type-4 .container .text-area h1 {
    font-size: 36px;
  }
}
section.headline-type-4 .container .text-area p {
  font-size: 20px;
  line-height: 1.5;
  opacity: 0.75;
}
@media screen and (max-width: 1440px) {
  section.headline-type-4 .container .text-area p {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  section.headline-type-4 .container .text-area p {
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  section.headline-type-4 .container .text-area p {
    font-size: 14px;
  }
}
section.headline-type-5 {
  padding-top: 160px;
  z-index: 1;
}
@media screen and (max-width: 560px) {
  section.headline-type-5 {
    padding-top: 100px;
  }
}
section.headline-type-5 .container {
  display: flex;
  z-index: 2;
  height: auto;
  padding: 60px 1rem;
}
section.headline-type-5 .container .text-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}
section.headline-type-5 .container .text-area h1 {
  font-size: 72px;
  line-height: 1;
}
@media screen and (max-width: 1680px) {
  section.headline-type-5 .container .text-area h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 1440px) {
  section.headline-type-5 .container .text-area h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 1024px) {
  section.headline-type-5 .container .text-area h1 {
    font-size: 36px;
  }
}
section.headline-type-5 .container .text-area p {
  font-size: 20px;
  line-height: 1.5;
  opacity: 0.75;
}
@media screen and (max-width: 1440px) {
  section.headline-type-5 .container .text-area p {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  section.headline-type-5 .container .text-area p {
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  section.headline-type-5 .container .text-area p {
    font-size: 14px;
  }
}

footer {
  position: relative;
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 0;
  color: var(--white);
  z-index: 2;
  font-size: 1.1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1680px) {
  footer .container {
    padding: 48px 0;
  }
}
@media screen and (max-width: 1366px) {
  footer .container {
    padding: 42px 0;
  }
}
@media screen and (max-width: 560px) {
  footer .container {
    flex-direction: column;
    padding: 1.5rem 0;
  }
}
footer .container p {
  max-width: 90%;
}
footer .container.flex-column {
  display: flex;
  flex-direction: column;
}
footer .container .main-logo img {
  max-height: 100px;
}
footer .container .other-logo {
  margin-bottom: 2.5rem;
}
footer .container .other-logo img {
  max-height: 60px;
}
footer .container.credit .copyright {
  font-weight: 500;
}
@media screen and (max-width: 560px) {
  footer .container.credit .copyright {
    margin-bottom: 1rem;
  }
}
footer .container.credit .mail-area {
  display: flex;
  flex-direction: row;
  align-items: center;
}
footer .container.credit img {
  max-height: 20px;
}
@media screen and (max-width: 560px) {
  footer .container.credit img {
    max-height: 16px;
  }
}
footer .container.ab-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 3rem auto 0;
}
footer .container.ab-logo img {
  max-width: 300px;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 560px) {
  footer .container.ab-logo img {
    max-width: 200px;
  }
}
footer .container.ab-logo p {
  max-width: 450px;
}
.ui.accordion .title:not(.ui) {
  color: white !important;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  color: black !important;
}

section .container .contact-area .contact-item {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
section .container .contact-area .contact-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
