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

body{
    background: #EBEAEA;
    font-family: 'Tilda Sans VF';

}

.container{
    width: 100%;
    max-width: 1210px;
    box-sizing: border-box;
    padding: 0 20px;
    margin: 0  auto;
}

p + p{
    margin-top: 15px;
}

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

input:focus{
    outline: none;
}


.button{
    border-radius: 20px;
    padding: 12px 92px;
    border-color: #000000;
    border: 1px solid #000000;
    background: none;
    color: #000;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 108%;
    letter-spacing: 0.5px;
    height: 55px;
    cursor: pointer;
    display: inline-block;
    font-family: 'Tilda Sans VF';
    left: 0;
    top: 0;
    transition: all .1s linear;
}

.button:hover{
    position: relative;
    transform: translate(-7px, -7px);
    -webkit-box-shadow: 7px 7px 5px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 7px 7px 5px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 7px 7px 5px 0px rgba(34, 60, 80, 0.2);
}


.input{
    border-radius: 20px;
    border: 1px solid #F55F89;
    background: none;
    padding: 12px 36px;
    color: #F55F89;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 108%; /* 27px */
    letter-spacing: 0.5px;
    width: fit-content;
    font-family: 'Tilda Sans VF';
}
.input::placeholder{
    color: #F55F89;
}

@media(max-width: 450px) {
    .input{
        padding: 12px 30px;
        font-size: 20px;
    }
    .button{
        padding: 12px 30px;
        font-size: 20px;
    }

}







.main{
    overflow: hidden;
}

.header {
    padding-top: 34px;
    padding-bottom: 20px;
    position: sticky;
    left: 0;
    top: 0;
    width: 100%;
    color: #000;
    z-index: 100;
    transition: .1s linear;
    background-color: #EBEAEA;
}
.header__container > a{
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 108%; /* 25.92px */
    letter-spacing: 0.48px;
}
.header_active{
    background: #F55F89;
    padding-top: 20px;
    color: #fff;
}
.header_active .line{
    background-color: #fff;
}
.header_active .menu-button{
    border-color: #fff;
}
.header__container {
    display: flex;
    gap: 20px;
    align-items: center;
}


.menu .phone-wrapper{
    margin-left: 0;
    color: #000!important;
    margin-top: 20px;
    align-items: flex-start;
}

.navigation__list{
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    row-gap: 10px;
    list-style: none;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 108%;
    letter-spacing: 0.36px;
    text-transform: uppercase;
}
.phone-wrapper{
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.header__phone{
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.menu-button {
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
    border-radius: 15px;
    border: 1px solid #000000;
    cursor: pointer;
}
.line {
    width: 35px;
    height: 1px;
    background-color: #000000;
    border-radius: 5px;
    transition: .1s linear;
}
.menu-button_active .line:nth-child(1){
    transform: rotate(45deg) translate(3px, 2px);
}
.menu-button_active .line:nth-child(2){
    transform: rotate(-45deg) translate(4px, -3px);
}
.menu-button_active .line:nth-child(3){
    display: none;
}
.open-popup{
    cursor: pointer;
}
.header_active ~ .menu_opened{
    top: 100px;
    background-color: #fff;
}
.menu{
    position: fixed;
    left: 0;
    background-color: #EBEAEA;
    width: 100vw;
    padding: 20px 0;
    transition: .15s linear;
    -webkit-box-shadow: 4px 8px 10px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 4px 8px 10px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 4px 8px 10px 0px rgba(34, 60, 80, 0.2);
    border-top: 1px solid #F55F89;
    z-index: 90;
    top: -200px;
}
.menu_opened{
    top: 114px;
}

@media(max-width: 730px) {
    .menu_opened{
        top: 100px;
    }
    .header_active ~ .menu_opened{
        top: 100px;
    }
}

@media(max-width: 450px) {
    .navigation__list{
        flex-direction: column;
        gap: 10px;
    }
}



.popup-wrapper{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 110;
}
.popup{
    background-color: #F55F89;
    color: #FFF;
    padding: 40px;
    position: relative;
    max-width: calc(100% - 40px);
}
.popup__title{
    width: calc(100% - 50px);
    max-width: 710px;
    margin-bottom: 30px;
}
.pw2 .popup__title{
    margin: 0 auto;
    text-align: center;
}
.popup__form{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.popup__input{
    width: 100%;
    border-color: #fff;
    color: #fff;
}
.popup__input::placeholder{
    color: #fff;
}
.popup__button{
    width: 100%;
    border-color: #fff;
    color: #fff;
}

.close-popup{
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.title{
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

@media(max-width: 730px) {
    .header__container > .phone-wrapper{
        display: none;
    }
    .header__container{
        justify-content: space-between;
        gap: 40px;
    }
    .title{
        font-size: 30px;
    }
    .header{
        padding-top: 20px;
    }
}

@media(max-width: 520px) {
    .header__container > a{
        font-size: 16px;
    }
}




#breadcrumbs_id{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 3px;
}

#breadcrumbs_id li{
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 108%;
    letter-spacing: 0.48px;
    display: flex;
    gap: 3px;
}
#breadcrumbs_id li:last-child{
    color: #F55F89;
}
#breadcrumbs_id li:not(:last-child)::after{
    content: "/";
}






.help {
    background: #F55F89;
    padding: 60px 0;
    margin-top: 106px;
}
.help__title {
    max-width: 760px;
    color: #fff;
    margin-bottom: 14px;
}
.help__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
}
.help__content p{
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    max-width: 380px;
    width: fit-content;
}
.help__form {
    display: flex;
    gap: 30px;
    width: 100%;
    max-width: 670px;
}
.help__input{
    width: calc(50% - 15px);
    border-color: #fff;
    color: #fff;
}
.help__button{
    width: calc(50% - 15px);
    border-color: #fff;
    color: #fff;
}
.help__input::placeholder{
    color: #fff;
}

@media(max-width: 1050px) {
    .help__content{
        flex-direction: column;
        align-items: flex-start;
    }
}

@media(max-width: 720px) {
    .help__form{
        flex-direction: column;
    }
    .help__input{
        width: 100%;
    }
    .help__button{
        width: 100%;
    }
}





.footer {
    padding-top: 60px;
    padding-bottom: 42px;
}
.footer__top {
    display: flex;
}
.footer__main p{
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 108%; /* 25.92px */
    letter-spacing: 0.48px;
    max-width: 350px;
    margin-bottom: 7px;
}
.footer__social {
    display: flex;
    list-style: none;
    gap: 34px;
    margin-top: 26px;
}
.footer__right {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    width: 100%;
    max-width: 730px;
}
.footer__nav {
    display: flex;
    justify-content: space-between;
    list-style: none;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 108%; /* 19.44px */
    letter-spacing: 0.36px;
    text-transform: uppercase;
    width: 100%;
}
.footer__licenses {
    list-style: none;
    display: flex;
    flex-direction: column;
    color: #000;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 138%; /* 30.36px */
    letter-spacing: 0.44px;
    gap: 16px;
    margin-top: 33px;
}
.footer__phones {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: flex-end;
    color: #000;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 138%; /* 30.36px */
    letter-spacing: 0.44px;
}
.footer__phones li{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.phone__subtitle {
    color: #000;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 138%; /* 20.7px */
    letter-spacing: 0.3px;
}
.footer__bottom {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}
.default_img{
    width: 500px;
    height: auto;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
    border-radius: 30px;
}
.deafault_txt{
    font-size: 20px;
}



@media(max-width: 1120px) {
    .footer__top{
        flex-direction: column;
        align-items: center;
    }
    .footer__main{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer__right{
        margin-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
    }
    .footer__licenses{
        margin-bottom: 30px;
        text-align: center;
    }
}

@media(max-width: 670px) {
    .footer__nav{
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    .footer__bottom{
        flex-direction: column;
        gap: 15px;
    }
}