﻿.btn-round {
  background-color: #dd1d21;
  color: white;
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 66px;
  cursor: pointer;
  top: 0px;
  position: relative;
  transition: top ease-in-out 100ms;
}
.btn-round:hover {
  background-color: #c5181b;
  color: white;
}
.btn-round:active {
  top: 2px;
}

.color--red {
  font-weight: 700;
  color: #dd1d21;
}

.color--black {
  font-weight: 600;
  font-style: italic;
  color: black;
}
@media (min-width: 992px) {
  .color--black {
    font-size: 24px;
  }
}

.background--yellow {
  font-weight: 700;
  padding: 20px;
  background-color: rgb(255, 204, 0);
  border-radius: 15px;
  box-shadow: 0px 2px 2px rgba(51, 51, 51, 0.08);
  margin: 15px 0 15px 0;
}

.link-list {
  padding: 0;
}

.link-list span.title,
.link-list a.title {
  user-select: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  color: black;
  border-radius: 8px;
  display: flex;
  transition: background-color ease-out 50ms;
  padding: 1.2rem 1.2rem 1.2rem 5rem;
  overflow-wrap: anywhere;
}
.link-list span.title:hover,
.link-list a.title:hover {
  color: #dd1d21;
}
@media (min-width: 768px) {
  .link-list span.title,
  .link-list a.title {
    padding: 1rem 1rem 0.5rem 2rem;
  }
}
@media (min-width: 992px) {
  .link-list span.title,
  .link-list a.title {
    padding: 1.2rem 1.2rem 1.2rem 5rem;
  }
}

.media-items {
  display: flex;
  flex-direction: column;
  transition: max-height 2.5s ease-out;
  max-height: 0;
  height: 0;
  overflow: hidden;
}
.link-list li.is-open .media-items {
  max-height: 500px;
  height: auto;
  transition: max-height 2.5s ease-out;
  padding-bottom: 1rem;
}
.media-items a {
  display: flex;
  font-size: 16px;
  padding: 2px 10px;
  text-decoration: none;
  padding: 0.2rem 0.2rem 0.2rem 6.5rem;
  position: relative;
  color: black;
}
.media-items a::before {
  content: "-";
  color: #dd1d21;
  font-weight: bold;
  position: absolute;
  margin-left: -1.5rem;
}
.media-items a:hover {
  color: #dd1d21;
}

.link-list li {
  position: relative;
  background-color: #fbfbfb;
  margin-bottom: 10px;
  box-shadow: 0px 2px 2px rgba(51, 51, 51, 0.08);
  border-radius: 8px;
}
.link-list li:nth-of-type(odd) {
  background-color: #fbfbfb;
}
.link-list li:nth-of-type(even) {
  background-color: #f5f5f5;
}
.link-list li::before {
  content: " ";
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_4_153)'%3E%3Cpath d='M10.7501 6L9.34009 7.41L13.9201 12L9.34009 16.59L10.7501 18L16.7501 12L10.7501 6Z' fill='%23DD1D21'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_4_153'%3E%3Crect width='24' height='24' fill='white' transform='translate(0.75)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  left: 20px;
  height: 20px;
  width: 20px;
  top: 1.1em;
  position: absolute;
  transition: 0.2s;
}
@media (min-width: 768px) {
  .link-list li::before {
    left: 8px;
  }
}
@media (min-width: 992px) {
  .link-list li::before {
    left: 20px;
  }
}
.link-list li.is-open::before {
  transform: rotate(90deg);
  transition: 0.2s;
}

h1.underline--yellow {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

h1.underline--yellow:after {
  background: rgb(255, 204, 0);
  height: 2px;
  margin-left: 12px;
  flex: 1;
  content: "";
}

h1.underline--red {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

h1.underline--red:after {
  background: #dd1d21;
  height: 2px;
  margin-left: 12px;
  flex: 1;
  content: "";
}

.arrow-list li {
  font-weight: 500;
  position: relative;
  line-height: 2;
}
.arrow-list li:before {
  content: " ";
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_4_153)'%3E%3Cpath d='M10.7501 6L9.34009 7.41L13.9201 12L9.34009 16.59L10.7501 18L16.7501 12L10.7501 6Z' fill='%23DD1D21'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_4_153'%3E%3Crect width='24' height='24' fill='white' transform='translate(0.75)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  left: -22px;
  height: 20px;
  width: 20px;
  top: 3px;
  position: absolute;
}

.arrow-list a {
  text-decoration: none;
  margin-left: 5px;
}

.row .part-width-column:first-of-type {
  padding-right: 20px;
}

img {
  max-width: 100%;
  height: auto;
}

.nav-menu__head {
  border-bottom: 5px solid #dd1d21;
  background-color: rgb(255, 204, 0);
  display: flex;
  padding: 20px;
}
.nav-menu__head a {
  text-decoration: none;
  color: black;
  font-weight: 700;
}
.nav-menu__head ul {
  margin: 0px;
  padding: 0px;
}
.nav-menu__head__list {
  display: flex;
  justify-content: space-between;
}

nav {
  list-style: none;
  box-shadow: 0px 2px 12px rgba(51, 51, 51, 0.03), 0px 1px 1px rgba(51, 51, 51, 0.01);
}
nav a {
  color: black;
}
nav ul {
  margin: 0;
  padding: 0;
}
nav .navbar-toggler {
  color: white !important;
  border-color: white !important;
}
nav .nav-item,
nav .nav-item.active {
  margin-right: 30px;
  font-size: 16px;
  position: relative;
}
nav .nav-item:not(.active):hover::before {
  content: " ";
}
@media (min-width: 992px) {
  nav .nav-item:not(.active):hover::before {
    content: " ";
    background: rgb(255, 204, 0);
    height: 2px;
    width: 100%;
    top: 64px;
    position: absolute;
  }
}
nav .nav-item.active {
  font-weight: 600;
  border-bottom: none;
}
@media (min-width: 992px) {
  nav .nav-item.active {
    border-bottom: 2px solid rgb(255, 204, 0);
  }
}
nav .nav-link,
nav .nav-link {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0 !important;
  color: black !important;
}
nav .nav-link:hover,
nav .nav-link:hover {
  color: black;
}
nav .nav-link:focus,
nav .nav-link:focus {
  color: black;
}
@media (min-width: 992px) {
  nav .nav-link,
  nav .nav-link {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
nav .nav-item.dropdown {
  color: black;
}
nav .dropdown-menu {
  min-width: 20rem;
  border: none;
  padding: 0;
  margin-top: 0px;
  top: 100%;
  border-radius: 0px 0px 16px 16px;
}
nav .dropdown-menu li:last-of-type a {
  border-bottom: none;
}
nav .dropdown-menu li:last-of-type a:hover {
  border-radius: 0px 0px 16px 16px;
  background-color: #fff5cc;
}
@media (min-width: 992px) {
  nav .dropdown-menu {
    min-width: 30rem;
    border-top: #fff5cc 2px solid !important;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0px 4px 15px rgba(51, 51, 51, 0.06), 0px 2px 2px rgba(51, 51, 51, 0.16);
  }
}
nav .dropdown-menu[data-bs-popper] {
  margin-top: 0px;
}
@media (min-width: 992px) {
  nav .dropdown:hover .dropdown-menu {
    display: block;
  }
}
nav .dropdown-item {
  border-bottom: 1px solid #f2f2f2;
  padding: 1rem 0rem 1rem 2rem;
  position: relative;
  font-size: 16px;
}
@media (min-width: 992px) {
  nav .dropdown-item {
    padding: 1.2rem 0rem 1.2rem 3rem;
  }
}
nav .dropdown-item:hover {
  background-color: #fff5cc;
}
nav .dropdown-item:focus {
  color: black;
  background-color: rgb(255, 204, 0);
}
nav .dropdown-item :last-of-type a:hover {
  border-radius: 0px 0px 16px 16px;
  background-color: red !important;
}
nav .dropdown-item::before {
  content: " ";
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_4_153)'%3E%3Cpath d='M10.7501 6L9.34009 7.41L13.9201 12L9.34009 16.59L10.7501 18L16.7501 12L10.7501 6Z' fill='%23DD1D21'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_4_153'%3E%3Crect width='24' height='24' fill='white' transform='translate(0.75)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  left: 4px;
  height: 20px;
  width: 20px;
  top: 1em;
  position: absolute;
}
@media (min-width: 992px) {
  nav .dropdown-item::before {
    left: 20px;
    top: 1.2em;
  }
}

nav.border--bottom {
  border-bottom: 1px solid #fff5cc;
}

.banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  height: 180px;
  max-width: 100%;
  padding: 10px 10px 60px 20px;
}
@media (min-width: 768px) {
  .banner {
    height: 334px;
    padding: 40px 40px;
  }
}
.banner__text {
  font-size: 26px;
  line-height: 2.4rem;
  font-weight: 700;
  color: white;
}
@media (min-width: 768px) {
  .banner__text {
    font-size: 36px;
    line-height: 43px;
    font-weight: 700;
  }
}
.banner.banner-empty {
  background-color: #fbfbfb;
  height: 40px;
}
@media (min-width: 768px) {
  .banner.banner-empty {
    padding: 30px;
    height: 40px;
  }
}

.search {
  padding-top: 20px;
}
.search__form {
  margin-top: -45px;
}
.search__form__btn {
  background-color: #dd1d21;
  color: white;
  border: none;
  padding: 16px 30px;
  height: 48px;
  text-align: center;
  text-decoration: none;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  box-shadow: 0px 4px 15px rgba(51, 51, 51, 0.06), 0px 2px 2px rgba(51, 51, 51, 0.16);
  cursor: pointer;
  transition: all ease-in-out 300ms;
}
.search__form__btn:hover {
  background-color: #c5181b;
  color: white;
}

.search__form input {
  height: 48px;
  line-height: 25px;
  border-radius: 50px;
  box-shadow: 0px 4px 15px rgba(51, 51, 51, 0.06), 0px 2px 2px rgba(51, 51, 51, 0.16);
}

.search .form-control {
  padding: 1.375rem 2.75rem;
  border: none;
}
.search .form-control:focus {
  box-shadow: 0px 4px 15px rgba(51, 51, 51, 0.06), 0px 2px 2px rgba(51, 51, 51, 0.16);
  border: none;
}
.search .form-control::placeholder {
  color: #c2c2c2;
}

.search-results__list {
  padding: 0;
}

.search-results__list a {
  text-decoration: none;
  font-weight: 700;
  color: black;
  border-radius: 8px;
  display: flex;
  transition: background-color ease-out 50ms;
  padding: 1.2rem 0rem 1.2rem 5rem;
}
.search-results__list a:hover {
  color: #dd1d21;
}

.search-results__list li {
  position: relative;
  background-color: #fbfbfb;
  margin-bottom: 15px;
  box-shadow: 0px 4px 15px rgba(51, 51, 51, 0.06), 0px 2px 2px rgba(51, 51, 51, 0.16);
  border-radius: 8px;
  background-color: #fbfbfb;
}
.search-results__list li::before {
  content: " ";
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_4_153)'%3E%3Cpath d='M10.7501 6L9.34009 7.41L13.9201 12L9.34009 16.59L10.7501 18L16.7501 12L10.7501 6Z' fill='%23DD1D21'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_4_153'%3E%3Crect width='24' height='24' fill='white' transform='translate(0.75)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  left: 20px;
  height: 20px;
  width: 20px;
  top: 1.1em;
  position: absolute;
}

.pagination .page-link {
  color: #dd1d21;
}

.page-item.active .page-link {
  background-color: #dd1d21;
  border-color: #dd1d21;
}

.page-item:first-child:not(.active) .page-link {
  border-radius: 50px 0px 0px 50px;
}

.page-item:last-child:not(.active) .page-link {
  border-radius: 0px 50px 50px 0px;
}

footer {
  margin-top: auto;
}

footer a {
  font-size: 16px;
  font-weight: 700;
  color: black;
  text-decoration: none;
}
footer a:hover {
  color: #dd1d21;
}

.footer-head {
  border-bottom: 5px solid #dd1d21;
  background-color: rgb(255, 204, 0);
  display: flex;
  padding: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: end;
  align-items: center;
  height: 50px;
}

.login-form .form-control {
  border-radius: 14px;
}

.register-form .form-control {
  border-radius: 14px;
}

html {
  font-size: 14px;
  font-weight: 400;
  color: black;
  margin: 0 auto;
  padding: 0;
  scroll-behavior: smooth;
}
@media (min-width: 992px) {
  html {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
html {
  position: relative;
  min-height: 100%;
}

body {
  font-family: "Roboto", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1 {
  font-size: 20px;
  font-weight: 700;
}
@media (min-width: 992px) {
  h1 {
    font-size: 30px;
  }
}

a {
  color: #dd1d21;
}

p {
  line-height: 1.8rem;
}

ul {
  list-style: none;
  padding: 0;
}

form {
  margin: 0;
}
