<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.search-container {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: calc((var(--vh, 1vh) * 100));
  z-index: 12;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  background: #00285D url(../../images/pattern.svg) no-repeat center left;
  padding: 1.5em;
  transform: translateX(110%);
  background-size: contain;
}

.search-container .social-icons {
  display: flex;
  align-items: center;
  position: absolute;
  left: 3em;
  height: calc(100vh);
  flex-direction: column;
  justify-content: center;
  gap: 1em;
  top: 0;
}

.search-wrapper h2 {
  font-size: 3.75em;
  color: #FFF;
  margin-bottom: 1em;
  font-weight: bold;
}

.search-wrapper .search-display {
  width: 60%;
  margin: 0 auto;
}

.search-wrapper .input-search {
  position: relative;
}

.search-wrapper .input-search::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 2em;
  left: 5px;
  border-radius: 50%;
  border: 1px solid #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 10px;
}

.search-wrapper .input-search::after {
  content: "";
  background: url(../../images/icons/search.svg) no-repeat center;
  position: absolute;
  width: 3em;
  height: 3em;
  right: 0;
  border-radius: 50%;
  border: 1px solid #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -5px;
}

.search-wrapper input {
  background: none;
  border: none;
  border-bottom: 1px solid #FFF;
  padding: 5px 20px;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 2em;
  color: #FFF;
}

.search-close {
  width: 3.25em;
  aspect-ratio: 1/1;
  position: absolute;
  cursor: pointer;
  z-index: 5;
  background: #FDB927;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  top: 20px;
  right: 20px;
}

.search-close img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(86%) saturate(672%) hue-rotate(178deg) brightness(92%) contrast(109%);
  width: 1.25em;
  aspect-ratio: 1/1;
}

.search-wrapper .input-search input[type="search"]::-webkit-search-decoration,
.search-wrapper .input-search input[type="search"]::-webkit-search-cancel-button,
.search-wrapper .input-search input[type="search"]::-webkit-search-results-button,
.search-wrapper .input-search input[type="search"]::-webkit-search-results-decoration {
  display: none;
}
.search-wrapper .input-search input[type="search"]::-ms-input-placeholder { 
  color: #ffffff;
}
.search-wrapper .input-search input[type="search"]::placeholder {
  color: #ffffff;
}
.search-wrapper .input-search input:-webkit-autofill,
.search-wrapper .input-search input:-webkit-autofill:focus {
  transition: background-color 0s 600000s, color 0s 600000s !important;
}
.search-wrapper .search-display h3 {
  font-size: 2.62em;
  color: #FFFFFF;
  margin-bottom: 1em;
  font-weight: bold;
  padding-left: 54px;
}
.search-wrapper .search-display p { 
  color: #FFFFFF; 
}
.search-wrapper .search-display #searchResults {
  padding: 3em 0 0 1em;
}
.number-list-ol{
  position: relative;
}
.number-list-ol ol{
  margin: 0;
  padding: 0 0 0 20px;
  width: 100%;
}
.number-list-ol ol li {
  font-size: 1.2em;
  color: #FFFFFF;
  font-weight: 300;
  font-family: 'Poppins', sans-serif;
  padding: 0 0 0 20px;
  margin: 0 0 12px 0;
  width: 100%;
  list-style-position: outside;
}
.number-list-ol ol li a{
   color: #FFFFFF;
}
.search-wrapper .search-display .number-list-ol {
  max-height: calc(100vh - 500px);
  overflow-x: hidden;
  padding-right: 30px;
}

.search-wrapper .search-display .number-list-ol::-webkit-scrollbar {
  width: 8px;
  position: relative; 
  z-index: 9;
  border-radius: 15px;
}
.search-wrapper .search-display .number-list-ol::-webkit-scrollbar-track {
  background:  #113c74;
}
.search-wrapper .search-display .number-list-ol::-webkit-scrollbar-thumb {
  background: #F4F3EC;
  width: 8px;
  border-radius: 15px;
}
.search-header-btn{
  display: none;
}
@media only screen and (max-width: 1399px) {
  .search-close img {
    width: 16px;
  }
  .search-wrapper .search-display {
    width: 70%; 
  }
} 
@media only screen and (max-width: 1299px) {
  .search-wrapper .search-display {
    width: 75%; 
  }
}
@media only screen and (max-width: 1199px) {
  .search-wrapper .search-display {
    width: 80%; 
  }
}
@media only screen and (max-width: 1099px) {
  .search-wrapper .search-display {
    width: 90%; 
  }
}
@media only screen and (max-width: 991px) {
  .search-wrapper .search-display {
    width: 100%; 
  }
  .search-wrapper h2 {
    font-size: 1.625em; 
  }
  .search-wrapper .search-display h3{
    font-size: 1.625em; 
    padding-left: 0;
    line-height: 32.5px;
  }
  .search-wrapper .search-display #searchResults {
    padding: 2.5em 0 2em;
  }
  .search-container .search-wrapper{
    padding: 60px 30px 120px;
  }
  .search-container .search-wrapper .align-items-center{
    align-items: start !important;
  }
  .search-container{
    background: #00285D url(../../images/search-phone-bg.svg) no-repeat center bottom;
    background-size: 100%;
  }
  .search-container .search-wrapper .align-items-center .px-5{
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .search-wrapper input{
    font-size: 1em;
  }
  .search-wrapper .input-search::before { 
    height: 1.5em; 
  }
  .search-wrapper .input-search::after { 
    width: 2em;
    height: 2em; 
    border: 0; 
    top: -8px;
  }
  .search-container .social-icons { 
    height: auto;
    top: auto;
    right: 0;
    bottom: 110px;
    left: 0;
    width: 100%;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
  }
  .search-container .social-icons a{
    margin: 0 8px;
  }
  .search-container .social-icons img{
    opacity: .75;
  } 
  .search-header-btn {
    display: inline-block;
    width: 260px;
    position: absolute;
    bottom: 36px;
    left: 0;
    right: 0;
    top: auto;
    margin: 0 auto;
    text-align: center;
    max-width: 100%;
    z-index: 1;
  }
  .search-header-btn a.icon{
    width: 52px;
    height: 52px;
    background-color: #F4F3EC;
    border: 1px solid #F4F3EC;
    opacity: 1; 
    padding: 8px;
  }
  .search-header-btn .header-btn img{ 
    filter: brightness(0) saturate(100%) invert(12%) sepia(81%) saturate(1772%) hue-rotate(194deg) brightness(96%) contrast(103%);
    width: 23px;
  }
  .search-header-btn .header-btn a{
    font-size: 1em;
    margin-right: 8px;
  }
  .search-header-btn .icon-box span { 
    bottom: -12px; 
    font-size: 10px;
    font-weight: 500;
  } 
 .search-header-btn .header-btn{
    gap: 0;
  }
  .number-list-ol ol li {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {

}
@media only screen and (max-width: 575px) {
  .search-wrapper .search-display .number-list-ol {
    max-height: calc(100vh - 440px);
  }
}

@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) {
  .search-container {
    height: calc(100vh - 85px);
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 3),
only screen and (-o-min-device-pixel-ratio: 3/1),
only screen and (min-resolution: 458dpi),
only screen and (min-resolution: 3dppx) {
  .search-container {
    height: calc(100vh - 85px);
  }
}

@media only screen and (hover: hover) and (pointer: coarse) {
  .search-container {
    height: calc(100vh - 85px);
  }
}

@supports (height: 100dvh) {
  .search-container {
    height: 100dvh;
  }
}</pre></body></html>