:root {
  --min-width-layout: 300px;

  --header-height: 52px;
  --header-color: #858585;
  --header-active: black;
}

/* global used */
body {
  font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', Roboto, Arial, 'Helvetica Neue', Verdana, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  margin: 0;
  padding: 0;
  background-color: white;
  min-width: var(--min-width-layout);
}

hr {
  width: 100%;
  height: 1px;
  background-color: #e2e2e2;
  border: none;
}

p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #383838;
}

/* custom input and button */
input, button, textarea {
  font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', Roboto, Arial, 'Helvetica Neue', Verdana, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
}


/* button custom */
button {
  min-width: 70px;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 500;
  padding: 6px 10px;
  border: none;
  color: white;
  background-color: #3487f4;
  border-radius: 5px;
  transition: box-shadow 0.15s ease-in-out, background-color 0.15s ease-in-out;
}
button:hover {
  background-color: #438dee;
  box-shadow: 0 1px 3px #a8a8a8c2;
}
button:focus {
  outline: none;
  box-shadow: 0 1px 3px #a8a8a8c2;
}
button:disabled {
  background-color: rgb(192, 192, 192);
  color: white;
  cursor: default;
}

/* button main grey */
.btn-grey {
  background-color: #6C757D;
}
.btn-grey:hover {
  background-color: #5c666e;
}


/* button main red */
.btn-red {
  background-color: #DC3545;
}
.btn-red:hover {
  background-color: #c93644;
}



/* custom button light blue */
.btn-light {
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 400;
  padding: 5px 10px 7px;
  border: none;
  color: #1d75e8;
  background-color: #e4f1fd;
  border-radius: 5px;
  transition: background-color 0.15s ease-in-out;
}
.btn-light:hover {
  background-color: #d7e8fa !important;
  box-shadow: none;
}
.btn-light:focus {
  outline: none;
  box-shadow: none;
}
.btn-light:disabled {
  background-color: #d3d3d3;
  color: white;
  cursor: default;
}

/* custom button grey */
.btn-light-grey {
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 400;
  padding: 5px 10px 7px;
  border: none;
  color: black;
  background-color: #e4e6eb;
  border-radius: 5px;
  transition: background-color 0.15s ease-in-out;
}
.btn-light-grey:hover {
  background-color: #d8dbe2 !important;
  box-shadow: none;
}
.btn-light-grey:focus {
  outline: none;
  box-shadow: none;
}
.btn-light-grey:disabled {
  background-color: #d3d3d3;
  color: white;
  cursor: default;
}

/* custom button grey */
.btn-light-red {
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 400;
  padding: 5px 10px 7px;
  border: none;
  color: black;
  background-color: #facece;
  border-radius: 5px;
  transition: background-color 0.15s ease-in-out;
}
.btn-light-red:hover {
  background-color: #f5c7c7 !important;
  box-shadow: none;
}
.btn-light-red:focus {
  outline: none;
  box-shadow: none;
}
.btn-light-red:disabled {
  background-color: #d3d3d3;
  color: white;
  cursor: default;
}

input, select {
  height: 32px;
}

/* custom input */
input, textarea, select {
  box-sizing: border-box;
  font-size: 14.5px;
  padding: 5px 8px;
  border: 1px solid #dfdfdf;
  color: black;
  background-color: rgb(255, 255, 255);
  border-radius: 5px;
  transition: box-shadow 0.15s ease-in-out, border 0.15s;
}
input:hover, textarea:hover, select:hover {
  box-shadow: 0 1px 3px #c9c9c979;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  box-shadow: 0 1px 3px #c9c9c979;
  border: 1px solid rgb(121, 195, 255);
}
input:disabled, textarea:disabled, select:disabled {
  background-color: rgb(247, 247, 247);
}

/* top title box */
.main-cover {
  position: relative;
  width: 100%;
}
.main-cover img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}
.transparent-cover {
  background-color: rgba(44, 44, 44, 0.7);
  background-size: cover;  
  position: absolute;
  width: 100%;
  height: 100%;
}
.main-title-frame {
  position: absolute;
  bottom:80px;
}
.main-title {
  font-size: 45px;
  font-weight: bold;
  color: white;
  margin-bottom: 15px;
}
.main-description-frame {
  display: flex; 
  position: relative;
}
.main-description {
  font-size: 25px;
  color: rgb(243, 243, 243);
  margin-bottom: 8px;
  margin-left: 15px;
}
.left-color {
  position: absolute;
  top: 0;
  bottom: 5px;
  width: 5px;
  background-color: rgb(255, 171, 16);
}

/* content */
.web-content {
  box-sizing: border-box;
  max-width: 1280px;
  position: relative;
  left: 50%;
  padding: 5px 10px;
  transform: translateX(-50%);
}
.content-highlight {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  background-color: #f0f0f0;
  padding: 10px 0;
}
.content-title {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
}
.content-text {
  font-size: 15px;
  text-align: justify;
}

.title {
  font-size: 25px;
  font-weight: 500;
  margin: 10px 0px;
}

/* box shadow transition */
.box-select {
  transition: box-shadow 0.2s;
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
.box-select:hover {
  box-shadow: 0 0 10px 2px #d8d8d8;
}

/* header */
/* full */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9000;
  width: 100%;
  min-width: var(--min-width-layout);
  height: var(--header-height);
  backdrop-filter: saturate(180%) blur(20px);
  background-color: rgba(255,255,255,0.72);
}
.header-content {
  display: flex;
}
.header-content a {
  text-decoration: none;
  padding: 5px 8px;
  margin: 5px;
  color: var(--header-color);
  white-space: nowrap;
  border-radius: 4px;
  transition: color 0.2s;
}
.header-content a:hover {
  color: var(--header-active);  
}

/* mobile */
.mobile-menu {
  position: fixed;
  backdrop-filter: saturate(180%) blur(20px);
  background-color: rgba(255,255,255,0.72);
  z-index: 8000;
  top: var(--header-height);
  left: 0;
  right: 0;
  height: 0;
}
.mobile-link {
  list-style: none;
  margin: 20px 0 0 20px;
  padding: 0;
  display: none;
  opacity: 0;
}
.mobile-link li {
  margin-bottom: 15px;
}
.mobile-link a {
  text-decoration: none;
  color: var(--header-color);
  transition: color 0.2s;
}
.mobile-link a:hover {
  color: var(--header-active);
}

.menu-active {
  color: var(--header-active) !important;
}

.mobile-icon-menu {
  position: absolute;
  right: 20px;
  top: 10px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.mobile-icon-menu .menu-icon {
  width: 100%;
  height: 100%;
  background-image: url('../img/icon_menu.png');
  background-repeat: no-repeat;
  background-size: cover;
}

/* responsive header */
/*  when mobile view */
@media only screen and (max-width: 800px) {
  .header-full { display: none; }
  .header-mobile { display: flex; }
  .mobile-menu { display: block; }
}

/* when pc view */
@media only screen and (min-width: 800px) {
  .header-full { display: flex; }
  .header-mobile { display: none; }
  .mobile-menu { display: none; }
}


.img-logo {
  width: 121px; 
  height: 28px;
  background: url("/img/logo.svg") no-repeat;  
}
.img-logo:hover {
  background: url("/img/logo-highligh.svg") no-repeat;
}


/* bottom footer */
footer {
  display: flex;
  margin: 10px 0;
  white-space: nowrap;
}

/* customers menu */
.customers-menu {
  position: absolute;
  display: flex;
  right: 10px;
  top: 70px;
}

.customers-menu-button {  
  margin-left: 10px;
  border-radius: unset;
  border: 2px solid white;
  background-color: transparent;
}