@import url(reset.css);
@import url(fonts.css);

:root {
  --color-white: #fff;
  --color-black: #000;
  --color-primary: #9c1852;
  --color-dark-primary: #24002c;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Urbanist";
  color: var(--color-black);
}

section:first-of-type {
  min-height: calc(100% - 109px - 25px - 98px);
}

.block__wrapper {
  width: 100%;
  padding: 0 100px;
}

button,
a {
  cursor: pointer;
  transition: all ease-in-out 0.5s;
}

button:hover,
a:hover {
  opacity: 0.5;
}

h1 {
  font-size: 2em;
} /* ≈32px при базовом 16px */
h2 {
  font-size: 1.5em;
} /* ≈24px */
h3 {
  font-size: 1.17em;
} /* ≈18.7px */
h4 {
  font-size: 1em;
} /* ≈16px */
h5 {
  font-size: 0.83em;
} /* ≈13.3px */
h6 {
  font-size: 0.67em;
} /* ≈10.7px */

/* HEADER */

header {
  position: relative;
  height: 98px;
  margin-bottom: 25px;
}

.header__content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  text-decoration: none;
  display: flex;
  gap: 15px;
}

.header__logo-image {
  width: 77px;
  height: 99px;
}

.header__logo-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark-primary);
  text-transform: uppercase;
  align-items: center;
  display: flex;
}

.header__navigation {
  margin-right: 22%;
}

.header__navigation ul.header__list {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.header__navigation ul.header__list .header__telegram {
  display: flex;
  width: 34px;
  margin-left: -15px;
}

.header__navigation ul.header__list .header__telegram img {
	width: 100%;
}

.has-submenu {
  position: relative;
}

.header__link {
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  background: rgba(0, 0, 0, 0.8);
  padding: 10px 0;
  z-index: 10;
  min-width: max-content;
}

.submenu li {
  padding: 5px 20px;
  white-space: nowrap;
  text-align: center;
}

.submenu a {
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.has-submenu:hover .submenu {
  display: flex;
}

.header__link--outlined {
  background-color: #ffafc8;
  padding: 20px 38px;
  border-radius: 90px;
}

.header__location {
  display: flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  top: 10px;
  right: 40px;
}

.header__location a {
  font-family: "Helvetica";
  font-weight: 300;
  color: var(--color-black);
  text-decoration: none;
}

.header__menu {
  display: none;
  padding: 0;
  border: none;
  background: none;
}
.header__telegram-mobile,
.header__whatsapp-mobile{
  display: none;
}

.mobile__menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2c002c;
  z-index: 9999;
}

.mobile__menu.active {
  display: block;
}

/* footer */

.footer_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.footer__item {
  display: flex;
  align-items: center;
  gap: 248px;
}

.footer__logo {
  width: 77px;
  height: 89px;
}

.footer__copyright {
  width: 260px;
  color: var(--color-black);
  font-size: 20px;
  font-weight: 300;
  font-family: "Helvetica";
}

.footer__list {
  display: flex;
  gap: 20px;
  justify-content: end;
}

.footer__link {
  font-size: 20px;
  color: var(--color-black);
  text-decoration: none;
  font-family: "Helvetica";
  font-weight: 300;
}

.footer__item--mobile {
  display: none;
}

.hero__extra-block {
  display: flex;
  flex-wrap: wrap;
  height: max-content;
  margin-bottom: 70px;
  gap: 10px;
  white-space: normal;
  width: 100%;
}

.hero__extra-block-item {
  font-size: 30px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 1);
  transition: 0.3s;
  min-height: 110px;
  width: auto;
}

.hero__extra-block a{
    text-decoration: none;
    color: #fff;
    padding: 0 20px;
    /*white-space: nowrap;*/
}

@media only screen and (max-width: 1280px) {
    .hero__extra-block{
        flex-direction: column;
    }
}



@media only screen and (max-width: 1280px) {
  .header__navigation {
    margin-right: 15%;
  }
}

@media only screen and (max-width: 1200px) {
  .header__navigation {
    margin-right: 5%;
  }

  .footer__item {
    gap: 150px;
  }

  .footer__copyright {
    display: none;
  }

  .footer__navigation {
    display: none;
  }

  .footer__item {
    display: none;
  }

  .footer_content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
  }

  .footer__item--logo {
    display: flex;
  }

  .footer__item--mobile {
    display: flex;
    gap: 0;
    justify-content: space-between;
    width: 100%;
  }

  .footer__item--mobile .footer__copyright {
    display: flex;
    width: auto;
    font-size: 10px;
    width: 141px;
  }

  .footer__item--mobile .footer__navigation {
    display: flex;
  }

  .footer__link {
    font-size: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .header__navigation {
    display: none;
  }

  .header__menu {
    display: block;
  }

  .header__telegram-mobile,	
  .header__whatsapp-mobile{
    display: block;
    position: absolute;
    right: 82px;
  }
	
  .header__telegram-mobile {
	right: 46px;
	width: 34px;
  } 	

  .header__telegram-mobile img {
	 width: 100%;
  }

  .header__location {
    display: none;
  }

  .mobile__menu .header__location {
    display: flex;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
  }

  .header__location a {
    color: var(--color-white);
    font-size: 5px;
  }

  .mobile__menu .header__navigation {
    display: block;
    margin: 0;
    margin-top: 30px;
  }

  .mobile__menu .header__navigation ul {
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }

  .header__link {
    color: var(--color-white);
  }

  .menu__contact {
    height: 100%;
    margin-top: 38px;
    padding-top: 25px;
    background-color: #262626;
  }

  .menu__contact .contact__content {
    gap: 20px;
  }

  .menu__contact .contact__content .contact__item {
    width: 75px;
    height: 75px;
    min-width: 75px;
    min-height: 75px;
  }

  .menu__contact .contact__content .contact__item .contact__item-image {
    width: 40px;
    margin-bottom: 5px;
  }

  .menu__contact .contact__content .contact__item .contact__item-text {
    font-size: 5px;
    line-height: 100%;
  }

  .footer__list {
    flex-wrap: wrap;
  }

  .footer__link {
    font-size: 13px;
  }
}

@media only screen and (max-width: 880px) {
  .block__wrapper {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 700px) {
  section:first-of-type {
    min-height: calc(100% - 149px - 25px - 98px);
  }
}

@media only screen and (max-width: 480px) {
  .header__logo-title {
    font-size: 14px;
  }
}

.page404 h1 {
  text-align: center;
  font-size: 85px;
  color: var(--color-primary);
  font-weight: 600;
}

.page404 p {
  text-align: center;
}

.seo_text, .text__content{
  color: #000;
}

.seo_text h2,.seo_text h3,.seo_text h4,.seo_text h5{
  margin-bottom: 10px;
  margin-top: 20px;
  font-weight: 500;
}

.text__content h2,.text__content h3,.text__content h4,.text__content h5{
  margin-bottom: 10px;
  margin-top: 20px;
  font-weight: 500;
}

.seo_text p, .seo_text ul{
  margin-bottom: 10px;
}

.text__content p, .text__content ul{
  margin-bottom: 10px;
}

.seo_text b, .seo_text strong{
  font-weight: 700;
}

.text__content b, .text__content strong{
  font-weight: 700;
}

.seo_text i, .seo_text em{
  font-style: italic;
}

.text__content i, .text__content em{
  font-style: italic;
}

.seo_text ul {
  list-style: disc;
}

.text__content ul {
  list-style: disc;
}

.seo_text ol {
  list-style: decimal;
}

.text__content ol {
  list-style: decimal;
}

.seo_text ul, .seo_text ol{
  padding-left: 40px;
}

.text__content ul, .text__content ol{
  padding-left: 40px;
}

.page__wrapper {
  width: 100%;
  padding: 0 100px;
  max-width: 1680px;
  margin: 0 auto;
  margin-top: 60px;
}

.page__wrapper *{
  color: var(--color-black);
}

.page__wrapper h2,.page__wrapper h3,.page__wrapper h4,.page__wrapper h5{
  margin-bottom: 10px;
  margin-top: 20px;
  font-weight: 500;
}

.page__wrapper p, .page__wrapper ul, .page__wrapper ol{
  margin-bottom: 10px;
  font-size: 18px;
}

.page__wrapper b, .page__wrapper strong{
  font-weight: 700;
}

.page__wrapper i, .page__wrapper em{
  font-style: italic;
}

.page__wrapper ul {
  list-style: disc;
}

.page__wrapper ol {
  list-style: decimal;
}

.page__wrapper ul, .page__wrapper ol{
  padding-left: 40px;
}

.filter *{
  color: #fff !important; 
}

.filter .dropdown h3{
  margin: 0;
}

.females__card-name *{
  color: #fff;
}

.page__wrapper .females .block__wrapper {
  padding: 0;
}

.page__wrapper h1{
  font-size: 120px;
  font-weight: 600;
  color: var(--color-dark-primary);
  letter-spacing: -9px;
  text-transform: uppercase;
  max-width: 1400px;
  margin: 0 auto 54px auto;
}

@media only screen and (max-width: 768px) {
  .page__wrapper h1 {
      font-size: 100px;
  }
}

@media only screen and (max-width: 700px) {
  .page__wrapper h1 {
      font-size: 80px;
  }
}

@media only screen and (max-width: 550px) {
  .page__wrapper h1 {
      font-size: 60px;
  }
}

@media only screen and (max-width: 768px){
  .page__wrapper{
    padding: 0 10px;
  }
}

@media only screen and (max-width: 675px){
  .filters form{
    flex-direction: column;
    height: auto !important;
    padding-bottom: 20px;
    padding-top: 20px;
  }

  .filters form .filter .dropdown{
    width: 250px;
  }
}
