@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");
@import url("../css/reset.css");
@import url("../css/layout.css");
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
body {
  font-family: "Montserrat", sans-serif;
}
.app-btn {
  padding: 0px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.button-title {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 25px;
  font-family: Comfortaa;
  color: white;
}
@media (max-width: 576px) {
  .button-title {
    margin-bottom: 10px;
  }
}
.app-l-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.app-home-btn {
  border-radius: 28px;
  padding: 8px 20px 10px 20px;
  background-color: #fdb738;
  color: white;
  font-family: Montserrat;
  font-size: 17px;
  font-weight: 500;
  line-height: 21px;
  width: 89.4px;
  height: 39.69px;
}
.app-home-btn:hover{
  box-shadow: 0 0 0 2px #e0c38f;
}
.app-kids-section {
  background: #294867;
}
.app-kids-section .container {
  position: relative;
}
.app-kids-section .container::before {
  position: absolute;
  content: "";
  width: 185px;
  height: 188px;
  background: url("../images/graphics-left.svg");
  left: -177px;
  top: 200px;
  display: block;
}
.app-kids-section .container::after {
  position: absolute;
  content: "";
  width: 364px;
  height: 668px;
  background: url(../images/graphics-right.svg);
  right: -90px;
  display: block;
  top: 0px;
}
@media (max-width: 1200px) {
  .app-kids-section .container::after,
  .app-kids-section .container::before {
    content: none;
  }
}
@media (max-width: 1200px) {
  .app-kids-section {
    background: url("../images/home-page-bg.png") no-repeat #294867;
    background-size: 100%;
  }
}
@media (max-width: 576px) {
  .app-kids-section {
    background: url("../images/mobile-home-svg.svg") no-repeat #294867;
    background-size: 100%;
  }
}

.app-calc-section {
  background: #294867;
}
.app-calc-section .container {
  position: relative;
}
.app-calc-section .container::before {
  position: absolute;
  content: "";
  width: 185px;
  height: 188px;
  background: url("../images/graphics-left.svg");
  left: -177px;
  top: 200px;
  display: block;
}

.app-calc-section .container::after {
  position: absolute;
  content: "";
  width: 364px;
  height: 668px;
  background: url(../images/graphics-right.svg);
  right: -90px;
  display: block;
  top: 0px;
}
@media (max-width: 1200px) {
  .app-calc-section .container::after,
  .app-calc-section .container::before {
    content: none;
  }
}
@media (max-width: 1200px) {
  .app-calc-section {
    background: url("../images/calculator-bg.png") no-repeat #294867;
    background-size: 100%;
  }
}
@media (max-width: 576px) {
  .app-calc-section {
    background: url("../images/mobile-home-svg.svg") no-repeat #294867;
    background-size: 100%;
  }
}
.app-section-content {
  padding: 60px 0px 34px 0px;
  position: relative;
  z-index: 2;
}
@media (max-width: 576px) {
  .app-section-content {
    padding: 30px 30px 19px 30px;
  }
}
@media (max-width: 1200px) {
  .app-section-content {
    padding: 60px 40px 34px 40px;
  }
}
.kids-logo {
  margin-bottom: 50px;
  width: 400px;
}
.kids-logo-icon {
  width: 275px;
  height: 122px;
}

@media (max-width: 1200px) {
  .icon-kids-logo {
    height: auto;
    width: 205px;
  }
}
@media (max-width: 576px) {
  .icon-kids-logo {
    height: 56px;
    width: auto;
  }
}
.read-text-btn {
  color: white;
  padding: 15px 20px 15px 20px;
  background-color: #fdb738;
  border-radius: 24px;
  max-width: 220px;
  border: none;
  font-size: 15px;
}
.app-description {
  background: white;
  padding-top: 25px;
  padding-bottom: 25px;
  position: relative;
}
@media (max-width: 1200px) {
  .app-description {
    padding: 25px 45px 25px 40px;
  }
}
.app-btn-wrapper {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.app-btn-wrapper .app-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
@media (max-width: 1200px) {
  .app-btn-wrapper {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 25px;
  }
}
@media (max-width: 576px) {
  .app-btn-wrapper {
    margin-bottom: 20px;
    gap: 10px;
  }
}

.app-flex-wrapper {
  display: flex;
  gap: 12px;
  flex-wrap: wrap; 
  /* justify-content: center;  */
  padding-bottom: 24px;
}
.app-flex-item {
  flex: 1 1; /* grow, shrink, basis */
}
.app-kids-btn {
  background-color: white;
  padding: 16.5px 50px 16.5px 22px;
  color: #294867;
  display: flex;
  align-items: baseline;
  gap: 10px;
  border-radius: 20px;
  position: relative;
  width:100%;
}
.app-kids-btn:hover {
  box-shadow: 0 0 0 2px #fdb738;
}
.app-kids-btn::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 17px;
  background: url(../images/arrow-icon.svg) center center no-repeat;
  background-size: 50%;
  background-color: #fdb738;
  transition: background-color, transform ease 0.2s;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}
.app-kids-btn:hover:after {
  transform: translateX(3px);
}
@media (max-width: 576px) {
  .app-kids-btn::after {
    background-size: 45%;
    width: 20px;
    height: 20px;
    bottom: 10px;
  }
}
@media (max-width: 576px) {
  .app-kids-btn {
    width: 100%;
    padding: 11px 60px 11px 22px;
  }
}
@media (max-width: 992px) {
  .app-kids-btn {
    width: 100%;
  }
}
.btn-text {
  max-width: 90%;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
  font-family: Comfortaa;
}
@media (max-width: 992px) {
  .btn-text {
    max-width: max-content;
    width: auto;
  }
}
@media (max-width: 576px) {
  .btn-text {
    font-size: 12px;
    max-width: 100%;
    width: 100%;
    line-height: 1.16;
  }
}
.btn-icon:hover {
  background-color: hsl(39, 89%, 52%);
}
@media (max-width: 576px) {
  .btn-icon {
    width: 20px;
    height: 20px;
  }
}
.btn-icon .icon-arrow {
  max-width: 50%;
  max-height: 50%;
}
.app-content {
  padding: 0px 0px 0 0px;
}
.content-heading {
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
  color: #fdb738;
  margin-bottom: 13px;
  font-family: Comfortaa;
}
.detail-content {
  display: flex;
  gap: 25px;
  width: 100%;
}
@media (max-width: 576px) {
  .detail-content {
    flex-wrap: wrap;
  }
}
.app-col-1,
.app-col-2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0em;
  color: #231f20;
  width: 50%;
  text-align: left;
  font-family: Montserrat;
}
@media (max-width: 576px) {
  .app-col-1,
  .app-col-2 {
    width: 100%;
  }
}
.col-content p {
  font-weight: 500;
  margin-top: 10px;
}
.col-content .definition {
  font-weight: 600;
}
ul {
  list-style: disc;
  margin-left: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}
.col-content {
  margin: 0px;
}
.app-l-footer {
  background: #feeac6;
}
.app-l-footer.footer-img{
  padding: 47px 40px 15px 40px;
}
.app-l-footer.footer-img .container{
/* display: flex;
justify-content: space-between;
gap: 40px;
flex-wrap: wrap; */
}
.contract-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
@media (max-width: 576px) {
  .contract-wrapper {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.feedback {
  font-size: 18px;
  font-weight: 700;
  color: #294867;
  font-family: Comfortaa;
}
.contact-us.feedback{
  font-size: 25px;
}
.contact-us {
  font-size: 14px;
  font-weight: 500;
  color: #294867;
  margin-right: 6px;
}
.app-mail-id {
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  color: #294867;
  cursor: pointer;
}
.contact-us-page{
  display: flex;
  flex-wrap: wrap;
}
.footer-logo-img {
  width: 130px;
  height: 60px;
}
.footer-id {
  font-size: 10px;
  font-weight: 300;
  line-height: 12px;
  letter-spacing: 0em;
  color: #294867;
  margin-top: 5px;
}
.footer-id a {
  cursor: pointer;
  text-decoration: none;
  color: #231f20;
}
@media (max-width: 576px) {
  .footer-id {
    font-size: 10px;
  }
}
.footer-social-media-wrapper {
  margin-top: 12px;
  gap: 27px;
  align-items: baseline;
  display: flex;
}
.footer-social-media-wrapper .social-links {
  cursor: pointer;
}

.app-form-wrapper {
  padding: 26px 32px 20px 27px;
  background-color: white;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
}
.form-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: left;
  color: #294867;
  font-family: Comfortaa;
}
.app-input-col {
  margin-bottom: 12px;
  margin-right: 15px;
}
.app-input-row {
  display: flex;
  width: 100%;
  gap: 28px;
  margin-top: 6px;
}
.input-btn {
  width: 100%;
}
.input-field {
  width: 100%;
  background-color: #e6f1f8;
  border-radius: 24px;
  height: 48px;
  border: none;

  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0em;
  text-align: left;
  color: #294867;
  padding-left: 15px;
}
.input-field::placeholder{
  color:#7498b5;
}
.input-field:focus {
  border: 1px solid #294867;
}
.input-field:focus-visible {
  border: none;
  outline: none;
}
.app-cal-form-holder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .app-cal-form-holder {
    grid-template-columns: repeat(1, 1fr);
  }
}
.calc-btn {
  background-color: #0175ba;
  border: 1px solid #0175ba;
  padding: 14px 36px 14px 36px;
  font-size: 17px;
  font-weight: 500;
  line-height: 20px;
  color: white;
  width: fit-content;
  margin-top: 10px;
  border-radius: 28px;
  font-family: Montserrat;
}
.calc-btn.clear-all{
  color: #0175ba;
  background-color: white;
  border: 1px solid #0175ba;
}
.clear-all-calc-btn .app-btn.calc-btn{
  width: 150px;
}
@media (max-width: 400px) {
  .calc-btn {
    padding: 15px 15px 15px 15px;
  }
}
.calc-btn:hover {
  box-shadow: 0 0 0 2px #91c3e0;
}

.calc-btn:disabled {
  cursor: default;
  box-shadow: none;
  opacity: 0.4;
}

.app-clipboard {
  background-color: white;
  padding: 35px 10px 35px 10px;
  border-radius: 24px;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: Montserrat;
}
.clipboard-title {
  font-size: 17px;
  font-weight: 500;
  color: #294867;
  width: auto;
  margin-bottom: 4px;
  text-align: center;
  line-height: 25px;
  font-family: Montserrat;
}
@media (max-width: 400px) {
  .clipboard-title {
    line-height: 22px;
  }
}
@media (max-width: 992px) {
  .clipboard-title {
    max-width: 100%;
    width: 100%;
  }
}
.clipboard-date {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #294867;
  line-height: 25px;
}

.heading {
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  margin-bottom: 45px;
  color: white;
  font-family: Comfortaa;
}
@media (max-width: 992px) {
  .heading {
    font-size: 21px;
    margin-bottom: 25px;
  }
}
.select-input {
  position: relative;
  width: 100%;
  border-radius: 24px;
  height: 48px;
  line-height: 15px;
  color: #294867;
}
.custom-select {
  appearance: none; /* Remove default arrow */
  -webkit-appearance: none; /* For older versions of Chrome/Safari */
  -moz-appearance: none; /* For older versions of Firefox */
  background-color: #e6f1f8;
  border-radius: 24px;
  height: 50px;
  border: none;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0em;
  text-align: left;
  color: #294867;
  padding-left: 15px;
  width: 100%;
}

.custom-select:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* Style for dropdown arrow icon */
.select-input::after {
  content: "";
  position: absolute;
  width: 16px;
  top: calc(50% - 6px);
  right: 20px;
  background: url(../images/select-tag-arrow.svg);
  height: 13px;
  display: block;
  background-repeat: no-repeat;
  pointer-events: none;
}

.custom-select option {
  font-size: 13px;
}
.app-input-col.row-two-wrapper {
  display: flex;
  width: 100%;
  gap: 0px;
  margin-bottom: 0px;
}
@media (max-width: 490px) {
  .app-input-col.row-two-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 490px) {
  .app-input-col.input-form .input-btn {
    width: 96%;
  }
}

.app-input-col.input-form {
  margin-right: 0px;
  padding-right: 29px;
}
.app-input-col.row-two-wrapper .app-input-col {
  width: 100%;
  margin-right: 0px;
}
.app-input-col.select-form {
  margin-right: 0px;
}
.app-footer-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: Montserrat;
}
@media (max-width: 900px) {
  .app-footer-side {
    align-items: flex-start;
  }
}
select:required:invalid {
  color:#7498b5;
}
option[value=""][disabled] {
  display: none;
}
.loader {
  border: 4px solid #f3f3f3;
  border-radius: 50%;
  border-top: 4px solid #3498db;
  width: 10px;
  height: 10px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
  display: none;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
@media (max-width: 992px) {
  .form-holder {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .form-holder .app-form-wrapper {
    width: auto;
    max-width: 100%;
  }
}

.clipboard-mg {
  font-size: 17px;
  font-weight: 700;
  color: #294867;
  margin-bottom: 4px;
  line-height: 25px;
}

.clipboard-mg-content {
  font-size: 17px;
  font-weight: 500;
  line-height: 25px;
  color: #294867;
  text-align: center;
}
sub {
  vertical-align: sub !important;
  font-size: smaller;
}
@media (max-width: 400px) {
  .clipboard-mg-content {
    line-height: 22px;
  }
}
@media (max-width: 500px) {
  .clipboard-mg-content .dose-calc {
    display: block;
  }
}
.tick {
  width: 80px;
  height: auto;
}

.full-result {
  display: none;
}
.fa-copy {
  margin-right: 5px;
}
.clipboard-title.calc-result {
  font-size: 18px;
  font-weight: 500;
  color: #294867;
}
.clipboard-mg-content b {
  font-weight: bold;
  display: block;
}
.clipboard-icon {
  margin-bottom: 10px;
}
.form-holder.form-calc .app-input-col {
  margin-right: 0;
}
.form-holder.form-calc .app-form-wrapper {
  padding-right: 46px;
}
.acknowledge-content-wrapper {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.acknowledge-header {
  font-weight: 700;
  color: #294867;
  font-family: Comfortaa;
  font-size: 18px;
  margin-bottom: 10px;
}
.acknowledge-content {
  font-size: 14px;
  font-weight: 500;
  color: #294867;
  font-family: "Montserrat";
  line-height: 18px;
  max-width: 325px;
}
.app-form-wrapper.tobra-calc .form-label {
  font-size: 15px;
}
.app-form-wrapper.tobra-calc {
  width: 377px;
}
@media (max-width: 992px) {
  .app-form-wrapper.tobra-calc {
    width: auto;
  }
}
@media (max-width: 490px) {
  .app-input-col.input-form.width-adjust .input-btn {
    width: 100%;
  }
}

.app-form-table {
  display: flex;
  flex-direction: column;
}
.row-header {
  display: flex;
  border: 1px solid #ccc;
}
.row-header .col-1 {
  max-width: 70px;
  width: 70px;
  border-left: 0px solid !important;
}
.row-header .col {
  display: flex;
  flex: 1;
  border-left: 1px solid #ccc;
  background-color: #f0f0f0;
}
.row-table {
  display: flex;
}
.value-sl {
  display: flex;
  flex-basis: 70px;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background-color: #f0f0f0;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.value-date {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.col {
  display: flex;
  flex: 1;
  padding: 3px;
}
.value-first-row,
.value-second-row {
  display: flex;
  border-bottom: 1px solid #ccc;
}
.value-first-row .col {
  display: flex;
  flex: 1;
  border-right: 1px solid #ccc;
}
.value-second-row .col {
  display: flex;
  flex: 1;
  border-right: 1px solid #ccc;
}
.table-btn {
  color: #fff;
  background-color: #0175ba;
  border-color: #0175ba;
  border: 1px solid transparent;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 400;
  border-radius: 28px;
  cursor: pointer;
}
.table-btn:hover {
  box-shadow: 0 0 0 2px #91c3e0;
}
.add-drop-wrapper {
  margin-top: 20px;
}
.app-form-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: left;
  color: #294867;
}
.mt-1 {
  margin-top: 10px;
}
.mt-2 {
  margin-top: 20px;
}
.mb-1 {
  margin-bottom: 10px;
}
.mb-2 {
  margin-bottom: 20px;
}
.mb-1-5 {
  margin-bottom: 15px;
}
.highlight-text {
  color: red;
  font-size: 14px;
}
.indention::after{
  content: ",";
  color: #294867;
}
.app-ganuc {
  display: flex;
  flex-direction: column;
}
.input-title {
  font-size: 16px;
  font-weight: 600;
  color: #294867;
}
.input-notes {
  display: flex;
}
.input-set {
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: left;
  color: #294867;
  margin-bottom: 10px;
}
.input-set-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.input-notes-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 7px;
}
.input-notes-content {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 7px;
}

.col-set-header {
  border-bottom: 1px solid;
  padding: 5px;
}
.col-set {
  flex: 1;
  border-right: 1px solid;
}
input[type="date" i] {
  border: none;
}
input[type="date" i]:focus-visible {
  outline: -webkit-focus-ring-color auto 0px;
}
.table-input {
  width: 100%;
  border: none;
  text-align: center;
  padding: 0px;
}
.table-input:focus-visible {
  outline: none;
}
.input-help-notes {
  background-color: white;
  padding: 28px 20px 18px 20px;
  border-radius: 24px;
  height: fit-content;
}
table,
th,
td {
  text-align: center;
  border: 1px solid #2e6da4;
  padding: 5px;
  font-size: 11px;
  font-weight: 500;
  color: #294867;
}
@media (max-width: 500px){
  td{
    padding: 2px !important;
  }
}
@media (max-width: 400px){
  td{
    padding: 1px !important;
  }
}
th {
  background-color: #e6f1f8;
  padding-top: 8px;
  padding-bottom: 8px;
}
.value-holder {
  text-align: center;
  position: relative;
  background-color: #e6f1f8;
}
.value-holder span {
  top: 15px;
  position: relative;
}
.first-col {
  background-color: #e6f1f8;
}
.table-wrapper {
  overflow-y: auto;
  width: 100%;
}
.table-wrapper.dose-record{
  max-height: 133px;
}
.table-wrapper table {
  width: 100%;
}
.app-form-wrapper.ganc-app {
  width: auto;
}
@media (max-width: 500px) {
  .form-holder .app-form-wrapper.ganc-app {
    padding: 26px 10px 20px 10px;
  }
}
@media (max-width: 992px) {
  .form-holder .app-form-wrapper.ganc-app {
    width: auto;
    max-width: 100%;
  }
}
.acknowledge-logo img {
  width: 200px;
  margin-top: 15px;
}
/* .align-calc-button {
  width: 100%;
  display: flex;
} */
.app-clipboard.auc-calc .clipboard-title {
  line-height: 23px;
}
.auc-range {
  display: inline-block;
}
.app-clipboard.auc-calc {
  padding-top: 28px;
}
.steady-state {
  display: block;
}
@media (max-width: 500px) {
  .clipboard-mg-content .dose-calc .steady-state {
    display: contents;
  }
}
.ganc-btn {
  height: 117px;
}
.app-cal-form-holder.gav-auc-calc {
  gap: 10px;
  @media (max-width: 992px) {
  display: flex;
  flex-direction: column;
}
}
.ganc-val-calc {
  width: auto;
  padding: 25px 10px 25px 10px;
}
@media (max-width: 992px) {
  .ganc-btn {
    height: auto;
  }
}
input[type="date"] {
  font-family: "Inter", sans-serif; /* Specify the Inter font family */
  color: #294867;
}
@media (max-width: 500px){
  input[type="date"]{
    width: 100px;
  }
}

@media (max-width: 500px){
  .dose-cell {
    min-width: 30px !important;
  }
}
.dose-cell {
  min-width: 58px;
}
.app-sticky-header {
  position: sticky;
  top: 0;
  z-index: 99;
  padding: 24px 40px 24px 40px;
  background: white;
  box-shadow: -6px 1px 7px #bbbfc6;
}
.app-header-nav{
  position: sticky;
  top: 0;
  z-index: 99;
  padding: 24px 0px 0px 0px;
  background: white;
   /* text-align:  center; */
}

.inner-header-nav{
  max-width: 900px;
  width: 100%;
  margin: auto;
  padding: 24px 0px 0px 0px;
}
.nav-title{
  display: flex;  
  justify-content: flex-start;
  align-items: center;
  gap: 72px;
  padding: 0px 0px 24px 0px;
  margin-bottom: 24px;
}
.nav-text {
  all: unset;
  cursor: pointer;
  color: #ffffff;
  font-weight: 800;
  position: relative;
  border-radius: 28px;
  transition: all 0.3s ease;
  border: 1.5px solid #ffffff;
  font-family: Comfortaa;

  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 0% 4px;
  background-position: 40% 100%;
  padding: 12px 20px 10px 20px; 
}
.btn-title{
  font-size: 19px;
}

.nav-text:hover {
  background-size: 95% 4px;
  background-color: #005688;
}

.header-separation{
  background-color: #231f20;
  height: 2px;
  width: 100%;
   padding: 5px 0px 0px 0px;

}

.nav-text.active-nav {
  background-color: #0175ba;
  color: #fff;
  font-weight: bold;
  background-image: none;
  border-radius: 28px;
}

@media (max-width: 576px) {
  .nav-text{
    font-size: 12px;
    max-width: 100%;
    width: 100%;
    line-height: 1.16;
  }
  .nav-title{
    text-align: center;
    gap: 20px;
  }
  .btn-title{
    font-size: 12px;
  }
}

.gancy-wrapper{
  width: 100%;
}
.mail-contact{
  display: flex;
}
.contact-info{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.app-calc-section{
   @media (max-width: 1200px) {
  .container {
    max-width: 100%;
  }
}
}
.calc-days{
    display:inline-block;
}
.clear-all-calc-btn{
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 15px;
}
@media screen and (max-width: 992px) {
  .arrow-text {
    display: none;
  }
}
.arrow-container {
    position: fixed;
    bottom: 1%;
    right: 0%;
    background: transparent;
    border: none;
    cursor: pointer;
}
@media screen and (max-width: 1200px) {
    .arrow-container {
        right: 0%;
    }
}

@media screen and (max-width: 992px) {
    .arrow-container {
        right: -1% !important;
    }
    .arrow-svg{
      width: 38px !important;
    }
} 
.arrow-svg{
  width: 51px;
}
.arrow-icon {
  color: #EA3A3C;
  font-size: 4rem;
  animation: arrow 3s ease-out;
  animation-iteration-count: infinite;
}
@keyframes arrow {
  0% {
    opacity: 0.5;
 }
  50% {
    opacity: 1;
    transform: translateY(13px);
 }
  100% {
    opacity: 0.5;
 }
}
/* @media screen and (max-width: 992px) {
    .arrow-icon{
        font-size: 2.0rem;
    }
} */
.arrow-text{
 color:black;
 background-color:#FDB738;
 padding: 5px 10px 5px 10px;
 border-radius:28px;
 font-weight:500;
 font-size:11px;
 font-family: Comfortaa;
}
@media (max-width: 500px){
  .clear-all-calc-btn{
    flex-wrap: wrap;
  }
}
@media (max-width: 500px){
  .align-calc-button{
    /* width: 100%; */
  }
}
.align-calc-button .app-btn.calc-btn{
  padding-left: 38px;
  padding-right: 38px;
}
@media (max-width: 500px){
  .app-btn.calc-btn{
    /* width: 100%; */
  }
}
.gancy-wrapper .arrow-container {
  right:0%;
}
@media (max-width: 500px){
  .app-section-content.ganc-app-content{
    padding: 60px 10px 19px 10px !important;
  }
}
 @media (max-width: 576px){
  .gav-auc-calc .icon-kids-logo{
    left: 29px;
    position: relative;
  }
}
.footer-acknowledge{
  display: flex;
  justify-content: space-between;
  gap: 21px;
  flex-wrap: wrap;
}
.logos-wrapper{
  display: flex;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;

}
@media (max-width: 576px){
  .logos-wrapper{
    gap: 9px;
  }
}
.without-acknowledgment .container{
  gap: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.hide{
  display:none;
}