:root {
    --accent-color: #f947be;
    --text-color: #31b2bb;
    --inverse: row-reverse;
    --border-radius: 2px;
    /* --animation: wiggle linear 2s infinite; */
    /* --animation: scale ease-in-out 2s infinite; */
    --animation: jump ease-in-out 2s infinite;
    /* --animation: box-shadow linear 2s infinite; */
}
.additional {
    text-align: center;
    padding: 10px;
    max-width: 1000px;
    font-size: 32px;
    margin: 50px auto;
    background-color: rgb(227, 67, 67);
    color: #fff;
    border-radius: var(--border-radius);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--text-color);
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif
}

.animation {
    animation: var(--animation);
  }

  @keyframes box-shadow {
    0% {
        box-shadow: -30px 0 30px var(--accent-color);
    }
    20% {
        box-shadow: 0 30px 30px var(--accent-color);
    }
    40% {
        box-shadow: 30px 0 30px var(--accent-color);
    }
    60% {
        box-shadow: 0 -30px 30px var(--accent-color);
    }
    80% {
        box-shadow: -30px 0 30px var(--accent-color);
    }
    100% {
        box-shadow: -30px 0 30px var(--accent-color);
    }
  }

  @keyframes scale {
    0% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.25)
    }
    100% {
        transform: scale(1)
    }
  }

  @keyframes jump {
    0% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(0, 20px);
    }
    100% {
      transform: translate(0, 0);
    }
  }
  
  /* Keyframes */
  @keyframes wiggle {
    0%, 7% {
      transform: rotateZ(0);
    }
    15% {
      transform: rotateZ(-10deg);
    }
    20% {
      transform: rotateZ(5deg);
    }
    25% {
      transform: rotateZ(-5deg);
    }
    30% {
      transform: rotateZ(4deg);
    }
    35% {
      transform: rotateZ(-2deg);
    }
    40%, 100% {
      transform: rotateZ(0);
    }
  }
  

.inverse {
    flex-direction: var(--inverse);
}



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

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

ul, ol {
    list-style-type: none;
}

.wrapper {
    max-width: 1300px;
    margin: 0 auto;
}



/* Header */

.header {
    position: static;
    width: 100%;
    max-width: 100%;
    top: 0;
    left: 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); 
    z-index: 1;
}

.header__wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo img {
    max-width: 70px;
}

.header__logo p {
    min-width: 110px;
}

.header__button {
    min-width: fit-content;
    margin-left: auto;
}

.header__list {
    display: flex;
    font-size: 14px;
    gap: 20px;
    align-items: center;
    margin-left: auto;
}

.header__list-item {
    padding: 15px;
    border-radius: var(--border-radius);
    transition: all 0.4s ease;
    background-color: transparent;
    cursor: pointer;
    min-width: fit-content;
}

.header__list-item:hover {
    background-color: var(--accent-color);
}

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 20px;
    height: 18px;
    margin-left: auto;
}

.header__burger span {
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.4s ease-in;
    border-radius: var(--border-radius);}

.header__burger.active span:nth-child(1) {
transform:  translateY(8px) rotate(45deg)
}
.header__burger.active span:nth-child(2) {
opacity: 0;
}
.header__burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg)

}

.header__mobile .header__list {
    flex-direction: column;
}

html {
    scroll-behavior: smooth;
}

.header {
    z-index: 2;
}

.header__mobile-list {
    width: 100%;
    background-color: #fff;
    text-align: center;
    display: none;
}

 .header__mobile-list-item {
    border-bottom: 2px solid var(--accent-color);
    border-radius: none;
    background-color: #fff;
    padding: 10px;
    background-size: 20px 20px;
    background-position: center left;
    background-repeat: no-repeat;
}

.header__mobile-list-item:nth-child(1) {
    background-image: url(image/home.png);
}
.header__mobile-list-item:nth-child(2) {
    background-image: url(image/settings.png);
}
.header__mobile-list-item:nth-child(3) {
    background-image: url(image/question.png);
}
.header__mobile-list-item:nth-child(4) {
    background-image: url(image/price.png);
}
.header__mobile-list-item:nth-child(5) {
    background-image: url(image/info.png);
}
.header__mobile-list-item:nth-child(6) {
    background-image: url(image/contact.png);
}

.header__button {
    font-weight: 700;
    color: var(--accent-color);
    padding: 10px 20px;
    border-radius: var(--border-radius);
        border: 1px solid var(--accent-color);
    transition: all 0.4s ease-in;

}

.header__button:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 8px 2px var(--accent-color);
}

@media (max-width: 1150px) {
    .header__list, .header__button {
        display: none;
    }
    .header__mobile-list {
        display: flex;
        flex-direction: column;
        text-align: left;
        width: fit-content;
        margin: 0 auto;
        padding-left: 50px;
        padding-bottom: 10px;
    }
    .header__mobile-list-item {
        border: none;
        padding-left: 30px;
    }
    .header__logo {
        margin: 0 auto;
    }
}

/* Header end */


/* Main */

.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url(image/bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.main__item {
    max-width: 50%;
}

.main__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.main__item {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.main img {
    max-width: 400px;
    border-radius: var(--border-radius);
    z-index: 1;
}

.main__title {
    font-size: 44px;
    background-color: #fff;
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 40px;
    z-index: 1;
}

.main__subtitle {
    line-height: 140%;
    z-index: 1;
    background-color: #fff;
    padding: 20px;
    border-radius: var(--border-radius);
}

.main__link {
    padding: 10px 20px;
    border-radius: var(--border-radius);
    
    background: linear-gradient(90deg,var(--accent-color),var(--text-color));
    color: #fff;
    display: block;
    max-width: fit-content;
    margin-bottom: 30px;
    text-transform: uppercase;
    z-index: 1;
}



.main {
    position: relative;
}

#particles-js {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

@media (max-width: 1200px) {
    .main {
        padding-top: 0;
    }
    .main__wrapper {
        flex-direction: column;
        padding: 20px;
    }
    .main__item {
        max-width: 100%;
        padding: 50px 10px;
    }

    .main img {
        max-width: 100%;
    }
}

/* Main end */

/* How */

.how {
    padding: 20px;
}

.how__title {
    text-align: center;
    font-size: 40px;
    padding: 20px;
    margin-bottom: 40px;
}

.how__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.how__item {
    max-width: 50%;
    display: flex;
    flex-direction: column;
}

.how__img {
    margin-bottom: 40px;
    border-radius: var(--border-radius);
    border: 2px solid var(--accent-color);
}

.how__text {
    line-height: 140%;
}

.how__selection {
    margin-bottom: 40px;
    font-size: 14px;
    font-weight: 400;
    padding: 40px;
    border: 2px solid var(--accent-color);
    border-radius: var(--border-radius);
    position: relative;
    padding-left: 60px;
    transition: all 0.2s ease-in;
    cursor: pointer;
}

.how__selection.active {
    background-color: var(--text-color);
    color: #fff;
}

.how__selection.active::before {
    background-color: greenyellow;
}

.how__selection::before {
    transition: all 0.2s ease-in;
    content: "1";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: var(--text-color);
    border-radius: var(--border-radius);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.selection2::before {
    content: "2";
}
.selection3::before {
    content: "3";
}
.selection4::before {
    content: "4";
}

@media (max-width: 900px) {
    .how {
        padding: 40px;
    }
    .how__wrapper {
        display: flex;
        flex-direction: column-reverse;
        gap: 0;

    }
    .how__selection {
        padding: 20px;
        font-size: 22px;
        padding-left: 40px;
    }
    .how__selection::before {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    .how__item {
        max-width: 100%;
    }

    .how__img {
        max-width: 100%;
    }
}

/* How end */

/* Benefits */

.benefits__title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.benefits {
    padding: 20px;
}

.benefits__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.benefits__list-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.benefits__img {
    width: 60px;
    height: 60px;
    padding: 16px;
    border-radius: 50%;
    background-image: linear-gradient(to bottom, #fff, #eaeaf6);
}

@media (max-width: 1200px) {
    .benefits__list {
        flex-direction: column;
        gap: 40px;
    }
}
/* Benefits end */

/* Customers */

.customers {
    padding: 20px 0;
    position: relative;
}

#particles-js2 {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    max-width: 100%;
}

section {
    overflow: hidden;
}

.customers__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 40px;
}

.customers__img {
    width: 30px;
    padding: 5px;
    border: 2px solid var(--accent-color);
    height: 30px;
    border-radius: 50%;
}

.customers__title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 80px;
}

.customers__list-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.customers__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5px;
    border-top: 1px solid var(--accent-color);
}


.customers__name {
    font-weight: 700;
    font-size: 18px;
}

@media (max-width: 900px) {
    .customers__list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
.customers__list-item {
    max-width: 400px;
    border: 2px solid var(--accent-color)
}

}

/* Customers end */

/* Partners */

.partners {
    background-color: var(--accent-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    min-height: 80vh;
}

.partners__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partners__img {
    max-width: 200px;
    max-height: 160px;
    margin-bottom: 30px;
}

.partners__title {
    color: #fff;
    font-size: 44px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.partners__name {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 20px;
}

.partners__item {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 20px;
}

.subscribe {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #fff;
    margin: 40px 0;
    padding: 20px 10px;
    flex-wrap: wrap;
}

.subscribe input {
    padding: 8px;
    font-size: 18px;
}

.subscribe__button {
    padding: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius);
    border: none;
    outline: none;
    color: #fff;
    background-color: var(--accent-color);
}

/* Partners end */

/* faq */

.faq {
    padding: 20px;
}

.faq__title {
    font-size: 44px;
    margin-bottom: 20px;
    text-align: center;
}

.faq__item {
    background-color: #fff;
    margin: 0 auto;
    margin-bottom: 40px;
    cursor: pointer;
    padding: 20px;
    padding-bottom: 0;
    transition: all 0.4s ease;
    border-radius: var(--border-radius);
    max-width: 700px;
}

.faq__answer {
    transition: all 0.4s ease, opacity 0.1s linear;
}

.faq__question {
    margin-bottom: 20px;
}


/* faq end */

/* Pricing */

.pricing {
    padding-top: 40px;
}

.pricing__title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 80px;
}

.pricing__subtitle {
    font-size: 22px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.pricing__wrapper {
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 80px;
}

.pricing__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: space-between;
    padding: 20px;
}

.pricing__name {
    text-align: center;
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 50px;
}

.pricing__text {
    border-bottom: 1px solid #eee;
    padding: 10px;
    position: relative;
    padding-left: 30px; 
}

.pricing__text::before {
    content:"";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: greenyellow;
    width: 10px;
    height: 10px;
    border-radius: var(--border-radius);
}

.pricing__price {
    text-align: center;
    font-weight: 700;
    font-size: 42px;
    margin: 30px auto;
}

.pricing__link {
    display: inline-block;
    max-width: 250px;
    width: 100%;
    text-transform: uppercase;
    font-size: 18px;
    border-radius: var(--border-radius);
    background-color: var(--accent-color);
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    margin: 0 auto;

    transition: all 0.2s linear;
}

.pricing__link:hover {
    background-color: greenyellow;
}

.pricing__item {
    transition: all 0.2s ease-in;
    border: 1px solid transparent;
    border-radius: var(--border-radius);
    min-width: 280px;
    max-width: 350px;
}

.pricing__item:hover {
    border-color: var(--accent-color);
    transform: translateY(-10px);
}

@media(max-width: 900px) {
    .pricing__wrapper {
        flex-wrap: wrap;
    }
}

/* Pricing end */

/* Footer */

.footer img {
    max-width: 140px;
}

.footer__top {
    padding-top: 100px;
    border-top: 2px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.footer__bottom {
    border-top: 2px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.footer__list {
    display: flex;
    gap: 15px;
}

@media (max-width: 900px) {
    .footer__bottom {
        flex-direction: column;
    }
    .footer__list {
        flex-direction: column;
        margin-bottom: 30px;
        text-align: center;
    }
}
.footer__link {
    text-transform: uppercase;
    font-size: 12px;
}



.footer__icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding-bottom: 20px;
    flex-wrap: wrap;
}

.footer__icons img {
    max-width: 20px;
}

/* Footer end */

/* Login */

.login__body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(235, 236, 241);
}

.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #fff;
    padding: 20px 15px;
    border-radius: var(--border-radius);
    border: 1px solid #eee;
    min-width: 320px;
}

.reset {
    margin-top: 100px;
}

.form__title {
    font-weight: 400;
    color: #000;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif ;
    font-size: 26px;
    margin-bottom: 40px;
}

input {
    padding: 15px 10px;
    font-size: 18px;
    border: 2px solid #eee;
    border-radius: var(--border-radius);
}

.form button {
    padding: 20px 10px;
    text-align: center;
    background-color: blue;
    border: none;
    outline: none;
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    border-radius: var(--border-radius);
}

.reset {
    text-align: center;
    letter-spacing: 2px;
}

/* Login end */

/* About us */

.about__title {
    text-align: center;
    margin: 40px auto;
    font-size: 42px;
}

.about {
    padding: 40px 15px;
}

.about__text {
    font-size: 22px;
    margin-bottom: 20px;
}
.about__text:first-child, .about__text:last-child {
    font-weight: 700;
}
/* About us end */

/* Contact */

.contact {
    background-color: #eee;
    padding: 20px;
    text-align: center;
    padding-bottom: 40px;
}

.contact__title {
    font-size: 48px;
    margin-bottom: 50px;
}

.contact__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    border-radius: var(--border-radius);
}

.contact__input {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    margin-bottom: 20px;
    border: none;
    border-bottom: 2px solid #eee;
    border-radius: var(--border-radius);
}

.contact__input::placeholder {
    color: var(--text-color)
}

.names {
    display: flex;
    gap: 20px;
    width: 100%;
}

textarea {
    resize: vertical;
    border: none;
}

.contact__button {
    padding: 10px 20px;
    background-color: var(--text-color);
    color: #fff;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    border: none;
    outline: none;
}

.adress {
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    background-color: var(--text-color);
    padding: 20px;
    margin-top: 50px;
    margin: 50px auto;
    border-radius: var(--border-radius);
}

.adress__text {
    padding: 10px;
    background-color: #fff;
    border-radius: var(--border-radius);
}

@media (max-width:900px) {
    .names {
        flex-direction: column;
    }
}

/* Contact end */

/* Other */

.other strong {
    display: block;
}

.other {
    padding: 20px;
}

.other p {
    margin-bottom: 20px;
}

.other strong, .other p {
    margin-left: auto;
    max-width: 800px;
    margin-right: auto;
}

.other__title {
    font-size: 62px;
    width: fit-content;
    margin: 0 auto 40px;
}

/* Other end */

/* Cost */

.cost {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cost__item {
    flex: 1;
    width: 100%;
}

.cost__item:first-child {
    position: relative;
}

.cost__item:first-child::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    box-shadow: 0 10px 7px 0 #000;
    margin: -1px;
}

.target p {
    color: hsla(0,0%,10%,0.6)
}

.target__price {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
}

.target__price span:first-child {
    font-size: 30px;
}

.target__item {
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding: 20px 0;
    max-width: 320px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.target__item p {
    color: #000;
}

.pay {
    padding: 20px;  
}

.card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.card img {
    max-width: 45px;
}

.cost__item {
    padding: 40px;
}

.mail {
    margin-bottom: 20px;
}

.pay {
    border: 2px solid #eee;
    border-radius: var(--border-radius);
}

.card {
    margin-bottom: 20px;

}

.inputs input:first-child {
    width: 100%;
    border: 1px solid #eee;
}

.inputs input {
    padding: 10px;
    border: 0;
    border-radius: 0;
}

.inputs input {
    font-size: 14px;
}

.inputs input:nth-child(2) {
    margin: 0;
    padding: 10px;
    width: 49%;
    border-bottom: 1px solid #eee;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
}
.inputs input:nth-child(3) {
    margin: 0;
    padding: 10px;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
    width: 49%;
}

.inputs {
    margin-bottom: 40px;
}

.pay__subtitle {
    color: rgb(188, 188, 188);
    margin-bottom: 10px;

}

.pay {
    max-width: 320px;
}

.pay input {
    padding: 10px;
    font-size: 14px;
}

.pay__button {
    background-color: blue;
    color: #fff;
    border-radius: var(--border-radius);
    display: block;
    margin: 40px auto;
    width: 100%;
    border: none;
    outline: none;
    padding: 20px 10px;
    text-transform: uppercase;
    font-size: 18px;
}

.last {
    text-align: center;
    font-size: 12px;
}

.cost__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mail {
    margin-right: 89px;
}


@media (max-width: 900px) {
    .cost {
        flex-direction: column;
    }
    .inputs input {
        width: 100% !important;
        margin-bottom: 10px !important;
        border: 1px solid #eee;
    }
    .mail {
        margin-right: 0;
    }
}

/* Cost end */

/* Cookie */

.cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-top: 1px solid var(--accent-color);
    transition: all 0.2s ease-in;
    z-index: 10;
}

.cookie.hidden {
    transform: translateY(100%)
}

.cookie button {
    padding: 10px 20px;
    background-color: var(--accent-color);
    border:none;
    color: #fff;
    border-radius: var(--border-radius);
}

/* Cookie end */

/* Screen */

.screen__wrapper {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    padding: 40px;
}
.screen__img {
    max-width: 500px;
    width: 100%;
    border: 1px solid var(--accent-color);
    border-radius: 15px;
    animation: var(--animation);
}
.screen__title {
    text-align: center;
    margin: 40px 0;
    font-size: 42px;
}
/* Screen end */

.iframe__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
