/*
Theme Name: OhMyCloud
Theme URI: https://ohmycloud.io/
Author: Dimitry Wolotko
Author URI: https://justpage.pl
Description: Our default theme for OMC website.
Version: 1.1
Requires at least: 5.0
Tested up to: 5.4
Requires PHP: 7.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
@font-face {
    font-family: 'HelveticaNeueCyr';
    src: local('HelveticaNeueCyr-Roman'),
        url('fonts/subset-HelveticaNeueCyr-Roman.woff2') format('woff2'),
        url('fonts/subset-HelveticaNeueCyr-Roman.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
*
{
    padding:0;
    margin:0;
    transition: all .3s;
}
:root
{
    --font-black: #000;
    --font-white: #fff;
    --background-black: #000;
    --background-white: #fff;
}
body
{
    min-height:100vh;
    /* padding-bottom: 100vh; */
}
.bg-white
{
    background-color: var(--background-white);
}
.hide-desktop
{
    display: none;
}
@media only screen and (max-width: 992px)
{
    .hide-desktop
    {
        display: block;
    }
}
body.color-scheme-1
{
    background: linear-gradient(180deg, #FBFFBE -1.32%, #B9FFBB 30.56%, #A5FFEC 58.08%, #C4CBFF 98.68%);
}
body.color-scheme-2
{
    background: linear-gradient(180deg, #A5FFEC -1.32%, #C4CBFF 34.61%, #FBFFBE 64.82%, #B9FFBB 98.68%);
}
body.color-scheme-3
{
    background: linear-gradient(180deg, #B9FFBB -1.32%, #A5FFEC 32.01%, #C4CBFF 66.33%, #FBFFBE 98.68%);
}
body.color-scheme-4
{
    background: linear-gradient(180deg, #C4CBFF -1.32%, #FBFFBE 32.53%, #B9FFBB 66.9%, #A5FFEC 98.68%);
}
header
{
    max-width:1360px;
    padding:36px 40px 20px 40px;
    margin-left: auto;
    margin-right: auto;
}
header
{
    display: grid;
    grid-template-columns: 280px 1fr 275px;
    font-family: 'Onest', sans-serif;
}
header .logo
{
    width:280px;
    height:57px;
    display: inline-grid;
    order:0;
}
header .logo svg
{
    width:100%;
    height:auto;
}
header nav
{
    order:1;
}
header nav > ul
{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    list-style: none;
}
header nav > ul > li
{
    height:57px;
    display: inline-grid;
    position: relative;
}
header nav > ul > li > span > a
{
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    justify-content: center;
    align-content: center;
    display: grid;
    color:var(--font-black);
    border:3px solid var(--background-black);
    border-right: 0;
    background-color: transparent;
    height: 51px;
}
header nav > ul > li.hover > span > a,
header nav > ul > li > span > a:hover
{
    color:var(--font-black);
    background-color: var(--background-white);
}
header a.book-a-call
{
    order:2;
    background-color: var(--background-white);
    display: inline-grid;
    height:51px;
    justify-content: center;
    align-content: center;
    text-decoration: none;
    color:var(--font-black);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 16px;
    border: 3px solid var(--background-black);
}
header a.book-a-call:hover
{
    color:var(--font-white);
    background-color: var(--background-black);
}
header nav > ul > li .dropdown-menu
{
    opacity: 0;
    position: absolute;
    z-index: -1;
    top: 100%;
    left:0;
    right:-3px;
    list-style: none;
    background-color: var(--background-white);
    border: 3px solid var(--background-black);
    border-top:0;
    padding:15px 12px;
    font-family: 'Roboto', sans-serif;
}
header .close-menu
{
    display: none;
}
@media only screen and (min-width: 993px)
{
    header .close-menu
    {
        display: none !important;
    }
}
@media only screen and (max-width: 992px)
{
    header nav > ul > li .dropdown-menu
    {
        width:calc(100vw - 20px);
        border-top:1px solid var(--background-black);
    }
}
header nav > ul > li .dropdown-menu::before 
{
    content: ".";
    position: absolute;
    bottom: -23px;
    background-color: transparent;
    background-image: url(images/border-bottom-center.png);
    background-repeat: repeat-x;
    left: 16px;
    /* right: 12px; */
    right: 0;
    text-indent: -9999px;
    height: 20px;
}
header nav > ul > li .dropdown-menu::after
{
    content: ".";
    position: absolute;
    bottom: -23px;
    /* background: url('images/border-bottom-left.png') left bottom no-repeat, url('images/border-bottom-right.png') right bottom no-repeat; */
    background: url('images/border-bottom-left.png') left bottom no-repeat;
    background-color: transparent;
    left: 0;
    right: 0;
    text-indent: -9999px;
    height: 20px;
}
@media only screen and (max-width: 992px)
{
    header nav > ul > li .dropdown-menu::before
    {
        left:8px;
    }
    header nav > ul > li .dropdown-menu::before,
    header nav > ul > li .dropdown-menu::after
    {
        height: 10px;
        background-size: 8px;
        bottom: -11px;
    }
}
@media only screen and (max-width: 1200px) 
{
    header nav > ul > li .dropdown-menu
    {
        right:calc(-100% - 3px);
    }
}
header nav > ul > li.hover .dropdown-menu
{
    opacity: 1;
    z-index: 2;
}
@media only screen and (max-width: 992px)
{
    header nav > ul > li.hover .open-menu
    {
        display: none;
    }
    header nav > ul > li.hover .close-menu
    {
        display: grid;
    }
}
header nav > ul > li .dropdown-menu li
{
    padding-bottom: 7px;
}
header nav > ul > li .dropdown-menu b
{
    display: inline-block;
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: 30px;
    text-transform: uppercase;
    cursor: default;
}
header nav > ul > li .dropdown-menu a
{
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    text-decoration: underline;
    color: var(--font-black);
    display: inline-block;
    padding-left: 10px;
}
header nav > ul > li .dropdown-menu a:hover
{
    text-decoration: none;
}
header nav > ul > li .dropdown-menu li:last-child
{
    padding-bottom: 0;
}
/* header nav > ul > li .dropdown-menu li:last-child
{
    position:absolute;
    top:100%;
    left: 0;
    right: 0;
    margin-top:3px;
    padding:0;
    display: grid;
    align-items: start;
}
header nav > ul > li .dropdown-menu li:last-child svg
{
    width:100%;
    height:auto;
} */
@media only screen and (max-width: 992px) 
{
    header .book-a-call
    {
        order:1;
    }
    header nav
    {
        order:2;
    }
    header
    {
        grid-template-columns: 1fr 1fr;
        padding: 10px 10px 15px 10px;
    }
    header nav
    {
        grid-column: 1 / -1;
    }
    header nav > ul > li:last-child > span > a
    {
        border-right: 3px solid var(--background-black);
    }
    header .logo
    {
        width: auto;
        background-color: var(--background-black);
        height: auto;
    }
    header .logo svg
    {
        max-width: 290px;
        height:auto;
        max-height:40px;
        width: auto;
    }
    header a.book-a-call
    {
        border-bottom: 0;
        height: 100%;
        background-color: var(--background-white);
        color:var(--font-black);
    }
    header a.book-a-call:hover
    {
        background-color: var(--background-black);
        color: var(--font-white);
    }
    header *
    {
        border-width: 1px !important;
        font-size: 14px !important;
    }
    header nav > ul > li > span > a
    {
        height:41px;
    }
    header nav > ul > li
    {
        height: 41px;
    }
}
@media only screen and (max-width: 767px)
{
    header
    {
        grid-template-columns: 3fr 2fr;
    }
}
main
{
    max-width: 1360px;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
}
@media only screen and (max-width: 992px)
{
    main
    {
        padding-left: 10px;
        padding-right: 10px;
    }
}
.welcome-title
{
    max-width:100%;
    display: grid;
    grid-template-columns: repeat(1fr);
    grid-auto-rows: 1fr;
    margin-bottom:32px;
}
@media only screen and (max-width: 992px)
{
    .welcome-title
    {
        margin-bottom: 15px;
    }
}
.welcome-title .welcome-title-line 
{
    font-size: max(40px, 11vw);
    font-family: 'Onest', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25);
    line-height: 0.8;
    white-space: nowrap;
    display: flex;
}
@media only screen and (max-width: 992px)
{
    .welcome-title .welcome-title-line
    {
        text-shadow: none;
    }
}
.welcome-title .welcome-title-line i
{
    display: inline-block;
    width: 100%;
    background-color: var(--background-black);
}
.welcome-title .welcome-title-line.left div
{
    display: inline-block;
    background-color: transparent;
}
.welcome-title .welcome-title-line.left i
{
    margin-left:20px
}
.welcome-title .welcome-title-line.right
{
    text-align: right;
}
.welcome-title .welcome-title-line.right div
{
    padding-right: 0;
    display: inline-block;
}
.welcome-title .welcome-title-line.right i
{
    margin-right: 20px
}
@media only screen and (max-width: 992px)
{
    .welcome-title .welcome-title-line.right i
    {
        margin-right: 10px
    }
    .welcome-title .welcome-title-line.left i
    {
        margin-left: 10px
    }
}
.welcome-title .welcome-title-line.right.icon i,
.welcome-title .welcome-title-line.left.icon i
{
    margin:0 !important;
}
.welcome-title .welcome-title-line.center
{
    text-align: center;
}
.welcome-title .welcome-title-line.center div
{
    padding:0 20px;
    position: relative;
    left:-5%;
}
/* @media only screen and (max-width: 375px)
{
    .welcome-title .welcome-title-line
    {
        font-size: 32px;
    }
} */
@media only screen and (min-width: 1350px)
{
    .welcome-title .welcome-title-line
    {
        font-size: 170px;
    }
}
.welcome-title .welcome-title-line svg
{
    height: 100%;
    width: 100%;
}
.welcome-title .welcome-title-line span
{
    position: relative;
    top:1vw;
}
@media only screen and (min-width: 1350px)
{
    .welcome-title .welcome-title-line span
    {
        top:10px;
    }
}
.hero
{
    /* height:23vw;
    max-height: 336px;
    min-height: 100px; */
    border:3px solid var(--background-black);
    margin-bottom: 36px;
    text-align: center;
    position:relative;
	line-height: 0;
}
@media only screen and (max-width: 992px)
{
    .hero
    {
        margin-bottom: 15px;
        border-width:1px;
    }
}
.hero svg,
.hero img,
.hero object
{
    max-width: 80%;
    height:auto;
}
.hero i
{
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
}
.two-columns
{
    display: grid;
    grid-template-columns: 590fr 700fr;
    gap:60px;
    margin-bottom: 50px;
}
@media only screen and (max-width: 1300px)
{
    .two-columns
    {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}
@media only screen and (max-width: 992px)
{
    .two-columns
    {
        display: block;
        margin-bottom: 30px;
    }
}
.two-columns blockquote
{
    border:3px solid var(--background-black);
    background-color: var(--background-white);
    padding:60px 56px;
    color: var(--font-black);
    text-align: justify;
    font-family: 'HelveticaNeueCyr', Helvetica, sans-serif;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
}
@media only screen and (max-width: 992px)
{
    .two-columns blockquote
    {
        font-size: 12px;
        line-height: 18px;
        padding: 10px;
        border-width: 1px;
    }
}
.two-columns blockquote img
{
    display: block;
    max-width: 381px;
    height:auto;
    margin:0 auto;
    padding-top:26px;
    padding-bottom: 31px;
}
@media only screen and (max-width: 992px)
{
    .two-columns blockquote img
    {
        max-width: 235px;
        padding-top: 38px;
        padding-bottom: 10px;
    }
}
.two-columns .content
{
    padding:20px 0;
}
@media only screen and (max-width: 992px)
{
    .two-columns .content
    {
        padding:0;
        margin-bottom: 36px;
    }
}
@media only screen and (max-width: 767px)
{
    .two-columns .content
    {
        margin-bottom: 0;
    }
}
.two-columns .content p,
.two-columns .content ul
{
    color: var(--font-black);
    text-align: justify;
    font-family: 'HelveticaNeueCyr', Helvetica, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    padding-bottom: 36px;
}
.two-columns .content ul li
{
    padding-bottom: 36px;
}
.two-columns .content ul li:last-child
{
    padding-bottom: 0 !important;
}
.two-columns .content ul
{
    padding-left: 20px;
}
.two-columns .content *:last-child
{
    padding-bottom: 0;
}
@media only screen and (max-width: 992px)
{
    .two-columns .content p,
    .two-columns .content ul,
    .two-columns .content ul li
    {
        font-size: 12px;
        padding-bottom: 18px !important;
    }
    .two-columns .content *:last-child
    {
        padding-bottom: 0 !important;
    }
}
.omc-bottom
{
    position: relative;
}

.omc-bottom::before
{
    content:".";
    position: absolute;
    bottom:-23px;
    background-color: transparent;
    background-image: url('images/border-bottom-center.png');
    background-repeat: repeat-x;
    left:16px;
    /* right:12px; */
    right:0;
    text-indent: -9999px;
    height:20px;
}
.omc-bottom::after
{
    content:".";
    position: absolute;
    bottom:-23px;
    /* background: url('images/border-bottom-left.png') left bottom no-repeat, url('images/border-bottom-right.png') right bottom no-repeat; */
    background: url('images/border-bottom-left.png') left bottom no-repeat;
    background-color: transparent;
    left:0;
    right:0;
    text-indent: -9999px;
    height:20px;
}

@media only screen and (max-width: 1199px)
{
    .omc-bottom::before
    {
        left: 8px;
    }
    .omc-bottom::before,
    .omc-bottom::after
    {
        height: 10px;
        background-size: 8px;
        bottom:-11px;
    }
}
.welcome-title.small .welcome-title-line 
{
    font-size: max(20px, 6vw);
    font-family: 'Onest', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25);
    line-height: 0.8;
    white-space: nowrap;
    display: flex;
}
@media only screen and (min-width: 1350px)
{
    .welcome-title.small .welcome-title-line
    {
        font-size: 112px;
    }
}
.welcome-title.small .welcome-title-line svg
{
    max-height: 85px;
    width:auto;
}
.welcome-title.small .welcome-title-line span
{
    top:0vw;
}
@media only screen and (min-width: 1350px)
{
    .welcome-title.small .welcome-title-line span
    {
        top:0;
    }
}
.welcome-title-line.left.text-icon svg
{
    height:100%;
    max-height: unset;
    width:auto;
}
.welcome-title-line.left.text-icon i
{
    margin-left:-1px;
}
section.svg-text h2,
section.contacts h2
{
    overflow: hidden;
    width:1px;
    height:1px;
    opacity: 0;
}
section.svg-text .mobile-content,
section.contacts .mobile-content
{
    display:none;
}
section.svg-text svg,
section.contacts svg
{
    width:100%;
    height:auto;
}
@media only screen and (max-width: 767px)
{
    section.svg-text .mobile-content
    {
        display: block;
    }
    section.svg-text .desktop-content
    {
        display: none;   
    }
    section.svg-text.only-desktop
    {
        display: none;
    }
}
@media only screen and (max-width: 1100px)
{
    section.contacts .mobile-content
    {
        display: block;
    }
    section.contacts .desktop-content
    {
        display: none;   
    }
}
@media only screen and (min-width: 1200px)
{
    section.svg-text.bottom-border .desktop-content
    {
        position: relative;
        margin-bottom: 45px;
    }
    section.svg-text.bottom-border .desktop-content::before
    {
        content:".";
        position: absolute;
        bottom:-16px;
        background-color: transparent;
        background-image: url('images/border-bottom-center.png');
        background-repeat: repeat-x;
        left:0;
        margin-left:16px;
        /* right:12px; */
        right:0;
        text-indent: -9999px;
        height:20px;
    }
    section.svg-text.bottom-border .desktop-content::after
    {
        content:".";
        position: absolute;
        bottom:-16px;
        /* background: url('images/border-bottom-left.png') left bottom no-repeat, url('images/border-bottom-right.png') right bottom no-repeat; */
        background: url('images/border-bottom-left.png') left bottom no-repeat;
        background-color: transparent;
        left:0;
        right:0;
        text-indent: -9999px;
        height:20px;
    }
}
section.briefing
{
    border:3px solid #000;
}
section.briefing .content
{
    width:765px;
    margin-left:auto;
    margin-right:auto;
    display: grid;
    grid-template-columns: 2fr 3fr 2fr;
    gap:33px;
    padding: 60px 0;
}
section.briefing .button a
{
    color: var(--font-white);
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    font-size:22px;
    font-weight: bold;
    font-family: 'Onest', sans-serif;
    height: 100%;
    display: grid;
    align-items: center;
    background-color: var(--background-black);
    border:3px solid var(--background-black);
}
section.briefing .button a:hover
{
    color: var(--font-black);
    background-color: var(--background-white);
}
section.briefing h2
{
    text-align: center;
    background-color: var(--background-black);
    padding:21px;
    font-family: 'Onest', sans-serif;
    font-size: 41px;
    line-height: 43px;
    font-weight: 900;
    color: var(--font-white);
    text-transform: uppercase;
    cursor: default;
}
section.briefing h3
{
    text-align: center;
    background-color: var(--background-white);
    padding:30px 40px;
    font-family: 'Onest', sans-serif;
    font-size: 35px;
    line-height: 42px;
    font-weight: 900;
    color: var(--font-black);
    text-transform: uppercase;
    cursor: default;
    border-bottom:3px solid #000;
}
@media only screen and (max-width: 1200px)
{
    section.briefing h3
    {
        padding:30px 21px;
    }
}
@media only screen and (max-width: 992px)
{
    section.briefing
    {
        border-width: 1px;
    }
    section.briefing .arrow:first-child
    {
        text-align: right;
    }
    section.briefing .arrow:last-child
    {
        text-align: left;
    }
    section.briefing .content
    {
        width:100%;
        margin:unset;
        grid-template-columns: 1fr 165px 1fr;
        gap:10px;
        padding-top: 20px;
        padding-bottom: 18px;
        align-items: center;
    }
    section.briefing svg
    {
        height:30px;
        width:auto;
    }
    section.briefing .button a
    {
        font-size: 16px;
        min-height:26px;
        padding-top:2px;
        padding-bottom:2px;
        border-width:1px;
    }
    section.briefing h2
    {
        font-size: 14px;
        line-height: 110%;
        padding:10px;
    }
    section.briefing h3
    {
        font-size: 14px;
        line-height: 110%;
        padding: 10px 20px;
        border-width: 1px;
    }
}
main section
{
    margin-bottom: 32px;
}
main section.mb-0
{
    margin-bottom: 0;	
}
main section.stages-parent
{
    margin-bottom: 64px;
}
@media only screen and (max-width: 767px)
{
    main section
    {
        margin-bottom: 15px;
    }
    main section.stages-parent
    {
        margin-bottom: 32px;
    }
}
.services-header
{
    padding:30px 20px;
    color: var(--font-white);
    font-weight: bolder;
    font-size: 35px;
    font-family: 'Onest', sans-serif;
    text-align: center;
    background-color: var(--background-black);
    text-transform: uppercase;
}
@media only screen and (max-width: 992px)
{
    .services-header svg
    {
        display: none;
    }
    .services-header
    {
        padding: 10px;
        font-size: 14px;
        line-height: 110%;
    }
}
section.services .services-list
{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
@media only screen and (max-width: 1100px)
{
    section.services .services-list
    {
        grid-template-columns: 50% 50%;
        grid-auto-flow: row;
    }
    section.services.style-1 .services-list > div:last-child
    {
        display: grid;
        grid-column: span 2;
        grid-template-columns: 50% 50%;
    }
}
section.services .services-list .services-box
{
    padding:25px 35px;
}
@media only screen and (max-width: 992px)
{
    section.services .services-list .services-box
    {
        padding: 10px;
    }
}
section.services .services-list > div
{
    border-left: 3px solid #000;
    border-bottom: 3px solid #000;
}
section.services .services-list > div:hover,
section.services .services-list .services-box-single:hover
{
    background-color:var(--background-white);
}
section.services .services-list > div:has(.services-box-single):hover
{
    background:none;
}
section.services .services-list
{
    border-right: 3px solid #000;
}
section.services .services-list .services-box.border-top,
section.services .services-list.border-top
{
    border-top: 3px solid #000;
}
@media only screen and (max-width: 992px)
{
    section.services .services-list > div,
    section.services .services-list,
    section.services .services-list.border-top
    {
        border-width: 1px;
    }
    section.services .services-list .services-box.border-top
    {
        border:none;
        border-left: 1px solid #000;
    }
}
section.services .services-list h3
{
    font-family: 'Onest', sans-serif;
    font-size: 41px;
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: uppercase;
    line-height: 43px;
}
section.services.style-2 .services-list h3
{
    min-height:130px;
}
@media only screen and (max-width: 1200px)
{
    section.services .services-list h3
    {
        font-size: 30px;
    }
    section.services.style-2 .services-list h3
    {
        min-height: unset;
    }
}
@media only screen and (max-width: 992px)
{
    section.services .services-list h3
    {
        font-size: 24px;
        margin-bottom: 10px;
        line-height: 110%;
    }
    section.services.style-2 .services-list h3
    {
        font-size: 14px;
        min-height: unset;
    }
}
section.services .services-list h4
{
    font-family: 'Onest', sans-serif;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 30px;
}
@media only screen and (max-width: 992px)
{
    section.services .services-list h4
    {
        font-size: 14px;
        margin-bottom: 10px;
    }
}
section.services .services-list h4 a
{
    color: var(--font-black);
    text-decoration: underline rgba(0, 0, 0, 0);
}
section.services .services-list h4 a:hover
{
    text-decoration: underline rgba(0, 0, 0, 1);
}
section.services .services-list p
{
    margin-bottom: 20px;
    font-family: Arial, Helvetica, sans-serif;/* TODO заменить шрифт на шрифт в макете */
    font-weight: 400;
    font-size: 21px;
    line-height: 29px;
}
@media only screen and (max-width: 992px)
{
    section.services .services-list p
    {
        font-size: 12px;
        line-height: 150%;
        margin-bottom: 10px;
    }
}
section.services.style-2 .services-list div:last-child .services-box
{
    padding-bottom:250px;
    /*background:url('images/icon-services-styl-2.svg') bottom right no-repeat;*/
	background:url('/wp-content/uploads/2024/01/6-2.png') bottom right no-repeat;
	background-size:405px;
}
@media only screen and (max-width: 992px)
{
    section.services.style-2 .services-list div:last-child .services-box
    {
        background: none;
        padding-bottom: unset;
    }
}
.promo-products
{
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap:0px;
}
.promo-products .title
{
    display: grid;
    align-items: center;
}
.promo-products .title h4
{
    padding:55px;
    padding-bottom: 75px;
    background: url('images/icon-promo.svg') center no-repeat;
    font-family: 'Onest', sans-serif;
    font-size: 61px;
    line-height: 63px;
    text-transform: uppercase;
    font-weight: 900;
}
/* .promo-products .title
{
    
} */
.promo-products .title h3
{
    padding: 55px;
    padding-right:0;
    background-color: var(--background-white);
    border:3px solid #000;
    width:calc(100% - 145px);
    font-family: 'Onest', sans-serif;
    font-size: 61px;
    line-height: 63px;
    text-transform: uppercase;
    font-weight: 900;
    border-right:0;
    position: relative;
}
@media only screen and (max-width: 1350px)
{
    .promo-products .title h3
    {
        font-size: 41px;
        line-height: 43px;
    }
}
.promo-products .title h3::after
{
    content:".";
    position: absolute;
    bottom:-21px;
    /* background: url('images/border-bottom-left.png') left bottom no-repeat, url('images/border-bottom-center.png') 25px bottom; */
    background: url('images/border-bottom-left.png') left bottom no-repeat;
    background-color: transparent;
    left:0;
    right:0;
    text-indent: -9999px;
    height:20px;
}
.promo-products .title h3::before
{
    content:".";
    position: absolute;
    bottom:-21px;
    background-color: transparent;
    background-image: url('images/border-bottom-center.png');
    background-repeat: repeat-x;
    left:0%;
    margin-left:16px;
    /* right:12px; */
    right:0;
    text-indent: -9999px;
    height:20px;
}
.promo-products .title h3 span
{
    
    /* background: url('images/icon-promo-arrow.svg') left center no-repeat;
    background-size: contain; */
    position: absolute;
    width: 86px;
    right: -86px;
    top: -3px;
    height: calc(100% + 6px);
    z-index: -1;
}
@media only screen and (max-width: 992px)
{
    .promo-products .title h3::before,
    .promo-products .title h3::after
    {
        height:10px;
        bottom:-11px;
        background-size: 8px;
    }
    .promo-products .title h3::before
    {
        margin-left: 8px;
    }
}
@media only screen and (max-width: 1200px)
{
    .promo-products .title h3 span
    {
        display: none;
    }
    .promo-products .title h3
    {
        border: 3px solid #000;
        width: auto;
        text-align: center;
        padding:12px 0;
        font-size:24px;
    }
}
.promo-products .title h3 span img
{
    width:100%;
    height:100%;
}
.promo-products.style-1 .products-list span
{
    padding:45px 0;
    text-align: center;
    cursor:default;
}
.promo-products .products-list > div
{
    display: grid;
    gap: 0px;
}
.promo-products.style-1 .products-list .list-1
{
    grid-template-columns: 37% 33% 30%;
}
.promo-products.style-1 .products-list .list-2
{
    grid-template-columns: 34% 25% 41%;
}
.promo-products.style-1 .products-list .list-3
{
    grid-template-columns: 42% 25% 33%;
}
.promo-products.style-1 .products-list > div > span
{
    border:3px solid #000;
    border-bottom:0;
    border-right:0;
    font-family: 'Onest', sans-serif;
    font-weight: 900;
    font-size: 29px;
    text-transform: uppercase;
    text-decoration: underline rgba(0, 0, 0, 0);
    color: var(--font-black);

}
/*.promo-products.style-1 .products-list > div > a:hover*/
/*{*/
/*    background-color: var(--background-white);*/
/*    text-decoration: underline;*/
/*    text-decoration-color: rgba(0, 0, 0, 1);*/
/*}*/
.promo-products.style-1 .products-list > div:last-child > span
{
    border-bottom:3px solid #000;
}
.promo-products.style-1 .products-list > div > span:last-child
{
    border-right:3px solid #000;
}
.promo-products.style-2 .products-list > div
{
    grid-template-columns: 3fr 7fr;
    border:3px solid #000;
    border-bottom: 0;
}
.promo-products.style-2 .products-list > div:last-child
{
    border-bottom: 3px solid #000;
}
.promo-products.style-2 .products-list h5
{
    padding:40px 0 40px 60px;
    font-family: 'Onest', sans-serif;
    font-weight: 900;
    font-size: 29px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--font-black);
    border-right:3px solid #000;
    display: grid;
    align-items: center;
}
.promo-products.style-2 .products-list h5 a,
.promo-products.style-2 .products-list h5 em
{
    color: var(--font-black);
    text-decoration: underline rgba(0, 0, 0, 0);
    font-style:normal;
}
.promo-products.style-2 .products-list h5 em
{
    cursor:default;
}
.promo-products.style-2 .products-list h5 a:hover
{
    text-decoration: underline;
    text-decoration-color: rgba(0, 0, 0, 1);
}
.promo-products.style-2 .products-list .list-1  > div
{
    display: grid;
    gap:90px;
    grid-template-columns: 2fr 3fr;
}
@media only screen and (max-width: 992px)
{
    .promo-products.style-2 .products-list .list-1  > div
    {
        gap:30px;
    }
}
.promo-products.style-2 .products-list .list-2 > div
{
    padding-top:30px;
    padding-bottom: 30px;
}
.promo-products.style-2 .products-list .list-2 span
{
    display: block;
}
.promo-products.style-2 .products-list .list-2 span:last-child
{
    display: grid;
    gap:53px;
    grid-template-columns: 1fr 2fr;
    margin-top:20px;
}
@media only screen and (max-width: 992px)
{
    .promo-products.style-2 .products-list .list-2 span:last-child
    {
        gap:20px;
        margin-top:2px;
    }
}
.promo-products.style-2 .products-list > div > div
{
    padding: 40px 50px;
}
.promo-products.style-2 .products-list > div > div a,
.promo-products.style-2 .products-list > div > div em
{
    font-family: 'Onest', sans-serif;
    font-weight: 900;
    font-size: 29px;
    text-transform: uppercase;
    text-decoration: underline rgba(0, 0, 0, 0);
    color: var(--font-black);
}
.promo-products.style-2 .products-list > div > div a:hover
{
    text-decoration: underline;
    text-decoration-color: rgba(0, 0, 0, 1);
}
@media only screen and (max-width: 992px)
{
    .promo-products *
    {
        border-width: 1px !important;
    }
    .promo-products.style-2 .products-list > div > div
    {
        padding: 15px 20px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1400px)
{
    .promo-products .title h4
    {
        background-size: contain;
    }
}
@media only screen and (max-width: 1200px)
{
    .promo-products .title h4
    {
        font-size: 24px;
        line-height: 26px;
        padding:13px 0;
        background: #fff;
        text-align: center;
        border:3px solid #000;
        border-bottom: 0;
    }
    .promo-products.style-2 .products-list h5
    {
        padding:12px 15px;
    }
    .promo-products.style-2 .products-list .list-2 > div
    {
        padding:15px 20px;
    }
    .promo-products.style-1 .products-list > div > a,
	.promo-products.style-1 .products-list > div > span
    {
        padding:15px 5px;
    }
    .promo-products
    {
        display: block;
    }
    .promo-products .title
    {
        display: block;
    }

}
@media only screen and (max-width: 992px)
{
    .promo-products a,
	.promo-products span,
	.promo-products em	
    {
        font-size: 13px !important;
        line-height: 110%;
    }
}
@media only screen and (max-width: 767px)
{
    .promo-products .products-list .list-1 > * 
    {
        padding-top:25px !important;
    }
    .promo-products .title h4
    {
        position: relative;
    }
    .promo-products .title h4::before
    {
        content: '.';
        text-indent: -9999px;
        position:absolute;
        width:8px;
        height:10px;
        left:0;
        bottom:-11px;
        background:url('images/border-bottom-product-list-left.svg') center no-repeat;
    }
    .promo-products .title h4::after
    {
        content: '.';
        text-indent: -9999px;
        position:absolute;
        height:10px;
        left:8px;
        bottom:-11px;
        right:0;
        background:url('images/border-bottom-product-list-center.svg') center repeat-x;
    }
}
.testimonials .title
{
    border: 3px solid #000;
    text-align: center;
    padding:28px 0;
    border-bottom: 0;
}
@media only screen and (max-width: 992px)
{
    .testimonials .title
    {
        padding: 13px 0;
    }
}
.testimonials .title svg
{
    width:calc(100% - 50px);
    height:auto;
}
@media only screen and (max-width: 992px)
{
    .testimonials *
    {
        border-width: 1px !important;
    }
}
.testimonials .testimonials-content
{
    clear: both;
    overflow: hidden;
    border:3px solid #000;
    position: relative;
}
@media only screen and (max-width: 1200px)
{
    .testimonials .testimonials-content
    {
        padding-bottom: 52px;
    }
}
.testimonials .testimonials-content > div
{
    float: left;
    padding-bottom: 500em;
    margin-bottom: -500em;
}

.testimonials .testimonials-content > div.left
{
    width:34%;
}
.testimonials .testimonials-content > div.right
{
    width:66%;
}
@media only screen and (max-width: 1200px) 
{
    .testimonials .testimonials-content > div
    {
        float: unset;
        padding:0;
        margin:0;
        width: 100% !important;
    }
}
@media only screen and (min-width: 1200px)
{
    .testimonials
    {
        position: relative;
        margin-bottom: 50px;
    }
    .testimonials::before
    {
        content:".";
        position: absolute;
        bottom:-20px;
        background-color: transparent;
        background-image: url('images/border-bottom-center.png');
        background-repeat: repeat-x;
        left:34%;
        margin-left:16px;
        /* right:12px; */
        right:0;
        text-indent: -9999px;
        height:20px;
    }
    .testimonials::after
    {
        content:".";
        position: absolute;
        bottom:-20px;
        /* background: url('images/border-bottom-left.png') left bottom no-repeat, url('images/border-bottom-right.png') right bottom no-repeat; */
        background: url('images/border-bottom-left.png') left bottom no-repeat;
        background-color: transparent;
        left:34%;
        right:0;
        text-indent: -9999px;
        height:20px;
    }
}
.testimonials .testimonials-content .logo::after
{
    content: ".";
    text-indent: -9999px;
    position:absolute;
    right:66%;
    top:0;
    bottom:0;
    border-right: 3px solid #000;
}
@media only screen and (max-width: 1200px)
{
    .testimonials .testimonials-content .logo::after
    {
        content: unset;
    }
}
.testimonials .testimonials-content .logo img
{
    max-width:330px;
    max-height:145px;
    margin:0 auto;
}
@media only screen and (max-width: 1200px)
{
    .testimonials .testimonials-content .logo img
    {
        max-width:150px;
        max-height:65px;
    }
}
.testimonials .testimonials-content .logo .owl-item > div
{
    display:grid;
    height:260px;
    align-items: center;
}
@media only screen and (max-width: 1200px)
{
    .testimonials .testimonials-content .logo .owl-item>div
    {
        height: 85px;
    }
}
.testimonials .testimonials-content .right
{
    background-color: var(--background-white);
}
@media only screen and (max-width: 1200px)
{
    .testimonials .testimonials-content .right
    {
        border-top:1px solid #000;
    }
}
.testimonials .testimonials-content .right .owl-item > div
{
    padding:36px;
}
@media only screen and (max-width: 1200px)
{
    .testimonials .testimonials-content .right .owl-item > div
    {
        padding:10px;
    }
}
.testimonials .owl-dots
{
    display: none;
}
.testimonials .control
{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-top:3px solid #000;
    position: absolute;
    bottom: 0;
    width: 34%;
}
@media only screen and (max-width: 1200px)
{
    .testimonials .control
    {
        width: 100%;
    }
}
.testimonials .control button
{
    width:90px;
    height:90px;
    border:none;
    background-color: var(--background-black);
    cursor: pointer;
}
@media only screen and (max-width: 1200px)
{
    .testimonials .control button
    {
        width:55px;
        height:50px;
    }
    .testimonials .control button svg
    {
        height:28px;
        width:auto;
    }
}
.testimonials .control div:last-child
{
    text-align: right;
}
.testimonials .control span
{
    text-align: center;
    display: grid;
    align-items: center;
    font-family: 'Onest', sans-serif;
    font-size:27px;
    color: var(--font-black);
    font-weight: 600;
}
@media only screen and (max-width: 1200px)
{
    .testimonials .control span
    {
        font-size: 14px;
        line-height: 150%;
    }
}
.testimonials .right p
{
    font-family: 'HelveticaNeueCyr', Helvetica, sans-serif;
    font-weight: 400;
    font-size:21px;
    line-height: 29px;
    padding-bottom: 30px;
}
.testimonials .right .owl-item p:last-child
{
    padding-bottom: 0;
}
@media only screen and (max-width: 1200px)
{
    .testimonials .right p
    {
        font-size: 12px;
        line-height: 150%;
        padding-bottom: 18px;
    }
    .testimonials .right .owl-item p:last-child
    {
        padding-bottom: 0;
    }
}
.contacts .forms
{
    display: grid;
    gap:25px;
    grid-template-columns: 1fr 1fr;
    margin-top:32px;
}
@media only screen and (max-width: 1200px)
{
    .contacts .forms
    {
        display: block;
    }
}
@media only screen and (max-width:767px)
{
    .contacts .forms
    {
        margin-top:15px;
    }
}
.contacts .forms .contact-form
{
    border:3px solid #000;
    /* margin-top:-5vw; */
    margin-top: -10%;
}
@media only screen and (max-width: 1100px)
{
    .contacts .forms .contact-form
    {
        margin-top:0;
        margin-bottom: 25px;
    }
}
@media only screen and (min-width: 1400px)
{
    .contacts .forms .contact-form
    {
        margin-top:-85px;
    }
}
@media only screen and (max-width: 992px)
{
    .contacts *
    {
        border-width:1px !important;
    }
}
.contact-form-header
{
    border-bottom: 3px solid #000;
    padding:30px 35px;
}
@media only screen and (max-width:767px)
{
    .contact-form-header
    {
        padding:22px 13px;
    }
}
.contact-form-header h5
{
    font-family: 'Onest', sans-serif;
    font-weight: 900;
    font-size:41px;
    line-height: 43px;
    margin-bottom: 24px;
    text-transform: uppercase;
}
@media only screen and (max-width:767px)
{
    .contact-form-header h5
    {
        font-size:24px;
        line-height: 100%;
        margin-bottom: 15px;
    }
}
.contact-form-header p
{
    font-family: 'HelveticaNeueCyr', Helvetica, sans-serif;
    font-size: 21px;
    line-height: 29px;
    padding-bottom: 50px;
    font-weight: 400;
    width: 60%;
}
@media only screen and (max-width: 1100px)
{
    .contact-form-header p
    {
        padding: 0;
        margin:0;
    }
}
@media only screen and (max-width:767px)
{
    .contact-form-header p
    {
        font-size: 15px;
        line-height: 140%;
    }
}
.contacts form .form-group
{
    display: grid;
    gap:0;
    grid-template-columns: 1fr 2fr;
}
@media only screen and (min-width: 768px) and (max-width: 1350px)
{
    .contacts form .form-group
    {
        grid-template-columns: 2fr 3fr;
    }
}
.contacts form .form-group > div
{
    display: grid;
    height: 88px;
    padding:0 33px;
    align-items: center;
}
@media only screen and (max-width: 1250px)
{
    .contacts form .form-group > div
    {
        padding:0 13px;
    }
}
@media only screen and (max-width:767px)
{
    .contacts form .form-group > div
    {
        height: 43px;
    }
}
.contacts form .form-group.form-group-message > div
{
    height: auto;
    min-height: 250px;
}
@media only screen and (max-width:767px)
{
    .contacts form .form-group.form-group-message > div
    {
        min-height: auto;
    }
}
.contacts form .form-group > div:first-child
{
    border-right:3px solid #000;
    border-bottom: 3px solid #000;
}

.contacts form .form-group.form-group-message > div:first-child
{
    border-bottom: 0;
    position: relative;
    align-items: start;
    padding-top: 30px;
}
@media only screen and (max-width:767px)
{
    .contacts form .form-group.form-group-message > div:first-child
    {
        padding-top:8px;
    }
}
.contacts form .form-group label
{
    font-family: 'Onest', sans-serif;
    font-size: 24px;
    line-height: 30px;
    font-weight: 900;
    text-transform: uppercase;
}
@media only screen and (max-width:767px)
{
    .contacts form .form-group label
    {
        font-size: 14px;
        line-height: 110%;
    }
}
.contacts form .form-group label small
{
    display: block;
    font-size: 24px;
    font-weight: 400;
}
@media only screen and (max-width:767px)
{
    .contacts form .form-group label small
    {
        font-size: 13px;
        line-height: 110%;
    }
}
.contacts form .form-group > div:last-child
{
    background-color: var(--background-white);
    border-bottom: 3px solid #000;
}
.contacts form .form-group:last-child > div:last-child
{
    border-bottom: 0;
}
.contacts form .form-group > div:last-child input
{
    font-size: 24px;
    font-family: 'HelveticaNeueCyr', Helvetica, sans-serif;
    padding:5px 3px;
    border:none;
    font-weight: 400;
    width: 100%;
    max-width: inherit;
    outline: none;
}
@media only screen and (max-width:767px)
{
    .contacts form .form-group > div:last-child input
    {
        font-size: 14px;
    }
}
.contacts form .form-group > div:last-child textarea
{
    font-size: 24px;
    font-family: 'HelveticaNeueCyr', Helvetica, sans-serif;
    padding:15px 0px;
    border:none;
    min-height: 180px;
    resize: none;
    font-weight: 400;
    width: 100%;
    max-width: inherit;
    outline:none;
}
@media only screen and (max-width:767px)
{
    .contacts form .form-group > div:last-child textarea
    {
        min-height: 110px;
        font-size: 14px;
    }
}
.contacts form .form-group button[type="submit"] 
{
    position: absolute;
    left:0;
    right:0;
    bottom:0;
    height: 88px;
    background-color: var(--background-black);
    text-align: center;
    display: grid;
    align-items: center;
    text-transform: uppercase;
    font-family: 'Onest', sans-serif;
    font-weight: 900;
    font-size:28px;
    border:none;
    color: var(--font-white);
    cursor:pointer;
    outline: none;
    border-top:3px solid var(--background-black);
}
.contacts form .form-group button[type="submit"]:hover
{
    background-color: var(--background-white);
    color:var(--background-black);
}
@media only screen and (max-width:767px)
{
    .contacts form .form-group button[type="submit"]
    {
        height: 42px;
        font-size: 14px;
    }
}
.contacts .scheduler
{
    border-top:3px solid #000;  
}
.contacts .scheduler .content
{
    padding: 29px 27px 0 27px;
    background: url('images/scheduler.png') no-repeat;
    background-position: right 30px center;
    background-size: 222px 144px;
    border-left: 3px solid #000;
    border-right: 3px solid #000;
}
@media only screen and (min-width:1200px) and (max-width: 1400px)
{
    .contacts .scheduler .content
    {
        background-size: 111px 72px;
    }
}
@media only screen and (max-width:1200px)
{
    .contacts .scheduler .content
    {
        background-position-y: 35%;
    }
}
@media only screen and (max-width:767px)
{
    .contacts .scheduler .content
    {
        background-size: 28%;
        padding: 14px 13px 0 13px;
    }
}

.contacts .scheduler h6
{
    font-family: 'Onest', sans-serif;
    font-size: 41px;
    line-height: 43px;
    font-weight: 900;
    margin-bottom: 11px;
    text-transform: uppercase;
}
@media only screen and (max-width:767px)
{
    .contacts .scheduler h6
    {
        font-size: 24px;
        line-height: 100%;
        margin-bottom: 10px;
    }
}
.contacts .scheduler p
{
    font-size: 21px;
    line-height: 29px;
    font-family: 'HelveticaNeueCyr', Helvetica, sans-serif;
    font-weight: 400;
    margin-bottom: 25px;
    width: 60%;
}
@media only screen and (max-width: 1100px)
{
    .contacts .scheduler p
    {
        margin-bottom: 0;
        padding-bottom: 17px;
    }
}
@media only screen and (max-width:767px)
{
    .contacts .scheduler p
    {
        font-size: 14px;
        line-height: 150%;
        padding-bottom: 10px;
    }
}
.contacts .scheduler .content > svg
{
    width:100%;
    height: auto;
    margin-bottom: 17px;
}
@media only screen and (max-width:767px)
{
    .contacts .scheduler .content > svg
    {
        display: block;
        max-width: 450px;
        margin-left:auto;
        margin-right:auto;
        margin-bottom: 0;
        padding-bottom: 10px;
    }
}
.contacts .scheduler .link
{
    text-align: right;
    border: 3px solid #000;
}
.contacts .scheduler .link a
{
    display: inline-block;
    width:50%;
    height:88px;
    position: relative;
    text-decoration: none;
}
@media only screen and (max-width:767px)
{
    .contacts .scheduler .link a
    {
        height:49px;
        width: 100%;
    }
}
.contacts .scheduler .link a::before
{
    position: absolute;
    content: '.';
    text-indent: -9999px;
    background: url('images/border-left-scheduler-link.svg') right center no-repeat;
    background-size: contain;
    width:50%;
    left:-50%;
    top:-1px;
    bottom:-1px;
}
@media only screen and (max-width:767px)
{
    .contacts .scheduler .link a::before
    {
        width:56px;
        left:0px;
    }
}
.contacts .scheduler .link a span
{
    display: grid;
    height:100%;
    background-color: var(--background-black);
    width: 100%;
    text-align: center;
    align-items: center;
    text-transform: uppercase;
    color: var(--font-white);
    font-family: 'Onest', sans-serif;
    font-size:28px;
    font-weight: 900;
}
.contacts .scheduler .link a span em
{
    font-style:normal;
}
.contacts .scheduler .link a span em b
{
    font-weight:900;
    text-decoration: underline rgba(0, 0, 0, 0);
}
.contacts .scheduler .link a span:hover em b
{
    text-decoration-color: rgba(255, 255, 255, 1);
}
@media only screen and (max-width:767px)
{
    .contacts .scheduler .link a span
    {
        width:calc(100% - 56px);
        margin-left: 56px;
        font-size: 24px;
        text-align: right;
    }
    .contacts .scheduler .link a span em
    {
        padding-right: 20px;
    }
}
.contacts .partners
{
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap:20px;
    background-color: var(--background-white);
    height: 90px;
    padding:0 29px;
    border-left: 3px solid #000;
    border-right: 3px solid #000;
    border-bottom: 3px solid #000;
}
@media only screen and (max-width:767px)
{
    .contacts .partners
    {
        padding:0 14px;
        display: block;
        text-align: center;
        min-height: 50px;
        height: auto;
    }
}
.contacts .partners a
{
    display: grid;
    align-items: center;
    font-size:16px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    grid-template-columns: auto 1fr;
    text-decoration: none;
    color: var(--font-black);
}
@media only screen and (max-width:767px)
{
    .contacts .partners a
    {
        font-size: 12px;
        display: inline-block;
        padding-left: 3%;
        padding-right: 3%;
        line-height: 50px;
    }
}
.contacts .partners a svg
{
    height:38px;
    width:38px;
    margin-right:12px;
}
@media only screen and (max-width:767px)
{
    .contacts .partners a svg
    {
        height: 20px;
        width: 20px;
        margin-right: 7px;
        position: relative;
        top: 5px;
    }
}
.contacts form .form-group:last-child > div:last-child,
.contacts .partners
{
    position: relative;
}
.contacts form .form-group.form-group-message > div:last-child::before,
.contacts .partners::before
{
    content:".";
    position: absolute;
    bottom:-20px;
    background-color: transparent;
    background-image: url('images/border-bottom-center.png');
    background-repeat: repeat-x;
    left:0%;
    margin-left:16px;
    /* right:12px; */
    right:0;
    text-indent: -9999px;
    height:20px;
}
.contacts form .form-group .form-group-message-container
{
    position: relative;
    border-bottom:0 !important;
}
.contacts form .form-group.form-group-message > div:last-child::after,
.contacts .partners::after
{
    content:".";
    position: absolute;
    bottom:-20px;
    /* background: url('images/border-bottom-left.png') left bottom no-repeat, url('images/border-bottom-right.png') right bottom no-repeat; */
    background: url('images/border-bottom-left.png') left bottom no-repeat;
    background-color: transparent;
    left:0;
    right:0;
    text-indent: -9999px;
    height:20px;
}
@media only screen and (max-width: 1199px)
{
    .contacts form .form-group.form-group-message > div:last-child::before,
    .contacts .partners::before
    {
        left: 8px;
    }
    .contacts form .form-group.form-group-message > div:last-child::before,
    .contacts .partners::before,
    .contacts form .form-group.form-group-message > div:last-child::after,
    .contacts .partners::after
    {
        height: 10px;
        background-size: 8px;
        bottom:-10px;
        margin-left: 0;
    }
}
.contacts form .wpcf7-response-output,
.contacts form .wpcf7-not-valid-tip
{
    display: none !important;
}
.contacts form .form-group:has(.wpcf7-not-valid) label
{
    color:#e60023;
}
.contacts form.sent > div
{
    opacity: 0;
}
.contacts form.sent
{
    background: url('images/icon-success-formsubmit.svg') center 50% no-repeat;
    background-size: 60%;
    position: relative;
}
.contacts form.sent .sent-cover
{
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    opacity: 0;
}
.cta-style-1
{
    border:3px solid var(--background-black);
    border-top:0;
    position: relative;
}
.cta-style-1::before
{
    content:'';
    position: absolute;
    width:13%;
    height:3px;
    top:0;
    left:0;
    background-color: var(--background-black);
}
.cta-style-1::after
{
    content:'';
    position: absolute;
    width:69%;
    height:3px;
    top:0;
    right:0;
    background-color: var(--background-black);
}
@media only screen and (max-width: 992px)
{
    .cta-style-1
    {
        border-width: 1px;
/* 		border-top:1px solid var(--background-black); */
    }
    .cta-style-1::before,
    .cta-style-1::after
    {
        height:1px;
/* 		display:none; */
    }
}
@media only screen and (max-width: 992px)
{
    .cta-style-1::after
    {
        width:67%;
    }
    .cta-style-1::before
	{
		width: 3%;
	}
}
.cta-style-1 > div
{
    padding:93px 88px 90px 33%;
    font-family: 'Onest', sans-serif;
    font-size: 41px;
    line-height: 43px;
    font-weight: 900;
    text-transform: uppercase;
    color:var(--font-black);
}
@media only screen and (max-width: 1400px)
{
    .cta-style-1 > div
    {
        font-size:calc(41/1400*100vw);
        line-height: calc(43/1400*100vw);
        padding: 5% 5% 5% 33%;
    }
}
@media only screen and (max-width: 575px)
{
    .cta-style-1 > div
    {
        font-size:14px;
        line-height: 110%;
        padding: 20px 10px 20px 32%;
    }
}
.cta-style-1 > div a
{
    color:var(--font-black);
    text-decoration: underline;
}
.cta-style-1 > div a:hover
{
    text-decoration: none;
}
.cta-style-1 > span
{
    position: absolute;
    top:-15px;
    left:0;
    width:30%;
    height:calc(100% + 15px);
}
@media only screen and (max-width: 992px)
{
    .cta-style-1 > span
    {
        top:-20px;
        height: calc(100% + 20px);
		text-align:center;
    }
	.cta-style-1 > span svg
	{
		max-width:100%;
	}
}
.cta-style-1 > span svg
{
    height: 100%;
    width: auto;
}
.handout-list
{
    display: grid;
    gap:0;
    grid-template-columns: 1fr 1fr 1fr;
    border-top: 3px solid var(--background-black);
}
@media only screen and (max-width: 1200px)
{
    .handout-list
    {
        grid-template-columns: 1fr 1fr;
        border-width:1px;
    }
    .mobile-view-one-cols .handout-list
    {
        display: block;
    }
}
.handout-list .handout-item:not(.image):not(.black):hover
{
    background-color:var(--background-white);
}
.handout-item
{
    padding:28px 32px;
    border-bottom:3px solid var(--background-black);
    border-left: 3px solid var(--background-black);
}
@media only screen and (max-width: 1200px)
{
    .handout-item
    {
        padding:10px;
    }
}
.handout-item:nth-child(3n)
{
    border-right: 3px solid var(--background-black);
}
.handout-item h4
{
    font-family: 'Onest', sans-serif;
    font-size: 35px;
    line-height: 42px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--font-black);
    margin-bottom: 52px;
}
@media only screen and (max-width: 1200px)
{
    .handout-item h4
    {
        font-size: 14px;
        line-height: 110%;
        margin-bottom: 5px;
    }
}
.handout-item p,
.handout-item ul
{
    font-family: 'HelveticaNeueCyr', Helvetica, sans-serif;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;   
    margin-bottom: 30px;
    text-align: justify;
}
@media only screen and (max-width: 1200px)
{
    .handout-item p,
    .handout-item ul
    {
        font-size: 12px;
        line-height: 150%;
        margin-bottom: 18px;
    }
}
.handout-item ul
{
    padding-left:20px;
}
.handout-item *:last-child
{
    margin-bottom: 0;
}
.handout-item.image
{
    display: grid;
    text-align: center;
    align-items: center;
    border-right: 0;
    padding:0;
}
@media only screen and (max-width: 1200px)
{
    .handout-item.image
    {
        display: none;
    }
}
.handout-item.image:has(svg):last-child
{
    border-bottom: 0;
}
.handout-item.image svg
{
    width:90%;
    height:auto;
    display: block;
    margin: 0 auto;
}
.handout-item.white
{
    background-color: var(--background-white);
}
.handout-item.black
{
    background-color: var(--background-black);
}
.handout-item.black *
{
    color:var(--font-white);
}
.handout-item.black:hover
{
    background-color: var(--background-white);
}
.handout-item.black:hover  *
{
    color:var(--font-black);
}
@media only screen and (max-width: 1200px)
{
    .handout-item,
    .handout-item:nth-child(3n)
    {
        border: 0;
        border-bottom:1px solid var(--background-black);
        border-left: 1px solid var(--background-black);
    }   
    .handout-list
    {
        border-right: 1px solid var(--background-black);
    }
}
.timeline
{
    position: relative;
    padding-top:66px;
    margin-top:60px;
}
@media only screen and (max-width: 992px)
{
    .timeline
    {
        padding-top: 26px;
        margin-top: 22px;
    }
}
.timeline::before
{
    content: '';
    position: absolute;
    width:22px;
    height:85%;
    background-color: var(--background-black);
    top:0;
    left:50%;
    margin-left:-11px;
}
.timeline-design
{
    position: absolute;
    width:22px;
    height:10%;
    top:85%;
    left:50%;
    margin-left:-11px;
}
@media only screen and (max-width: 1100px)
{
    .timeline::before,
    .timeline-design
    {
        width: 12px;
        margin-left: -6px;
    }
}
.timeline-design svg
{
    width: 100%;
    max-width: 100%;
    height: auto;
}
.timeline-container
{
    display: grid;
    gap: 0;
    grid-template-columns: 1fr 1fr;
}
.timeline-container .timeline-item
{
    border-top: 3px solid var(--background-black);
    min-height:270px;
}
.timeline-container .timeline-item:nth-last-of-type(-n+2)
{
    min-height:200px;
}
@media only screen and (max-width: 992px)
{
    .timeline-container .timeline-item
    {
        min-height: unset !important;
    }
}
.timeline-container .timeline-item:nth-child(odd)
{
    padding-top: 20px;
    position: relative;
    top:-66px;
}
@media only screen and (max-width: 992px)
{
    .timeline-container .timeline-item:nth-child(odd)
    {
        top: -26px;
    }
}
.timeline-container .timeline-item:nth-child(even)
{
    padding-top: 20px;
    padding-left: 110px;
}
@media only screen and (max-width: 1200px)
{
    .timeline-container .timeline-item:nth-child(odd)
    {
        padding-right: 26px;
    }
    .timeline-container .timeline-item:nth-child(even)
    {
        padding-left:26px;
    }
}
@media only screen and (max-width: 992px)
{
    .timeline-container .timeline-item
    {
        padding-top:15px;
    }
}
.timeline-container .timeline-item h4
{
    font-family: 'Onest', sans-serif;
    font-size: 41px;
    line-height: 43px;
    font-weight: 900;
    color: var(--font-black);
    text-transform: uppercase;
    cursor: default;
    margin-bottom: 22px;
    display: grid;
    grid-template-columns: 50px 1fr;
}
@media only screen and (max-width: 992px)
{
    .timeline-container .timeline-item h4
    {
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 110%;
        grid-template-columns: 15px 1fr;
    }
}
.timeline-container .timeline-item p
{
    width:55%;
    color: var(--font-black);
    text-align: justify;
    font-family: 'HelveticaNeueCyr', Helvetica, sans-serif;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
}
@media only screen and (max-width: 1200px)
{
    .timeline-container .timeline-item p
    {
        width: 100%;
    }
}
@media only screen and (max-width: 992px)
{
    .timeline-container .timeline-item p
    {
        margin-bottom: 15px;
        width: 100%;
        font-size: 14px;
        line-height: 150%;
        text-align: left;
    }
}
@media only screen and (max-width: 992px)
{
    .timeline,
    .timeline *
    {
        border-width:1px !important;
    }
}
@media only screen and (max-width: 992px)
{
    .thesis,
    .thesis *
    {
        border-width:1px !important;
    }
}
.thesis h3
{
    transition: unset !important;
    font-family: 'Onest', sans-serif;
    font-size: 41px;
    line-height: 43px;
    font-weight: 900;
    color: var(--font-black);
    text-transform: uppercase;
    cursor: default;
    text-align: center;
    border:3px solid var(--font-black);
    border-bottom: 0;
    padding:39px 10px;
}
@media only screen and (max-width: 992px)
{
    .thesis .title
    {
        display: grid;
        align-items: center;
        text-align: center;
    }
    .thesis h3
    {   
        font-size: 24px;
        line-height: 100%;
        padding:6px 10px;
    }
}
.thesis .subtitle
{
    padding: 30px 80px;
    color: var(--font-white);
    font-weight: bolder;
    font-size: 35px;
    font-family: 'Onest', sans-serif;
    text-align: center;
    background-color: var(--background-black);
    text-transform: uppercase;
    border: 3px solid var(--font-black);
    border-bottom: 0;
}
@media only screen and (max-width: 992px)
{
    .thesis .subtitle
    {
        padding: 10px 30px;
        font-size: 14px;
        line-height: 110%;
    }
}
.thesis .subtitle.white
{
    background: none;
    padding:54px 30px;
    font-family: 'HelveticaNeueCyr', Helvetica, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    color: var(--font-black);
    text-transform: unset;
    text-align: left;
}
@media only screen and (max-width: 992px)
{
    .thesis .subtitle.white
    {
        padding: 10px;
        font-size: 12px;
        line-height: 150%;
    }
}
.thesis-columns
{
    display: grid;
    gap:0;
    border:3px solid var(--background-black);
}
@media only screen and (max-width: 992px)
{
    .thesis-columns
    {
        display: block;
    }
}
.thesis-columns > div > div
{
    padding:40px 35px;
    padding-bottom: 5px;
}
@media only screen and (max-width: 992px)
{
    .thesis-columns > div > div
    {
        padding:10px;
        padding-bottom: 0;
    }
}
.thesis-columns .col-1
{
    border-right: 3px solid var(--background-black);
}
@media only screen and (max-width: 992px)
{
    .thesis-columns .col-1
    {
        border-right: 0;
        border-bottom: 1px solid var(--background-black);
    }
}
.thesis-columns > div h4
{
    font-family: 'Onest', sans-serif;
    font-size: 41px;
    line-height: 43px;
    font-weight: 900;
    color: var(--font-black);
    text-transform: uppercase;
    cursor: default;
    margin-bottom:23px;
}
@media only screen and (max-width: 992px)
{
    .thesis-columns > div h4
    {
        font-size:14px;
        line-height: 110%;
        margin-bottom: 10px;
    }
}
.thesis-columns .col-1 p,
.thesis-columns .col-1 ul
{
    font-family: 'HelveticaNeueCyr', Helvetica, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    color: var(--font-black);
    padding-bottom: 36px;
}
@media only screen and (max-width: 992px)
{
    .thesis-columns .col-1 p,
    .thesis-columns .col-1 ul
    {
        font-size: 12px;
        line-height: 150%;
        padding-bottom: 10px;
    }
}
.thesis-columns .col-1 ul
{
    padding-left:20px;
}
.thesis-columns.default
{
    grid-template-columns: 1fr 1fr;
}
.thesis-columns.style-1
{
    grid-template-columns: 4fr 3fr;
}
.thesis-columns.style-2
{
    grid-template-columns: 9fr 5fr;
}
.thesis-columns .col-1 .dark-box
{
    padding:55px 45px;
    background-color: var(--background-black);
    padding-bottom: 5px;
}
.thesis-columns .col-1 .dark-box *
{
    color:var(--font-white);
}
@media only screen and (max-width: 992px)
{
    .thesis-columns .col-1 .dark-box
    {
        display: none;
    }
}
.thesis-columns .col-2
{
    background-color: var(--background-white);
}
.thesis-columns .col-2.image
{
    padding-bottom: 300px;
    position: relative;
}
@media only screen and (max-width: 1200px)
{
    .thesis-columns .col-2.image
    {
        padding-bottom: 0px;
    }
}
.thesis-columns .col-2 p,
.thesis-columns .col-2 ul
{
    font-family: 'HelveticaNeueCyr', Helvetica, sans-serif;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    color: var(--font-black);
    padding-bottom: 29px;
}
@media only screen and (max-width: 992px)
{
    .thesis-columns .col-2 p,
    .thesis-columns .col-2 ul
    {
        font-size: 12px;
        line-height: 150%;
        padding-bottom: 10px;
    }
}
.thesis-columns .col-2 ul
{
    padding-left:20px;
}
.thesis-columns .col-2 .svg
{
    padding:0;
    position: absolute;
    bottom:-5px;
    right:0;
}
.thesis-columns .col-2 .svg svg
{
    width: 100%;
    height: auto;
}
@media only screen and (max-width: 1200px)
{
    .thesis-columns .col-2 .svg
    {
        display: none;
    }
}
@media only screen and (max-width: 992px)
{
    .dark-box-2
    {
        background-color: var(--background-black);
        padding:10px;
        padding-bottom: 0;
    }
    .dark-box-2 p,
    .dark-box-2 ul
    {
        font-family: 'HelveticaNeueCyr', Helvetica, sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        color: var(--font-white);
        padding-bottom: 10px;
    }
}
.stages
{
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap:0px;
}
@media only screen and (max-width: 1200px)
{

    .stages,
    .stages .title
    {
        display: block;
    }

}
@media only screen and (max-width: 992px)
{
    .stages,
    .stages *
    {
        border-width:1px !important;
    }
}
.stages .title
{
    display: grid;
    align-items: center;
}
.stages .title h3
{
    padding: 25px 55px;
    padding-right:0;
    background-color: var(--background-white);
    border:3px solid #000;
    width:calc(100% - 145px);
    font-family: 'Onest', sans-serif;
    font-size: 61px;
    line-height: 63px;
    text-transform: uppercase;
    font-weight: 900;
    border-right:0;
    position: relative;
    min-height: 130px;
    display: grid;
    align-items: center;
}
@media only screen and (max-width: 1350px)
{
    .stages .title h3
    {
        font-size: 41px;
        line-height: 43px;
    }
}
.stages .title h3::after
{
    content:".";
    position: absolute;
    bottom:-20px;
    /* background: url('images/border-bottom-left.png') left bottom no-repeat, url('images/border-bottom-center.png') 25px bottom; */
    background: url('images/border-bottom-left.png') left bottom no-repeat;
    background-color: transparent;
    left:0;
    right:0;
    text-indent: -9999px;
    height:20px;
}
.stages .title h3::before
{
    content:".";
    position: absolute;
    bottom:-20px;
    background-color: transparent;
    background-image: url('images/border-bottom-center.png');
    background-repeat: repeat-x;
    left:0%;
    margin-left:16px;
    /* right:12px; */
    right:0;
    text-indent: -9999px;
    height:20px;
}
.stages .title h3 span
{
    
    /* background: url('images/icon-promo-arrow.svg') left center no-repeat;
    background-size: contain; */
    position: absolute;
    width: 86px;
    right: -86px;
    top: -3px;
    height: calc(100% + 6px);
    z-index: -1;
}
@media only screen and (max-width: 1200px)
{
    .stages .title h3 span
    {
        display: none;
    }
    .stages .title h3
    {
        border: 3px solid #000;
        width: auto;
        text-align: center;
        padding:2px 40px;
        font-size:24px;
        min-height: unset;
    }
}
.stages .title h3 span img
{
    width:100%;
    height:100%;
}
.stages .stages-description
{
    display: grid;
    align-items: center;
}
.stages .stages-description p
{
    padding:20px 35px;
    border:3px solid var(--background-black);
    font-family: 'HelveticaNeueCyr', Helvetica, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}
@media only screen and (max-width: 1200px)
{
    .stages .stages-description p
    {
        padding:21px 10px 10px 10px;
        font-size: 14px;
        line-height: 150%;
    }
}
.cta-style-2
{
    border:3px solid var(--background-black);
    border-top:0;
    position: relative;
}
.cta-style-2::before
{
    content:'';
    position: absolute;
    width:13%;
    height:3px;
    top:0;
    left:0;
    background-color: var(--background-black);
}
.cta-style-2::after
{
    content:'';
    position: absolute;
    width:69%;
    height:3px;
    top:0;
    right:0;
    background-color: var(--background-black);
}
@media only screen and (max-width: 992px)
{
    .cta-style-2
    {
        border-width: 1px;
    }
    .cta-style-2::before,
    .cta-style-2::after
    {
        height:1px;
    }
}
@media only screen and (max-width: 767px)
{
    .cta-style-2::after
    {
        width:65%;
    }
}
.cta-style-2 > div
{
    padding:41px 88px 41px 33%;
    font-family: 'Onest', sans-serif;
    font-size: 24px;
    line-height: 30px;
    font-weight: 900;
    text-transform: uppercase;
    color:var(--font-black);
}
@media only screen and (max-width: 1400px)
{
    .cta-style-2 > div
    {
        font-size:calc(24/1400*100vw);
        line-height: calc(30/1400*100vw);
        padding: 5% 5% 5% 33%;
    }
}
@media only screen and (max-width: 575px)
{
    .cta-style-2 > div
    {
        font-size:14px;
        line-height: 110%;
        padding: 20px 10px 20px 36%;
    }
}
.cta-style-2 > div a
{
    color:var(--font-black);
    text-decoration: underline;
}
.cta-style-2 > div a:hover
{
    text-decoration: none;
}
.cta-style-2 > span
{
    position: absolute;
    top:-20%;
    left:13%;
    width:30%;
    height:120%;
}
@media only screen and (max-width: 1400px)
{
    .cta-style-2 > span
    {
        left: 9%;
    }
}
@media only screen and (max-width: 767px)
{
    .cta-style-2 > span
    {
        top:-5px;
        height: calc(100% + 5px);
    }
}
@media only screen and (max-width: 550px)
{
    .cta-style-2 > span
    {
        left:0;
    }
}
.cta-style-2 > span svg
{
    height: 100%;
    width: auto;
}
@media only screen and (max-width: 992px)
{
    .q-a,
    .q-a *
    {
        border-width: 1px !important;
    }
}
.q-a
{
    padding-top:45px;
    position: relative;
}

.q-a::before
{
    content: '';
    position: absolute;
    right:15%;
    top:0;
    height: 48px;
    width:66px;
    background: url('images/icon-qa.svg') center bottom no-repeat;
    background-size: contain;
    z-index: 2;
}
@media only screen and (max-width: 992px)
{
    .q-a
    {
        padding-top: 15px;
    }
    .q-a::before
    {
        height:16px;
        width:22px;
    }
}
.q-a.no-question
{
    padding-top:0;
}
.q-a.no-question::before
{
    display: none;
}
.q-a .question
{
    border:3px solid var(--background-black);
    background-color: var(--background-white);
    position: relative;
    margin-bottom: 44px;
}
.q-a .question::before 
{
    content: ".";
    position: absolute;
    bottom: -23px;
    background-color: transparent;
    background-image: url(images/border-bottom-center.png);
    background-repeat: repeat-x;
    left: 16px;
    /* right: 12px; */
    right: 0;
    text-indent: -9999px;
    height: 20px;
}
.q-a .question::after
{
    content: ".";
    position: absolute;
    bottom: -23px;
    /* background: url('images/border-bottom-left.png') left bottom no-repeat, url('images/border-bottom-right.png') right bottom no-repeat; */
    background: url('images/border-bottom-left.png') left bottom no-repeat;
    background-color: transparent;
    left: 0;
    right: 0;
    text-indent: -9999px;
    height: 20px;
}
@media only screen and (max-width: 992px)
{
    .q-a .question
    {
        margin-bottom: 20px;
    }
    .q-a .question::before
    {
        left:8px;
    }
    .q-a .question::before,
    .q-a .question::after
    {
        height: 10px;
        background-size: 8px;
        bottom: -11px;
    }
}
.q-a .question h3
{
    font-family: 'Onest', sans-serif;
    font-size: 41px;
    line-height: 43px;
    font-weight: 900;
    color: var(--font-black);
    text-transform: uppercase;
    cursor: default;
    padding:30px 45px;
    width:68%;
}
@media only screen and (max-width: 1200px)
{
    .q-a .question h3
    {
        width: auto;
    }
}
@media only screen and (max-width: 992px)
{
    .q-a .question h3
    {
        padding: 10px;
        font-size: 14px;
        line-height: 110%;
    }
}
.q-a .icon
{
    border: 3px solid var(--background-black);
    border-bottom: 0;
    text-align: center;
    padding: 10px;
}
.q-a .icon img,
.q-a .icon object
{
    max-width: 80%;
    height: auto;
}
.q-a .answers
{
    border:3px solid var(--background-black);
    border-bottom: 0;
}
.q-a .answers-title
{
    border-bottom: 3px solid var(--background-black);
}
.q-a .answers-title h4
{
    transition: unset !important;
    font-family: 'Onest', sans-serif;
    font-size: 41px;
    line-height: 43px;
    font-weight: 900;
    color: var(--font-black);
    text-transform: uppercase;
    cursor: default;
    text-align: center;
    padding:32px 30px;
}
@media only screen and (max-width: 992px)
{
    .q-a .answers-title h4
    {
        font-size: 24px;
        line-height: 100%;
        padding:10px;
    }
    .q-a .answers-title h4 br
    {
        display: none;
    }
}
.q-a .answers-title h4 svg
{
    margin-left: 10px;
}
@media only screen and (max-width: 1200px)
{
    .q-a .answers-title h4 svg
    {
        display: none;
    }
}
.q-a .answers .answer
{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 992px)
{
    .q-a.no-question .answers .answer
    {
        display: block;
    }
    .q-a.with-footer .answers .answer
    {
        display: grid;
    }
}
.q-a .answers .answer > div
{
    border-bottom: 3px solid var(--background-black);
    padding:32px;
}
.q-a .answers .answer > div:hover
{
    background-color:var(--background-white);
}
@media only screen and (max-width: 992px)
{
    .q-a .answers .answer > div
    {
        padding: 10px;
    }
}
.q-a .answers .answer > div:nth-child(odd)
{
    border-right: 3px solid var(--background-black);
}
@media only screen and (max-width: 992px)
{
    .q-a.no-question .answers .answer > div
    {
        border-right: 0 !important;
    }
    .q-a.with-footer .answers .answer > div:nth-child(odd)
    {
        border-right: 1px solid var(--background-black) !important;
    }
}
.q-a .answers .answer > div h5
{
    font-family: 'Onest', sans-serif;
    font-size: 41px;
    line-height: 43px;
    font-weight: 900;
    color: var(--font-black);
    text-transform: uppercase;
    cursor: default;
    margin-bottom: 40px;
}
@media only screen and (max-width: 992px)
{
    .q-a .answers .answer > div h5
    {
        font-size: 14px;
        line-height: 110%;
        margin-bottom: 10px;
    }
}
.q-a .answers .answer > div .answer-content p,
.q-a .answers .answer > div .answer-content ul
{
    color: var(--font-black);
    text-align: justify;
    font-family: 'HelveticaNeueCyr', Helvetica, sans-serif;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;   
    margin-bottom: 30px;
}
.q-a .answers .answer > div .answer-content ul
{
    padding-left: 20px;
}
@media only screen and (max-width: 992px)
{
    .q-a .answers .answer > div .answer-content p,
    .q-a .answers .answer > div .answer-content ul
    {
        font-size: 12px;
        line-height: 150%;
        margin-bottom: 18px;
    }
}
.q-a .answers .answer > div .answer-content > *:last-child
{
    margin-bottom: 0;
}
.q-a .answer-footer
{
    padding:31px 51px;
    background-color: var(--background-white);
    border:3px solid var(--background-black);
    border-top:0;
    font-family: 'Onest', sans-serif;
    font-size: 35px;
    line-height: 42px;
    font-weight: 900;
    color: var(--font-black);
    text-transform: uppercase;
    cursor: default;
    position: relative;
    margin-bottom: 50px;
    text-align:center;
}
.q-a .answer-footer::after
{
    content:".";
    position: absolute;
    bottom:-21px;
    /* background: url('images/border-bottom-left.png') left bottom no-repeat, url('images/border-bottom-center.png') 25px bottom; */
    background: url('images/border-bottom-left.png') left bottom no-repeat;
    background-color: transparent;
    left:0;
    right:0;
    text-indent: -9999px;
    height:20px;
}
.q-a .answer-footer::before
{
    content:".";
    position: absolute;
    bottom:-21px;
    background-color: transparent;
    background-image: url('images/border-bottom-center.png');
    background-repeat: repeat-x;
    left:0%;
    margin-left:16px;
    /* right:12px; */
    right:0;
    text-indent: -9999px;
    height:20px;
}
@media only screen and (max-width: 992px)
{
    .q-a .answer-footer
    {
        margin-bottom: 25px;
        padding: 10px;
        font-size: 14px;
        line-height: 110%;
        text-align: center;
    }
    .q-a .answer-footer::before,
    .q-a .answer-footer::after
    {
        height:10px;
        bottom:-11px;
        background-size: 8px;
    }
    .q-a .answer-footer::before
    {
        margin-left: 8px;
    }
}
@media only screen and (max-width: 992px)
{
    .problem-solution, 
    .problem-solution *
    {
        border-width:1px !important;
    }
}
.problem-solution h5
{
    font-family: 'Onest', sans-serif;
    font-size: 67px;
    line-height: 63px;
    text-transform: uppercase;
    font-weight: 900;
    cursor: default;
    padding:19px 49px;
    background-color: var(--background-black);
    color:var(--background-white);
}
@media only screen and (max-width: 992px)
{
    .problem-solution h5
    {
        font-size: 24px;
        line-height: 100%;
        padding:10px;
    }
}
.problem-solution h5:last-child
{
    background-color: var(--font-white);
    color:var(--font-black)
}
.problem-solution h6
{
    font-family: 'Onest', sans-serif;
    font-size: 24px;
    line-height: 30px;
    text-transform: uppercase;
    font-weight: 900;
    cursor: default;
    color:var(--font-black);
    margin-bottom: 30px;
}
@media only screen and (max-width: 992px)
{
    .problem-solution h6
    {
        font-size: 14px;
        line-height: 110%;
        margin-bottom: 10px;
    }
}
.problem-solution p,
.problem-solution ul
{
    color: var(--font-black);
    font-family: 'HelveticaNeueCyr', Helvetica, sans-serif;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    margin-bottom: 29px;
}
@media only screen and (max-width: 992px)
{
    .problem-solution p,
    .problem-solution ul
    {
        font-size: 12px;
        line-height: 150%;
        text-align: justify;
    }
}
.problem-solution ul
{
    padding-left: 20px;
}
.problem-solution .problem-solution-line > div *:last-child
{
    margin-bottom: 0;
}
.problem-solution
{
    border-top: 3px solid var(--background-black);
    border-left: 3px solid var(--background-black);
}
.problem-solution .problem-solution-line
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 3px solid var(--background-black);
}
.problem-solution .problem-solution-line > div,
.problem-solution .problem-solution-line > h5
{
    border-right: 3px solid var(--background-black);
}
.problem-solution .problem-solution-line > div:first-child
{
    padding:30px 50px;
}
.problem-solution .problem-solution-line > div:last-child
{
    padding:27px 34px;
    background-color: var(--background-white);
}
@media only screen and (max-width: 992px)
{
    .problem-solution .problem-solution-line > div
    {
        padding:10px !important;
    }
}
@media only screen and (max-width: 992px)
{
    .short-note,
    .short-note *
    {
        border-width: 1px !important;
    }
}
.short-note
{
    border:3px solid var(--background-black);
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 55px;
}
@media only screen and (max-width: 992px)
{
    .short-note
    {
        margin-bottom: 25px;
    }
}
.short-note .column-1,
.short-note .column-2
{
    padding:20px 25px;
    font-family: 'Onest', sans-serif;
    font-size: 24px;
    line-height: 30px;
    text-transform: uppercase;
    font-weight: 900;
    cursor: default;
    position: relative;
}
@media only screen and (max-width: 992px)
{
    .short-note .column-1,
    .short-note .column-2
    {
        padding:10px;
        font-size: 14px;
        line-height: 110%;
    }
}
.short-note .column-1
{
    background-color: var(--background-white);
    border-right: 3px solid var(--background-black);
}
.short-note .column-1::after
{
    content:".";
    position: absolute;
    bottom:-21px;
    /* background: url('images/border-bottom-left.png') left bottom no-repeat, url('images/border-bottom-center.png') 25px bottom; */
    background: url('images/border-bottom-left.png') left bottom no-repeat;
    background-color: transparent;
    left:0;
    right:0;
    text-indent: -9999px;
    height:20px;
}
.short-note .column-1::before
{
    content:".";
    position: absolute;
    bottom:-21px;
    background-color: transparent;
    background-image: url('images/border-bottom-center.png');
    background-repeat: repeat-x;
    left:0%;
    margin-left:16px;
    /* right:12px; */
    right:0;
    text-indent: -9999px;
    height:20px;
}
@media only screen and (max-width: 992px)
{
    .short-note .column-1::before,
    .short-note .column-1::after
    {
        height:10px;
        bottom:-11px;
        background-size: 8px;
    }
    .short-note .column-1::before
    {
        margin-left: 8px;
    }
}
.text-with-note
{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap:40px;
}
@media only screen and (max-width: 992px)
{
    .text-with-note
    {
        display: block;
        margin-bottom: 10px;
    }
}
.text-with-note h4
{
    font-family: 'Onest', sans-serif;
    font-size: 35px;
    line-height: 42px;
    text-transform: uppercase;
    font-weight: 900;
    cursor: default;
    color: var(--font-black);
    margin-bottom: 8px;
}
@media only screen and (max-width: 992px)
{
    .text-with-note h4
    {
        font-size: 14px;
        line-height: 110%;
    }
}
.text-with-note blockquote
{
    border:3px solid var(--background-black);
    background-color: var(--background-white);
    padding:45px 40px;
    color: var(--font-black);
    font-family: 'HelveticaNeueCyr', Helvetica, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    margin-bottom: 20px;
    position: relative;
}
@media only screen and (max-width: 992px)
{
    .text-with-note blockquote
    {
        font-size: 12px;
        line-height: 18px;
        padding: 10px;
        border-width: 1px;
    }
}
.text-with-note blockquote::after
{
    content:".";
    position: absolute;
    bottom:-21px;
    /* background: url('images/border-bottom-left.png') left bottom no-repeat, url('images/border-bottom-center.png') 25px bottom; */
    background: url('images/border-bottom-left.png') left bottom no-repeat;
    background-color: transparent;
    left:0;
    right:0;
    text-indent: -9999px;
    height:20px;
}
.text-with-note blockquote::before
{
    content:".";
    position: absolute;
    bottom:-21px;
    background-color: transparent;
    background-image: url('images/border-bottom-center.png');
    background-repeat: repeat-x;
    left:0%;
    margin-left:16px;
    /* right:12px; */
    right:0;
    text-indent: -9999px;
    height:20px;
}
@media only screen and (max-width: 992px)
{
    .text-with-note blockquote::before,
    .text-with-note blockquote::after
    {
        height:10px;
        bottom:-11px;
        background-size: 8px;
    }
    .text-with-note blockquote::before
    {
        margin-left: 8px;
    }
}
.text-with-note .content
{
    padding:20px 0;
}
@media only screen and (max-width: 992px)
{
    .text-with-note .content
    {
        padding:0;
        margin-bottom: 36px;
    }
}
@media only screen and (max-width: 767px)
{
    .text-with-note .content
    {
        margin-bottom: 0;
    }
}
.text-with-note .content p,
.text-with-note .content ul
{
    color: var(--font-black);
    text-align: justify;
    font-family: 'HelveticaNeueCyr', Helvetica, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    padding-bottom: 36px;
}
.text-with-note .content ul
{
    padding-left: 20px;
}
@media only screen and (max-width: 992px)
{
    .text-with-note .content p,
    .text-with-note .content ul
    {
        font-size: 12px;
        padding-bottom: 10px !important;
    }
}
.text-with-note .content *:last-child
{
    padding-bottom: 0;
}
@media only screen and (max-width: 992px)
{
    .two-columns-simple,
    .two-columns-simple *
    {
        border-width:1px !important;
    }
}
.two-columns-simple
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:0;
    border:3px solid var(--background-black);
}
@media only screen and (max-width: 992px)
{
    .two-columns-simple
    {
        display: block;
    }
}
.two-columns-simple > div
{
    padding:37px 42px;
}
.two-columns-simple > div:hover
{
    background-color:var(--background-white);
}
@media only screen and (max-width: 992px)
{
    .two-columns-simple > div
    {
        padding: 10px;
    }
}
.two-columns-simple > div:first-child
{
    border-right: 3px solid var(--background-black);
}
@media only screen and (max-width: 992px)
{
    .two-columns-simple > div:first-child
    {
        border-right: 0;
        border-bottom: 1px solid var(--background-black);
    }
}
.two-columns-simple > div h4
{
    font-family: 'Onest', sans-serif;
    font-size: 41px;
    line-height: 43px;
    font-weight: 900;
    color: var(--font-black);
    text-transform: uppercase;
    cursor: default;   
    margin-bottom: 13px;
}
@media only screen and (max-width: 992px)
{
    .two-columns-simple > div h4
    {
        font-size: 14px;
        line-height: 110%;
        margin-bottom: 10px;
    }   
}
.two-columns-simple > div p,
.two-columns-simple > div ul
{
    color: var(--font-black);
    text-align: justify;
    font-family: 'HelveticaNeueCyr', Helvetica, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    padding-bottom: 36px;       
}
.two-columns-simple > div ul
{
    padding-left: 20px;
}
.two-columns-simple > div > *:last-child
{
    padding-bottom: 0;
}
@media only screen and (max-width: 992px)
{
    .two-columns-simple > div p,
    .two-columns-simple > div ul
    {
        font-size: 12px;
        line-height: 150%;
    }
}
@media only screen and (max-width: 992px)
{
    .gdpr,
    .gdpr *
    {
        border-width:1px !important;
    }
}
.gdpr
{
    border: 3px solid var(--background-black);
    margin-bottom: 50px;
    position: relative;
}
.gdpr h4
{
    background-color: var(--background-black);
    font-family: 'Onest', sans-serif;
    font-size: 41px;
    line-height: 43px;
    font-weight: 900;
    color: var(--font-white);
    text-transform: uppercase;
    cursor: default;
    padding:40px 50px;
    text-align: center;
}
@media only screen and (max-width: 992px)
{
    .gdpr h4
    {
        padding:10px;
        font-size: 14px;
        line-height: 110%;
    }
}
.gdpr h5
{
    border-bottom: 3px solid var(--background-black);
    font-family: 'Onest', sans-serif;
    font-size: 35px;
    line-height: 42px;
    font-weight: 900;
    color: var(--font-black);
    text-transform: uppercase;
    cursor: default;
    padding: 30px 65px 35px 65px;
    text-align: center;
}
@media only screen and (max-width: 992px)
{
    .gdpr h5
    {
        padding:10px;
        font-size: 14px;
        line-height: 110%;
    }
}
.gdpr .columns
{
    display: grid;
    grid-template-columns: 1fr 2fr;
}
@media only screen and (max-width: 1250px)
{
    .gdpr .columns
    {
        display: block;
    }
}
.gdpr .columns h6
{
    font-family: 'Onest', sans-serif;
    font-size: 35px;
    line-height: 42px;
    font-weight: 900;
    color: var(--font-black);
    text-transform: uppercase;
    cursor: default;
    margin-bottom: 35px;
}
@media only screen and (max-width: 992px)
{
    .gdpr .columns h6
    {
        font-size: 14px;
        line-height: 110%;
        margin-bottom: 10px;
    }
}
.gdpr .columns .column-1
{
    border-right: 3px solid var(--background-black);
}
@media only screen and (max-width: 1250px)
{
    .gdpr .columns .column-1
    {
        border-right: 0;
        border-bottom: 3px solid var(--background-black);
    }
}
.gdpr .columns .column-1 > div
{
    padding: 22px 25px;
}
.gdpr .columns .column-2
{
    /*background-color: var(--background-white);*/
    padding: 22px 25px;
    padding-bottom: 46px;
}
@media only screen and (max-width: 992px)
{
    .gdpr .columns .column-1 > div,
    .gdpr .columns .column-2
    {
        padding:10px;
    }
}
.gdpr .columns > div:hover
{
    background-color: var(--background-white);
}
.gdpr .columns p
{
    color: var(--font-black);
    text-align: justify;
    font-family: 'HelveticaNeueCyr', Helvetica, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    padding-bottom: 36px;    
}
.gdpr .columns .column-1 p:last-child,
.gdpr .columns .column-2 p:last-of-type
{
    padding-bottom: 0;
}
@media only screen and (max-width: 992px)
{
    .gdpr .columns p
    {
        font-size:12px;
        line-height: 150%;
        padding-bottom: 18px;
    }
}
.gdpr .button-title
{
    transition: unset !important;
    display: block;
    text-align: center;
    font-family: 'Onest', sans-serif;
    font-size: 35px;
    line-height: 42px;
    font-weight: 900;
    color: var(--font-black);
    text-transform: uppercase;
    cursor: default;
    margin-top:60px;
    margin-bottom: 47px;
}
@media only screen and (max-width: 992px)
{
    .gdpr .button-title
    {
        margin:10px 0;
        font-size:24px;
        line-height: 100%;
    }
}
.gdpr .link
{
    width:765px;
    margin-left:auto;
    margin-right:auto;
    display: grid;
    grid-template-columns: 2fr 3fr 2fr;
    gap:33px;
}
.gdpr .link .arrow:first-child
{
    text-align: right;
}
.gdpr .button a
{
    color: var(--font-white);
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    font-size:22px;
    font-weight: bold;
    font-family: 'Onest', sans-serif;
    height: 100%;
    display: grid;
    align-items: center;
    background-color: var(--background-black);
    border:3px solid var(--background-black);
}
.gdpr .button a:hover
{
    background-color:var(--background-white);
    color: var(--font-black);
}
@media only screen and (max-width: 1300px)
{
    .gdpr .link
    {
        width: 100%;
        margin: unset;
        grid-template-columns: 1fr 165px 1fr;
        gap: 10px;
    }
    .gdpr .link svg
    {
        height: 30px;
        width: auto;
    }
    .gdpr .button a
    {
        font-size: 16px;
        height: 30px;
    }
}
.gdpr::after
{
    content:".";
    position: absolute;
    bottom:-21px;
    /* background: url('images/border-bottom-left.png') left bottom no-repeat, url('images/border-bottom-center.png') 25px bottom; */
    background: url('images/border-bottom-left.png') left bottom no-repeat;
    background-color: transparent;
    left:0;
    right:0;
    text-indent: -9999px;
    height:20px;
}
.gdpr::before
{
    content:".";
    position: absolute;
    bottom:-21px;
    background-color: transparent;
    background-image: url('images/border-bottom-center.png');
    background-repeat: repeat-x;
    left:0%;
    margin-left:16px;
    /* right:12px; */
    right:0;
    text-indent: -9999px;
    height:20px;
}
@media only screen and (max-width: 992px)
{
    .gdpr
    {
        margin-bottom: 25px;
    }
    .gdpr::before,
    .gdpr::after
    {
        height:10px;
        bottom:-11px;
        background-size: 8px;
    }
    .gdpr::before
    {
        margin-left: 8px;
    }
}
.simple-text
{
    border:3px solid var(--background-black);
    padding:38px 41px;
    background: url('images/icon-key-bg.svg') right center no-repeat;
}
@media only screen and (max-width: 992px)
{
    .simple-text
    {
        border-width: 1px;
        padding:10px;
        background: none;
    }
}
.simple-text h4
{
    width:75%;
    font-family: 'Onest', sans-serif;
    font-size: 41px;
    line-height: 43px;
    font-weight: 900;
    color: var(--font-black);
    text-transform: uppercase;
    cursor: default;
    margin-bottom: 25px;
}
@media only screen and (max-width: 992px)
{
    .simple-text h4
    {
        width: auto;
        font-size: 14px;
        line-height: 110%;
        margin-bottom: 10px;
    }
}
.simple-text ul
{
    padding-left:20px;
}
.simple-text p,
.simple-text ul
{
    color: var(--font-black);
    font-family: 'HelveticaNeueCyr', Helvetica, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    padding-bottom: 36px;   
}
@media only screen and (max-width: 992px)
{
    .simple-text p,
    .simple-text ul
    {
        font-size: 12px;
        line-height: 150%;
        padding-bottom: 18px;
    }
}
.simple-text .content *:last-child
{
    padding-bottom: 0;
}
.simple-text .content
{
    width:60%;
}
@media only screen and (max-width: 992px)
{
    .simple-text .content
    {
        width: auto;
    }
}
section.blockquote
{
    border:3px solid var(--background-black);
    padding:30px 46px;
    font-family: 'Onest', sans-serif;
    font-size: 24px;
    line-height: 30px;
    font-weight: 900;
    color: var(--font-black);
    text-transform: uppercase;
    cursor: default;
    background-color: var(--background-white);
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}
@media only screen and (max-width: 992px)
{
    section.blockquote
    {
        border-width: 1px;
        padding:10px;
        font-size: 14px;
        line-height: 130%;
    }
}
section.blockquote::after
{
    content:".";
    position: absolute;
    bottom:-21px;
    /* background: url('images/border-bottom-left.png') left bottom no-repeat, url('images/border-bottom-center.png') 25px bottom; */
    background: url('images/border-bottom-left.png') left bottom no-repeat;
    background-color: transparent;
    left:0;
    right:0;
    text-indent: -9999px;
    height:20px;
}
section.blockquote::before
{
    content:".";
    position: absolute;
    bottom:-21px;
    background-color: transparent;
    background-image: url('images/border-bottom-center.png');
    background-repeat: repeat-x;
    left:0%;
    margin-left:16px;
    /* right:12px; */
    right:0;
    text-indent: -9999px;
    height:20px;
}
@media only screen and (max-width: 992px)
{
    section.blockquote
    {
        margin-bottom: 25px;
    }
    section.blockquote::before,
    section.blockquote::after
    {
        height:10px;
        bottom:-11px;
        background-size: 8px;
    }
    section.blockquote::before
    {
        margin-left: 8px;
    }
}
section.privacy-policy .field-1-2
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    border:3px solid var(--background-black);
}
@media only screen and (max-width: 992px)
{
    section.privacy-policy .field-1-2
    {
        display: block;
    }
}
section.privacy-policy .field-1-2 > div,
section.privacy-policy .field-3
{
    padding:45px;
    color: var(--font-black);
    font-family: 'HelveticaNeueCyr', Helvetica, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}
@media only screen and (max-width: 992px)
{
    section.privacy-policy .field-1-2 > div,
    section.privacy-policy .field-3
    {
        padding:10px;
        font-size: 12px;
        line-height: 150%;
    }
}
section.privacy-policy .field-3
{
    border-left: 3px solid var(--background-black);
    border-right: 3px solid var(--background-black);
}
section.privacy-policy .field-1-2 > div:first-child
{
    border-right: 3px solid var(--background-black);
}
@media only screen and (max-width: 992px)
{
    section.privacy-policy .field-1-2 > div:first-child
    {
        border-right: 0;
        border-bottom: 1px solid var(--background-black);
    }
    section.privacy-policy .field-1-2,
    section.privacy-policy .field-3,
    section.privacy-policy .field-1-2 > div:first-child
    {
        border-width: 1px !important;
    }

}
@media only screen and (max-width: 992px)
{
    section.privacy-policy .handout .handout-item:nth-child(3),
    section.privacy-policy .handout .handout-item:nth-child(4)
    {
        display: grid;
        grid-column-end: span 2;
    }
}
section.case-meta
{
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-left:3px solid var(--background-black);
    border-right: 3px solid var(--background-black);
    border-bottom: 3px solid var(--background-black);
    background-color: var(--background-white);
}
section.case-meta .title
{
    background-color: var(--background-black);
    font-family: 'Onest', sans-serif;
    font-size: 41px;
    line-height: 43px;
    font-weight: 900;
    color: var(--font-white);
    text-transform: uppercase;
    cursor: default;
    padding:21px 33px;
}
@media only screen and (max-width: 992px)
{
    section.case-meta .title
    {
        font-size: 14px;
        line-height: 110%;
        text-align: center;
        padding:10px;
    }
}
section.case-meta div:first-child .title
{
    border-right:3px solid var(--background-white);
}
section.case-meta .srv,
section.case-meta .tg
{
    padding:30px 37px;
}
@media only screen and (max-width: 992px)
{
    section.case-meta .srv,
    section.case-meta .tg
    {
        padding:10px;
    }
}
section.case-meta .tg
{
    padding-bottom:12px;
}
@media only screen and (max-width: 992px)
{
    section.case-meta .tg
    {
        padding-bottom:8px;
    }
}
section.case-meta .srv
{
    border-right:3px solid var(--background-black);
}
section.case-meta .srv a
{
    font-family: 'Onest', sans-serif;
    font-size: 41px;
    line-height: 43px;
    font-weight: 900;
    color: var(--font-black);
    text-transform: uppercase;
}
@media only screen and (max-width: 992px)
{
    section.case-meta .srv
    {
        border-right:0;
    }
    section.case-meta > div:first-child
    {
        border-right: 1px solid var(--background-black);
    }
    section.case-meta .srv a
    {
        font-size: 14px;
        line-height: 110%;
    }
}
section.case-meta .tg a
{
    font-family: 'Onest', sans-serif;
    font-size: 24px;
    line-height: 30px;
    font-weight: 900;
    color: var(--font-black);
    text-transform: uppercase;
    display: inline-block;
    margin-right:13px;
    margin-bottom:18px;
}
@media only screen and (max-width: 992px)
{
    section.case-meta .tg a
    {
        font-size: 9px;
        line-height: 110%;
        margin-bottom: 2px;
        margin-right: 5px;
    }
}
section.case-meta .tg a:before 
{
    content: '#';
}
section.case-meta .srv a:hover,
section.case-meta .tg a:hover
{
    text-decoration: none;
}
@media only screen and (max-width: 992px)
{
    section.case-meta,
    section.case-meta *
    {
        border-width: 1px !important;
    }
}
section.portfolio-section
{
    border:3px solid var(--background-black);
}
section.portfolio-section.white
{
    background-color: var(--background-white);
}
section.portfolio-section.is-footer
{
    margin-bottom: 50px;
}
@media only screen and (max-width: 992px)
{
    section.portfolio-section.is-footer
    {
        margin-bottom: 35px;
    }
}
section.portfolio-section h3
{
    padding:19px 28px;
    background-color: var(--background-black);
    font-family: 'Onest', sans-serif;
    font-size: 41px;
    line-height: 43px;
    font-weight: 900;
    color: var(--font-white);
    text-transform: uppercase;
    cursor: default;
}
@media only screen and (max-width: 992px)
{
    section.portfolio-section h3
    {
        padding:10px;
        font-size: 14px;
        line-height: 110%;
        text-align: center;
    }
}
section.portfolio-section .section-portfolio-content
{
    padding:30px 28px;
    border-bottom: 3px solid var(--background-black);
}
@media only screen and (max-width: 992px)
{
    section.portfolio-section .section-portfolio-content
    {
        padding:10px;
    }
}
section.portfolio-section .section-portfolio-content:last-child
{
    border-bottom:0;
}
section.portfolio-section .section-portfolio-content p,
section.portfolio-section .section-portfolio-content ul
{
    color: var(--font-black);
    text-align: justify;
    font-family: 'HelveticaNeueCyr', Helvetica, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    padding-bottom: 36px;
}
@media only screen and (max-width: 992px)
{
    section.portfolio-section .section-portfolio-content p,
    section.portfolio-section .section-portfolio-content ul
    {
        font-size: 14px;
        line-height: 150%;
        padding-bottom: 21px;
    }
}
section.portfolio-section .section-portfolio-content *:last-child
{
    padding:0 !important;
}
section.portfolio-section .section-portfolio-content h4
{
    font-family: 'Onest', sans-serif;
    font-size: 41px;
    line-height: 43px;
    font-weight: 900;
    color: var(--font-black);
    text-transform: uppercase;
    cursor: default;
    margin-bottom: 30px;
}
@media only screen and (max-width: 992px)
{
    section.portfolio-section .section-portfolio-content h4
    {
        font-size: 24px;
        line-height: 100%;
        margin-bottom: 10px;
    }
}
section.portfolio-section .section-portfolio-footer
{
    background-color: var(--background-white);
    padding:30px 46px;
    text-align: center;
    font-family: 'Onest', sans-serif;
    font-size: 24px;
    line-height: 30px;
    font-weight: 900;
    color: var(--font-black);
    text-transform: uppercase;
    position: relative;
}
@media only screen and (max-width: 992px)
{
    section.portfolio-section .section-portfolio-footer
    {
        padding:10px;
        font-size: 14px;
        line-height: 130%;
    }
}
section.portfolio-section .section-portfolio-footer::before 
{
    content: ".";
    position: absolute;
    bottom: -23px;
    background-color: transparent;
    background-image: url(images/border-bottom-center.png);
    background-repeat: repeat-x;
    left: 16px;
    /* right: 12px; */
    right: 0;
    text-indent: -9999px;
    height: 20px;
}
section.portfolio-section .section-portfolio-footer::after
{
    content: ".";
    position: absolute;
    bottom: -23px;
    /* background: url('images/border-bottom-left.png') left bottom no-repeat, url('images/border-bottom-right.png') right bottom no-repeat; */
    background: url('images/border-bottom-left.png') left bottom no-repeat;
    background-color: transparent;
    left: 0;
    right: 0;
    text-indent: -9999px;
    height: 20px;
}
@media only screen and (max-width: 992px)
{
    section.portfolio-section .section-portfolio-footer::before
    {
        left:8px;
    }
    section.portfolio-section .section-portfolio-footer::before,
    section.portfolio-section .section-portfolio-footer::after
    {
        height: 10px;
        background-size: 8px;
        bottom: -11px;
    }
}
@media only screen and (max-width: 992px)
{
    section.portfolio-section,
    section.portfolio-section *
    {
        border-width: 1px !important;
    }
}
section.services-list
{
    display: grid;
    grid-template-columns: 41% 29% 15% 15% 41% 59%;
    border-top:3px solid var(--background-black);
    border-left: 3px solid var(--background-black);
}
section.services-list > div:first-child
{
    display: grid;
    grid-template-columns: 4fr 5fr;
    align-items: center;
}
section.services-list > div:first-child a:first-child
{
    border-right: 3px solid var(--background-black);
}
section.services-list > div:nth-child(5)
{
    grid-column: span 2;
    grid-column-start: 1;
}
section.services-list > div:nth-child(6)
{
    grid-column: span 3;
}
section.services-list > div
{
    border-right:3px solid var(--background-black);
    border-bottom: 3px solid var(--background-black);
    text-align: center;
    display: grid;
    align-items: center;
}
section.services-list > div a
{
    font-family: 'Onest', sans-serif;
    font-size: 24px;
    line-height: 30px;
    font-weight: 900;
    color: var(--font-black);
    text-transform: uppercase;
    padding:30px 0;
    text-decoration: none;
}
@media only screen and (max-width: 1400px) 
{
    section.services-list > div a
    {
        font-size: 20px;
        line-height: 26px;
    }
}
@media only screen and (max-width: 1200px) 
{
    section.services-list > div a
    {
        font-size: 16px;
        line-height: 22px;
    }
}
section.services-list > div a:hover
{
    color:var(--font-white);
}
section.services-list > div a.active
{
    background-color: var(--background-black);
    color:var(--font-white);
}
section.services-list > div:not(:first-child):has(a:hover)
{
    background-color: var(--background-black);
}
section.services-list > div:first-child a:hover
{
    background-color: var(--background-black);
}
@media only screen and (max-width: 993px)
{
    section.services-list
    {
        display: none !important;
    }
}
section.services-list-mobile
{
    display: none;
}
@media only screen and (max-width: 992px)
{
    section.services-list-mobile
    {
        display: block;
        border:1px solid var(--background-black);
        border-bottom:0;
    }
    section.services-list-mobile > div:nth-child(1)
    {
        display: grid;
        grid-template-columns: 45% 55%;
    }
    section.services-list-mobile > div:nth-child(2)
    {
        display: grid;
        grid-template-columns: 60% 40%;
    }
    section.services-list-mobile > div:nth-child(3)
    {
        display: grid;
        grid-template-columns: 70% 30%;
    }
    section.services-list-mobile > div
    {
        text-align: center;
        display: grid;
        align-items: center;
        border-bottom:1px solid var(--background-black);
    }
    section.services-list-mobile > div a
    {
        font-family: 'Onest', sans-serif;
        font-size: 14px;
        line-height: 110%;
        font-weight: 900;
        color: var(--font-black);
        text-transform: uppercase;
        padding: 10px;
        text-decoration: none;
    }
    section.services-list-mobile > div:not(:last-child) a:last-child
    {
        border-left:1px solid var(--background-black);
    }
    section.services-list-mobile > div a.active
    {
        background-color: var(--background-black);
        color:var(--font-white);
    }
}
@media only screen and (max-width: 390px)
{
    section.services-list-mobile > div a
    {
        padding-left:7px;
        padding-right:7px;
        font-size: 12px;
    }
}
section.tag-list
{
    text-align: justify;
}
section.tag-list span
{
    cursor: default;
}
section.tag-list a,
section.tag-list span
{
    font-family: 'Onest', sans-serif;
    font-size: 24px;
    line-height: 30px;
    font-weight: 900;
    color: var(--font-black);
    text-transform: uppercase;
    padding: 5px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 7px;
}
section.tag-list span,
section.tag-list a:hover
{
    background-color: var(--background-black);
    color:var(--font-white);
}
@media only screen and (max-width: 992px)
{
    section.tag-list
    {
        padding:0 10px;
        text-align: justify;
    }
    section.tag-list a
    {
        font-size: 14px;
        line-height: 110%;
    }
}
section.tag-list a:hover
{
    background-color: var(--background-black);
    color:var(--font-white);
    text-decoration: none;
}
section.single-case-from-list
{
    margin-bottom: 50px;
    border:3px solid var(--background-black);
}
@media only screen and (max-width: 992px)
{
    section.single-case-from-list
    {
        margin-bottom: 35px;
    }
}

section.single-case-from-list
{
    padding-top:30px;
}
@media only screen and (max-width: 992px)
{
    section.single-case-from-list
    {
        padding-top: 10px;
    }
}
section.single-case-from-list .case-meta
{
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    padding-left: 30px;
    padding-right: 30px;
}
@media only screen and (max-width: 992px)
{
    section.single-case-from-list .case-meta
    {
        padding-left: 10px;
        padding-right: 10px;
        grid-template-columns: 1fr 80px;
        margin-bottom: 25px;
    }
}
section.single-case-from-list .case-meta h3
{
    margin-bottom: 0;
}
section.single-case-from-list .case-meta h3 a
{
    font-family: 'Onest', sans-serif;
    font-size: 35px;
    line-height: 42px;
    font-weight: 900;
    color: var(--font-black);
    text-transform: uppercase;
    text-decoration: none;
}
@media only screen and (max-width: 992px)
{
    section.single-case-from-list .case-meta h3 a
    {
        font-size: 24px;
        line-height: 100%;
    }
}
section.single-case-from-list .case-meta h3 a:hover
{
    text-decoration: underline;
}
section.single-case-from-list .case-meta span
{
    text-align: right;
    display: grid;
    align-items: center;
    font-family: 'HelveticaNeueCyr', Helvetica, sans-serif;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
}
@media only screen and (max-width: 992px)
{
    section.single-case-from-list .case-meta span
    {
        font-size: 12px;
        line-height: 150%;
    }
}
section.single-case-from-list .case-lead
{
    margin-bottom: 30px;
    font-family: 'HelveticaNeueCyr', Helvetica, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    padding-left: 30px;
    padding-right: 30px;
}
@media only screen and (max-width: 992px)
{
    section.single-case-from-list .case-lead
    {
        margin-bottom: 10px;
        font-size: 12px;
        line-height: 150%;
        padding-left: 10px;
        padding-right: 10px;
    }
}
section.single-case-from-list .read-more
{
    background-color: var(--background-white);
    display: grid;
    position: relative;
    font-family: 'Onest', sans-serif;
    font-size: 35px;
    line-height: 42px;
    font-weight: 900;
    color: var(--font-black);
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    height:74px;
    align-items: center;
    border-top:3px solid var(--background-black);
}
@media only screen and (max-width: 992px)
{
    section.single-case-from-list .read-more
    {
        font-size: 24px;
        line-height: 100%;
        height: 46px;
    }
}
section.single-case-from-list .read-more::before 
{
    content: ".";
    position: absolute;
    bottom: -23px;
    background-color: transparent;
    background-image: url(images/border-bottom-center.png);
    background-repeat: repeat-x;
    left: 16px;
    /* right: 12px; */
    right: 0;
    text-indent: -9999px;
    height: 20px;
}
section.single-case-from-list .read-more::after
{
    content: ".";
    position: absolute;
    bottom: -23px;
    /* background: url('images/border-bottom-left.png') left bottom no-repeat, url('images/border-bottom-right.png') right bottom no-repeat; */
    background: url('images/border-bottom-left.png') left bottom no-repeat;
    background-color: transparent;
    left: 0;
    right: 0;
    text-indent: -9999px;
    height: 20px;
}
@media only screen and (max-width: 992px)
{
    section.single-case-from-list .read-more::before
    {
        left:8px;
    }
    section.single-case-from-list .read-more::before,
    section.single-case-from-list .read-more::after
    {
        height: 10px;
        background-size: 8px;
        bottom: -11px;
    }
}
@media only screen and (max-width: 992px)
{
    section.single-case-from-list,
    section.single-case-from-list *
    {
        border-width:1px !important;
    }
}
footer
{
    background-color: var(--background-black);
}
footer > div
{
    max-width: 1360px;
    margin: 0 auto;
    height:87px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-left: 40px;
    padding-right: 40px;
}
@media only screen and (max-width: 992px)
{
    footer > div
    {
        padding:15px 10px;
        display: block;
        min-height: 50px;
        height: auto;
    }
}
footer > div div:last-child
{
    text-align: right;
}
@media only screen and (max-width: 992px)
{
    footer > div div:last-child
    {
        text-align: center;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}
footer > div div,
footer > div div a
{
    color:var(--font-white);
    font-size:16px;
    line-height: 20px;
    font-family: 'HelveticaNeueCyr', Helvetica, sans-serif;
    font-style: normal;
}
@media only screen and (max-width: 992px)
{
    footer > div div
    {
        min-height: 25px;
    }
    footer > div div,
    footer > div div a
    {
        font-size: 14px;
        line-height: 150%;
    }
}
footer > div div a
{
    display: inline-block;
}
footer > div div a:first-child
{
    margin-right:80px;
}
@media only screen and (max-width: 992px)
{
    footer > div div a:first-child
    {
        margin:0;
    }
}
footer > div div a:hover
{
    text-decoration: none;
}
@media only screen and (max-width: 992px)
{
    footer > div div:first-child
    {
        color:#C5CCFF;
        text-align: center;
    }
}
img.smile-img
{
    display: none !important;
}
@media only screen and (min-width: 1200px)
{
    section.briefing,
    .services-list .bg-white-old,
    .contacts .scheduler,
    .handout-item.black,
    .thesis-columns .col-1,
    .q-a .answers .answer > div:last-child,
    .hero.smile-up,
    .hero.smile-down,
    .two-columns-simple div:first-child,
    .case-meta,
    .section-portfolio-footer,
	.two-columns blockquote,
	.svg-text.smile .desktop-content
    {
        position: relative;
    }
    img.smile-img
    {
        cursor:pointer;
        display: block !important;
        z-index: 3;
        -ms-user-select: none;
        -webkit-user-select: none;
        user-select: none;
    }
    section.briefing img.smile-img
    {
        position: absolute;
        width:117px;
        height:117px;
        left:15%;
        top:-75px;
    }
    .services-list .bg-white-old img.smile-img
    {
        position: absolute;
        width: 117px;
        height: 117px;
        right: -57px;
        bottom: -75px;
    }
    .contacts .scheduler img.smile-img
    {
        position: absolute;
        width: 117px;
        height: 117px;
        right: 5%;
        top: -59px;
    }
    .handout-item.black img.smile-img
    {
        position: absolute;
        width: 117px;
        height: 117px;
        right: -20px;
        top: -57px;
    }
    .thesis-columns .col-1 img.smile-img
    {
        position: absolute;
        width: 117px;
        height: 117px;
        right: -65px;
        bottom: -75px;
    }
    .q-a .answers .answer > div:last-child img.smile-img
    {
        position: absolute;
        width: 117px;
        height: 117px;
        right: 75px;
        bottom: -57px;
    }
    .hero.smile-up img.smile-img
    {
        position: absolute;
        width: 117px;
        height: 117px;
        left: 75px;
        top: -75px;
    }
    .hero.smile-down img.smile-img
    {
        position: absolute;
        width: 117px;
        height: 117px;
        right: 75px;
        bottom: -75px;
    }
    .two-columns-simple div:first-child img.smile-img
    {
        position: absolute;
        width: 117px;
        height: 117px;
        right: -57px;
        bottom: -57px;
    }
    .case-meta img.smile-img
    {
        position: absolute;
        width: 117px;
        height: 117px;
        right: 75px;
        top: -75px;
    }
    .section-portfolio-footer img.smile-img
    {
        position: absolute;
        width: 117px;
        height: 117px;
        right: 100px;
        bottom: -75px;
    }
	.two-columns blockquote img.smile-img
    {
        position: absolute;
        width: 117px;
        height: 117px;
        left: -45px;
        top: -95px;
    }
	.svg-text.smile .desktop-content img.smile-img
	{
        position: absolute;
        width: 117px;
        height: 117px;
        right: 25px;
        bottom: -40px;		
	}
}