@import url("../font/segoeui.ttf");

body {
  font-family: "segoeui", sans-serif;
  -webkit-text-size-adjust: 100% !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-font-smoothing: subpixel-antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-rendering: optimizeLegibility !important;
  background-color: #fff;
  overflow: hidden;
  overflow-y: scroll;
  min-height: 100vh;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

body::-webkit-scrollbar {
  display: none;
}

a {
  text-decoration: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

textarea:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

.limit-line {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* navbar */
nav {
  background: transparent;
  padding: 30px 0px !important;
  position: relative;
  z-index: 100;
}

.logo-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.pp-nav-logo {
  width: 320px;
  height: auto;
}

.gsis-nav-logo {
  width: 320px;
  height: auto;
}

.btn-getfree {
  margin-top: 20px;
  padding: 10px 30px;
  border: none;
  border-radius: 50px;
  color: #ffffff;
  background-color: #163a5c;
  background: linear-gradient(to right, #0b1e30 50%, #12385c 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.5s ease-out;
}

.btn-getfree:hover {
  background-position: left bottom;
}

.d-none-desktop {
  display: none;
}

/* footer */
footer {
  background: #163a5c 0% 0% no-repeat padding-box;
  opacity: 1;
  padding: 30px 0px;
}

.footer-detail {
  display: flex;
  flex-direction: row;
  color: #fff;
  align-items: center;
  justify-content: space-between;
}

.logo-footer {
  display: flex;
  align-items: start;
}

.logo-footer > img {
  width: 200px;
  height: auto;
}

.footer-detail-text {
  text-align: right;
}

.footer-detail-text > div > a {
  color: #fff;
}

.footer-detail-text > div > a:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}

#btn-to-top {
  display: inline-block;
  background-color: #3588d4;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  padding: 14px;
  color: #ffffff;
  font-weight: bold;
}

#btn-to-top:hover {
  cursor: pointer;
  background-color: #69b2f7;
}

#btn-to-top.show {
  opacity: 1;
  visibility: visible;
}

.header-q {
  color: #163a5c;
}

.sub-header-q {
  color: #3588d4;
}

.question-form {
  display: flex;
  flex-direction: column;
  margin: 20px 0px;
  padding: 30px 20px;
  border: 1px solid #5095d6;
  border-radius: 20px;
}

.question {
  margin: 20px 0px 10px 0px;
}

.form-check {
  margin-top: 5px;
  margin-left: 30px;
}

.form-control {
  margin: 10px 30px 0px 30px;
  width: 80%;
}

.btn-submit {
  margin-top: 20px;
  padding: 10px 30px;
  border: none;
  border-radius: 50px;
  color: #ffffff;
  background-color: #163a5c;
  background: linear-gradient(to right, #0b1e30 50%, #12385c 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.5s ease-out;
  width: 80%;
}

.btn-submit:hover {
  background-position: left bottom;
}

.thank-bottom {
  margin: 10px 0px 50px 0px;
}