@font-face {
  font-family: "Poppins";
  src: url("/static/fonts/Poppins-Regular.093ee89be9ed.ttf");
}

@font-face {
  font-family: "Poppins";
  src: url("/static/fonts/Poppins-Light.fcc40ae9a542.ttf");
  font-weight: 300;
}

@font-face {
  font-family: "Poppins";
  src: url("/static/fonts/Poppins-Medium.bf59c687bc6d.ttf");
  font-weight: 500;
}

@font-face {
  font-family: "Poppins";
  src: url("/static/fonts/Poppins-SemiBold.6f1520d10720.ttf");
  font-weight: 600;
}

/*
=============== 
Variables
===============
*/

:root {
  /* darkest primary - used for headings */
  --clr-primary-1: #314068;
  --clr-primary-2: #3C6CA4;
  --clr-primary-3: #D3E6FC;
  --clr-primary-4: #E9F2FF;;
  --clr-accent-1: #FBB03B;
  --clr-background: #F5F5F5;
  --clr-red: #bb2525;
  --clr-white: #fff;
  --clr-black: #333333;
  --clr-text-gray-1: #585A5B;
  --clr-text-gray-2: #757575;
  --transition: all 250ms linear;
  --dark-shadow: 0px 7px 10px rgba(196, 207, 230, 0.2);
  --radius: 5px;
}

/*
=============== 
Global Styles
===============
*/

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins";
  background-color: var(--clr-background);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 72px;
  color: var(--clr-primary-2);
}

h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 60px;
  /* identical to box height */
  color: var(--clr-primary-2);
}

h4 {
  font-style: normal;
  font-weight: 600;
  font-size: 35px;
  line-height: 135%;
  /* or 47px */

  letter-spacing: -0.019em;

  color: var(--clr-primary-1);
}

h5 {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 127%;
  /* or 25px */

  letter-spacing: -0.019em;

  color: var(--clr-primary-1);
}

a {
  text-decoration: none;
}

p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  /* identical to box height */
  color: var(--clr-black);
}

input[type="text"]
{
  font-family: inherit;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 27px;

  color: var(--clr-black);
}

header {
  width: 100%;
  height: 89px;
  padding: 2rem 4rem;
  display: flex;
  justify-content: center;
  background: var(--clr-primary-1);
  box-shadow: var(--dark-shadow);
}

.navbar-left-side {
  width: 70%;
  display: flex;
  align-items: center;
  flex: 1;
}

.navbar-right-side {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 30%;
}

.nav-right-side-link {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  /* or 42px */

  letter-spacing: -0.019em;

  color: var(--clr-white);
  text-decoration: none;
}

.nav-right-side-link:hover {
  color: var(--clr-white);
}

.logo-container {
  height: 100%;
}

.logo-container img {
  width: 100%;
  height: 200%;
  object-fit: cover;
}

.logo-img {
  width: 25%; /* Adjust as needed */
  height: auto; /* Maintain aspect ratio */
}

.footer {
  width: 100%;
  min-height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #314068;
}

.footer-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 150%;
  /* identical to box height, or 60px */

  text-align: center;
  letter-spacing: -0.022em;

  color: #E6E6E6;
}

.no-highlight {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-accent-1);
  box-shadow: 0px 3px 5px rgba(221, 178, 151, 0.5);
  border-radius: var(--radius);
  border: none;
  font-family: inherit;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  color: var(--clr-white);
  cursor: pointer;
}

.text-center {
  text-align: center;
}

.bg-white {
  background-color: var(--clr-white);
}

.loading {
  width: 6rem;
  height: 6rem;
  margin: 0 auto;
  margin-top: 10rem;
  border-radius: 50%;
  border: 4px solid #ccc;
  border-top-color: var(--clr-primary-1);
  animation: spin 0.6s linear infinite;
}

.search-section {
  height: 380px;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--clr-primary-3);
}

.title-container, .subtitle-container {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.search-form-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.search-container {
  width: 50%;
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
}

.go-back-container {
  width: 65%;
  display: flex;
}

.back-arrow-container {
  margin-right: 1rem;
}

.back-text-container h5{
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  color: #3C6CA4;
}


.search-input-wrapper {
  height: 50px;
  width: 75%;
  display: flex;
  align-items: center;
  box-shadow: var(--dark-shadow);
}

.search-icon-container {
  display: flex;
  align-items: center;
}

.search-icon-container svg {
  position: absolute;
  min-width: 50px;
  min-height: 15px;
}

.search-input {
  width: 100%;
  height: 100%;
  background: var(--clr-white);
  border: none;
  border-radius: var(--radius);
  padding-top: .3rem;
  padding-left: 3rem;
  /* box shadow */
}

.search-input::placeholder {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 27px;
  color: var(--clr-text-gray-1);
}

.search-input:focus, .search-icon-container:focus {
  outline: none !important;
  border: 2px solid var(--clr-primary-1);
}

.search-btn-wrapper {
  width: 20%;
}

.search-btn {
  width: 100%;
  height: 100%;
}

.search-btn:hover {
  color: #ffffff;
  background-color: #f89a02;
}

.main-container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.empty-text {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 150.5%;
  letter-spacing: -0.019em;
  color: var(--clr-text-gray-2);
}

.ffff00 {
  background-color: yellow;
}

.btn-loading-spinner {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 auto;
  border-radius: 50%;
  border: 4px solid var(--clr-accent-1);
  border-top-color: var(--clr-white);
  animation: spin 0.6s linear infinite;
}