/* Extra small devices (phones, 360px and down) max-width: 360px; */
.nav_for_phones {
  top: 48px;
  position: fixed;
  max-width: 360px;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out, transform 0.5s ease-in;
  transform: translateY(-20px);
  background: #FFFFFF;
}
.nav_for_phones .p_links_wrapper {
  padding-top: 20px;
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nav_for_phones .p_dropdown_menu {
  display: flex;
  flex-direction: column;
}
.nav_for_phones .p_dropdown_menu .p_dropdown_links {
  width: 100%;
  background: #FFFFFF;
  box-shadow: 1px 1px 8px 1px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  height: 0;
  opacity: 0;
  margin: 0;
  pointer-events: none;
  display: flex;
  padding: 0;
  flex-direction: column;
  gap: 12px;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  transform: translateY(-18px);
}
.nav_for_phones .p_dropdown_menu .p_dropdown_links a {
  color: #000000;
  font-size: 1rem;
}
.nav_for_phones .p_dropdown_menu span {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: black;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  gap: 8px;
}
.nav_for_phones .p_dropdown_menu .svg_1 {
  height: 6px;
  transform: rotate(0deg);
  transition: all 0.5s ease-in-out;
}
.nav_for_phones .p_links {
  display: flex;
  align-items: center;
}
.nav_for_phones .p_links a {
  color: black;
  font-size: 1rem;
  font-weight: 500;
}
.nav_for_phones .p_links .ap {
  color: #4F0C16;
}

.open_nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.header {
  max-width: 360px;
  width: 100%;
  height: 48px;
  background: #4F0C16;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.header .header_container {
  width: 90%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.header .header_container .logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.header .header_container .logo .rbr_logo {
  height: 36px;
}
.header .header_container .navlinks {
  display: none;
}
.header .header_container .apply_now_btn {
  display: none;
}
.header .hamburger_menu {
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .hamburger_menu svg {
  height: 100%;
}

/* small devices (phones,  360px and up) max-width: 600;  */
@media only screen and (min-width: 360px) {
  .nav_for_phones {
    top: 48px;
    position: fixed;
    max-width: 600px;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out, transform 0.5s ease-in;
    transform: translateY(-20px);
    background: #FFFFFF;
  }
  .nav_for_phones .p_links_wrapper {
    padding-top: 20px;
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .nav_for_phones .p_dropdown_menu {
    display: flex;
    flex-direction: column;
  }
  .nav_for_phones .p_dropdown_menu .p_dropdown_links {
    width: 100%;
    background: #FFFFFF;
    box-shadow: 1px 1px 8px 1px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    height: 0;
    opacity: 0;
    margin: 0;
    pointer-events: none;
    display: flex;
    padding: 0;
    flex-direction: column;
    gap: 12px;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: translateY(-18px);
  }
  .nav_for_phones .p_dropdown_menu .p_dropdown_links a {
    color: #000000;
    font-size: 1rem;
  }
  .nav_for_phones .p_dropdown_menu span {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: black;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    gap: 8px;
  }
  .nav_for_phones .p_dropdown_menu .svg_1 {
    height: 6px;
    transform: rotate(0deg);
    transition: all 0.5s ease-in-out;
  }
  .nav_for_phones .p_links {
    display: flex;
    align-items: center;
  }
  .nav_for_phones .p_links a {
    color: black;
    font-size: 1rem;
    font-weight: 500;
  }
  .nav_for_phones .p_links .ap {
    color: #4F0C16;
  }
  .open_nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }
  .header {
    max-width: 600px;
    width: 100%;
    height: 48px;
    background: #4F0C16;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }
  .header .header_container {
    width: 90%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .header .header_container .logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    cursor: pointer;
  }
  .header .header_container .logo .rbr_logo {
    height: 36px;
  }
  .header .header_container .navlinks {
    display: none;
  }
  .header .header_container .apply_now_btn {
    display: none;
  }
  .header .hamburger_menu {
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .hamburger_menu svg {
    height: 100%;
  }
}
/* Small devices (portrait tablets and large phones, 600px and up) max-width: 768px;  */
@media only screen and (min-width: 600px) {
  .nav_for_phones {
    top: 48px;
    position: fixed;
    max-width: 768px;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out, transform 0.5s ease-in;
    transform: translateY(-20px);
    background: #FFFFFF;
  }
  .nav_for_phones .p_links_wrapper {
    padding-top: 20px;
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .nav_for_phones .p_dropdown_menu {
    display: flex;
    flex-direction: column;
  }
  .nav_for_phones .p_dropdown_menu .p_dropdown_links {
    width: 100%;
    background: #FFFFFF;
    box-shadow: 1px 1px 8px 1px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    height: 0;
    opacity: 0;
    margin: 0;
    pointer-events: none;
    display: flex;
    padding: 0;
    flex-direction: column;
    gap: 12px;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: translateY(-18px);
  }
  .nav_for_phones .p_dropdown_menu .p_dropdown_links a {
    color: #000000;
    font-size: 1rem;
  }
  .nav_for_phones .p_dropdown_menu span {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: black;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    gap: 8px;
  }
  .nav_for_phones .p_dropdown_menu .svg_1 {
    height: 6px;
    transform: rotate(0deg);
    transition: all 0.5s ease-in-out;
  }
  .nav_for_phones .p_links {
    display: flex;
    align-items: center;
  }
  .nav_for_phones .p_links a {
    color: black;
    font-size: 1rem;
    font-weight: 500;
  }
  .nav_for_phones .p_links .ap {
    color: #4F0C16;
  }
  .open_nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }
  .header {
    max-width: 768px;
    width: 100%;
    height: 48px;
    background: #4F0C16;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }
  .header .header_container {
    width: 80%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .header .header_container .logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    cursor: pointer;
  }
  .header .header_container .logo .rbr_logo {
    height: 36px;
  }
  .header .header_container .navlinks {
    display: none;
  }
  .header .header_container .apply_now_btn {
    display: none;
  }
  .header .hamburger_menu {
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .hamburger_menu svg {
    height: 100%;
  }
}
/* Medium devices (landscape tablets, 768px and up) max-width: 992px;  */
@media only screen and (min-width: 768px) {
  .nav_for_phones {
    top: 48px;
    position: fixed;
    max-width: 992px;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out, transform 0.5s ease-in;
    transform: translateY(-20px);
    background: #FFFFFF;
  }
  .nav_for_phones .p_links_wrapper {
    padding-top: 20px;
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .nav_for_phones .p_dropdown_menu {
    display: flex;
    flex-direction: column;
  }
  .nav_for_phones .p_dropdown_menu .p_dropdown_links {
    width: 100%;
    background: #FFFFFF;
    box-shadow: 1px 1px 8px 1px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    height: 0;
    opacity: 0;
    margin: 0;
    pointer-events: none;
    display: flex;
    padding: 0;
    flex-direction: column;
    gap: 12px;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: translateY(-18px);
  }
  .nav_for_phones .p_dropdown_menu .p_dropdown_links a {
    color: #000000;
    font-size: 1rem;
  }
  .nav_for_phones .p_dropdown_menu span {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: black;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    gap: 8px;
  }
  .nav_for_phones .p_dropdown_menu .svg_1 {
    height: 6px;
    transform: rotate(0deg);
    transition: all 0.5s ease-in-out;
  }
  .nav_for_phones .p_links {
    display: flex;
    align-items: center;
  }
  .nav_for_phones .p_links a {
    color: black;
    font-size: 1rem;
    font-weight: 500;
  }
  .nav_for_phones .p_links .ap {
    color: #4F0C16;
  }
  .open_nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }
  .header {
    max-width: 992px;
    width: 100%;
    height: 48px;
    background: #4F0C16;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }
  .header .header_container {
    width: 80%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .header .header_container .logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    cursor: pointer;
  }
  .header .header_container .logo .rbr_logo {
    height: 36px;
  }
  .header .header_container .navlinks {
    display: none;
  }
  .header .header_container .apply_now_btn {
    display: none;
  }
  .header .hamburger_menu {
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .hamburger_menu svg {
    height: 100%;
  }
}
/* Large devices (laptops/desktops, 992px and up) max-width: 1200px;  */
@media only screen and (min-width: 992px) {
  .nav_for_phones {
    display: none;
  }
  .header {
    max-width: 1200px;
    width: 100%;
    height: 80px;
    background: #4F0C16;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }
  .header .header_container {
    width: 90%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .header .header_container .logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    cursor: pointer;
  }
  .header .header_container .logo .rbr_logo {
    height: 56px;
  }
  .header .header_container .navlinks {
    width: 100%;
    padding-left: 64px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    position: relative;
  }
  .header .header_container .navlinks .links {
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
  }
  .header .header_container .navlinks .links::after {
    content: "";
    width: 0;
    height: 4px;
    background: #DDA82C;
    position: absolute;
    bottom: 0;
    transition: width 0.7s ease-in-out;
    transform-origin: center;
  }
  .header .header_container .navlinks .links .nav_a {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .header_container .navlinks .links:hover a {
    color: #DDA82C;
  }
  .header .header_container .navlinks .links:hover::after {
    width: 100%;
  }
  .header .header_container .navlinks a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 1.2rem;
  }
  .header .header_container .navlinks .drop_down_menu {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
  }
  .header .header_container .navlinks .drop_down_menu span {
    color: #FFFFFF;
    font-size: 1.2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 14px;
  }
  .header .header_container .navlinks .drop_down_menu span svg {
    height: 8px;
  }
  .header .header_container .navlinks .drop_down_menu span .svg_1 {
    transform: rotate(0deg);
    transition: all 0.5s ease-in-out;
  }
  .header .header_container .navlinks .drop_down_menu .drop_down_links {
    position: absolute;
    top: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in;
    transform: translateY(-10px);
    padding-top: 20px;
  }
  .header .header_container .navlinks .drop_down_menu .drop_down_links .wrap_parent {
    width: 360px;
    border-radius: 20px;
    padding: 16px 8px;
    background: #FFFFFF;
    box-shadow: 1px 1px 8px 1px rgba(0, 0, 0, 0.12);
    display: flex;
    padding-right: 8px;
  }
  .header .header_container .navlinks .drop_down_menu .drop_down_links .wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 400px;
    overflow: auto;
    padding: 8px;
  }
  .header .header_container .navlinks .drop_down_menu .drop_down_links .wrapper::-webkit-scrollbar {
    width: 2px;
  }
  .header .header_container .navlinks .drop_down_menu .drop_down_links .wrapper::-webkit-scrollbar-track {
    background: transparent;
    background: #f1f1f1;
    border-radius: 5px;
  }
  .header .header_container .navlinks .drop_down_menu .drop_down_links .wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
  }
  .header .header_container .navlinks .drop_down_menu .drop_down_links .wrapper::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  .header .header_container .navlinks .drop_down_menu .drop_down_links .wrapper a {
    color: #000000;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.5s ease-in;
  }
  .header .header_container .navlinks .drop_down_menu .drop_down_links .wrapper a svg {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  .header .header_container .navlinks .drop_down_menu .drop_down_links .wrapper a:hover {
    color: #4F0C16;
    transform: translateX(8px);
  }
  .header .header_container .navlinks .drop_down_menu .drop_down_links .wrapper a:hover svg {
    opacity: 1;
  }
  .header .header_container .navlinks .drop_down_menu .drop_down_links .wrapper .link_lbl {
    padding-left: 32px;
    width: 100%;
    font-size: 0.8rem;
    color: #7A7A7A;
    margin-top: 16px;
  }
  .header .header_container .navlinks .drop_down_menu .drop_down_links .wrapper::before {
    content: "";
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #FFFFFF;
    position: absolute;
    top: 0;
    transform: translate(-5px, 10px);
    left: 50%;
  }
  .header .header_container .navlinks .drop_down_menu:hover span {
    color: #DDA82C;
  }
  .header .header_container .navlinks .drop_down_menu:hover .drop_down_links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .header .header_container .navlinks .drop_down_menu:hover .svg_1 {
    transform: rotate(180deg);
  }
  .header .header_container .navlinks .active {
    position: relative;
  }
  .header .header_container .navlinks .active a {
    color: #DDA82C;
  }
  .header .header_container .navlinks .active .y {
    color: #DDA82C;
  }
  .header .header_container .apply_now_btn {
    width: 180px;
    height: 44px;
    border-radius: 4px;
    background: #FFFFFF;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
    color: #000000;
  }
  .header .header_container .apply_now_btn .a_icon {
    height: 24px;
  }
  .header .header_container .apply_now_btn .apply_now {
    font-size: 1rem;
  }
  .header .header_container .hamburger_menu {
    display: none;
  }
}
/* Extra large devices (large laptops and desktops, 1200px and up) max-width: 100%;  */
@media only screen and (min-width: 1200px) {
  .nav_for_phones {
    display: none;
  }
  .header {
    max-width: 100%;
    width: 100%;
    height: 80px;
    background: #4F0C16;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }
  .header .header_container {
    width: 1180px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .header .header_container .logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    cursor: pointer;
  }
  .header .header_container .logo .rbr_logo {
    height: 56px;
  }
  .header .header_container .navlinks {
    width: 100%;
    padding-left: 80px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    position: relative;
  }
  .header .header_container .navlinks .links {
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
  }
  .header .header_container .navlinks .links::after {
    content: "";
    width: 0;
    height: 4px;
    background: #DDA82C;
    position: absolute;
    bottom: 0;
    transition: width 0.7s ease-in-out;
    transform-origin: center;
  }
  .header .header_container .navlinks .links .nav_a {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .header_container .navlinks .links:hover a {
    color: #DDA82C;
  }
  .header .header_container .navlinks .links:hover::after {
    width: 100%;
  }
  .header .header_container .navlinks a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 1.2rem;
  }
  .header .header_container .navlinks .drop_down_menu {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
  }
  .header .header_container .navlinks .drop_down_menu span {
    color: #FFFFFF;
    font-size: 1.2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 14px;
  }
  .header .header_container .navlinks .drop_down_menu span svg {
    height: 8px;
  }
  .header .header_container .navlinks .drop_down_menu span .svg_1 {
    transform: rotate(0deg);
    transition: all 0.5s ease-in-out;
  }
  .header .header_container .navlinks .drop_down_menu .drop_down_links {
    position: absolute;
    top: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in;
    transform: translateY(-10px);
    padding-top: 20px;
  }
  .header .header_container .navlinks .drop_down_menu .drop_down_links .wrap_parent {
    width: 360px;
    border-radius: 20px;
    padding: 16px 8px;
    background: #FFFFFF;
    box-shadow: 1px 1px 8px 1px rgba(0, 0, 0, 0.12);
    display: flex;
    padding-right: 8px;
  }
  .header .header_container .navlinks .drop_down_menu .drop_down_links .wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 400px;
    overflow: auto;
    padding: 8px;
  }
  .header .header_container .navlinks .drop_down_menu .drop_down_links .wrapper::-webkit-scrollbar {
    width: 2px;
  }
  .header .header_container .navlinks .drop_down_menu .drop_down_links .wrapper::-webkit-scrollbar-track {
    background: transparent;
    background: #f1f1f1;
    border-radius: 5px;
  }
  .header .header_container .navlinks .drop_down_menu .drop_down_links .wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
  }
  .header .header_container .navlinks .drop_down_menu .drop_down_links .wrapper::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  .header .header_container .navlinks .drop_down_menu .drop_down_links .wrapper a {
    color: #000000;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.5s ease-in;
  }
  .header .header_container .navlinks .drop_down_menu .drop_down_links .wrapper a svg {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  .header .header_container .navlinks .drop_down_menu .drop_down_links .wrapper a:hover {
    color: #4F0C16;
    transform: translateX(8px);
  }
  .header .header_container .navlinks .drop_down_menu .drop_down_links .wrapper a:hover svg {
    opacity: 1;
  }
  .header .header_container .navlinks .drop_down_menu .drop_down_links .wrapper .link_lbl {
    padding-left: 32px;
    width: 100%;
    font-size: 0.8rem;
    color: #7A7A7A;
    margin-top: 16px;
  }
  .header .header_container .navlinks .drop_down_menu .drop_down_links .wrapper::before {
    content: "";
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #FFFFFF;
    position: absolute;
    top: 0;
    transform: translate(-5px, 10px);
    left: 50%;
  }
  .header .header_container .navlinks .drop_down_menu:hover span {
    color: #DDA82C;
  }
  .header .header_container .navlinks .drop_down_menu:hover .drop_down_links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .header .header_container .navlinks .drop_down_menu:hover .svg_1 {
    transform: rotate(180deg);
  }
  .header .header_container .navlinks .active {
    position: relative;
  }
  .header .header_container .navlinks .active a {
    color: #DDA82C;
  }
  .header .header_container .navlinks .active .y {
    color: #DDA82C;
  }
  .header .header_container .apply_now_btn {
    height: 44px;
    border-radius: 4px;
    background: #FFFFFF;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
    color: #000000;
    padding: 0 16px;
  }
  .header .header_container .apply_now_btn .a_icon {
    height: 24px;
  }
  .header .header_container .apply_now_btn .apply_now {
    width: -moz-max-content;
    width: max-content;
    font-size: 1rem;
  }
  .header .header_container .hamburger_menu {
    display: none;
  }
}/*# sourceMappingURL=head.css.map */