@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[type="radio"] {
  cursor: pointer;
}

input[type="checkbox"] {
  cursor: pointer;
}

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 {
  padding: 15px 0px !important;
  z-index: 100;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

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

.iskl-logo {
  display: block;
  width: 100px;
  height: auto;
  margin-left: 15px;
}

.pp-logo {
  display: block;
  width: auto;
  height: 60px;
}

.text-nav {
  color: #7c7c7c;
}

.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 {
  margin-top: 20px;
  color: #163a5c;
}

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

.head-q {
  color: #3588d4;
  padding: 15px 0px;
}

.cigna-logo {
  width: 110px;
  height: auto;
}

.head-section {
  background: rgb(13, 119, 13);
  color: #fff;
  padding: 10px;
}

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

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

.sub-head-q {
  background: #69b2f7;
  color: #fff;
  font-weight: bold;
  padding: 10px 0px 10px 15px;
}

.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: 20px 0px 30px 0px;
}

@media screen and (max-width: 450px) {
  .logo-nav {
    display: flex;
    align-items: center;
    justify-content: start;
    position: relative;
    width: 100%;
  }
  
  .iskl-logo {
    display: block;
    width: 100px;
    height: auto;
    margin-left: 0px;
  }
  
  .pp-logo {
    display: none;
    width: 150px;
    height: auto;
  }

  .text-nav {
    color: #7c7c7c;
    margin-left: 10px;
  }

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

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