:root {
  --colorMain: #fe7a49;
  --colorMainHover: #e45e2d;
  --colorSecond: #043665;
  --pageWidth: 1600px;
  --spaceH: 15px;
  --colorDarkpink: #7D5064;
  --colorPink: #F9B9CA;
  --colorCyan: #AAFAFA;
}

@font-face {
  font-family: "futura-pt";
  src: url("https://use.typekit.net/af/db8d0b/00000000000000007758da2b/31/l?primer=f592e0a4b9356877842506ce344308576437e4f677d7c9b78ca2162e6cad991a&fvd=n5&v=3") format("woff2"), url("https://use.typekit.net/af/db8d0b/00000000000000007758da2b/31/d?primer=f592e0a4b9356877842506ce344308576437e4f677d7c9b78ca2162e6cad991a&fvd=n5&v=3") format("woff"), url("https://use.typekit.net/af/db8d0b/00000000000000007758da2b/31/a?primer=f592e0a4b9356877842506ce344308576437e4f677d7c9b78ca2162e6cad991a&fvd=n5&v=3") format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 500;
  font-stretch: normal;
}
@font-face {
  font-family: "klavika-web-display";
  src: url("https://use.typekit.net/af/6e1f76/00000000000000007735eeca/31/l?primer=f592e0a4b9356877842506ce344308576437e4f677d7c9b78ca2162e6cad991a&fvd=n8&v=3") format("woff2"), url("https://use.typekit.net/af/6e1f76/00000000000000007735eeca/31/d?primer=f592e0a4b9356877842506ce344308576437e4f677d7c9b78ca2162e6cad991a&fvd=n8&v=3") format("woff"), url("https://use.typekit.net/af/6e1f76/00000000000000007735eeca/31/a?primer=f592e0a4b9356877842506ce344308576437e4f677d7c9b78ca2162e6cad991a&fvd=n8&v=3") format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 800;
  font-stretch: normal;
}
@font-face {
  font-family: "futura-pt-bold";
  src: url("https://use.typekit.net/af/9d7aea/000000000000000077586b5f/31/l?primer=f592e0a4b9356877842506ce344308576437e4f677d7c9b78ca2162e6cad991a&fvd=n7&v=3") format("woff2"), url("https://use.typekit.net/af/9d7aea/000000000000000077586b5f/31/d?primer=f592e0a4b9356877842506ce344308576437e4f677d7c9b78ca2162e6cad991a&fvd=n7&v=3") format("woff"), url("https://use.typekit.net/af/9d7aea/000000000000000077586b5f/31/a?primer=f592e0a4b9356877842506ce344308576437e4f677d7c9b78ca2162e6cad991a&fvd=n7&v=3") format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
}
* {
  box-sizing: border-box;
}

html, body {
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  line-height: 1.6470588235em;
  background: #ededed;
  font-family: "klavika-web-display";
}

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

li::marker {
  color: var(--colorMain);
}

a {
  color: var(--colorMain);
  text-decoration: none;
}
a:hover {
  color: var(--colorMainHover);
}

.all {
  background-color: #fff;
}

.header-buy, .button {
  height: 42px;
  padding: 0 30px;
  color: #fff;
  background: var(--colorMain);
  border-radius: 100px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "futura-pt";
  font-weight: 900;
  transition: 0.3s background-color, 0.3s color;
}
.header-buy:hover, .button:hover {
  background-color: #fff;
  color: var(--colorMainHover);
}
@media (max-width: 476px) {
  .header-buy, .button {
    padding: 0 20px;
    height: 40px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding-top: 20px;
  padding-bottom: 20px;
  transition: 0.3s background, 0.3s box-shadow, 0.3s opacity;
  font-family: "futura-pt";
}

.header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: url("../images/www/cien.png") no-repeat center top;
  background-size: 100% 100%;
  pointer-events: none;
}

.header.is-sticky::after {
  display: none;
}

.header.is-sticky {
  background: #021c34;
  /* https://smoothshadows.com/#djEsMSw1LDAuMDgsMjQsMzIsMCwjMDMwNzEyLCNmM2Y0ZjYsI2ZmZmZmZiwy */
  box-shadow: 0px 1px 1px rgba(3, 7, 18, 0.02), 0px 5px 4px rgba(3, 7, 18, 0.03), 0px 12px 9px rgba(3, 7, 18, 0.05), 0px 20px 15px rgba(3, 7, 18, 0.06), 0px 32px 24px rgba(3, 7, 18, 0.08);
}

@media (max-width: 476px) {
  .header.is-sticky {
    opacity: 1;
    pointer-events: all;
  }
}
.header-inside {
  max-width: var(--pageWidth);
  margin-inline: auto;
  width: 100%;
  display: flex;
  gap: 30px;
  align-items: center;
  padding-inline: var(--spaceH);
  position: relative;
  z-index: 100;
}
@media (max-width: 1620px) {
  .header-inside {
    padding-left: 20px;
    padding-right: 30px;
  }
}

.header-logo {
  max-width: 222px;
}

.header-nav {
  flex: 1;
  height: 100%;
  display: flex;
  justify-content: right;
}

.header-menu {
  display: flex;
  height: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.header-menu a {
  font-size: 24px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  font-family: "klavika-web-display";
}
.header-menu a:hover {
  color: var(--colorPink);
}

.header-buy {
  font-size: 12px;
}

.header-burger {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 3px;
  width: 50px;
  height: 50px;
  border: 0;
  background: none;
  cursor: pointer;
  display: none;
}
.header-burger strong {
  display: none;
}
.header-burger span {
  width: 24px;
  height: 2px;
  background: var(--colorMain);
}

.header-fb {
  margin-right: -1rem;
}
.header-fb svg {
  display: block;
}
.header-fb svg circle {
  transition: all 0.2s linear;
}
.header-fb:hover svg circle {
  fill: #fff;
}
.header-fb:hover svg path {
  fill: #fe7a49;
}

@media (max-width: 1360px) {
  .header-menu a {
    font-size: 18px;
  }
  .header-buy {
    font-size: 10px;
  }
}
@media (max-width: 1200px) {
  .header-logo {
    max-width: 150px;
  }
  .header-menu {
    gap: 15px;
  }
  .header-buy {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1160px) {
  .header-menu {
    display: none;
  }
}
@media (max-width: 476px) {
  .header-logo {
    max-width: 100px;
  }
}
.m-section {
  margin: 80px 0;
}

.m-title {
  font-size: 42px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--colorPink);
  text-transform: uppercase;
  font-weight: 900;
  margin: 0;
  text-align: center;
  margin-bottom: 30px;
  font-family: "klavika-web-display";
}
@media (max-width: 1000px) {
  .m-title {
    margin: 0;
  }
}
@media (max-width: 500px) {
  .m-title {
    font-size: 32px;
  }
}

.m-title.m-black {
  color: #000;
  text-align: left;
  margin-bottom: 0;
}

.m-text {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  max-width: 1200px;
  margin-inline: auto;
  font-family: "futura-pt";
}

.m-hero {
  background: var(--colorPink);
  position: relative;
  overflow: hidden;
  display: grid;
  grid: auto/auto;
  font-family: "futura-pt";
  height: 1083px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  background-image: url(../images/www/tlo-senior.jpg);
}
@media (max-width: 1300px) {
  .m-hero {
    height: auto;
  }
}
@media (max-width: 768px) {
  .m-hero {
    background-attachment: scroll;
  }
}

.m-hero-bg {
  grid-column: 1/-1;
  grid-row: 1/-1;
  pointer-events: none;
  z-index: 0;
}

.m-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #033664;
  opacity: 0.5;
  z-index: 1;
}

.m-hero-bg video {
  z-index: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: auto;
  translate: -50% -50%;
}

.m-hero-main {
  grid-column: 1/-1;
  grid-row: 1/-1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1910/920;
  color: #fff;
}
@media (max-width: 1400px) {
  .m-hero-main {
    grid-column: auto;
    grid-row: auto;
    margin-top: 200px;
    margin-bottom: 50px;
  }
}
@media (max-width: 1000px) {
  .m-hero-main {
    aspect-ratio: auto;
  }
}
@media (max-width: 800px) {
  .m-hero-main {
    padding-top: 160px;
    aspect-ratio: auto;
    margin: 0;
  }
}

.m-hero-logo {
  aspect-ratio: auto;
  margin-bottom: 20px;
}

.m-hero-content-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "aa cc" "bb cc";
  grid-template-rows: 60px 60px;
  align-items: center;
}
@media (max-width: 1400px) {
  .m-hero-content-text {
    grid-template-rows: 50px 50px;
  }
}
@media (max-width: 1300px) {
  .m-hero-content-text {
    max-width: 800px;
    grid-template-columns: 1fr auto;
  }
}
@media (max-width: 1000px) {
  .m-hero-content-text {
    display: block;
  }
}

.m-hero-logo svg {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.m-hero-logo .text {
  stroke-dasharray: 2px;
  stroke-dashoffset: -100px;
  stroke-width: 1px;
  stroke: #fff;
  fill: transparent;
  animation: anim 3s 0s linear both, anim2 2s 3s linear both;
}

@keyframes anim {
  100% {
    stroke-dashoffset: 100px;
    stroke-dasharray: 500px;
  }
}
@keyframes anim2 {
  100% {
    fill: #fff;
  }
}
.m-hero-title {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  grid-area: aa;
  font-family: "klavika-web-display";
}
@media (max-width: 1400px) {
  .m-hero-title {
    font-size: 40px;
    margin-top: 10px;
  }
}
@media (max-width: 800px) {
  .m-hero-title {
    font-size: 28px;
  }
}

.m-hero-text {
  font-size: 39px;
  font-weight: 900;
  text-transform: uppercase;
  color: #AAFAFA;
  grid-area: bb;
  font-family: "klavika-web-display";
}
@media (max-width: 1400px) {
  .m-hero-text {
    font-size: 30px;
    margin-top: 10px;
  }
}
@media (max-width: 800px) {
  .m-hero-text {
    font-size: 24px;
  }
}

.m-hero-text-el {
  grid-area: cc;
}
@media (max-width: 1300px) {
  .m-hero-text-el {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 800px) {
  .m-hero-text-el img {
    max-width: 146px;
    margin-bottom: 20px;
  }
}

@media (max-width: 800px) {
  .m-hero-content {
    padding: 0 10px;
  }
}

@media (orientation: landscape) {
  .m-hero-bg video {
    width: 160%;
    height: auto;
  }
}
@media (orientation: portrait) {
  .m-hero-bg video {
    height: 160%;
    width: auto;
  }
}
.m-about {
  margin-top: 0;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  background-image: url(../images/www/sen-1.jpg);
}
@media (max-width: 1000px) {
  .m-about {
    background-image: url(../images/www/mob-sen-1.png);
    padding: 0 10px;
  }
}
@media (max-width: 500px) {
  .m-about {
    background-position: bottom;
  }
}

.m-about-inside {
  margin-inline: auto;
  max-width: 1200px;
  width: 100%;
  padding-inline: var(--spaceH);
}
.m-about-main {
  display: flex;
  gap: 45px;
  margin-top: 20px;
}
@media (max-width: 1000px) {
  .m-about-main {
    margin-top: 0;
  }
}

.m-about-main-left {
  flex: 1;
}

.m-about-main-left :is(h2, h3) {
  color: #000;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 24px;
  font-family: "futura-pt-bold";
}
@media (max-width: 500px) {
  .m-about-main-left :is(h2, h3) {
    font-size: 20px;
  }
}

.m-about-main-left p {
  font-size: 20px;
  font-family: "futura-pt";
}
@media (max-width: 500px) {
  .m-about-main-left p {
    font-size: 16px;
  }
}

.m-about-main-right {
  flex: 1;
  position: relative;
}

.m-about-main-right img {
  position: absolute;
  left: 0;
  top: 0;
  translate: 0 -35%;
  width: 135%;
  max-width: 999999px;
}

.m-about-wrap {
  width: 50%;
  margin-left: auto;
  margin-top: 50px;
  margin-bottom: 100px;
}
.m-about-wrap p {
  font-size: 20px;
  line-height: 1.6;
  font-family: "futura-pt";
  font-family: "futura-pt";
}
@media (max-width: 1000px) {
  .m-about-wrap {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
}
@media (max-width: 800px) {
  .m-about-wrap {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .m-about-wrap {
    margin-bottom: 400px;
  }
}

.m-program {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  background: url(../images/www/sen-2.jpg) right/cover no-repeat;
}
@media (max-width: 1000px) {
  .m-program {
    background-image: url(../images/www/mob-sen-2.png);
    padding: 50px 10px;
  }
}
@media (max-width: 500px) {
  .m-program {
    background-position: bottom;
    padding: 50px 10px 460px;
  }
}

.m-program-wrap {
  width: 50%;
  margin-right: auto;
  margin-top: 50px;
  margin-bottom: 100px;
}
@media (max-width: 1000px) {
  .m-program-wrap {
    margin-right: 0;
    width: 100%;
    margin: 0;
  }
}

.m-program-title {
  font-size: 42px;
  color: #000;
  text-align: left;
  font-family: "klavika-web-display";
}
@media (max-width: 500px) {
  .m-program-title {
    font-size: 32px;
  }
}

.m-program-desc {
  font-size: 24px;
  line-height: 1.4;
  font-family: "futura-pt-bold";
}
@media (max-width: 500px) {
  .m-program-desc {
    font-size: 16px;
  }
}

.m-program-inside {
  background-color: var(--colorSecond);
  padding: 65px;
  border-radius: 60px;
  max-width: 1400px;
  margin-inline: auto;
  color: #fff;
  background-image: url(/modelomania.eu/images/box-bg.svg);
  background-position: left bottom;
  background-repeat: no-repeat;
  padding-block: 100px;
}

.m-program .m-text {
  margin-bottom: 60px;
}

.m-program-main {
  max-width: 1000px;
  margin-inline: auto;
}

.m-program-main-top {
  display: flex;
  gap: 50px;
}

.m-program-main-left {
  flex: 1;
}

.m-program-main-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  font-weight: bold;
}

.m-program-main-right .button {
  height: 70px;
  font-size: 20px;
  width: 300px;
  max-width: 100%;
}

.m-program-list {
  max-width: 860px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.m-program-list-el-button {
  min-height: 52px;
  padding: 10px 30px;
  border: 0;
  color: #fff;
  background: var(--colorMain);
  border-radius: 100px;
  font-family: "futura-pt";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1;
  width: 100%;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  transition: 0.3s background-color, 0.3s color;
  cursor: pointer;
}
.m-program-list-el-button:hover {
  background-color: var(--colorMainHover);
  color: #fff;
}
.m-program-list-el-button::after {
  content: "";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--colorSecond);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3Cpath fill='%23FE7A49' d='m12 15.4l-6-6L7.4 8l4.6 4.6L16.6 8L18 9.4z'/%3E%3C/svg%3E");
  background-position: center;
  background-size: 18px;
  background-repeat: no-repeat;
}

.m-program-list-el-button:has(+ .is-show)::after {
  scale: 1 -1;
}

.m-program-list-el-content {
  padding: 30px;
  background: #fff;
  width: 100%;
  border-radius: 40px;
  margin-top: 10px;
  color: #000;
  margin-bottom: 10px;
  display: none;
}
.m-program-list-el-content.is-show {
  display: block;
}
.m-program-list-el-content ul {
  padding-left: 12px;
}
.m-program-list-el-content ul:first-child {
  margin-top: 0;
}
.m-program-list-el-content ul:last-child {
  margin-bottom: 0;
}
.m-program-list-el-content h4 {
  margin: 10px 0;
}

@media (max-width: 860px) {
  .m-program-main-top {
    flex-direction: column;
    margin-bottom: 50px;
  }
}
@media (max-width: 500px) {
  .m-program-inside {
    padding: 30px;
  }
  .m-program-main-right .button {
    height: 50px;
    font-size: 18px;
    width: 250px;
  }
  .m-program-main-top {
    gap: 20px;
  }
  .m-program-list-el-button {
    font-size: 14px;
  }
}
.m-user {
  padding-inline: var(--spaceH);
  padding: 100px 0;
}
@media (max-width: 1000px) {
  .m-user {
    padding: 40px 0;
  }
}

.m-user-links {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1000px) {
  .m-user-links {
    margin-top: 40px;
    padding: 0 20px;
  }
}

.m-user-links-section {
  display: none;
  padding: 10px 30px;
  background: #fff;
  width: 100%;
  max-width: 860px;
  border-radius: 0 0 10px 10px;
  font-family: "futura-pt";
}
.m-user-links-section h2, .m-user-links-section h3 {
  margin-top: 0;
}
.m-user-links-section ul {
  padding-left: 20px;
}
.m-user-links-section p, .m-user-links-section li {
  font-size: 1.4em;
  line-height: 1.5em;
  font-weight: 400;
}
.m-user-links-section.is-show {
  display: block;
  margin-top: -20px;
}

.m-user-links button:has(+ .is-show) {
  border-radius: 10px 10px 0 0;
}
.m-user-links button:has(+ .is-show)::after {
  scale: 1 -1;
}

.m-user-links button {
  height: 52px;
  padding: 40px 20px 40px 30px;
  border: 0;
  color: #000;
  background: var(--colorPink);
  border-radius: 10px;
  font-family: "futura-pt-bold";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 24px;
  width: 100%;
  max-width: 860px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s background-color, 0.3s color;
  cursor: pointer;
}
.m-user-links button::after {
  content: "";
  background: transparent;
  width: 36px;
  height: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36.89' height='36.89' viewBox='0 0 36.89 36.89'%3E%3Cpath d='M1.016 23.816A14.487 14.487 0 0 0 14.951 37.751q2.188.078 4.432.078t4.432-.078A14.487 14.487 0 0 0 37.75 23.816q.078-2.188.078-4.432t-.078-4.432A14.487 14.487 0 0 0 23.815 1.017Q21.627.94 19.383.939t-4.434.078A14.481 14.481 0 0 0 1.016 14.949Q.939 17.137.938 19.381c0 1.494.027 2.975.078 4.434Zm9.536-3.248a1.76 1.76 0 0 1 2.484-.16l4.587 4.035V10.583a1.759 1.759 0 0 1 3.518 0V24.445l4.585-4.037a1.76 1.76 0 1 1 2.324 2.643l-7.177 6.313a2.121 2.121 0 0 1-1.492.579 2.208 2.208 0 0 1-1.584-.664l-7.088-6.228a1.758 1.758 0 0 1-.16-2.483Z' transform='translate(-0.938 -0.939)' fill='%237d5064'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-repeat: no-repeat;
}
.m-user-links button:hover {
  background-color: var(--colorPink);
  color: #000;
}
@media (max-width: 1000px) {
  .m-user-links button {
    font-size: 20px;
    text-align: left;
    padding: 40px 45px 40px 20px;
  }
  .m-user-links button::after {
    position: absolute;
    right: 35px;
  }
}

.m-dark-pink {
  background: var(--colorDarkpink);
}

@media (max-width: 476px) {
  .m-user-links a {
    height: 50px;
    font-size: 16px;
    width: 250px;
  }
}
.m-partners {
  position: relative;
  isolation: isolate;
  padding-inline: var(--spaceH);
  padding-top: 80px;
}

.m-partners .m-title {
  color: #000;
}

.m-partners :is(h2, h3) {
  font-family: "futura-pt";
}

.m-partners::before {
  z-index: -1;
  content: "";
  height: 400px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--colorMain);
}

.m-partners-main-cnt {
  position: relative;
  isolation: isolate;
  padding-inline: var(--spaceH);
}

.m-partners-main-cnt::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 200px;
  width: 100%;
  max-width: 50%;
  aspect-ratio: 1054/617;
  background: url(/modelomania.eu/images/left.svg) left top no-repeat;
  background-size: contain;
  z-index: -1;
}

.m-partners-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
  max-width: 1200px;
  margin-inline: auto;
}

.m-partners-main-box-1,
.m-partners-main-box-2 {
  background: #fff;
  padding: 40px;
  border-radius: 60px;
}
.m-partners-main-box-1 h2, .m-partners-main-box-1 h3,
.m-partners-main-box-2 h2,
.m-partners-main-box-2 h3 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
}

.m-partners-main-box-3 {
  background: var(--colorSecond);
  color: #fff;
  padding: 40px;
  border-radius: 60px;
  grid-column: 2/3;
}
.m-partners-main-box-3 h2, .m-partners-main-box-3 h3 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.m-partners-wrap {
  padding: 50px 0;
  padding-inline: var(--spaceH);
  margin: 0;
}
@media (max-width: 1000px) {
  .m-partners-wrap {
    margin: 0;
  }
}
@media (max-width: 500px) {
  .m-partners-wrap {
    padding: 20px 0;
  }
}

.m-partners-wrap-head {
  font-size: 42px;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
  font-family: "klavika-web-display";
}
@media (max-width: 500px) {
  .m-partners-wrap-head {
    font-size: 32px;
  }
}

.m-partners-wrap-desc {
  max-width: 1240px;
  text-align: center;
  margin: 20px auto 40px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  font-family: "futura-pt";
}
@media (max-width: 1000px) {
  .m-partners-wrap-desc {
    padding: 0 20px;
  }
}
@media (max-width: 500px) {
  .m-partners-wrap-desc {
    font-size: 16px;
  }
}

.m-partners-wrap-box {
  max-width: 1349px;
  width: 90%;
  margin: 20px auto;
  padding: 40px 30px;
  background: var(--colorPink);
  border-radius: 10px;
  text-align: center;
}
.m-partners-wrap-box h3 {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto 40px;
  font-family: "klavika-web-display";
}
.m-partners-wrap-box .button {
  background: var(--colorDarkpink);
  font-family: "klavika-web-display";
  min-width: 230px;
  margin: 5px;
}
@media (max-width: 340px) {
  .m-partners-wrap-box .button {
    font-size: 14px;
    min-width: 100%;
  }
}
.m-partners-wrap-box .button:hover {
  background: #fff;
  color: var(--colorDarkpink);
}
@media (max-width: 1300px) {
  .m-partners-wrap-box {
    margin: 0 auto;
    padding: 20px;
  }
}
@media (max-width: 1000px) {
  .m-partners-wrap-box h3 {
    font-size: 23px;
    margin: 0 auto 20px;
  }
}

.m-contant-section p, .m-contant-section a {
  font-size: 24px;
  font-weight: 500;
  color: #000;
  line-height: 1.2;
  font-family: "futura-pt";
}
@media (max-width: 1000px) {
  .m-contant-section p, .m-contant-section a {
    font-size: 16px;
  }
}

.m-pratner-logo {
  text-align: center;
}

.m-partners-desc-logo {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 40px;
  font-family: "futura-pt";
}

.m-partners-logo-list {
  padding: 0;
}

.m-partners-logo-el::marker {
  color: transparent;
}

.m-partners-logo-el small {
  display: none;
}

@media (max-width: 860px) {
  .m-partners-main {
    display: flex;
    flex-direction: column;
  }
  .m-partners-main-cnt::before {
    max-width: 500px;
  }
  .m-partners-main-box-1 h2, .m-partners-main-box-1 h3,
  .m-partners-main-box-2 h2,
  .m-partners-main-box-2 h3,
  .m-partners-main-box-3 h2,
  .m-partners-main-box-3 h3 {
    text-align: center;
  }
  .m-partners-main-box-3 {
    text-align: center;
  }
}
@media (max-width: 476px) {
  .m-partners::before {
    height: 600px;
  }
  .m-partners-main-box-1,
  .m-partners-main-box-2,
  .m-partners-main-box-3 {
    padding: 20px;
  }
  .m-partners-main-box-1 h2, .m-partners-main-box-1 h3,
  .m-partners-main-box-2 h2,
  .m-partners-main-box-2 h3,
  .m-partners-main-box-3 h2,
  .m-partners-main-box-3 h3 {
    font-size: 18px;
  }
}
.m_partners_section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 3em auto 0;
  color: #333;
}
@media (max-width: 1200px) {
  .m_partners_section {
    margin: 0 20px;
  }
}

.m_partners_column h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  font-family: "klavika-web-display";
}

.m_partners_column ul {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.m_partners_column li {
  position: relative;
  padding-left: 22px;
  line-height: 1.6;
  font-size: 24px;
  font-family: "futura-pt";
}

.m_partners_column li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  background: #8a5a5a;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .m_partners_section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
  .m_partners_column h2 {
    font-size: 24px;
  }
  .m_partners_column li {
    font-size: 16px;
  }
}
.m-bg-white {
  background-color: #fff;
}

.m-contact {
  background-repeat: no-repeat;
  background-image: url(../images/www/sen-3.jpg);
  background-position: left -50px center;
}
@media (min-width: 1850px) {
  .m-contact {
    background-size: cover;
    background-position: left;
  }
}
@media (max-width: 1800px) {
  .m-contact {
    background-position: left -150px center;
  }
}
@media (max-width: 1600px) {
  .m-contact {
    background-position: left -200px center;
  }
}
@media (max-width: 1000px) {
  .m-contact {
    background-image: url(../images/www/mob-sen-3.png);
    background-size: cover;
    height: auto;
    padding-bottom: 100px;
    background-position: center;
  }
}
@media (max-width: 500px) {
  .m-contact {
    background-position: bottom;
  }
}

.m-contact-inside {
  position: relative;
  height: 100%;
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 1200px) {
  .m-contact-inside {
    padding: 0 20px;
    align-items: flex-start;
  }
}
@media (max-width: 500px) {
  .m-contact-inside {
    padding: 40px 20px 280px;
  }
}

.m-contact-wrapper {
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
}
@media (max-width: 1400px) {
  .m-contact-wrapper {
    max-width: 620px;
  }
}

.m-contact-head {
  text-align: center;
  margin: 0 auto 100px;
}
@media (max-width: 1200px) {
  .m-contact-head {
    margin: 0 auto 50px;
  }
}

.m-contact-title {
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
  font-family: "klavika-web-display";
}
@media (max-width: 1000px) {
  .m-contact-title {
    font-size: 32px;
    margin: 10px 0;
  }
}

.m-contact-text {
  font-size: 24px;
  font-weight: 700;
  font-family: "futura-pt";
}
@media (max-width: 1000px) {
  .m-contact-text {
    font-size: 16px;
  }
}

.m-contact-main {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  width: 100%;
}
@media (max-width: 1400px) {
  .m-contact-main {
    justify-content: flex-end;
  }
}
@media (max-width: 1200px) {
  .m-contact-main {
    flex-direction: column;
    gap: 20px;
    max-width: 320px;
    margin: 20px auto;
  }
}

.m-contact-box {
  flex: 1;
  color: #000;
}
.m-contact-box a {
  word-break: break-word;
  color: #000;
}
@media (max-width: 1400px) {
  .m-contact-box {
    flex: none;
  }
}

.m-contact-box-title {
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  font-family: "klavika-web-display";
  line-height: 1.2;
}
@media (max-width: 1400px) {
  .m-contact-box-title {
    font-size: 28px;
  }
}
@media (max-width: 1000px) {
  .m-contact-box-title {
    font-size: 24px;
    margin: 10px 0;
  }
}

.m-contact-box-content {
  font-size: 24px;
  font-family: "futura-pt";
}
@media (max-width: 1400px) {
  .m-contact-box-content {
    font-size: 20px;
  }
}
@media (max-width: 1000px) {
  .m-contact-box-content {
    font-size: 16px;
  }
}

.m-formula {
  background-color: #AAFAFA;
  text-align: center;
  padding: 100px 0;
}
@media (max-width: 1000px) {
  .m-formula {
    padding: 40px 0;
  }
}

.m-formula-head {
  font-size: 42px;
  color: #000;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 20px;
  font-family: "klavika-web-display";
}
@media (max-width: 500px) {
  .m-formula-head {
    font-size: 32px;
  }
}

.m-formula-desc {
  font-size: 24px;
  max-width: 1200px;
  width: 100%;
  margin: 40px auto;
  line-height: 1.4;
  font-family: "futura-pt-bold";
}
@media (max-width: 1000px) {
  .m-formula-desc {
    padding: 0 20px;
    margin: 0;
  }
}
@media (max-width: 500px) {
  .m-formula-desc {
    font-size: 16px;
  }
}

.m-formula-list {
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  width: 100%;
  margin: 50px auto 0;
  align-items: baseline;
  padding: 0;
}
@media (max-width: 800px) {
  .m-formula-list {
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
  }
}

.m-formula-el {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1 1 0%;
  min-width: 0;
  padding: 0 20px;
}
@media (max-width: 800px) {
  .m-formula-el {
    align-items: center;
    gap: 20px;
    flex-direction: row;
    display: flex;
    width: 80%;
    text-align: left;
  }
  .m-formula-el img {
    max-width: 104px;
  }
  .m-formula-el small {
    flex: 1;
  }
}

.m-formula-el::marker {
  color: transparent;
}

.m-formula-el img {
  margin: 0 auto;
}

.m-formula-el small {
  font-size: 24px;
  font-family: "futura-pt-bold";
}
@media (max-width: 500px) {
  .m-formula-el small {
    font-size: 16px;
  }
}

.partners {
  margin-top: 40px;
}

.partners-section {
  margin-top: 40px;
}

.partners-section :is(h2, h3) {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
  font-family: "futura-pt";
  text-transform: uppercase;
}

.partners-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin-inline: auto;
  justify-content: center;
}

.partners-list-el {
  width: 25%;
  aspect-ratio: 243/130;
  padding: 10px;
}

.partners-list-el-link {
  border-radius: 40px;
  background: #fff;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners-list-el-link img {
  max-width: 80%;
  max-height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

@media (max-width: 680px) {
  .partners-section :is(h2, h3) {
    margin-bottom: 10px;
  }
  .partners-list-el {
    width: 33.3333%;
    aspect-ratio: 16/12;
    padding-inline: 5px;
  }
  .partners-list-el-link {
    border-radius: 10px;
  }
}
.footer {
  background: #fff;
}

.footer-inside {
  max-width: 1600px;
  margin-inline: auto;
  width: 100%;
  padding-block: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 1600px) {
  .footer-inside {
    padding: 30px 10px;
  }
}
@media (max-width: 860px) {
  .footer-inside {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
}
@media (max-width: 500px) {
  .footer-inside {
    align-items: normal;
    padding: 20px;
    text-align: left;
  }
}

.footer-menu {
  flex: 1;
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
  font-weight: bold;
}

.footer-menu-list {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 860px) {
  .footer-menu-list {
    justify-content: center;
    gap: 10px;
  }
}
@media (max-width: 500px) {
  .footer-menu-list {
    flex-direction: column;
    text-align: left;
  }
}

.footer-menu-list-link {
  color: #241D1D;
  font-size: 16px;
  font-weight: 500;
}

.footer-copyright {
  color: #656565;
  font-size: 16px;
  font-weight: 500;
}
/*# sourceMappingURL=style.2026.min.css.map */
