/* version 1.0 */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: graphiklcg;
}

@font-face {
    font-family: "RubikMonoOne";
    src: url('./fonts/RubikMonoOne-Regular.ttf');
    font-style: normal;
    font-weight: normal;
}

.grecaptcha-badge { visibility: hidden; }

html {
    scroll-behavior: smooth;
}

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

body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    max-width: 1920px;
    margin: 0 auto;
}

.container {
    max-width: 1800px;
    margin: auto;
    padding: 20px;
}

header {
    background: #000000;
    height: 92px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: inherit;
}

header .phone a {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
}

header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

header .logo-txt {
    display: flex;
    flex-direction: column;
}

header .logo-txt-top {
    color: #fff;
    text-transform: uppercase;
    font-size: 23px;
    line-height: 20px;
}

header .logo-txt-bottom {
    color: #878693;
    letter-spacing: 3px;
    line-height: 20px;
}

.main-img {
    background-image: url('/wp-content/themes/pv/images/main-bg.jpg');
    background-repeat: no-repeat;
    background-position: top;
    min-height: 800px;
    width: 100%;
    background-size: 100%;
    margin-bottom: 80px;
}

.main-img-inner {
    display: flex;
    flex-direction: column;
    min-height: inherit;
    max-width: 50%;
    justify-content: center;
    align-items: center;
}

.main-img-header {
    color: #86614c;
    font-size: 42px;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    margin-bottom: 20px;
    line-height: 40px;
}

.main-img-txt {
    color: #fff;
    font-size: 20px;
    text-align: center;
}

.main-img-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    text-align: center;
}

.call-me-button {
    background-color: #012b4d;
    color: #fff;
    padding: 10px 30px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.call-me-button:hover,
.send-hair-button:hover,
.step-button:hover,
input[type=submit]:hover {
    background-color: #86614c;
}

.send-hair-button {
    background-color: #41414d;
    color: #fff;
    padding: 10px 30px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    display: block;
    text-decoration: none;
}

.simple-steps-wrapper {
    margin-bottom: 80px;
}

.simple-steps-wrapper .container {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.simple-step-header {
    font-size: 28px;
    margin-top: 10px;
    text-align: center;
}

.simple-step-2 {
    position: relative;
    height: 100%;
}

.simple-step-2-inner {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgb(0, 0, 0, 0.7);
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-button {
    background: #41414d;
    color: #fff;
    width: 80%;
    text-align: center;
    margin: 15px auto 0;
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    display: block;
    text-decoration: none;
}

.we-pay-more {
    height: 400px;
    width: 100%;
    background-image: url('/wp-content/themes/pv/images/we-pay-more.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-bottom: 80px;
}

.we-pay-more-inner {
    background: rgba(0, 0, 0, 80%);
    height: 100%;
}

.we-pay-more-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: inherit;
    flex-direction: column;
}

.we-pay-more-header {
    color: #fff;
    font-size: 40px;
    font-family: Arial, Helvetica, sans-serif;
}

.we-pay-more-description {
    color: #878693;
    font-size: 18px;
}

.how-much h2 {
    text-align: center;
    font-size: 36px;
}

.how-much-subheader {
    color: #878693;
    text-align: center;
    font-size: 18px;
}

.how-much-table {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.how-much-table-block {
    border: 1px solid #000;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    flex: 1;
    transition: all 0.3s ease-in-out;
    cursor: default;
}

.how-much-table-block:hover {
    transform: scale(1.01);
}

.hair-length {
    margin-bottom: 30px;
    font-size: 26px;
}

.hair-cost {
    font-size: 48px;
    display: flex;
    flex-direction: column;
    line-height: 60%;
    font-family: "RubikMonoOne";
    color: #ff7f50;
}

.hair-cost span {
    font-size: 14px;
    font-weight: 400;
    color: #878693;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 36px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 80%;
    margin: 0 auto;
}

input,
textarea {
    width: 100%;
    font-size: 18px;
    padding: 15px;
}

input[type=submit] {
    background: #41414d;
    color: #fff;
    text-align: center;
    margin: 15px auto 0;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    display: block;
    text-decoration: none;
}

.contact-form fieldset {
    display: none;
}

@-webkit-keyframes animatezoom {
    from {
        -webkit-transform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@keyframes animatezoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.modal-reg {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    padding: 60px 9px 0px 9px;
}

.modal-content-reg {
    background: #FBFBFB;
    border-radius: 7px;
    color: #121212;
    padding: 32px 56px 64px 56px;
    margin: 5% auto 15% auto;
    max-width: 495px;
}

.animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
}

.modal__title-reg {
    text-align: center;
    font-weight: 500;
    font-size: 24px;
    line-height: 33px;
    margin-bottom: 24px;
}

footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-family: Arial, Helvetica, sans-serif;
}

@media (max-width: 1440px) {
    .main-img {
        min-height: 700px;
    }
    .how-much-table {
        gap: 15px;
    }
}

@media (max-width: 1200px) {
    .main-img {
        min-height: 500px;
    }
    .how-much-table-block {
        flex: 0 0 calc(33.33% - 10px);
    }
}

@media (max-width: 1024px) {
    .main-img {
        min-height: 400px;
    }

    .simple-steps-wrapper .container {
        flex-direction: column;
        width: 70%;
    }

    .simple-steps-wrapper img {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .main-img {
        min-height: auto;
        background-size: cover;
        padding: 20px 0;
    }

    .main-img-inner {
        max-width: 80%;
        margin: 0 auto;
        padding: 20px;
        background: rgb(255, 255, 255, 0.5);
        border-radius: 10px;
    }

    .main-img-buttons {
        flex-direction: column;
    }

    form {
        width: 90%;
    }
}

@media (max-width: 640px) {
    .how-much-table-block {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    header {
        height: 160px;
    }

    header .container {
        flex-direction: column;
    }
}

@media (max-width: 425px) {
    .contacts {
        margin-top: 20px;
    }

    .simple-steps-wrapper .container {
        width: 100%;
    }

    .we-pay-more-inner {
        padding: 0 40px;
        text-align: center;
    }

    form {
        width: 95%;
    }
    .how-much-table-block {
        flex: 0 0 100%;
    }
}