:root {
    --color-violet: #761AFF;
    --color-btn-hov: #9045FF;
    --color-btn-pres: #5E04E3;

}
body {
    font-family: 'SF Pro Display';
    font-size: 20px;
    line-height: normal;
    background-color: #F6F6F6;
    padding-top: 80px;
}
@media screen and (max-width: 576px) {
    body {
        padding-top: 56px;
    }
}

/* BootStrap Resp */
.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl {
    width: 100%;
    padding-right: var(--bs-gutter-x,.75rem);
    padding-left: var(--bs-gutter-x,.75rem);
    margin-right: auto;
    margin-left: auto
}

@media (min-width: 576px) {
    .container,.container-sm {
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .container,.container-md,.container-sm {
        max-width:720px
    }
}

@media (min-width: 992px) {
    .container,.container-lg,.container-md,.container-sm {
        max-width:960px
    }
}

@media (min-width: 1200px) {
    .container,.container-lg,.container-md,.container-sm,.container-xl {
        max-width:1140px
    }
}

@media (min-width: 1400px) {
    .container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl {
        max-width:1320px
    }
}
/* END BootStrap Resp */

/* Main styles */
main.inner-page {
    padding: 80px 0;
}
.main-title {
    font-size: 40px;
    font-weight: bold;
}
.main-desc-text {
    font-size: 24px;
    font-weight: 500;
}
.page-top-text {}
.page-top-text-title {
    margin-bottom: 16px;
}
.page-top-text-title h1 {
    font-weight: bold;
}
.page-top-text-desc {
    margin-bottom: 42px;
    width: 955px;
    max-width: 100%;
    font-size: 24px;
    font-weight: 500;
}
@media screen and (max-width: 992px) {
    main.inner-page {
        padding: 40px 0;
    }
    .main-title {
        font-size: 32px;
        font-weight: bold;
    }
    .main-desc-text {
        font-size: 28px;
        font-weight: 500;
    }
    .page-top-text-title {
        margin-bottom: 16px;
    }
    .page-top-text-title h1 {
        font-size: 32px;
    }
    .page-top-text-desc {
        font-size: 24px;
    }
    
}
@media screen and (max-width: 576px) {
    main.inner-page {
        padding: 24px 0;
    }
    .main-title {
        font-size: 18px;
        font-weight: bold;
    }
    .main-desc-text {
        font-size: 16px;
        font-weight: 500;
    }
    .page-top-text-title {
        margin-bottom: 0;
    }
    .page-top-text-title h1 {
        font-size: 18px;
    }
    .page-top-text-desc {
        font-size: 16px;
    }
}
/* END Main styles */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #F6F6F6;
    box-shadow: 0 1px 2px 0 rgb(38 29 45 / 10%);
}
header .navbar {
    padding-top: .75rem;
    padding-bottom: .75rem;
}
header .navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}
header a,
header .nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: ease .2s all;
}
header a:hover, 
header .nav-link:hover {
    color: var(--color-violet);
    transition: ease .2s all;
}
header .navbar-nav {
    width: 100%;
    justify-content: center;
    gap: 8px;
}
header .header-phone-desk {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}
header .navbar-toggler {
    padding: 0;
}
header .navbar-toggler:hover,
header .navbar-toggler:focus {
    box-shadow: none;
}
header .navbar-toggler .navbar-toggler-icon {
    background-image: url('/local/templates/bondigon/img/icon-menu-close.svg');
    background-position: center;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
}
header .navbar-toggler.collapsed .navbar-toggler-icon {
    background-image: url('/local/templates/bondigon/img/icon-menu-open.svg');
    background-position: center;
    background-repeat: no-repeat;
}
header .navbar-nav .nav-item:last-child a {
    display: flex;
    align-items: center;
    gap: 10px;
}
@media screen and (max-width: 992px) {
    header .container {
        padding-left: 0;
        padding-right: 0;
    }
    header .navbar-nav {
        margin-top: 16px;
        align-items: center;
        transition: box-shadow 0.3s ease-in-out;
    }
    header .navbar-nav .nav-item:last-child {
        margin-top: 40px;
    }
    header .navbar.navbar-open {
        box-shadow: 0 0 0 2000px #000000a3;
        transition: box-shadow 0.3s ease-in-out;
    }
}
@media screen and (max-width: 576px) {
    header .navbar {
        padding-top: 11px;
        padding-bottom: 10px;
    }
    header .navbar-nav {
        font-size: 16px;
        gap: 0;
    }
     header .navbar-nav .nav-item:last-child {
        margin-top: 24px;
    }
    header .navbar-brand img {
        max-height: 35px;
    }
}

footer {
    margin-top: 180px;
    padding: 160px 0 16px;
    background-image: url('/local/templates/bondigon/img/footer-bg-lg.svg');
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
}
.footer-top {}
.footer-top-left {}
.footer-top-left-title {
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: bold;
}
.footer-top-left-desc {
    font-size: 24px;
    color: #ffffffcc;
}
.footer-top-right {}
.footer-top-right-title {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
}
.footer-top-right-cont-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-top-right-cont-list,
.footer-top-right-cont-list a {
    text-decoration: none;
    color: #ffffffcc;
}
.footer-top-right-cont-item {
    display: flex;
    gap: 16px;
    align-items: center;
}
.footer-bottom {
    margin-top: 94px;
    color: #ffffff80;
}
.footer-copy,
.footer-policy {
    color: #ffffff80;
    text-decoration: none;
}
.footer-policy {
    text-align: right;
}
@media screen and (max-width: 992px) {
    footer {
        background-image: url('/local/templates/bondigon/img/footer-bg-md.svg');
    }
    .footer-top {
        gap: 60px;
    }
    .footer-top-left-title {
        font-size: 32px;
    }
    .footer-top-left-desc {
        font-size: 20px;
    }
    .footer-bottom {
        margin-top: 60px;
    }
}
@media screen and (max-width: 576px) {
    footer {
        background-image: url('/local/templates/bondigon/img/footer-bg-sm.svg');
        margin-top: 40px;
    }
    .footer-top {
        gap: 32px;
    }
    .footer-top-left-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .footer-top-left-desc {
        font-size: 14px;
        margin-bottom: 12px;
    }
    .footer-top-right-title {
        font-size: 18px;
    }
    .footer-top-right-cont-list {
        font-size: 14px;
        gap: 12px;
    }
    .footer-top-right-cont-item-img img {
        width: 28px;
    }
    .footer-bottom {
        row-gap: 8px;
        font-size: 14px;
        margin-top: 32px;
    }
    .footer-policy {
        text-align: left;
    }
}

/* Home Slider */
.home_top-slider {}

.home_top-slider-slide {
    color: #fff;
}
.home_top-slider-slide.home_top-slider-slide-color-1 {
    background: linear-gradient(90deg, #FF7D40, #FF9245);
}
.home_top-slider-slide.home_top-slider-slide-color-2 {
    background: linear-gradient(90deg, #23A6C6, #24AED0);
}
.home_top-slider-slide.home_top-slider-slide-color-3 {
    background: linear-gradient(90deg, #8D78E4, #A497D8);
}
.home_top-slider-slide.home_top-slider-slide-color-4 {
    background: linear-gradient(90deg, #F79000, #F8A126);
}
.home_top-slider-slide.home_top-slider-slide-color-5 {
    background: linear-gradient(90deg, #46A1B0, #52BACC);
}
.home_top-slider-slide-inner {
    display: flex;
    align-items: center;
}
.home_top-slider-slide-left {
    width: 50%;
}
.home_top-slider-slide-left-inner {
    max-width: 526px;
}
.home_top-slider-slide-title {
    font-size: 48px;
    font-weight: 900;
    line-height: normal;
    margin-bottom: 20px;
}
.home_top-slider-slide-sub-title {
    font-size: 32px;
    line-height: normal;
    font-weight: 500;
    margin-bottom: 16px;
}
.home_top-slider-slide-sub-text {
    font-size: 20px;
    margin-bottom: 24px;
}
.home_top-slider-slide-sub-text ul {
    margin-bottom: 0;
}
.home_top-slider-slide-btn {
    display: inline-block;
    width: 306px;
    padding: 16px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    background-color: var(--color-violet);
    border-radius: 55px;
    transition: all .2s ease;
}
.home_top-slider-slide-btn:hover {
    color: #fff;
    background-color: var(--color-btn-hov);
    transition: all .2s ease;
}
.home_top-slider-slide-right {
    width: 50%;
}
.home_top-slider-slide-right img {
    max-width: 100%;
}

.home_top-slider-mini {
    margin-top: 32px;
}
.home_top-slider-mini .swiper-wrapper {
    justify-content: center;
    transform: none!important;
}
.home_top-slider-mini-slide {
    width: 64px!important;
    height: 64px;
    cursor: pointer;
    opacity: .2;
    transition: all .2s ease;
}
.home_top-slider-mini-slide img {
    width: 64px;
    height: 64px;
}
.home_top-slider-mini-slide.swiper-slide-thumb-active {
    opacity: 1;
    transition: all .2s ease;
}
.home_top-slider-slide-btn-tab {
    display: none;
}
@media screen and (max-width: 992px) {
    .home_top-slider-slide-inner {
        flex-direction: column;
        padding: 40px 12px;
    }
    .home_top-slider-slide-left,
    .home_top-slider-slide-right {
        width: 100%;
    }
    .home_top-slider-slide-left-inner {
        max-width: 605px;
    }
    .home_top-slider-slide-right {
        text-align: center;
    }
    .home_top-slider-slide-title {
        font-size: 40px;
    }
    .home_top-slider-slide-sub-title {
        font-size: 28px;
    }
    .home_top-slider-slide-sub-text {
        font-size: 20px;
    }
    .home_top-slider-slide-right img {
        width: 460px;
    }
    .home_top-slider-slide-btn-desk {
        display: none;
    }
    .home_top-slider-slide-btn-tab {
        display: block;
        width: 100%;
    }
}
@media screen and (max-width: 576px) {
    .home_top-slider-slide-inner {
        padding: 24px 12px;
    }
    .home_top-slider-slide-right {
        margin-bottom: -30px;
    }
    .home_top-slider-slide-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    .home_top-slider-slide-sub-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .home_top-slider-slide-sub-text {
        font-size: 14px;
    }
    .home_top-slider-slide-right img {
        width: 255px;
    }
    .home_top-slider-slide-btn {
        padding: 12px;
    }
    .home_top-slider-mini-slide {
        width: 48px!important;
        height: 48px;
    }
    .home_top-slider-mini-slide img {
        width: 48px!important;
        height: 48px;
    }
}
/* END Home Slider */

/* Home About */
.home_about {
    margin-top: 180px;
}
.home_about-title {
    text-align: center;
}
.home_about-desc {
    text-align: center;
    margin: 0 auto;
    margin-top: 12px;
    max-width: 487px;
}
.home_about-list {
    margin-top: 48px;
    row-gap: 48px;
}
.home_about-list-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.home_about-list-item-img img {
    max-width: 100%;
    width: 120px;
}
.home_about-list-item-text {
    text-align: center;
}
@media screen and (max-width: 992px) {
    .home_about {
        margin-top: 80px;
    }
    .home_about-desc {
        width: 516px;
        max-width: 100%;
        margin-top: 32px;
    }
    .home_about-list {
        row-gap: 44px;
    }
    .home_about-list-item-img img {
        max-width: 100%;
        width: 100px;
    }
    .home_about-list-item-text {
        width: 280px;
        max-width: 100%;
    }
}
@media screen and (max-width: 576px) {
    .home_about {
        margin-top: 48px;
    }
    .home_about-desc {
        margin-top: 8px;
    }
    .home_about-list {
        margin-top: 16px;
        row-gap: 16px;
    }
    .home_about-list-item {
        gap: 6px;
    }
    .home_about-list-item-img img {
        width: 48px;
    }
    .home_about-list-item-text {
        font-size: 14px;
    }
    
}
/* END Home About */

/* Home Impovit */
.home_impovit {
    margin-top: 180px;
}
.home_impovit-title {
    text-align: center;
}
.home_impovit-desc {
    text-align: center;
    margin: 0 auto;
    margin-top: 12px;
    max-width: 635px;
}
.home_impovit-list {
    row-gap: 24px;
    margin-top: 48px;
}
.home_impovit-list-item {}
.home_impovit-list-item-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 232px;
    padding: 16px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 0 1px #00000040;
}
.home_impovit-list-item-title {
    position: relative;
    padding-right: 28px;
    font-size: 32px;
    font-weight: 600;
    line-height: normal;
    color: var(--color-violet);
}
.home_impovit-list-item-title::after {
    content: "";
    background: url('/local/templates/bondigon/img/icon-quote.svg') no-repeat center;
    background-size: contain;
    width: 24px;
    height: 15px;
    position: absolute;
    top: 0;
    right: 0;
    line-height: 0;
}
.home_impovit-list-item-desc {
    font-size: 20px;
    font-weight: 500;
}
@media screen and (max-width: 992px) {
    .home_impovit {
        margin-top: 80px;
    }
    .home_impovit-list-item-title {
        font-size: 28px;
    }
    .home_impovit-desc {
        max-width: 100%;
        width: 516px;
    }
}
@media screen and (max-width: 576px) {
    .home_impovit {
        margin-top: 48px;
    }
    .home_impovit-desc {
        width: 296px;
        margin-top: 8px;
    }
    .home_impovit-list {
        margin-top: 16px;
        row-gap: 10px;
    }
    .home_impovit-list-item-inner {
        height: 130px;
    }
    .home_impovit-list-item-title::after {
        width: 15px;
        height: 10px;
    }
    .home_impovit-list-item-title {
        font-size: 16px;
    }
    .home_impovit-list-item-desc {
        font-size: 14px;
    }
}
/* END Home Impovit */

/* Home FAQ */
.home_faq {
    margin-top: 180px;
}
.home_faq-title {
    text-align: center;
}
.home_faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 48px;
}
.home_faq .accordion-item {
    border: none;
    box-shadow: 0 0 1px #00000040;
    border-radius: 12px;
    overflow: hidden;
}
.home_faq .accordion-button {
    padding: 32px;
    font-weight: 500;
}
.home_faq .accordion-button:focus {
    border: none;
    border-color: unset!important;
    box-shadow: none;
}
.home_faq .accordion-button::after {
    background-image: url('/local/templates/bondigon/img/icon-accordion-button.svg');
    width: 32px;
    height: 32px;
        background-size: 32px;
}
.home_faq .accordion-button:not(.collapsed) {
    color: #000;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: none;
}
.home_faq .accordion-body {
    padding: 0 32px 32px;
}
.home_faq-item-question {
    font-size: 24px;
}
@media screen and (max-width: 992px) {
    .home_faq {
        margin-top: 48px;
    }
    .home_faq-list {
        margin-top: 32px;
    }
    .home_faq .accordion-button {
        padding: 24px;
    }
    .home_faq .accordion-body {
        padding: 0 24px 24px;
    }
}
@media screen and (max-width: 576px) {
    .home_faq-list {
        margin-top: 16px;
    }
    .home_faq .accordion-button {
        font-size: 16px;
    }
    .home_faq .accordion-body {
        padding: 0 24px 24px;
        font-size: 14px;
    }
}
/* END Home FAQ */

/* Home Buy */
.home_block-buy {
    margin-top: 180px;
}
.home_block-buy-title {
    text-align: center;
    margin-bottom: 48px;
}
@media screen and (max-width: 992px) {
    .home_block-buy {
        margin-top: 80px;
    }
    .home_block-buy-title {
        margin-top: 32px;
    }
}
/* END Home Buy */

/* Buy list */
.block-buy-list {
    row-gap: 24px;
}
.block-buy-item {
    width: 100%;
    display: block;
    padding-top: 43.7%;
    background-position: center;
    background-size: cover;
    border-radius: 16px;
}
.block-buy-more {
    margin-top: 24px;
    text-align: right;
}
.block-buy-more a {
    text-decoration: none;
    border-bottom: 1px solid var(--color-violet);
    color: var(--color-violet);
    transition: all .2s ease;
}
.block-buy-more a:hover {
    color: var(--color-btn-hov);
    border-color: var(--color-btn-hov);
    transition: all .2s ease;
}
@media screen and (max-width: 576px) {
    .home_block-buy {
        margin-top: 48px;
    }
    .block-buy-list {
        row-gap: 24px;
    }
    .block-buy-more a {
        font-size: 14px;
    }
}

/* Каталог Витамины Листинг */
.vitamins-list {
    row-gap: 24px;
}
.vitamins-item {}
.vitamins-item-inner {
    display: block;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    text-decoration: none;
    color: #000;
    box-shadow: 0px 0px 1px 0px #00000040;
    transition: all .2s ease;
}
.vitamins-item-inner:hover {
    color: var(--color-btn-hov);
    transition: all .2s ease;
}
.vitamins-item-img {}
.vitamins-item-img img {
    width: 100%;
}
.vitamins-item-name {
    font-size: 24px;
    font-weight: 600;
    margin-top: 20px;
}
.vitamins-item-anons {
    font-size: 20px;
    margin-top: 8px;
}
.vitamins-item-more {
    color: var(--color-violet);
    margin-top: 20px;
}
@media screen and (max-width: 992px) {}
@media screen and (max-width: 576px) {}
/* END Каталог Витамины Листинг */

/* Каталог Витамины Детальная */
.vitamin-detail-top {}
.vitamin-detail-slider {}
.vitamin-detail-slider-main {
    text-align: center;
}
.vitamin-detail-slider-main img {
    max-width: 100%;
    width: 413px;
}
.vitamin-detail-slider-mini {
    margin-top: 24px;
}
.vitamin-detail-slider-mini .swiper-wrapper {
    justify-content: center;
    transform: none !important;
}
.vitamin-detail-slider-mini-slide {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 70px!important;
    height: 70px;
    cursor: pointer;
    opacity: .2;
    transition: all .2s ease;
}
.vitamin-detail-slider-mini-slide.swiper-slide-thumb-active {
    opacity: 1;
    transition: all .2s ease;
}

.vitamin-detail-title {
    font-size: 40px;
    font-weight: bold;
}
.vitamin-detail-sub-title {
    margin-top: 8px;
    font-size: 24px;
    font-weight: 500;
}
.vitamin-detail-chars {
    margin-top: 16px;
}
.vitamin-detail-char-item {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}
.vitamin-detail-char-item-name {
    font-weight: bold;
}
.vitamin-detail-char-item-data {}
.vitamin-detail-char-item:last-child {
    border-bottom: none;
}
.vitamin-detail-middle {
    margin-top: 180px;
}
.vitamin-detail-middle-list {
    row-gap: 70px;
}
.vitamin-detail-middle-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 16px;
}
.vitamin-detail-middle-desc {
    font-size: 24px;
    -webkit-text-stroke: 0.26px #6200B2;
}
.vitamin-detail-middle-svitem-inner {}
.vitamin-detail-middle-svitem-img {
    margin-bottom: 24px;
}
.vitamin-detail-middle-svitem-name {
    font-weight: bold;
    margin-bottom: 8px;
}
.vitamin-detail-middle-svitem-desc {}
.vitamin-detail-bottom {
    margin-top: 220px;
}
.vitamin-detail-bottom-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}
.vitamin-detail-bottom-text {
    -webkit-text-stroke: 0.26px #6200B2;
}
.vitamin-detail-bottom-img img {
    max-width: 100%;
}
@media screen and (max-width: 992px) {
    .vitamin-detail-title {
        font-size: 32px;
    }
    
    .vitamin-detail-top.vitamin-detail-top-mob {
        margin-bottom: 48px;
    }
    .vitamin-detail-middle {
        margin-top: 80px;
    }
    .vitamin-detail-middle-title {
        font-size: 28px;
        margin-bottom: 8px;
    }
    .vitamin-detail-middle-desc {
        font-size: 20px;
        -webkit-text-stroke: unset
    }
    .vitamin-detail-middle-list {
        row-gap: 32px;
    }
    .vitamin-detail-middle-svitem-img {
        margin-bottom: 16px;
    }
    .vitamin-detail-middle-svitem-img img {
        width: 65px;
        max-width: 100%;
    }
    .vitamin-detail-bottom {
        margin-top: 48px;
    }
    .vitamin-detail-bottom-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    .vitamin-detail-bottom-text {
        -webkit-text-stroke: unset
    }
    .vitamin-detail-bottom {}
    .vitamin-detail-bottom .row {
        flex-direction: column-reverse;
    }
    .vitamin-detail-bottom-img {
        text-align: center;
    }
    .vitamin-detail-bottom-img img {
        width: 336px;
    }
}
@media screen and (max-width: 576px) {
    .vitamin-detail-title {
        font-size: 18px;
    }
    .vitamin-detail-sub-title {
        font-size: 16px;
    }
    .vitamin-detail-top.vitamin-detail-top-mob {
        margin-bottom: 32px;
    }
    .vitamin-detail-char-item {
        padding: 12px 0;
        font-size: 14px;
    }
    .vitamin-detail-middle {
        margin-top: 48px;
    }
    .vitamin-detail-middle-title {
        font-size: 18px;
    }
    .vitamin-detail-middle-desc {
        font-size: 16px;
    }
    .vitamin-detail-middle-list {
        row-gap: 10px;
    }
    .vitamin-detail-middle-svitem-img {
        margin-bottom: 8px;
    }
    .vitamin-detail-middle-svitem-name {
        font-size: 16px;
    }
    .vitamin-detail-middle-svitem-desc {
        font-size: 14px;
    }
    .vitamin-detail-bottom {
        margin-top: 24px;
    }
    .vitamin-detail-bottom-img {
        margin-bottom: 24px;
    }
    .vitamin-detail-bottom-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .vitamin-detail-bottom-text {
        font-size: 14px;
    }
}
/* END Каталог Витамины Детальная */

/* Страница Контакты */
.contacts {}
.contacts-list {
    width: 450px;
    max-width: 100%;
}
.contacts-list-title {
    font-weight: bold;
    margin-bottom: 24px;
}
.contacts-list-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contacts-item {
    display: flex;
    padding-left: 28px;
    background-position: left 4px;
    background-repeat: no-repeat;
    background-size: 18px;
}
.contacts-item a {
    text-decoration: none;
    color: #000;
    transition: ease .2s all;
}
.contacts-item a:hover {
    color: var(--color-btn-hov);
    transition: ease .2s all;
}
.contacts-item.contacts-item-adr {
    background-image: url('/local/templates/bondigon/img/cont-adr.svg');
}
.contacts-item.contacts-item-mail {
    background-image: url('/local/templates/bondigon/img/cont-mail.svg');
}
.contacts-item.contacts-item-phone {
    background-image: url('/local/templates/bondigon/img/cont-phone.svg');
}

.contacts .form-body {
    padding: 24px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 1px 0px #00000040;
}
.contacts .form-body-title {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 28px;
}
.contacts .form-body .inputtext,
.contacts .form-body .inputtextarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid;
    outline: none;
}
.contacts .form-body .inputtextarea {
    margin-top: 24px;
}
.contacts .form-body-agreement {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #B2B1B1;
}
.contacts .form-body-agreement a {
    color: #000;
    text-decoration: none;
}
.contacts #checkbox-agreement {
    margin-top: 5px;
}
.contacts .form-body-btn {}
.contacts .form-body-btn input {
    width: 100%;
    padding: 16px;
    margin-top: 20px;
    background-color: var(--color-violet);
    transition: all ease .2s;
    border: none;
    border-radius: 55px;
    color: #fff;
}
@media screen and (max-width: 992px) {
    .contacts-list-title {
        margin-top: 8px;
        margin-bottom: 40px;
    }
    .contacts .form-body {
        margin-top: 80px;
    }
}
@media screen and (max-width: 576px) {
    .contacts .form-body-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    .contacts-list-title {
        font-size: 16px;
        margin-bottom: 24px;
    }
    .contacts .contacts-list-main {
        font-size: 14px;
    }
    .contacts-item {
        padding-left: 20px;
        background-position: left 3px;
        background-size: 14px;
    }
    .contacts .form-body {
        margin-top: 24px;
    }
    .contacts .form-body-foruser {
        gap: 12px;
    }
    .contacts .form-body .inputtext,
    .contacts .form-body .inputtextarea {
        font-size: 14px;
    }
    .contacts .form-body .inputtextarea {
        margin-top: 0;
    }
    .contacts .form-body-agreement {
        font-size: 14px;
    }
    .contacts .form-body-btn input {
        font-size: 16px;
        padding: 12px;
    }
}
/* END Страница Контакты */