/* global settings */

@keyframes pulse {
    0% {
        transform: scale(1.0);
    }

    100% {
        transform: scale(1.1);
    }
}

@import url('../../../../../css/inter.css');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&family=Roboto+Condensed:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
    color: inherit;
}

:root {
    --full: 100%;
    --black: #000;
    --white: #fff;
    --cyan: #0f90fa;
    --blue: blue;
    --red: red;
    --gray: #dedede;
    --green: green;
}

body {
    background-color: #f2f2f2;
}

.container-full {
    width: var(--full);
    max-width: 1920px;
}

.container-static {
    width: var(--full);
    max-width: 1150px;
    margin: 0 auto;
}

.title {
    font-family: 'Roboto Condensed', sans-serif;
}

p {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 29px;
    color: var(--black);
    margin-bottom: 10px;
}

a {
    color: var(--blue);
}

h2 {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 29px;
    color: var(--cyan);
}

/* start css */

/* header */

.header .header-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.header .header-wrapper .post {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 110px;
    background: var(--cyan);
    width: 100%;
}

.header .header-wrapper .post p {
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--white);    
}

.header .header-wrapper .nav ul {
    display: flex;
    list-style: none;
    background: var(--white);
}

.header .header-wrapper .nav nav ul li{
    padding: 16px 18px;
    font-family: 'Roboto Condensed', sans-serif;
    color: var(--black);
    font-size: 16px;
    font-weight: bold;
    position: relative;
}

.header .header-wrapper .nav nav ul li a {
    color: var(--black);
    font-size: 16px;
    font-weight: bold;
    font-family: 'Roboto Condensed', sans-serif;
}

.header .header-wrapper .nav nav ul li ::after {
    content: ' ';
    height: 25px;
    width: 0px;
    background: #c0c0c0;
    border-right: 0.75px solid #c0c0c0;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
}

/* content */

.content .content-wrapper {
    background: #fff;
    padding: 30px 50px;
}

.content .content-wrapper .top-text {
    margin-bottom: 22px;
}

.content .content-wrapper .top-text strong {
    font-family: 'Roboto Condensed', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 25px;
    line-height: 29px;
    color: #0f90fa;
}

.content .content-wrapper .title h1 {
    margin: 0 0 30px;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    text-transform: uppercase;
    position: relative;
}

.content .content-wrapper .title h1::after {
    display: block;
    content: '';
    margin: 15px 0 0;
    width: 62px;
    height: 5px;
    background: url('../img/separator_red.png') center no-repeat;
}

.content .content-wrapper .principal-notice .notice-image figure img {
    display: block;
    margin: 40px auto;
    border-top: 5px solid #0f90fa;
    width: var(--full);
    max-width: 600px;
}

.content .content-wrapper .date span {
    position: relative;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 17px;
    line-height: 31px;
    position: relative;
    padding: 0 7px;
    display: inline-block;
    text-transform: uppercase;
    color: var(--black);
}

.content .content-wrapper .date span::before {
    content: ' ';
    height: 14px;
    width: 0;
    border-left: 0.75px solid #000000;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
}

.content .content-wrapper .date span::after {
    content: ' ';
    height: 14px;
    width: 0;
    border-right: 0.75px solid #000000;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
}

.content .content-wrapper .categories {
    margin: 15px 0;
}

.content .content-wrapper .categories .categories-wrapper ul {
    list-style: none;
    padding-left: 15px;
    display: flex;
}

.content .content-wrapper .categories .categories-wrapper ul li {
    background: #c0c0c0;
    font-family: 'Roboto Condensed', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0.15em;
    padding: 5px 14px;
    color: #ffffff;
    margin-right: 13px;
    margin-bottom: 5px;
    list-style: disc;
}

.content .content-wrapper .categories .categories-wrapper ul .current {
    background: var(--cyan);
}

.content .content-wrapper .center-image figure img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 450px;
    margin-bottom: 10px;
}

.content .content-wrapper .center-text {
    margin-bottom: 10px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 29px;
    color: var(--black);
}

.content .content-wrapper .list-red {
    color: var(--red);
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 29px;
    margin-bottom: 10px;
}

.content .content-wrapper .list-red ul {
    margin-bottom: 20px;
}

.content .content-wrapper .list-red ul li {
    margin-left: 20px;
    list-style: disc;
}

.content .content-wrapper .photos-section {
    background-color: var(--gray);
    padding: 10px;
}

.content .content-wrapper .list ul {
    margin-bottom: 20px;
}

.content .content-wrapper .list ul li {
    color: var(--black);
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 29px;
    margin-left: 20px;
}

.content .content-wrapper .green {
    color: var(--green);
}

.content .content-wrapper .important {
    border: 3px solid red;
    padding: 10px;
    background-color: rgb(255, 255, 130);
}

.content .content-wrapper .important p {
    color: var(--red);
}

/* .content .content-wrapper .form {
    max-width: 600px;
    padding: 70px;
    margin: 20px auto;
    background: #fff url('../img/formbg.jpg') no-repeat;
    background-size: auto;
    background-size: 100% 100%;
}

.content .content-wrapper .form p {
    font-size: 12px;
    margin: 0;
    line-height: 30px;
}

.content .content-wrapper .form .top {
    padding-top: 100px;
    background: url('../img/med.png') top center no-repeat;
    background-size: auto;
    background-size: 100px auto;
    text-align: center;
}

.content .content-wrapper .form .top h2 {
    margin: 25px 0 0;
    padding: 0;
    line-height: 32px;
    font-size: 30px;
    font-weight: 700;
}

.content .content-wrapper .form .top p {
    font-size: 14px;
    color: #00f;
    font-style: italic;
    margin-bottom: 0;
}

.content .content-wrapper .form .price {
    text-align: center;
}

.content .content-wrapper .form .price p {
    font-size: 12px;
    margin: 0;
    line-height: 30px;
}

.content .content-wrapper .form .price span {
    font-size: 21px;
    font-weight: 700;
    color: var(--red);
}

.content .content-wrapper .form .frame {
    margin: 45px 10px 25px;
    border: 2px solid #0299ff;
    padding: 10px;
}

.content .content-wrapper .form .frame p {
    margin: 0 !important;
    font-size: 12px;
    font-weight: 700;
    line-height: 30px;
}

.content .content-wrapper .form .name,
.content .content-wrapper .form .phone {
    margin: 10px;
}

.content .content-wrapper .form .name label,
.content .content-wrapper .form .phone label {
    width: 230px;
    display: block;
    margin: 0 auto;
    text-align: center;
    font-weight: 700;
    font-size: 17px !important;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    line-height: 29px;
    color: var(--black);
}

.content .content-wrapper .form .name input,
.content .content-wrapper .form .phone input {
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 0 auto;
    padding: 15px;
    border-radius: 3px;
    border: 2px solid #e9d7dc;
    font-size: 21px;
}

.content .content-wrapper .form .name input:focus,
.content .content-wrapper .form .phone input:focus {
    border: 2px solid blue;
}

.content .contnet-wrapper .form .btn {
    display: flex;
    justify-content: center;
}

.content .content-wrapper .form .btn button {
    max-width: 245px;
    display: block;
    margin: 20px auto;
    padding: 20px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px 0 rgba(129, 150, 160, 0.45);
    border-radius: 5px;
    background: #0299ff;
    transition: all 0.15s ease-in-out;
    border: none;
    cursor: pointer;
    font-size: 20px;
}

.content .content-wrapper .form .time-limit {
    font-size: 14px;
    margin: 0 0 10px;
    font-family: 'Inter', sans-serif;
}

.content .content-wrapper .form .time-limit .timer {
    display: inline-block;
    background: url('../img/timerIcon2.png') no-repeat;
    padding-left: 14px;
    color: var(--red);
    font-weight: 700;
    line-height: 15px;
} */

.content .content-wrapper .avaliation .avaliation-wrapper {
    padding: 30px 0 0;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.content .content-wrapper .avaliation .avaliation-wrapper h2 {
    margin: 0 0 30px;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    text-transform: uppercase;
    color: var(--black);
    font-family: 'Roboto Condensed', sans-serif;
}

.content .content-wrapper .avaliation .avaliation-wrapper h2 span {
    color: var(--red);
}

.content .content-wrapper .avaliation .avaliation-wrapper h2::after {
    display: block;
    content: '';
    margin: 15px 0 0;
    width: 62px;
    height: 5px;
    background: url('../img/separator_red.png') center no-repeat;
}

.content .content-wrapper .avaliation .avaliation-wrapper .vote_block {
    padding: 20px;
    background: #fff;
    -webkit-box-shadow: 0 0 27px rgb(2 2 2 / 10%);
    -moz-box-shadow: 0 0 27px rgba(2, 2, 2, 0.1);
    box-shadow: 0 0 27px rgb(2 2 2 / 10%);
}

.content .content-wrapper .avaliation .avaliation-wrapper .question_item {
    margin: 0 0 20px;
    height: 50px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    background: #f0f0f0;
    -webkit-box-shadow: 0 0 0 1px #dedede inset;
    -moz-box-shadow: 0 0 0 1px #dedede inset;
    box-shadow: 0 0 0 1px #dedede inset;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.content .content-wrapper .avaliation .avaliation-wrapper .question_item .line {
    background: #7ac700;
    display: block;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
}

.content .content-wrapper .avaliation .avaliation-wrapper .question_item .question_text {
    float: left;
    padding: 0 0 0 20px;
    line-height: 50px;
    position: relative;
}

.content .content-wrapper .avaliation .avaliation-wrapper .question_item .percents {
    display: block;
    float: right;
    padding: 0 20px 0 0;
    font-weight: 700;
    line-height: 50px;
    text-align: right;
    position: relative;
}

.content .content-wrapper .avaliation .avaliation-wrapper .voice_count {
    text-align: center;
}

.content .content-wrapper .avaliation .avaliation-wrapper .voice_count b {
    margin: 0 0 0 5px;
    padding: 3px 5px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background: #7ac700;
    color: #fff;
}

.content .content-wrapper .comments .comment {
    border-bottom: 1px dashed #ccc;
    padding: 15px 0;
    border-bottom: 1px dashed #ccc;
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    margin: 0 -10px;
}

.content .content-wrapper .comments #comment_num {
    border-bottom: 1px dashed #365398;
    color: #365398;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
}

.content .content-wrapper .comments .comment .comment__image {
    flex-grow: 0;
    padding: 0 10px;
    width: 70px;
    height: 50px;
    border-radius: 50%;
}

.content .content-wrapper .comments .comment .comment__content {
    padding: 0 10px;
    width: 100%;
}

.content .content-wrapper .comments .comment .comment__name {
    margin-top: 0;
    color: #365398;
    font-size: 14px;
    text-align: left;
    text-align-last: left;
    font-weight: 700;
}

.content .content-wrapper .comments .comment .comment__text {
    margin: 8px 0;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.4;
}

.content .content-wrapper .comments .comment .comment__text img {
    display: block;
    margin: 8px 0 0;
    border-radius: 0 !important;
    width: 300px;
}

.content .content-wrapper .comments .comment .comment__details {
    font-size: 12px;
    color: #365398;
    line-height: 1.4;
}

.content .content-wrapper .comments .comment .comment__details a {
    text-decoration: none;
    color: #365398;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 400;
    cursor: pointer;
}

.content .content-wrapper .comments .comment .comment__details span {
    text-decoration: none;
    color: #365398;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 400;
    cursor: pointer;
}

.content .content-wrapper .comments .comment .comment__details img {
    width: 13px;
}

.content .content-wrapper .cta-button {
    text-align: center;
}

.content .content-wrapper .cta-button button {
    color: var(--white);
    margin-top: 50px !important;
    font-size: 22px;
    text-align: center;
    display: block;
    animation: 1s pulse infinite alternate ease-in-out;
    font-weight: 700;
    display: block;
    font-size: 20px;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    text-align: center;
    max-width: 350px;
    background: rgb(219, 32, 32) none repeat scroll 0% 0%;
    padding: 20px 20px 14px;
    -moz-border-top-colors: none;
    -moz-border-right-colors: none;
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -o-border-image: none;
    border-image: none;
    border-radius: 6px;
    text-decoration: none;
    margin: 10px auto;
      margin-top: 10px;
    border-bottom: 6px solid transparent;
    -webkit-animation: 1s pulse infinite alternate ease-in-out;
    animation: 1s pulse infinite alternate ease-in-out;
    border: none;
    cursor: pointer;
}

/* footer */

.footer .footer-wrapper{
    padding: 20px 5px;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.footer .footer-wrapper a {
    color: var(--red);
}

.footer .footer-wrapper p {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    text-align: center;
}

/* media querie */

@media(max-width: 992px) {
    body, main {
        overflow-x: hidden;
    }

    p {
        font-size: 18px;
        line-height: 32px;
        letter-spacing: -0.02em;
    }

    li {
        line-height: 22px;
    }

    .header .header-wrapper {
        margin-bottom: 0;
    }

    .header .header-wrapper .post {
        height: 77px;
        min-height: auto;
    }

    .header .header-wrapper .post p {
        max-width: 320px;
        font-size: 30px;
        line-height: 90px;
    }

    .header .header-wrapper .nav,
    .content .content-wrapper .top-text strong {
        display: none;
    }

    .content .content-wrapper .top-text {
        margin-bottom: 0;
    }

    .content .content-wrapper {
        padding: 30px 15px;
    }

    .content .content-wrapper .categories .categories-wrapper ul {
        display: flex;
        flex-wrap: wrap;
    }

    .content .content-wrapper .categories .categories-wrapper ul li {
        font-size: 13px;
    }

    .content .content-wrapper .list-red {
        font-size: 18px;
    }

    .content .content-wrapper .center-image figure img {
        max-width: fit-content;
    }

    .wrap-img {
        flex-direction: column;
    }
}