.header-nav {
  display: block;
}

.header-container {
  margin: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-inner-container {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header-inner-container a {
  color: #0d1646;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
}

.header-inner-container a:hover {
  color: #10caf0;
  transition: 0.3s;
}

.header-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  padding-top: 12px;
  cursor: pointer;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  border-radius: 8px;
  z-index: 10;
  animation: 0.3s fadeInUp;
}
.dropdown-content a {
  color: #717275;
  padding: 0.25rem 1rem;
  text-decoration: none;
  display: block;
  font-weight: 400;
  font-size: 16px;
  white-space: nowrap;
  text-decoration: none;
  text-align: inherit;
  transition: all 0.3s;
}
.dropdown-content a:hover {
  background-color: #273053;
  color: #0dcaf0;
  transition: all 0.3s;
}

/* .header-dropdown:hover .dropdown-content {
  display: block;
} */

.drp-btn {
  color: #0d1646;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
  border: 0;
  background: #ffffff;
}
.drp-btn:hover {
  color: #10caf0;
  transition: 0.3s;
}

.drp-btn::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

.header-calculator-btn {
  background: #0d6efd;
  color: white !important;
  font-weight: 700;
  font-size: 16px;
  padding: 10px 20px;
  /* margin: 20px; */
  border-radius: 100px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
}
.header-calculator-btn:hover {
  background: #0dcaf0;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}
.header-calculator-btn1 {
  background: #0d6efd;
  color: white !important;
  font-weight: 700;
  font-size: 16px;
  padding: 10px 20px;
  /* margin: 20px; */
  border-radius: 100px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
}
.header-calculator-btn1:hover {
  background: #0dcaf0;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

@keyframes fadeInUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.header-icon {
  font-size: 30px;
  color: black;
  display: none;
}

.header-alternate {
  display: none;
  margin: 10px 20px;
}

/* footer section start here */

.footer-section {
  background-color: rgb(13, 22, 70);
}

.footer-container {
  padding: 40px 20px;
}
.footer-flex-container {
  display: flex;
  flex-flow: row wrap;
}
.footer-section {
  flex-basis: 25%;
  padding: 0px 20px;
  /* text-align: justify; */
}

/* responsive section starts here */

@media only screen and (max-width: 1030px) {
  .header-icon {
    display: none;
  }
  .header-inner-container {
    display: none;
  }
  .header-logo {
    display: none;
  }
  .header-calculator-btn {
    display: none;
  }
  .footer-section {
    flex-basis: 50%;
  }
}
@media only screen and (max-width: 1030px) {
  .header-container.responsive {
    position: relative;
    display: block;
  }

  .header-inner-container.responsive {
    display: block;
    text-align: left;
    padding: 0;
  }
  .header-inner-container.responsive li {
    display: block;
    text-align: left;
    padding: 0;
    padding: 10px;
  }

  .header-inner-container.responsive a {
    padding: 10px 0px;
  }
  .header-inner-container.responsive div {
    /* display: block; */
    width: 100%;
    text-align: left;
  }
  .header-alternate {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media only screen and (max-width: 1030px) {
  .footer-section {
    flex-basis: 100%;
  }
}
