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

a {
    text-decoration: none;
    color: inherit;
    transition: .3s
}

img {
    max-width: 100%
}

li {
    position: relative;
    list-style: none;
    z-index: 1
}

body {
    font-family: 'Mukta', sans-serif;
    font-weight: 400;
    color: #000;
    background-image: url("../images/bg.svg");
    background-size: cover;
    background-attachment: fixed
}

.button {
    border: 0;
    cursor: pointer;
    transition: .5s
}

.button:hover {
    transition: .5s
}

.mob {
    display: none
}

.container {
    max-width: 960px;
    margin: 0 auto
}

.header-top {
    position: relative;
    border-bottom: 37px solid #000;
    z-index: 1050
}

.header-top .container {
    padding: 25px 0 11px 23px
}

.header-top-logo img {
    display: flex;
    align-items: center;
    justify-content: center
}

.header-top-navigation-mobile,
.bg-blur {
    display: none
}

.header-bottom {
    position: sticky;
    top: 0;
    transform: translateY(0);
    transition: all .3s ease;
    z-index: 1000
}

.header-bottom.out {
    transform: translateY(-100%);
    transition: all .3s ease
}

.header-bottom .container {
    background: #fff
}

.header-bottom-navigation ul {
    display: flex;
    justify-content: center
}

.header-bottom-navigation ul li {
    padding: 10px 28px;
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    line-height: 24px;
    color: #000;
    background: #d9d9d9;
    transition: all .2s ease-in
}

.header-bottom-navigation ul li:hover {
    background: #969696
}

.header-bottom-navigation ul li:not(:last-child) {
    margin-right: 34px
}

.article .container {
    padding: 46px 0 80px 0;
    background: #fff;
    margin: 0 auto
}

h1.article-title {
    padding: 0 41px;
    font-weight: 600;
    font-size: 32px;
    line-height: 146%;
    color: #000;
    margin-bottom: 10px
}

h2.article-title {
    padding: 0 41px;
    font-weight: 400;
    font-size: 32px;
    line-height: 146%;
    color: #000;
    margin-bottom: 15px
}

.article-text {
    padding: 0 41px;
    font-size: 20px;
    line-height: 165%;
    color: #0f0f0f;
    margin-bottom: 15px
}

.expert {
    max-width: max-content
}

.name {
    margin-top: -5px;
    font-weight: 700;
    font-size: 16px;
    color: #000;
    line-height: 165.7%;
    text-align: left;
    padding-left: 5px
}

.article-text.yellow-block {
    font-weight: 600;
    background: #ffcc17
}

.article-image {
    padding: 0 41px;
    margin-bottom: 20px
}

.article-images {
    padding: 0 41px;
    display: flex;
    align-items: center;
    margin-bottom: 15px
}

.article-images img:not(:last-child) {
    margin-right: 5px
}

.order {
    max-width: 100%;
    width: 1920px;
    height: max-content;
    background-image: url("../images/order-bg.png");
    background-position: top center;
    background-size: cover;
    overflow-x: hidden;
    margin: 0 auto
}

.order .container {
    max-width: 100%;
    width: 1290px;
    position: relative;
    padding: 16px 0 92px 0;
    margin: 0 auto;
    z-index: 1
}

.order-info {
    position: relative;
    max-width: 713px;
    text-align: center
}

.sale {
    position: absolute;
    top: -88px;
    right: 10px;
    animation: sale-jumping 2s linear infinite
}

@keyframes sale-jumping {
    0% {
        transform: translateY(0)
    }

    25% {
        transform: translateY(-5px)
    }

    50% {
        transform: translateY(0)
    }

    75% {
        transform: translateY(5px)
    }

    110% {
        transform: translateY(0)
    }
}

.order-title {
    height: max-content;
    margin-bottom: 14px
}

.order-description {
    max-width: 521px;
    font-family: 'Philosopher', sans-serif;
    font-weight: 400;
    font-size: 37px;
    line-height: 134%;
    text-align: center;
    color: #FFF;
    margin: 0 auto 14px
}

.order-image {
    position: absolute;
    top: 145px;
    right: -397px
}

.order-form {
    max-width: 322px;
    margin: 0 auto
}

.order-form input {
    padding: 12px 15px;
    width: 100%;
    height: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #fff;
    background: transparent;
    border-radius: 6px;
    border: 2px solid #FFF;
    outline: 0;
    margin-bottom: 22px
}

.order-form input::placeholder {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #fff
}

.order-button {
    padding: 12px;
    display: block;
    width: 279px;
    height: 52px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #fff;
    text-align: center;
    border-radius: 51px;
    background: #0b7d09;
    box-shadow: 4px 7px 4px 0 rgba(0, 0, 0, 0.53);
    cursor: pointer;
    transition: .5s;
    position: relative;
    overflow-x: hidden;
    margin: 30px auto 0
}

.order-button .flare {
    position: absolute;
    top: 0;
    height: 100%;
    width: 45px;
    transform: skewX(-45deg);
    left: -150%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.6));
    animation: flareAnimation 3s infinite linear forwards
}

.order-button:hover {
    transition: .5s
}

.order-button.mob {
    display: none
}

.order-price {
    max-width: max-content;
    width: max-content;
    font-family: 'Mukta', sans-serif;
    font-weight: 700;
    font-size: 64px;
    margin: 0 auto 15px
}

.new-price {
    color: #F00;
    margin-left: 16px;
    animation: price-pulse 2s linear infinite
}

@keyframes price-pulse {
    0% {
        opacity: 1
    }

    50% {
        opacity: .5
    }

    100% {
        opacity: 1
    }
}

.old-price {
    position: relative;
    padding-right: 16px;
    text-decoration-line: line-through;
    color: #adadad
}

.old-price:before {
    content: '|';
    position: absolute;
    top: 10px;
    right: -16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    color: #adadad
}

.comments .container {
    max-width: 960px;
    padding: 0 114px 57px 114px;
    background: #fff;
    margin: 0 auto
}

.article-comments {
    max-width: 757px;
    font-family: 'HelveticaNeue', sans-serif
}

.comments-item {
    margin: 0 5px 0 0
}

.comments-item {
    position: relative;
    margin-bottom: 42px
}

.comment-wrapper {
    display: flex
}

.comments-item-image {
    min-width: 70px;
    margin-right: 10px
}

.comments-item-info {
    max-width: 100%
}

.comments-item-info-name {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 10px
}

.comments-item-info-name span {
    font-size: 11px;
    line-height: 30px;
    color: #888
}

.comments-item-info-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: #000;
    max-width: 677px
}

.comments-item-wrapper {
    display: flex;
    align-items: center;
    margin-left: 70px
}

.comment-like img {
    padding: 10px 0 10px 10px;
    width: 30px
}

.comment-like:nth-child(1) {
    display: flex;
    align-items: center;
    cursor: pointer
}

.comment-like:nth-child(2) {
    display: flex;
    align-items: center;
    cursor: pointer
}

.comment-like img {
    margin-right: 5px
}

.review-image img {
    padding-top: 5px;
    height: 170px
}

.commentForm-text {
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #000;
    margin-left: 99px;
    margin-bottom: 16px
}

form.commentForm {
    max-width: 100%;
    margin-left: 131px;
    margin-right: 79px
}

.input-comment {
    width: 100%;
    padding: 6px;
    font-family: 'HelveticaNeue', sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-transform: lowercase;
    background: transparent;
    color: #363636;
    border: 0;
    border-bottom: 1px solid #959595;
    outline: 0;
    margin-bottom: 24px
}

.input-comment::placeholder {
    font-family: 'HelveticaNeue', sans-serif;
    font-weight: 400;
    color: rgba(201, 201, 201)
}

.commentForm .wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center
}

.commentForm .wrapper a:first-child {
    font-family: 'HelveticaNeue', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #000;
    margin-right: 47px
}

.commentForm .wrapper button {
    width: 191px;
    height: 31px;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    background: #63c7ff;
    box-shadow: inset 4px 4px 5px rgba(255, 255, 255, 0.25), inset -3px -3px 4px rgba(0, 0, 0, 0.25);
    border: 0
}

#cansel {
    cursor: pointer
}

.pp {
    padding: 10px 0;
    font-size: 14px;
    line-height: 120%;
    font-weight: 300;
    text-align: center;
    color: #0b0b0b;
    margin-top: 50px;
    background: #f9f9f9
}

.pp a {
    font-weight: 500;
    transition: all .3s
}

.pp a:hover {
    color: #37503b;
    transition: all .3s
}

@keyframes flareAnimation {
    0% {
        left: -150%
    }

    100% {
        left: 150%
    }
}

.modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    backdrop-filter: blur(7.5px);
    z-index: 1500
}

.modal-wrapper {
    padding: 33px 0 24px 0;
    width: 534px;
    height: 164px;
    position: absolute;
    top: calc(50% - 82px);
    left: calc(50% - 267px);
    background: rgba(217, 217, 217, 0.8);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center
}

.close {
    position: absolute;
    top: 17px;
    right: 32px;
    z-index: 10;
    cursor: pointer
}

.close:before {
    content: '';
    position: absolute;
    top: calc(50% - 16px);
    right: calc(50% - 15px);
    width: 29px;
    height: 29px;
    background: #fff;
    border-radius: 50%;
    z-index: -10
}

.done {
    position: relative;
    margin-bottom: 38px;
    z-index: 10
}

.done:before {
    content: '';
    position: absolute;
    top: calc(50% - 42px);
    right: calc(50% - 42px);
    width: 83px;
    height: 83px;
    background: #fff;
    border-radius: 50%;
    z-index: -10
}

.modal-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(195, 195, 195, .1);
    backdrop-filter: blur(9px);
    text-align: center;
    z-index: 1100
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px
}

.modal-form .order-form {
    padding-top: 150px;
    display: block;
    max-width: 355px
}

.modal-form .order-form input {
    color: #000;
    border-radius: 6px;
    border: 2px solid #54815c;
    background: rgba(255, 255, 255, 0.50)
}

.modal-form .order-form input::placeholder {
    color: #000
}