/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
* {
    box-sizing: border-box;
}
strong, b {
    font-weight: 700;
}
html, body {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 30px;
    color: #000;
}
.wrap {
    max-width: 1620px;
    margin: 0 auto;
    padding: 0 100px;
    width: 100%;
    display: block;
}
.row {
    display: flex;
    margin: 0 -40px;
}
.col {
    margin: 0 40px;
}
.title-lvl-1 {
    font-size: 60px;
    line-height: 1.5;
    font-weight: 700;
}
.title-lvl-2 {
    font-size: 30px;
    line-height: 40px;
}
@media screen and (max-width: 1440px) {
    .wrap {
        padding: 0 50px;
    }
}
@media screen and (max-width: 1280px) {
    .wrap {
        padding: 0 15px;
    }
    .row {
        margin: 0 -15px;
    }
    .col {
        margin: 0 15px;
    }
    .title-lvl-1 {
        font-size: 40px;
    }
    .title-lvl-2 {
        font-size: 22px;
        line-height: 34px;
    }
}
@media screen and (max-width: 768px) {
    html, body {
        font-size: 16px;
        line-height: 28px;
    }
    .row {
        display: flex;
        flex-direction: column;
        margin: 0;
    }
    .col {
        margin: 0;
    }
    .title-lvl-1 {
        font-size: 30px;
    }
    .title-lvl-2 {
        font-size: 20px;
        line-height: 28px;
    }
}
a {
    color: #FF6D00;
}
.btn {
    position: relative;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 26px;
    text-align: center;
    padding: 22px 40px;
    background: #FF6D00;
    color: #fff;
    outline: 0;
    border: 0;
    border-radius: 25px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s linear;
}
.btn:hover {
    background: #da5d00;
}
@media screen and (max-width: 1024px) {
    .btn {
        font-size: 20px;
        line-height: 20px;
        padding: 18px 40px;
        border-radius: 20px;
    }
}
.nav-list {
    display: flex;
}
.nav-list-item {
    padding: 0 15px;
}
.nav-list-item a {
    display: block;
    text-decoration: none;
    line-height: 1;
    margin: 0 auto;
    position: relative;
}

/* header */
.show-onload {
    transform: scale(0);
    transform-origin: 50%;
    transition: transform 0.5s ease-in;
}
.show-onload.shown {
    transform: scale(1);
}
.header {
    background: #fff;
    padding: 40px 0;
    transition: padding 0.3s ease-in, box-shadow 0.3s ease;
}
.header.scroll {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.5);
}
.header .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-logo {
    display: block;
    line-height: 1;
}
.header-logo img {
    display: block;
    width: 100%;
    max-width: 369px;
    transition: max-width 0.3s ease-in;
}
.header.scroll .header-logo img {
    max-width: 220px;
}
.header .nav-list-item {
    padding: 0 0 0 70px;
}
.header .nav-list-item a {
    display: block;
    color: #000;
    text-decoration: none;
    line-height: 1;
    margin: 0 auto;
    position: relative;
}
.nav-list a[class*="highlight-first"] {
    font-weight: 700;
}
.nav-list a[class*="highlight-first"]:before {
    display: block;
    content: '';
    position: absolute;
    left: -18px;
    top: 0;
    width: 13px;
    height: 15px;
    background-image: url('../img/nav-marker.svg');
    background-position: center;
    background-repeat: no-repeat;
}
.menu-btn {
    display: none;
}
.menu-btn {
    border: none;
    display: none;
    position: absolute;
    top: 32px;
    right: 17px;
    width: 20px;
    height: 16px;
    padding: 0;
    z-index: 1002;
    transition: top 0.3s ease-in;
    cursor: pointer;
}
.menu-btn span {
    display: block;
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: 0.3s;
}
.menu-btn span:first-child {
    top: 7px;
}
.menu-btn span:last-child {
    top: 14px;
}
.nav-opened .menu-btn span {
    transform: rotate(45deg);
    top: 7px;
}
.nav-opened .menu-btn span:first-child {
    transform: rotate(-45deg);
}
.nav-opened .menu-btn span:nth-child(2) {
    transform: rotate(-135deg);
}
@media (max-width: 1024px) {
    .header, .header.scroll {
        padding: 15px 0;
        background: #fff;
        box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.5);
    }
    .header .header-logo img {
        max-width: 220px;
    }
    .menu-btn {
        display: block;
    }
    .header-nav {
        -webkit-animation: slide-in-top 0.3s both;
        animation: slide-in-top 0.3s both;
        position: absolute;
        background-color: #ffffff;
        left: 0;
        right: 0;
        top: 80px;
        height: 100%;
        min-height: calc(100vh - 80px);
        text-align: center;
        overflow-y: auto;
        z-index: 1001;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }
    .nav-opened .header-nav {
        transform: translate(0, 0);
    }
    .header-nav .nav-list {
        display: block;
    }
    .header-nav .nav-list-item {
        margin: 30px 0;
        padding: 5px 0 5px;
    }
    .header-nav .nav-list-item a {
        display: block;
    }
    .header-nav .nav-list-item a::before, .header-nav .nav-list-item a::after {
        display: none;
    }
}
@media screen and (min-width: 320px) {
    .header {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 10;
    }
}
@media screen and (min-width: 768px) {}

/* 
.menu-btn {display: none;position: absolute;right: 20px;top: 31px;cursor: pointer;height: 15px;padding: 6px 10px;}
.menu-btn span,
.menu-btn:before,
.menu-btn:after {display: block; width: 20px; height: 1px; background: #fff; transition: all 0.3s ease;}
.menu-btn:before,
.menu-btn:after {content:'';position: absolute;left: 10px;right:0;}
.menu-btn:before {top:0;}
.menu-btn:after {bottom: 0;}

@media screen and (max-width: 768px) {
    .menu-btn {display: flex; justify-content: center; align-items: center;}
    .menu-btn.active span {opacity: 0;}
    .menu-btn.active:before {transform: rotateZ(36deg);transform-origin: 0 0;width: 23px;}
    .menu-btn.active:after {transform: rotateZ(-39deg);transform-origin: 0 0;width: 23px;}
    .nav-list {position:fixed;top: 77px;left:0;right:0;background-color:#000;border-top: 1px solid #555;z-index: 0;display: block; transform: translateX(100%); transition: all 0.3s ease;}
    .nav-list.active {transform: translateX(0);}
} */


/* footer */

.footer {
    background-color: #000;
    padding: 75px 0 55px;
}
.footer--shift {
    margin-top: -25px;
}
.footer .wrap {
    color: #fff;
    display: block;
}
.footer-top {}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-logo {
    display: inline-block;
    line-height: 1;
}
.footer-logo img {
    display: block;
}
.copyright {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #FFFFFF;
    margin-top: 26px;
}
.footer-nav {
    margin-top: 26px;
}
.footer-nav .nav-list-item {
    padding: 0 30px;
}
.footer-nav .nav-list-item:last-child {
    padding-right: 0;
}
.footer-nav a {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #fff;
}
@media (max-width: 1024px) {
    .footer-top {
        text-align: center;
    }
    .footer-logo {
        margin: 0 auto;
    }
    .footer-bottom {
        display: flex;
        flex-direction: column;
    }
    .copyright {
        order: 2;
        margin-top: 10px;
        font-size: 16px;
    }
    .footer-nav {
        margin-top: 10px;
    }
    .footer-nav .nav-list-item, .footer-nav .nav-list-item:last-child {
        padding: 10px 15px;
    }
}
@media (max-width: 768px) {
    .footer {
        padding: 35px 0 30px
    }
    .footer-logo {
        max-width: 220px;
    }
    .footer-logo img {
        display: block;
        width: 100%;
    }
    .footer-nav .nav-list {
        display: block;
    }    
    .footer-nav a {
        font-size: 16px;
        text-align: center;
    }
    .copyright {
        text-align: center;
    }
}

/* INTRO SECTION */

.section-intro {
    padding: 165px 0 75px;
}
.section-intro .wrap {
    position: relative;
}
.section-intro .row {
    align-items: center;
}
.section-intro .col-info {
    max-width: 585px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    flex-grow: 0;
    flex-shrink: 0;
    padding: 10px 0 52px;
}
.section-intro .col-pic {
    margin-left: 0;
    margin-right: 0;
}
.section-intro .title {}
.section-intro .btn {
    margin-top: 65px;
    max-width: 345px;
    width: 100%;
}
.section-intro img {
    display: block;
    width: calc(100% + 103px);
    margin-left: -31px;
    height: auto;
}
@media screen and (max-width: 1680px) {
    .section-intro {
        padding: 145px 0 55px;
    }
    .section-intro img {
        width: 100%;
        margin-left: 0px;
    }
}
@media screen and (max-width: 1280px) {
    .section-intro {}
    .section-intro .wrap {}
    .section-intro .col-info {
        max-width: 390px;
    }
    .section-intro .col-pic {
        margin: 0 15px;
    }
    .section-intro .title {}
    .section-intro .btn {
        margin-top: 40px;
        max-width: 280px;
    }
    .section-intro img {}
}
@media screen and (max-width: 768px) {
    .section-intro {
        padding: 100px 0 0;
    }
    .section-intro .col-info {
        max-width: 100%;
        padding-bottom: 0;
    }
    .section-intro .col-pic {
        margin: 0 15px;
    }
    .section-intro .btn {
        margin: auto;
        margin-top: 310px;
        max-width: 280px;
    }
    .section-intro img {
        width: 300px;
        position: absolute;
        bottom: 90px;
        left: calc(50% - 150px);
    }
}

/* WHO WE ARE SECTION */

.section-about {
    padding: 20px 0 50px;
}
.section-about .title {
    margin-bottom: 18px;
}
.section-about p {
    margin-top: 20px;
}
.section-about .col {
    flex-basis: 50%;
}
@media screen and (max-width: 768px) {
    .section-about {
        padding: 50px 0 0;
    }
    .section-about .title {
        margin-bottom: 0px;
    }
    .section-about p {
        margin-top: 12px;
    }
}

/* SERVICE SECTION */

.section-services {
    padding: 97px 0 50px;
}
.section-services .row {}
.section-services .col {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 50%;
}
.section-services .title-lvl-1 {}
.section-services .subtitle {
    margin-top: 30px;
    letter-spacing: -0.2px;
}
.service-item {
    padding: 80px 45px;
    margin-top: 82px;
    position: relative;
}
.service-item .title {}
.service-item p {
    margin-top: 15px;
}
.service-item .decor {
    position: absolute;
}
.service-ctv {
    background-color: #CC98EB;
    border-bottom-left-radius: 100px;
    border-top-right-radius: 100px;
}
.service-ctv .decor {
    top: -39px;
    right: 95px;
}
.service-cpa {
    background-color: #F2DDFF;
    border-bottom-left-radius: 100px;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
}
.service-cpa .decor {
    top: -30px;
    right: 92px;
}
.service-consult {
    padding-top: 133px;
    background-color: #F2DDFF;
    border-bottom-right-radius: 100px;
    border-top-right-radius: 100px;
    border-top-left-radius: 100px;
}
.service-consult .decor {
    top: -64px;
    right: 41px;
}
.service-seo {
    padding-top: 133px;
    background-color: #CC98EB;
    border-bottom-right-radius: 100px;
    border-top-left-radius: 100px;
}
.service-seo .decor {
    top: -36px;
    right: 70px;
}
@media screen and (max-width: 1280px) {
    .service-item .decor {
        max-width: 250px
    }
}
@media screen and (max-width: 1024px) {
    .service-item {
        padding: 70px 45px;
    }
    .service-item .decor {
        max-width: 150px
    }
}
@media screen and (max-width: 768px) {
    .section-services {
        padding: 50px 0 0;
    }
    .section-services .subtitle {
        margin-top: 12px;
    }
    .service-item {
        padding: 55px 35px;
        margin-top: 60px;
    }
    .service-ctv {
        border-bottom-left-radius: 75px;
        border-top-right-radius: 75px;
    }
    .service-ctv .decor {
        top: -38px;
        right: 60px;
    }
    .service-cpa {
        border-bottom-left-radius: 75px;
        border-top-left-radius: 75px;
        border-bottom-right-radius: 75px;
    }
    .service-cpa .decor {
        top: -30px;
        right: 60px;
    }
    .service-consult {
        border-bottom-right-radius: 75px;
        border-top-right-radius: 75px;
        border-top-left-radius: 75px;
    }
    .service-consult .decor {
        top: -52px;
        right: 50px;
    }
    .service-seo {
        border-bottom-right-radius: 75px;
        border-top-left-radius: 75px;
    }
    .service-seo .decor {
        top: -43px;
        right: 60px;
    }
}

/* CONTACT SECTION */

.section-contact {
    padding: 105px 0 0;
    position: relative;
}
.section-contact .row {
    justify-content: space-between;
}
.section-contact .col-left {
    flex-grow: 1;
    flex-shrink: 1;
    max-width: 780px;
    display: flex;
    flex-direction: column;
}
.section-contact .col-right {
    flex-basis: 520px;
    width: 520px;
    flex-shrink: 0;
    padding: 32px 0 70px;
}
.section-contact .title {}
.section-contact .subtitle {
    margin-top: 18px;
}
.section-contact p {
    margin: 26px 0;
}
.section-contact .decor {
    display: block;
    max-width: 716px;
    margin-top: 28px;
    margin-left: -67px;
}
.section-contact .decor {
    display: block;
    width: 716px;
}
.section-contact--short {
    padding-top: 50px;
}
.section-contact--short .wrap {
    position: relative;
}
.section-contact--short .col {}
.section-contact--short .col-left {}
.section-contact--short .section-decor {
    width: 716px;
    margin-top: 37px;
}
.section-contact--short .col-right {
    max-width: 670px;
    flex-basis: 670px;
    padding-top: 45px;
}
.section-contact--short p {
    margin-top: 12px;
}
@media (max-width: 1680px) {
    .section-contact--short .decor {
        width: 495px;
        position: absolute;
        bottom: 0;
        height: auto;
    }
}
@media (max-width: 1440px) {
    .section-contact .decor {
        width: 495px;
        height: auto;
        margin-top: auto;
    }
}
@media (max-width: 1024px) {
    .section-contact .decor {
        width: 395px;
        margin-left: 0;
        position: absolute;
        bottom: 0;
        left: -30px;
    }
    .section-contact .col-right {
        flex-basis: 50%;
    }
    .section-contact .container-captcha {
        transform: scale(0.9);
        transform-origin: 0 0;
    }
}
@media (max-width: 768px) {
    .section-contact {
        padding: 50px 0 0;
    }
    .section-contact .decor {
        display: none
    }
    .section-contact .col-right {
        flex-basis: 100%;
        width: 100%;
        padding: 20px 0 40px;
    }
    .section-contact .subtitle {
        margin-top: 12px;
    }
    .section-contact p {
        margin: 10px 0;
    }
}

/* FORM */

.form {
    width: 100%;
}
.form-row {
    display: flex;
    margin: 0 -10px 5px;
}
.form-row .col {
    margin: 0 10px 35px;
}
.form-row .col.col-full {
    width: 100%;
    flex-basis: 100%;
}
.form-row .col.col-half {
    width: 50%;
}
.form-row .col.col-captcha {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.form .control-label {
    display: block;
    position: absolute;
    width: 60px;
    height: 64px;
    background-repeat: no-repeat;
    background-color: transparent !important;
    background-position: center;
}
.control-label-name {
    background-image: url('../img/icon-user.svg') !important;
}
.control-label-email {
    background-image: url('../img/icon-mail.svg') !important;
}
.control-label-message {
    background-image: url('../img/icon-message.svg') !important;
}

.form .form-control {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 17px 12px 17px 55px;
    background-color: #fff;
    border: 1px solid #CC98EB;
    border-radius: 25px;
    font-size: 18px;
    line-height: 30px;
    color: #000;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    font-family: "Poppins", sans-serif;
    background-repeat: no-repeat;
    background-color: transparent !important;
    background-position: 20px 24px;
    transition: background 1000s ease;
}

.form textarea.form-control {
    height: 195px;
}
.has-error .form-control,
.form-control.invalid {
    border-color: #FB103A;
    background-color: #FFE7E7;
}
.form .btn {
    width: 100%;
}
.form .button:hover {
    opacity: 0.8
}
.form-note {
    color: #000;
    font-size: 14px;
}
.form-note .required {
    color: red;
    font-style: normal;
}
.alert-msg {
    position: absolute;
    font-weight: 500;
    font-size: 14px;
    color: #FB103A;
    padding-left: 20px;
}
.container-captcha {}
.form-note {}
.button {}
.success-message {}
.message {}
.icon {}
.error-message {
    display: none;
    color: #f74e5c;
    font-size: 12px;
}
.form-control.invalid+.error-message {
    display: block
}
@media screen and (max-width: 768px) {
    .form .row {
        flex-wrap: wrap;
    }
    .form-row .col {
        margin-bottom: 16px;
    }
    .form .col.col-half {
        width: 100%;
    }
    .form .form-control {
        padding: 9px 38px 9px;
        font-size: 16px;
        line-height: 1;
        background-position: 14px 14px;
    }
    .form textarea.form-control {
        padding-top: 12px;
        height: 100px;
    }
    .form .control-label {
        height: 44px;
        width: 46px;
    }
    .form-row .col.col-captcha {
        flex-direction: column;
        justify-content: center;
    }
    .col-captcha .container-captcha {
        margin: auto;
        transform-origin: center;
    }
}


/* LEGACY SECTION */

.section-legacy {
    padding: 200px 0 50px;
}
.section-legacy .title {}
.section-legacy .title+p {
    margin-top: 40px;
}
.section-legacy .col {
    flex-basis: 50%;
}
.legacy-item {
    margin-top: 50px;
}
.legacy-item--mg-sm {
    margin-top: 20px;
}
.section-legacy h3 {
    font-weight: 400;
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 20px;
}
.section-legacy p {}
.section-legacy ul, .section-legacy ol {
    list-style: initial;
    list-style-position: outside;
    padding-left: 34px;
}
.section-legacy li {
    margin-top: 20px;
}
@media (max-width: 1280px) {
    .section-legacy {
        padding: 160px 0 20px;
    }
}
@media (max-width: 1024px) {
    .section-legacy {
        padding-top: 120px;
    }
}
@media (max-width: 768px) {
    .section-legacy {
        padding-top: 110px;
        padding-bottom: 0;
    }
    .section-legacy h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    .legacy-item {
        margin-top: 30px;
    }
}

/* MODAL */

.modal-open {
    overflow: hidden;
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}
.modal-backdrop {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(149,149,149, 0.7);
}
.modal-dialog {
    position: relative;
    width: 100%;
    max-width: 975px;
    margin: 50px auto 0;
    pointer-events: none;
    z-index: 2;
}
.modal.show .modal-dialog {
    transform: none;
}
.modal-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border-radius: 50px;
    outline: 0;
    padding: 75px;
}
.modal-info {
    margin-left: 65px;
}
.modal-info p.title {
    margin-top: 0;
}
.modal-info p {
    margin-top: 18px;
}
.modal-info .btn {
    margin-top: 46px;
    width: 100%;
    max-width: 340px;
}
.modal .close {
    display: block;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0);
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}
.modal .close span {
    display: block;
    width: 21px;
    height: 2px;
    background: #C6C6C6;
    position: absolute;
    transform-origin: center;
    top: 20px;
    left: 10px;
    transition: background 0.3s ease-in;
}
.modal .close span:first-child {
    transform: rotate(-45deg);
}
.modal .close span:last-child {
    transform: rotate(45deg);
}
.modal .close:hover span {
    background: #8d8d8d;
}
@media (max-width: 1024px) {
    .modal-dialog {
        max-width: 90%;
    }
    .modal-decor {
        flex-shrink: 0;
        width: 100%;
        max-width: 150px;
    }
    .modal-decor img {
        width: 100%;
    }
    .modal-info {
        margin-left: 40px;
    }
}
@media (max-width: 768px) {
    .modal-dialog {
        max-width: 340px;
    }
    .modal-content {
        flex-direction: column;
        padding: 35px;
    }
    .modal-info {
        margin-left: 0;
        margin-top: 10px
    }
    .modal-info .btn {
        margin-top: 20px;
    }
}

/* COOKIE POPUP */

.popup-cookie {
    display: block;
    position: fixed;
    bottom: -100%;
    right: 0;
    background-color: #23262b;
    color: #fff;
    width: 100%;
    z-index: 1002;
    transition: bottom .8s;
    overflow: hidden;
}
.popup-cookie .close {
    display: block;
    width: 22px;
    height: 22px;
    position: absolute;
    top: -32px;
    right: 100px;
    cursor: pointer;
    z-index: 10;
}
.popup-cookie .close:before, .popup-cookie .close:after {
    display: block;
    content: '';
    height: 100%;
    width: 1px;
    transform: rotateZ(45deg);
    position: absolute;
    top: 0;
    left: 50%;
    border-left: 1px solid #fff;
}
.popup-cookie .close:after {
    transform: rotateZ(-45deg);
}
.popup-cookie.show {
    bottom: 0;
}
.popup-cookie .popup-inner {
    padding: 60px 0;
}
.popup-content .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.popup-content .info {
    margin-right: 80px;
}
.popup-content .info p {
    font-weight: 400;
    font-size: 30px;
    line-height: 40px;
}
.popup-content .info a {}
.popup-cookie .btns-wrapper {
    flex: 1 0 345px;
}
.popup-cookie .btn {
    width: 100%;
    max-width: 345px;
}
@media (max-width: 1440px) {
    .popup-cookie .close {
        right: 50px;
    }
    .popup-cookie .popup-inner {
        padding: 48px 0;
    }
    .popup-content .info p {
        font-size: 24px;
        line-height: 36px;
    }
}
@media (max-width: 1280px) {
    .popup-cookie .close {
        right: 15px;
    }
    .popup-cookie .btns-wrapper {
        flex-basis: 280px;
    }
}
@media (max-width: 767px) {
    .popup-content .wrap {
        display: block;
    }
    .popup-cookie .popup-inner {
        padding: 48px 0 30px;
    }
    .popup-content .info {
        margin: 0;
    }
    .popup-content .info p {
        font-size: 18px;
        line-height: 24px;
    }
    .popup-cookie .btns-wrapper {
        margin-top: 26px;
        text-align: center;
    }
    .popup-cookie .btn {
        max-width: 280px
    }
}
@media (max-width: 575px) {}