/*!
Theme Name: Trizero Theme
Author: Trizero Theme
Version: 1.0.0
*/

@font-face {
  font-display: swap;
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/nunito-sans-v19-cyrillic_latin-300.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Nunito Sans';
  font-style: italic;
  font-weight: 300;
  src: url('fonts/nunito-sans-v19-cyrillic_latin-300italic.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/nunito-sans-v19-cyrillic_latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/nunito-sans-v19-cyrillic_latin-500.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/nunito-sans-v19-cyrillic_latin-700.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 800;
  src: url('fonts/nunito-sans-v19-cyrillic_latin-800.woff2') format('woff2');
}

:root {
    --main-color:#C5027E; 
    --padding-bt:100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}

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

ul, li {
    list-style: none;
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

strong {
    font-weight: 700;
}

.container {
    max-width: 1240px;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    position: relative;
}

h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 35px;
    line-height: 1.2;
    text-transform: uppercase;
}

h2 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 35px;
    line-height: 1.2;
    text-transform: uppercase;
}

h1 span, h1 strong,
h2 span, h2 strong,
h3 span, h3 strong {
    color: var(--main-color);
}

h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px; 
    color: #371755;
}

p {
    margin-bottom: 30px;
}

 

.btn { 
    align-items: center;
    justify-content: center;
    color: #FFF;
    background: var(--main-color);
    border-radius: 6px;
    height: 50px; 
    font-size: 16px;
    display: inline-flex;
    padding:  0 20px;  
    cursor: pointer;
    font-weight: 500;
    transition: all .3s;
    font-weight: 500;
    border: 0;
    font-family: 'Nunito Sans', sans-serif;
    width: 100%;
}

.btn:hover {
     background: #371755;
} 

*::-webkit-scrollbar {
    -webkit-appearance: none;
    cursor: default;
}

*::-webkit-scrollbar:vertical {
    width: 4px;
    cursor: default;
}

*::-webkit-scrollbar:horizontal {
    height: 4px;
    cursor: default;
}

*::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    -khtml-border-radius: 6px;
    border-radius: 6px;
    cursor: default;
}

*::-webkit-scrollbar-track {
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    -khtml-border-radius: 6px;
    border-radius: 6px;
    background-color: #EFEFEF;
    cursor: default;
}
 

.breadcrumbs { 
    padding: 40px 0; 
    font-weight: 500;
}

.breadcrumbs a {
    transition: all .3s;
    color: #818181;
}

.breadcrumbs a:hover { 
    color: var(--main-color);
}

.breadcrumbs .container { 
    display: flex;
    align-items: center;
    gap: 15px;
}

.breadcrumbs .separator svg {
    display: block;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    line-height: 1.25;    
    font-weight: 400;
    color: #292929;
    overflow-x: hidden;  
    background: rgba(221, 210, 204, .7);
}

.nav {
    width: calc(100% + 10px);
    height: calc(100vh - 75px);
    position: fixed;
    left: -10px;
    z-index: 98;
    top: 75px;
    -webkit-transform: translateX(-110%);
    -ms-transform: translateX(-110%);
    transform: translateX(-110%);
    padding: 30px 20px 20px;
    transition: all .4s;
    overflow: auto;
    background: #ffffff;
    border-top: 2px solid var(--main-color);
}

.burger-active {
    overflow: hidden;
}
 
.header__burger {
    display: none;
}

header {
    padding: 15px 15px 0;
}

header.fixed,
.home header.fixed {
    position: fixed;
    top: 0;
    box-shadow: 0px 4px 40px 0px #39322C0D;
    animation-name: nav;
    animation-duration: 1s;
    width: 100%;
    z-index: 2;
    padding-top: 0;
}

header.fixed .header-box {
    background: rgba(33, 29, 38, 0.7); 
}

.home header {
    position: absolute;
    z-index: 9;
    width: 100%;
}

.header-box {
    background: rgba(33, 29, 38, 0.3);
    padding: 9px 23px 9px 23px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    gap: 60px;
    width: 100%;
    max-width: 1389px;
    margin: 0 auto;
    height: 68px;
}

.header__logo {
    margin-right: auto;
}

.header-nav li a, 
.footer__nav li a {
    color: #fff;
    font-weight: 500;
    transition: all .3s;
}

.header-nav li a:hover, 
.footer__nav li a:hover {
    color: var(--main-color); 
}

.header-nav, 
.footer__nav {
    display: flex;
    gap: 50px;
}

.header-box .btn {
    max-width: 180px;
}
/*--- CAN USE ---*/

.can-use {
    padding-bottom: var(--padding-bt);
}

.can-use-img img {
    border-radius: 25px;
}

.can-use-text {
    display: flex;
    flex-direction: column;
    padding: 50px 100px;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 25px;
}

.can-use-text p {
    font-size: 20px;
    font-weight: 500;
}

.can-use-box {
    display: grid;
    grid-template-columns: 510px 1fr;
}

.content>*:last-child {
    margin-bottom: 0;
}

.content ul,
.content ol {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}

.content ol { 
    list-style: none;
    counter-reset: number-counter; 
}

.content ul { 
    padding-left: 25px; 
    padding-left: 25px; 
}

.content ol li {
    counter-increment: number-counter; 
    padding-left: 50px;
    position: relative; 
}

.content ul li {
    list-style: disc;
}

.content ol li::before {
    content: counter(number-counter);
    position: absolute;
    left: 0;
    top: -5px;
    width: 33px;
    height: 33px;
    background: #1F8DBF;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px; 
}

/*--- MANUAL ---*/

.main-usage {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 50px;
}

.manual  {
    padding-bottom: var(--padding-bt);
}

.manual-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 35px;
    border-radius: 25px;
    font-size: 18px;
    min-height: 385px;
}

.manual-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.manual-file {
    display: flex;
    flex-direction: column;
    padding: 35px 0;
}

 
.manual-file a { 
    margin-top: auto;
    font-size: 20px;
    font-weight: 500;
    display: inline-flex;
    gap: 12px; 
    transition: all .3s;
    max-width: max-content;
}

/* .manual-file a:hover {
    color: var(--main-color); 
} */

/* .manual-file a span {
    border-bottom: 2px solid #1F8DBF;
} */

/* .manual-file a:hover span {
    border-bottom: 2px solid var(--main-color);
} */

.manual-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F1F0;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    margin-top: auto;
    margin-left: auto;
}

.manual-file ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    height: 32px;
    background: #008980;
    color: #fff;
    font-weight: 500;
    border-radius: 23px;
}

.manual-file ul {
    display: flex;
    gap: 5px;
}

.manual-file ul li + li {
    background: #1F8DBF;
}

/*--- APPLICATION ---*/

.application {
    padding-bottom: var(--padding-bt);
}

.application-box {
    background: linear-gradient(211.17deg, #DFCFBD 40.89%, #EFE2D3 90.73%);
    border-radius: 25px;
    padding: 60px 50px 45px;
}

.application-title {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
    margin-bottom: 60px;
}

.application-title h2 { 
    margin-bottom: 0px;
}


.application-items {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.application-item {
    position: relative;
    text-align: center;
}

.application-item::before {
    content: '';
    background: #E3D4C3;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #C6B7A5;
    position: absolute;
    top: -25px;
    left: calc(50% - 7px);
}

.application-dosage {
    background: #42515E;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    border-radius: 10px;
    padding: 5px 15px;
    margin-bottom: 10px;
}
.application-item:nth-child(2) .application-dosage { background: #520799; }
.application-item:nth-child(3) .application-dosage { background: #008980; }
.application-item:nth-child(4) .application-dosage { background: #C5027E; }
.application-item:nth-child(5) .application-dosage { background: #1F8DBF; }
.application-item:nth-child(6) .application-dosage { background: #C33B01; }

.application-time {
    color: #292929;
    font-size: 20px;
    font-weight: 500;
}

.application-items {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-top: 34px; 
    position: relative;
}

.application-items:before {
    content: '';
    height: 34px;
    width: 100%;
    background: url(img/arrow.svg) no-repeat;
    top: 0;
    left: 0;
    position: absolute;
}

/*--- SAFETY ---*/

.safety{
    padding-bottom: var(--padding-bt);
}

.safety-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.safety-left h2 {
    margin-bottom: 20px;
}

.safety-left ul {
    display: flex;
    gap: 5px;
}

.safety-left ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    height: 32px;
    background: #008980;
    color: #fff;
    font-weight: 500;
    border-radius: 23px;
}

.safety-left ul li + li {
    background: #1F8DBF;
}

.safety-left  {
    position: relative;
}

.safety-left img {
    position: absolute;
    bottom: 0;
}

.dark {
    font-size: 22px;
    font-weight: 700;
}

/*--- MAIN ---*/

.main {
    position: relative;
    overflow: hidden;
    max-width: 1920px;
    width: 100%; 
    display: flex; 
    padding: 160px 0 0px;
    margin: 0 auto var(--padding-bt);
    border-radius: 0 0 25px 25px;
}

.main-img img {
    transform: translate(30px, -30px);
}

.main-bg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    min-width: 1920px;
    height: auto; 
    top: 0; 
}

.main-text {
    max-width: 500px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
}

.main-text h1{  
    margin-bottom: 20px; 
}

.main-text h1 + p {  
    font-size: 20px;
    font-weight: 500; 
}

.main-btn-mob {display: none;}

.main-btn {
    max-width: 266px;
    padding-bottom: 60px; 
}

.main-btn .btn, .main-btn-mob .btn{ 
    height: 70px;
    font-size: 22px;
    font-weight: 700;
    background: #fff;
    color: #000;
    border-radius: 10px;
}
.main-btn .btn:hover, .main-btn-mob .btn:hover{  
    background: var(--main-color);
    color: #fff; 
}

.main-btn p, .main-btn-mob p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.main-row {
    display: grid;
    grid-template-columns: 500px 1fr;
}
/*--- CALC ---*/

.calc-bg-mob {display: none;}

.calc {
    position: relative;
    overflow: hidden;
    max-width: 1920px;
    width: 100%;
    height: 760px; 
    display: flex;
    align-items: end;
    padding: 340px 0 50px;
    margin: 0 auto var(--padding-bt);
}

.calc::after {
    position: absolute;
    content: '';
    background: linear-gradient(180deg, rgba(0, 98, 92, 0) 0%, #00625C 55.29%);
    width: 100%;
    height: 50%;
    bottom: 0;
}

.calc-bg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1920px;
    height: auto; 
    top: 0; 
}

.calc-box {
    position: relative;
    z-index: 1;
    color: #fff;
}

.calc-box h2{
    margin-bottom: 15px;
}

.calc-box p{
    margin-bottom: 25px;
}

.form-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 350px;
    gap: 12px;
}

.form__field {
    font-size: 22px;
    height:80px;
    width: 100%;
    padding: 0 25px;
    color: #FFF;
    background: #008980;
    border: 1px solid transparent;
    border-radius: 10px;
    font-weight: 400;
    font-family: 'Nunito Sans';
}

::-webkit-input-placeholder {color: #FFF;font-family: 'Nunito Sans';}
::-moz-placeholder          {color: #FFF;font-family: 'Nunito Sans';}
:-moz-placeholder           {color: #FFF;font-family: 'Nunito Sans';}
:-ms-input-placeholder      {color: #FFF;font-family: 'Nunito Sans';}

.button-calc {
    height: 80px;
    background: #fff;
    border: 0;
    color: #008980;
    font-weight: 700;
    font-size: 22px;
    width: 100%;
    border-radius: 10px;
}

select.form__field  { 
  
  /* Убираем стандартную стрелку */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
   
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='4' viewBox='0 0 9 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0H0.5H0L4.5 4L9 0Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 9px 4px;
  
  cursor: pointer;
}
/*--- FAQ ---*/

.faq__items {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.faq__item {
    background: #FFF;
    border-radius: 10px;
}

.faq__item-question {
    padding: 30px 30px;
    font-weight: 700;
    cursor: pointer;
    font-size: 22px;
    transition: all .3s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between; 
    text-transform: none;
    margin: 0;
}

.faq__item-answer {
    padding: 0 170px 30px 170px;
    display: none; 
}

.faq__item-question .carret {
    width: 48px;
    height: 48px;
    min-width: 48px;
    position: relative;
    background: #F5F1F0;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center; 
    border-radius: 50%;
}

.carret::before {
    content: '';
    width: 20px;
    height: 2px;
    background: #008980;
    transition: all .3s;
}

.carret::after {
    content: '';
    width: 2px;
    height: 20px;
    background: #008980;
    position: absolute;
}

.faq__item-question.active .carret {
    transform: rotate(90deg);
}

.faq__item-question.active .carret::before {
    width: 0px;
}

 


.faq {
    padding-bottom: var(--padding-bt);
}

.faq h2 span {
    display: block;
}

/*--- WHAT ---*/

.what {
    padding-bottom: var(--padding-bt);
}

.what-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.what-item{
    padding: 30px;
    border-radius: 25px;
    position: relative; 
    background: #fff;
    aspect-ratio: 1 / 1;
}

.what-item h3{
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 15px; 
    color: #371755;
}

.what-item img{
    position: absolute;
    right: 20px;
    bottom: 20px;
}

/*--- BENEFIT ---*/

.benefit {
    padding-bottom: var(--padding-bt);
}

.benefit-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 10px;
}

.benefit-row {
    display: grid;
    grid-template-columns: 410px 1fr;
    gap: 50px;
}

.benefit-item-inner {
    height: 420px;
    position: relative;
    border-radius: 25px;
    padding: 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
}

.benefit-item-inner span {
    font-weight: 700;
    background: #C5027E;
    color: #fff;
    border-radius: 22px;
    padding: 6px 15px; 
    position: relative;
}

.benefit-item-inner h3 { 
    color: #fff; 
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.benefit-item-inner::after { 
    content: '';
    background: linear-gradient(199.1deg, rgba(33, 32, 35, 0) 32.84%, rgba(43, 40, 46, 0.8) 92.21%);
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.benefit-item-inner img {
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center;
}

.benefit-item p {
    padding: 15px 0 0 15px;
    margin: 0;
}

/*--- MECHANISM ---*/

.mechanism {
    padding-bottom: var(--padding-bt);
}

.mechanism-row {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 10px;
}

.mechanism-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mechanism-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 25px;
    padding: 25px 25px 30px 30px;
    min-height: 275px;
}

.mechanism-item span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    background: #F5F1F0;
    border-radius: 50%; 
    font-weight: 700;
    font-size: 22px;
    margin-bottom: auto;
}

.mechanism-item h3 { 
    font-size: 22px; 
    margin-bottom: auto;
}

.mechanism-item p { 
    margin-bottom: 0;
}

.mechanism-left { 
    background: #371755;
    border-radius: 25px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    align-items: start;
}

.mechanism-left img { 
    position: absolute;
    left: 0;
    top: 100px;
}

.mechanism-left h2 { 
    margin-bottom: 0;
}

.mechanism-left span { 
    padding: 6px 15px;
    background: #C5027E;
    border-radius: 22px;
    font-weight: 500;
    font-size: 16px;
}
/*--- AVAIL ---*/

.avail{
    padding-bottom: var(--padding-bt);
}

.avail-box {
    background: #008980;
    border-radius: 25px;
    padding: 60px;
    overflow: hidden;
    position: relative;
    color: #fff;
}
.avail-box img{ 
    border-radius: 25px; 
    position: absolute;
    right: 0;
    bottom: 0;
}

.avail-text {
    max-width: 650px;
    position: relative;
    z-index: 1;
}

.avail-text .dark {
    font-size: 20px;
    font-weight: 500;
}

.avail-text ol {
    display: grid;
    grid-template-columns: 210px 300px;
    gap: 40px;
}

.avail-text ol li span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: #008980;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
}
/*--- CTA ---*/

.cta{
    padding-bottom: var(--padding-bt);
}

.cta-img  {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;    
}

.cta-text {
    font-size: 40px;
    font-weight: 700;
    position: relative;
    max-width: 540px;
    text-transform: uppercase;
}

.cta-text span {
    color: var(--main-color);
}

.cta-box .btn {
    max-width: 266px;
    position: relative;
}

.cta-img_mob {
    display: none;
}

.cta-box {
    padding: 70px;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 585px;
}

/*--- KNOW ---*/

.know  {
    padding-bottom: var(--padding-bt);
}

.know-list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 11px;
}

.know-item{
    display: flex;
    flex-direction: column;
    border-radius: 25px;
    overflow: hidden;
}

.know-item-text{
    padding: 30px;
    background: #fff;
    flex-grow: 1;
    font-size: 20px;
    font-weight: 500;
}


/*--- FOOTER ---*/

footer{
    background: #371755;
    padding: 75px 0 70px;
    border-radius: 40px 40px 0 0;
}

.footer-top {
    display: flex;
    align-items: center;
    gap: 50px;
}

.footer__logo {
    margin-right: auto;
}

.btn-footer {
    color: #fff;
    transition: all .3s;
}

.btn-footer:hover {
    color: var(--main-color); 
}
.video video { 
    height: auto;
    width: 100%;
}
.video{ 
    margin-bottom: 50px;
}

.f-text {
    color: #fff;
    font-size: 14px;
    padding-top: 10px;
    margin: 0;
}