:root {
    --main-bg-color: #ededed;
    --color-black: #030303;
    --color-yellow: #ffed00;
    --color-white: #ffffff;
    --color-gray: #d9d9d9;
    --color-dark: #4f4f4f;
    --main-color-text: #262626;
    --h2-color: #7f7f7f;
    --border-color: #d9d9d9;
}
* {
    margin: 0;
    padding: 0;
    font-family: Poppins, sans-serif;
}
body {
    background: var(--main-bg-color);
}
a {
    text-decoration: none;
    display: inline-block;
    color: var(--main-color-text);
}
img {
    max-width: 100%;
}
b {
    font-weight: 500;
}
ul {
    list-style: none;
}
ul li {
    display: flex;
    align-items: center;
    margin-top:10px;
}
ul li:before {
    content: " ";
    width:32px;
    height:32px;
    background: url(../img/icon-check.png);
    background-size: 100%;
    display: inline-block;
    margin-right: 10px;
}
.content {
    margin: 0 auto;
    width: 1150px;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header {
    margin: 40px 0 0;
}

.menu a {
    margin-left: 10px;
    font-weight: 600;
}

.button {
    padding: 12px 25px;
    border-radius: 10px;
    border: none;
    font-weight: 500;
}
.button:hover {
    border: var(--main-color-text) 1px solid;
}
.button-gray {
    background: var(--color-gray);
    border: var(--color-gray) 1px solid;
}
.button-yellow {
    background: var(--color-yellow);
    border: var(--color-yellow) 1px solid;
}
.button-black {
    background: var(--color-black);
    border: var(--color-black) 1px solid;
    color: var(--color-white);
}
.button-bordered {
    border: var(--main-color-text) 1px solid;
}
.button-bordered:hover {
    border: var(--main-bg-color) 1px solid;
}
.button-none {
    background: none;
}

.info-text {
    width: 45%;
}
h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 35px;
}
.info-buttons {
    margin-top:30px;
    display: flex;
    justify-content: space-between;
}

h2 {
    color: var(--h2-color);
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin: 70px auto 15px;
}
.content-descr {
    margin: 0 auto;
    padding-bottom: 25px;
    text-align: center;
    width:50%;
    font-size: 20px;
}
.products-block > div {
    background-color: var(--color-white);
}
.product-block {
    padding:30px;
    border-radius: 15px;
}
.product-block:nth-child(1) {
    border-radius: 15px 0 0 15px;
}
.product-block:nth-child(3) {
    border-radius: 0 15px 15px 0;
}
.product-block-big {
    padding: 30px 30px 60px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .15);
    position: relative;
    z-index: 1;
}
.p-b-title {
    font-weight: 700;
    font-size: 20px;
}
.product-block-big .p-b-title {
    font-size: 24px;
}
.p-b-img {
    margin-top:15px;
    text-align: center;
}
.p-b-descr {
    margin-top:15px;
}
.p-b-button {
    margin-top: 20px;
}
.p-b-button a {
    width: calc(100% - 50px);
    text-align: center;
    font-weight: 500;
}
.product-info {
    margin: 0px 30px 0;
}
.product-info-title {
    margin: 30px 0px 0;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
}
.border-gray {
    border-bottom: 2px solid var(--border-color);
}
.product-info-title > div {
    font-size: 32px;
    font-weight: 600;
    color: var(--main-color-text);
    text-align: left;
    width: calc(33.3% - 30px);
    padding-left:30px;
}
.product-info-title > div:first-child {
    padding-left:0px;
}
.product-info-list {
    align-items: flex-start;
    margin-top:20px;
    padding-bottom: 30px;
}
.product-info-list > div {
    width: calc(33.3% - 30px);
    padding-left:30px;
}
.product-info-list > div:first-child {
    padding-left:0px;
}
.mission-info {
    margin-top: 50px;
    font-size: 55px;
    font-weight: 600;
    padding-bottom: 10px;
}
.mission-info > div {
    width: 50%;
}
.mission-info > div:first-child {
    padding-right: 50px;
    width: calc(50% - 50px);
}
.mt-1 {
    margin-top:40px;
}
.mt-2 {
    margin-top:70px;
}
.white-block {
    background-color: var(--color-white);
    box-shadow: 0 0 20px rgba(0, 0, 0, .15);
    border-radius: 15px;
}
.white-block > div {
    width: calc(50% - 100px);
    padding: 50px 50px 60px;
}
.wcu-title {
    margin-top: 10px;
    font-size: 55px;
    font-weight: 600;
}
.wcu-descr {
    font-size: 20px;
    margin-top:10px;
}
.wcu-button {
    margin-top:30px;
}
.wcu-button .button {
    padding-left:40px;
    padding-right: 40px;
}
.wcu-list {
    margin: 30px 0 0;
    padding-bottom: 45px;
    border-bottom: 2px solid var(--border-color);
}
.wcu-list:last-child {
    border-bottom: none;
}
.wcu-num {
    font-size: 48px;
    font-weight: 500;
}
.wcu-text {
    font-size: 24px;
}
.wcu-black {
    width: calc(1147px - 80px);
    height: calc(670px - 80px);
    background: url(../img/wcu-black.png) no-repeat;
    border-radius: 15px;
    margin-top: 60px;
    padding: 40px;
}
.wcu-percent {
    font-size: 210px;
    font-weight: 600;
    color: var(--color-white);
    margin-top:20px;
}
.wcu-percent-descr {
    color: var(--color-white);
    font-size: 32px;
    margin-top:-40px;
}
.wcu-white {
    background-color: var(--main-bg-color);
    padding: 30px;
    margin-top:40px;
    border-radius: 15px;
}
.wcu-bold {
    font-size:64px;
    font-weight:500;
    white-space: nowrap;
    padding-right:20px;
}
.wcu-text {
    font-size:24px;
}
.white-block img {
    border-radius: 15px;
}

.review {
    width:calc(30% - 50px);
    border-radius: 15px;
    background-color: var(--color-white);
    padding:30px;
    text-align: center;
}
.review-text {
    font-weight:600;
    font-size:19px;
}
.review-author {
    font-weight:600;
    font-size:19px;
}
.review-company {
    font-size:16px;
    color: var(--color-dark);
}

.p-30 {
    width:30%;
}
.p-15 {
    width:15%;
}
.text-normal {
    font-weight: 400!important;
}
.text-underline {
    text-decoration: underline;
}
footer {
    margin-top: 70px;
    border-top: var(--border-color) 2px solid;
    padding: 30px 0 80px;
}
footer > div {
    align-items: flex-start!important;
}
.footer-title {
    font-size: 28px;
    font-weight: 600;
}
.footer-flag {
    margin: 15px 0 5px;
    justify-content: flex-start;
}
.footer-flag > div {
    margin-right:15px;
}
.footer-copy {
    font-size: 16px;
    color: var(--h2-color);
}
.footer-menu a {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}
.footer-menu > div a {
    margin-bottom: 0px;
    white-space: nowrap;
}

.popup {
    position: fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    z-index:9999;
    background: rgba(255, 255, 255, .5);
    display: none;
}
.popup-wrap {
    position: fixed;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height:90%;
    background-color: var(--main-bg-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup-block {
    justify-content: center;
    align-items: center;
}
.popup .white-block {
    padding: 30px 30px;
    margin-right: 50px;
}
.popup .white-block img {
    max-width:500px;
}
.form h2 {
    font-size: 42px;
    text-align: left;
    color: var(--color-black);
    margin-top:0;
}
.form .content-descr {
    text-align: left;
    width:100%;
    padding-bottom:5px;
    font-size:16px;
}
.form-element {
    margin-top: 15px;
}
.form-element label {
    display: block;
    font-size: 16px;
}
.form-element input, .form-element textarea {
    margin-top: 6px;
    background-color: var(--color-white);
    border-radius: 10px;
    padding:4px 10px;
    width: calc(100% - 20px);
    outline: none;
    border: none;
    height: 40px;
}
.form-element textarea {
    height: 100px;
}
.form button {
    width:100%;
    margin-top:20px;
    cursor: pointer;
}

.mobile-menu {
    display:none;
    position: fixed;
    background-color: var(--color-yellow);
    width: 70%;
    top:0;
    right:0;
    bottom: 0;
    z-index: 2;
    padding-left: 30px;
    padding-bottom: 20px;
    padding-top: 20px;
}
.mobile-menu a {
    display: block;
    margin-top: 10px;
    font-weight: 500;
}
.mobile-menu-icon {
    display: none;
    width: 40px;
    padding-right:10px;
}
.logo img {
    max-width: 189px;
}
.info-img img {
    max-width:660px;
}

@media (max-width: 767px) {
    .content {
        width: 360px;
    }
    .flex {
        justify-content: center;
        flex-wrap: wrap;
    }
    .info-text {
        width: 100%;
    }
    .product-block {
        border-radius: 15px!important;
        margin-bottom: 20px;
    }
    .products-info {
        display: none;
    }
    .content-descr {
        width: 100%;
    }
    .mission-info {
        margin-top: 50px;
        font-size: 25px;
        font-weight: 600;
        padding-bottom: 10px;
    }
    .mission-info > div {
        width: 100% !important;
        padding:0!important;
        margin-bottom: 15px;
    }
    h1 { font-size: 32px; }
    h2 {
        font-size: 32px;
    }
    .white-block > div {
        width: 100%;
    }
    .wcu-title {
        font-size: 32px;
    }
    .wcu-num {
        font-size: 28px;
    }
    .mpb-0 {
        padding-bottom: 0!important;
        margin-bottom: 0!important;
    }
    .wcu-black {
        width: calc(100% - 60px);
        height:auto;
        background: url(../img/wcu-black.png) no-repeat;
        border-radius: 15px;
        margin-top: 60px;
        padding: 30px;
    }
    .wcu-percent {
        font-size: 72px;
        margin-top: 15px;
    }
    .wcu-percent-descr {
        font-size: 18px;
        margin-top:5px;
    }
    .wcu-white {
        padding: 15px;
        margin-top:20px;
    }
    .wcu-bold {
        font-size:28px;
        padding-right:0;
    }
    .wcu-text {
        font-size:16px;
    }
    .review {
        width: calc(100% - 50px);
        margin-bottom: 15px;
    }
    .p-15, .p-30 {
        width: 100%;
    }
    .popup .white-block {
        display: none;
    }
    .form {
        padding: 30px 30px 30px 20px;
    }
    .popup-wrap {
        position:relative;
    }
    .menu {
        display:none;
    }
    .mobile-menu-icon {
        display:block;
    }
    header .flex {
        justify-content: space-between;
    }
}