@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.blink {
  animation: blink 2s infinite ease;
}

.blink-delay {
  animation: blink 2s infinite ease -1s;
}

.header-top {
  background-color: rgba(0, 0, 98, 1);
}

.header-top-right {
  width: 100%;
}

.header-hamburger-menu {
  font-size: 1.5rem;
}

.header-logo {
  max-width: 60px;
  width: 100%;
}

.header-name {
  font-size: 1.1rem;
  width: fit-content;
}

.header-name span {
  font-size: 0.8rem;
  width: fit-content;
}
.header-description {
  font-size: 0.8rem;
  min-height: 70px;
  transition: 0.3s ease;
}

.button {
  font-size: 1rem;
}

.button.blue {
  background-color: rgba(0, 0, 98, 1);
  color: white;
  border: 2px solid rgba(0, 0, 98, 1) !important;
}

.button.blue.big {
  font-size: 1.2rem;
  padding: 0 2rem 0.3rem 2rem !important;
}

.button.red.small {
  padding: 0.1rem 1.5rem 0.3rem 1.5rem !important;
}
.button.red {
  background-color: rgba(182, 18, 18, 1);
  border: 2px solid rgba(182, 18, 18, 1) !important;
  color: white;
}

.header-nirf {
  max-width: 140px;
}

.header-nirf.img {
  border: 2px solid rgba(128, 128, 128, 0.5);
  border-radius: 4px;
  padding: 0.5rem;
}

.center-right-text {
  font-weight: 600;
  font-size: 0.9rem;
}

.center-right-container {
  width: 100%;
}

.center-bottom-container {
  border-bottom: 1px solid rgba(128, 179, 217, 1);
  width: 100%;
}

.header-lists li a {
  color: rgba(0, 0, 98, 1);
}

/* DESIGN'S FOR HEADER BOTTOM & HAMBURGER HEADER */
.header-bottom {
  position: fixed;
  top: -200%;
  width: 100%;
  height: 100%;
  left: 0;
  z-index: 3;
  background-color: white;
  transition: all 0.3s ease-in-out;
  overflow-y: scroll;
}

.header-bottom.active {
  top: 0;
}

.header-lists {
  margin-top: 2rem;
}

.header-lists .header-list {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(128, 179, 217, 1);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-inner-dropdownContainer {
  overflow: hidden;
  max-height: 0px;
  transition: all 0.5s ease-in-out;
}

.header-inner-dropdownContainer.active {
  max-height: 600px;
}

.dropdown-inner-titleContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  background-color: rgba(237, 237, 237, 1);
  border-radius: 4px;
}

.dropdown-inner-listContainer {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.dropdown-inner-listContainer ul {
  padding: 1rem 0rem;
}

.dropdown-inner-listContainer.active {
  max-height: 600px;
}

.dropdown-inner-list {
  padding: 0.2rem 1rem;
}

.dropdown-inner-link {
  text-decoration: none;
  border: none;
  padding: 0;
  background-color: transparent;
}

.cancel-hamburger {
  top: 20px;
  position: absolute;
  right: 20px;
  font-size: 1.4rem;
}

/* BOTTOM */
.header-last-dropdown {
  width: fit-content;
  padding: 0.2rem 1rem !important;
  border-radius: 4px;
  font-weight: 600;
}

.header-last-dropdown li a {
  color: black;
  text-decoration: none;
  font-size: 0.9rem;
}

/* MEDIA QUERIES */
@media (min-width: 992px) {
  .header-top-right {
    width: fit-content;
  }
  .header-name {
    font-size: 1.3rem;
  }
  .header-name span {
    font-size: 1rem;
  }
  .header-description {
    font-size: 0.8rem;
    min-height: 60px;
  }
  .header-logo {
    max-width: 60px;
    align-self: flex-start;
  }
  .button.blue.big {
    font-size: 1.2rem;
    padding: 0 1rem 0.3rem 1rem !important;
    width: fit-content;
    white-space: nowrap;
  }

  .header-bottom {
    position: relative;
    overflow: unset;
  }

  .header-lists {
    margin-top: 0rem;
    display: flex;
    justify-content: center;
  }

  .header-list {
    gap: 0.4rem;
    cursor: pointer;
    padding: 0.6rem 0.8rem;
  }

  .header-list.home:hover {
    background-color: rgba(1, 167, 83, 1);
  }

  .header-list.home:hover a {
    color: white;
  }
  .header-lists .header-list {
    border-bottom: none;
  }
  .header-inner-dropdownContainer {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .header-list.one:hover + .header-inner-dropdownContainer {
    max-height: 600px;
  }
  .header-list.one:hover
    + .header-inner-dropdownContainer
    .dropdown-inner-listContainer {
    max-height: 600px;
  }

  .header-list-dropdown-container.one:hover .header-list.one {
    background-color: rgba(1, 167, 83, 1);
    color: white;
  }

  .header-list.seven:hover + .header-inner-dropdownContainer {
    max-height: 600px;
  }
  .header-list.seven:hover
    + .header-inner-dropdownContainer
    .dropdown-inner-listContainer {
    max-height: 600px;
  }

  .header-list-dropdown-container.seven:hover .header-list.seven {
    background-color: rgba(1, 167, 83, 1);
    color: white;
  }

  .header-list.two:hover + .header-inner-dropdownContainer {
    max-height: 600px;
  }
  .header-list.two:hover
    + .header-inner-dropdownContainer
    .dropdown-inner-listContainer {
    max-height: 600px;
  }

  .header-list-dropdown-container.two:hover .header-list.two {
    background-color: rgba(1, 167, 83, 1);
    color: white;
  }
  .header-list.three:hover + .header-inner-dropdownContainer {
    max-height: 600px;
  }
  .header-list.three:hover
    + .header-inner-dropdownContainer
    .dropdown-inner-listContainer {
    max-height: 600px;
  }

  .header-list-dropdown-container.three:hover .header-list.three {
    background-color: rgba(1, 167, 83, 1);
    color: white;
  }
  .header-list.four:hover + .header-inner-dropdownContainer {
    max-height: 600px;
  }
  .header-list.four:hover
    + .header-inner-dropdownContainer
    .dropdown-inner-listContainer {
    max-height: 600px;
  }

  .header-list-dropdown-container.four:hover .header-list.four {
    background-color: rgba(1, 167, 83, 1);
    color: white;
  }

  .header-inner-dropdownContainer:hover {
    max-height: 600px;
  }

  .header-inner-dropdownContainer:hover .dropdown-inner-listContainer {
    max-height: 600px;
  }

  .header-inner-dropdownContainer {
    position: absolute;
    z-index: 1;
    max-height: 0px;
    overflow: hidden;
    left: 25%;
    top: 50px;
    width: fit-content;
    background-color: white;
  }
  .header-inner-dropdownContainer.three {
    left: 45%;
  }
  .header-inner-dropdownContainer.four {
    left: 50%;
  }

  .dropdown-inner-listContainer {
    overflow: hidden;
    max-height: unset;
  }

  .dropdown-inner-listContainer ul {
    padding: 0rem 0rem;
  }

  .header-bottom-dropdown {
    width: fit-content;
  }

  .dropdown-inner-list {
    padding: 0.4rem 1rem;
    transition: all 0.3s ease;
    color: black !important;
  }

  .dropdown-inner-list:hover {
    transform: translate(10px, 0px);
    background-color: rgba(1, 167, 83, 1);
  }

  .dropdown-inner-list:hover .dropdown-inner-link {
    color: white;
  }

  .dropdown-inner-titleContainer {
    background-color: transparent;
  }
}

@media (min-width: 1200px) {
  .header-logo {
    max-width: 100px;
    align-self: flex-start;
  }

  .header-name {
    font-size: 1.4rem;
  }
  .header-name span {
    font-size: 1.2rem;
  }
  .header-description {
    font-size: 1rem;
    min-height: 80px;
  }

  .button.blue {
    background-color: rgba(0, 0, 98, 1);
    color: white;
  }

  .button.blue.big {
    font-size: 1.4rem;
    padding: 0 1rem 0.3rem 1rem !important;
  }

  .button.red.small {
    font-size: 1.2rem;
    padding: 0.1rem 1.5rem 0.3rem 1.5rem !important;
  }
}

@media (min-width: 1400px) {
  .header-name {
    font-size: 1.6rem;
  }
  .header-name span {
    font-size: 1.3rem;
  }
  .header-description {
    font-size: 1.1rem;
  }

  .button.blue.big {
    font-size: 1.6rem;
    padding: 0 3rem 0.3rem 3rem !important;
  }

  .button.red.small {
    font-size: 1.2rem;
    padding: 0.1rem 1.5rem 0.3rem 1.5rem !important;
  }

  .header-nirf {
    max-width: 160px;
  }
}
.helpline-button {
  position: fixed;
  top: 50%;
  right: 0;
  rotate: -90deg;
  translate: 33% 0;
  background-color: rgb(0, 0, 98) !important;
  z-index: 90;
  border: none;
  color: white;
  outline: none;
  padding: 0.6rem 1.5rem;
  font-size: 1.4rem;
  transition: background-color 0.3s ease-in-out;
}

.helpline-content {
  padding: 1rem;
}

.helpline-content-wrapper {
  position: fixed;
  top: 50%;
  right: 52px;
  background-color: white;
  max-height: 0px;
  translate: 0 35%;
  overflow: hidden;
  z-index: 90;
  border-radius: 4px;
  transition: all 0.4s ease;
}

.helpline-content-wrapper.active {
  max-height: 200px;
  translate: 0 -35%;
}
.helpline-button:hover {
  background-color: rgb(0, 0, 98, 0.8) !important;
}

.header-top {
  background-color: rgba(0, 0, 98, 1);
}

.header-top-right {
  width: 100%;
}

.header-search {
  max-width: 300px;
  background: transparent;
  border: 2px solid white;
  padding: 4px 45px 4px 20px;
  color: white;
  outline: none;
}

.header-search::placeholder {
  color: white;
}

.header-search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
}

/* GOOGLE CUSTOM SEARCH STYLES */
.gsc-control-cse {
  padding: 0 !important;
  /* background: rgb(0, 0, 98) !important; */
  background: white !important;
  /* border-color: rgb(0, 0, 98) !important; */
}

.form.gsc-search-box {
  margin: 0 !important;
}

.gsc-input-box {
  padding: 0 !important;
  border-color: rgba(0, 0, 98, 1) !important;
}

.gsc-search-button-v2 {
  /*border: none !important;*/
  padding: 10px 12px !important;
}

table.gsc-search-box td.gsc-input {
  padding-right: 0 !important;
}

#___gcse_0 {
  min-width: 200px !important;
}

.form.gsc-search-box {
  margin-bottom: 0px !important;
}

/* END OF GOOGLE CUSTOM SEARCH STYLES */

.header-logo {
  max-width: 60px;
  width: 100%;
}

.header-name {
  font-size: 1rem;
  width: fit-content;
}

.header-name span {
  font-size: 0.8rem;
  width: fit-content;
}
.header-description {
  font-size: 0.8rem;
  min-height: 70px;
  transition: 0.3s ease;
}

.button {
  font-size: 1rem;
}

.button.blue {
  background-color: rgba(0, 0, 98, 1);
  color: white;
  border: 2px solid rgba(0, 0, 98, 1) !important;
  line-height: 1.2;
}

.button.blue:hover {
  color: rgba(0, 0, 98, 1) !important;
}

.button.blue.big {
  font-size: 1.2rem;
  padding: 0 3rem 0.3rem 3rem !important;
}

.button.red.small {
  padding: 0.1rem 1.5rem 0.3rem 1.5rem !important;
}
.button.red {
  background-color: rgba(182, 18, 18, 1);
  border: 2px solid rgba(182, 18, 18, 1) !important;
  color: white;
}
.button.red:hover {
  color: rgba(182, 18, 18, 1);
}

.header-nirf {
  max-width: 140px;
  margin: 0px !important;
}

.header-nirf.img {
  border: 2px solid rgba(128, 128, 128, 0.5);
  border-radius: 4px;
  padding: 0.5rem;
  height: 82px;
  width: 100%;
}

.center-right-text {
  font-weight: 600;
  font-size: 0.9rem;
}

.center-right-container {
  width: 100%;
}

.center-bottom-container {
  border-bottom: 1px solid rgba(128, 179, 217, 1);
  width: 100%;
}

.header-lists li a {
  color: rgba(0, 0, 98, 1);
}

/* DESIGN'S FOR HEADER BOTTOM & HAMBURGER HEADER */
.header-bottom {
  position: fixed;
  top: -200%;
  width: 100%;
  height: 100%;
  left: 0;
  z-index: 3;
  background-color: white;
  transition: all 0.3s ease-in-out;
  overflow-y: scroll;
}

.header-bottom.active {
  top: 0;
}

.header-lists {
  margin-top: 2rem;
}

.header-lists .header-list {
  padding: 0.8rem 0.5rem;
  /*border-bottom: 1px solid rgba(128, 179, 217, 1);*/
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  /*justify-content: space-between;*/
}

.header-inner-dropdownContainer {
  overflow: hidden;
  max-height: 0px;
  transition: all 0.5s ease-in-out;
}

.header-inner-dropdownContainer.active {
  max-height: 600px;
}

.dropdown-inner-titleContainer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  /*justify-content: space-between;*/
  padding: 0.8rem 1rem;
  /*background-color: rgba(237, 237, 237, 1);*/
  border-radius: 4px;
}

.dropdown-inner-listContainer {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.dropdown-inner-listContainer ul {
  padding: 1rem 0rem;
}

.dropdown-inner-listContainer.active {
  max-height: 600px;
}

.dropdown-inner-list {
  padding: 0.2rem 1rem;
}

.dropdown-inner-link {
  text-decoration: none;
  border: none;
  padding: 0;
  background-color: transparent;
}

.cancel-hamburger {
  top: 20px;
  position: absolute;
  right: 20px;
  font-size: 1.4rem;
}

/* BOTTOM */
.header-last-dropdown {
  width: fit-content;
  padding: 0.2rem 1rem !important;
  border-radius: 4px;
  font-weight: 600;
  max-height: 0px !important;
  overflow: hidden;
  transition: all 300ms ease-in-out;
}

.header-last-dropdown.active {
  max-height: 300px !important;
}

.header-last-dropdown li a {
  color: black;
  text-decoration: none;
  font-size: 0.9rem;
}

.careers-icon {
  width: 36px;
  top: 4px;
  right: 69%;
  position: absolute;
  rotate: 30deg;
}

/* MEDIA QUERIES */
@media (min-width: 576px) {
  .careers-icon {
    top: -20px;
    right: -40px;
  }
}
@media (min-width: 992px) {
  .header-top-right {
    width: fit-content;
  }
  .header-name {
    font-size: 1.3rem;
  }
  .header-name span {
    font-size: 1rem;
  }
  .header-description {
    font-size: 0.8rem;
    min-height: 38px;
  }
  .header-logo {
    max-width: 60px;
    align-self: flex-start;
  }
  .button.blue.big {
    font-size: 1.2rem;
    padding: 0 2rem 0.3rem 2rem !important;
    width: fit-content;
    white-space: nowrap;
  }

  .header-nirf {
  }

  .header-bottom {
    position: relative;
    overflow: unset;
  }

  .header-lists {
    margin-top: 0rem;
    display: flex;
    justify-content: center;
  }

  .header-list {
    gap: 0.4rem;
    cursor: pointer;
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }

  .header-list.home:hover {
    background-color: rgba(1, 167, 83, 1);
  }

  .header-list.home:hover a {
    color: white;
  }
  .header-lists .header-list {
    border-bottom: none;
    gap: 0.5rem;
  }
  .header-inner-dropdownContainer {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .header-list.one:hover + .header-inner-dropdownContainer {
    max-height: 600px;
  }
  .header-list.one:hover
    + .header-inner-dropdownContainer
    .dropdown-inner-listContainer {
    max-height: 600px;
  }

  .header-list-dropdown-container.one:hover .header-list.one {
    background-color: rgba(1, 167, 83, 1);
    color: white;
  }

  .header-list.two:hover + .header-inner-dropdownContainer {
    max-height: 600px;
  }
  .header-list.two:hover
    + .header-inner-dropdownContainer
    .dropdown-inner-listContainer {
    max-height: 600px;
  }

  .header-list-dropdown-container.two:hover .header-list.two {
    background-color: rgba(1, 167, 83, 1);
    color: white;
  }
  .header-list.three:hover + .header-inner-dropdownContainer {
    max-height: 600px;
  }
  .header-list.three:hover
    + .header-inner-dropdownContainer
    .dropdown-inner-listContainer {
    max-height: 600px;
  }

  .header-list-dropdown-container.three:hover .header-list.three {
    background-color: rgba(1, 167, 83, 1);
    color: white;
  }
  .header-list.four:hover + .header-inner-dropdownContainer {
    max-height: 600px;
  }
  .header-list.four:hover
    + .header-inner-dropdownContainer
    .dropdown-inner-listContainer {
    max-height: 600px;
  }

  .header-list-dropdown-container.four:hover .header-list.four {
    background-color: rgba(1, 167, 83, 1);
    color: white;
  }

  .header-list-dropdown-container.five:hover .header-list.five {
    background-color: rgba(1, 167, 83, 1);
    color: white;
  }
  .header-list.five:hover + .header-inner-dropdownContainer {
    max-height: 600px;
  }
  .header-list.five:hover
    + .header-inner-dropdownContainer
    .dropdown-inner-listContainer {
    max-height: 600px;
  }

  .header-list-dropdown-container.six:hover .header-list.six {
    background-color: rgba(1, 167, 83, 1);
    color: white;
  }
  .header-list.six:hover + .header-inner-dropdownContainer {
    max-height: 600px;
  }
  .header-list.six:hover
    + .header-inner-dropdownContainer
    .dropdown-inner-listContainer {
    max-height: 600px;
  }

  .header-inner-dropdownContainer:hover {
    max-height: 600px;
  }

  .header-inner-dropdownContainer:hover .dropdown-inner-listContainer {
    max-height: 600px;
  }

  .header-inner-dropdownContainer {
    position: absolute;
    z-index: 1;
    max-height: 0px;
    overflow: hidden;
    left: 13%;
    top: 50px;
    width: fit-content;
    background-color: white;
  }
  .header-inner-dropdownContainer.three {
    left: 33%;
  }

  .header-inner-dropdownContainer.seven {
    left: 57%;
  }
  .header-inner-dropdownContainer.two {
    left: 24%;
  }
  .header-inner-dropdownContainer.five {
    left: 45%;
  }
  .header-inner-dropdownContainer.six {
    left: 64%;
  }
  .dropdown-inner-listContainer {
    overflow: hidden;
    max-height: unset;
  }

  .dropdown-inner-listContainer ul {
    padding: 0rem 0rem;
  }

  .header-bottom-dropdown {
    width: fit-content;
  }

  .dropdown-inner-list {
    padding: 0.4rem 1rem;
    transition: all 0.3s ease;
  }

  .dropdown-inner-list:hover {
    transform: translate(10px, 0px);
    background-color: rgba(1, 167, 83, 1);
  }

  .dropdown-inner-list:hover .dropdown-inner-link {
    color: white !important;
  }
  .dropdown-inner-list:hover .headerD_dropDown__link {
    color: white !important;
  }

  .dropdown-inner-titleContainer {
    background-color: transparent;
  }

  .careers-icon {
    top: -10px;
    right: -45px;
  }


  .gsc-control-cse {
    background: rgb(0, 0, 98) !important;
    border-color: rgb(0, 0, 98) !important;
  }
}

@media (min-width: 1200px) {
  .header-logo {
    max-width: 100px;
    align-self: flex-start;
  }

  .header-name {
    font-size: 1.5rem;
  }
  .header-name span {
    font-size: 1.2rem;
  }
  .header-description {
    font-size: 1rem;
    min-height: 48px;
    font-weight: 520 !important;
  }

  .button.blue {
    background-color: rgba(0, 0, 98, 1);
    color: white;
  }

  .button.blue.big {
    font-size: 1.4rem;
    padding: 0 2.5rem 0.3rem 2.5rem !important;
  }

  .button.red.small {
    font-size: 1.2rem;
    padding: 0.1rem 1.5rem 0.3rem 1.5rem !important;
  }

  .header-list {
    font-size: 1rem;
  }

  .header-inner-dropdownContainer.four {
    left: 40.1%;
  }

  .header-inner-dropdownContainer.five {
    left: 47.5%;
  }

  .careers-icon {
    top: -20px;
    right: -35px;
  }
}

@media (min-width: 1400px) {
  .header-name {
    font-size: 1.8rem;
  }
  .header-name span {
    font-size: 1.3rem;
  }
  .header-description {
    font-size: 1.1rem;
  }

  .button.blue.big {
    font-size: 1.6rem;
    padding: 0 3rem 0.3rem 3rem !important;
  }

  .button.red.small {
    font-size: 1.2rem;
    padding: 0.1rem 1.5rem 0.3rem 1.5rem !important;
  }

  .header-nirf {
    max-width: 70px;
    max-height: 70px;
  }

  .header-inner-dropdownContainer.four {
    left: 43%;
  }
}
