/*!
Theme Name: hunters
Theme URI: http://underscores.me/
Author: PPP Industry
Author URI: https://ppp-industry.com
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: hunters
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

hunters is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
:root {
    --color-accent: #FBED20;
    --color-light-gray: #F4F4F4;
    --color-gray: #727272;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

ul, li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    padding: 0 15px;
    width: 100%;
    margin: 0 auto;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #000;
    background-color: var(--color-light-gray);
}

.title {
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    text-transform: uppercase;
    color: #000;
}

.title span {
    color: var(--color-accent);
    background-color: #333333;
    padding: 0 3px;
}

/* BUTTON */

.btn {
    appearance: none;
    text-decoration: none;
    height: 60px;
    width: 100%;
    border: 2px solid var(--color-accent);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: var(--color-accent);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    line-height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all .3s;
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: var(--color-gray);
}

.btn.btn--dark {
    border: 2px solid #000;
    background-color: #000;
    color: #fff;
}

.btn.btn--dark:hover {
    background-color: transparent;
    color: #000;
}

/* \BUTTON */

/* FORM */

.form-wrapper input {
    appearance: none;
    outline: none;
    width: 100%;
    height: 80px;
    padding: 0 20px 0 76px;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 2px solid transparent;
    transition: all .3s;
}

.form-wrapper input::placeholder {
    color: #000;
}

.form-wrapper label {
    position: relative;
}

.form-wrapper label svg {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    z-index: 10;
}

.wpcf7-not-valid-tip,
.wpcf7-response-output,
.wpcf7-spinner {
    display: none;
}

/* \FORM */

/* CHK BOX */

label[for="home-intro__chk"],
label[for="sale__chk"],
label[for="contact__chk"] {
    display: flex;
    align-items: center;
    gap: 19px;
}

label[for="home-intro__chk"] .wpcf7-list-item-label,
label[for="sale__chk"] .wpcf7-list-item-label,
label[for="contact__chk"] .wpcf7-list-item-label {
    font-size: 0;
    position: relative;
    display: flex;
    cursor: pointer;
}

label[for="home-intro__chk"] > span,
label[for="sale__chk"] > span,
label[for="contact__chk"] > span {
    margin: 0;
    display: flex;
}

label[for="home-intro__chk"] > span span,
label[for="sale__chk"] > span span,
label[for="contact__chk"] > span span{
    margin: 0;
    display: flex;
}

label[for="home-intro__chk"] input,
label[for="sale__chk"] input,
label[for="contact__chk"] input {
    display: none;
}

label[for="home-intro__chk"] .wpcf7-list-item-label::after,
label[for="sale__chk"] .wpcf7-list-item-label::after,
label[for="contact__chk"] .wpcf7-list-item-label::after {
    content: " ";
    width: 26px;
    min-width: 26px;
    height: 26px;
    display: block;
    background: #fff;
    border-radius: 5px;
    border: 2px solid #959595;
    cursor: pointer;
    margin: 0;
}

label[for="sale__chk"] .wpcf7-list-item-label::after {
    border: 2px solid #727272;
    background: transparent;
}

label[for="home-intro__chk"] .wpcf7-list-item-label::before,
label[for="sale__chk"] .wpcf7-list-item-label::before,
label[for="contact__chk"] .wpcf7-list-item-label::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='15' viewBox='0 0 21 15' fill='none'%3E%3Cpath d='M1 4.9L7.90909 14L20 1' stroke='%23959595' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/svg%3E");
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 15px;
    opacity: 0;
    transition: all .3s;
}

label[for="home-intro__chk"] input:checked + .wpcf7-list-item-label::before,
label[for="sale__chk"] input:checked + .wpcf7-list-item-label::before,
label[for="contact__chk"] input:checked + .wpcf7-list-item-label::before {
    opacity: 1;
}

label[for="home-intro__chk"] .wpcf7-not-valid-tip,
label[for="sale__chk"] .wpcf7-not-valid-tip,
label[for="contact__chk"] .wpcf7-not-valid-tip {
    display: none;
}

.chk-svg.home-intro__chk-svg {
    display: none;
    align-items: center;
    justify-content: center;
    width: 30px;
    min-width: 30px;
    height: 30px;
    border: 2px solid #959595;
    background-color: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
}

.chk-svg svg {
    stroke-dasharray: 40;
    stroke-dashoffset: 50;
    transition: all .5s;
}

.chk {
    /*display: none;*/
}

.chk:checked + .chk-svg svg {
    stroke-dasharray: 30;
    stroke-dashoffset: 0;
}

.chk-text {
    font-size: 11px;
    line-height: 13px;
    color: #818181;
    max-width: 393px;
    font-weight: 400;
}

/* \CHK BOX */

/* HEADER */

.header {
    background-color: rgba(255, 255, 255, 0.7);
    position: sticky;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 10;
}

.header.header--active {
    background-color: #fff;
    box-shadow: 0 -6px 10px 1px var(--color-gray);
}

.header__logo {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    padding-right: 107px;
}

.header__logo:after {
    content: '';
    width: 495px;
    height: 100%;
    top: 0;
    right: 0;
    background-color: var(--color-gray);
    display: block;
    position: absolute;
    clip-path: polygon(93% 0, 100% 50%, 93% 100%, 0 100%, 0 0);
    z-index: -1;
}

.header__logo:before {
    content: '';
    width: 3000px;
    height: 100%;
    top: 0;
    right: 107px;
    background-color: var(--color-gray);
    display: block;
    position: absolute;
    z-index: -1;
}

.header > .container {
    display: flex;
    align-items: center;
    height: 80px;
}

.header__socials {
    margin: 0 auto;
}

.header__phone {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header__phone-wrapper a {
    text-align: right;
    color: #000;
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
    display: block;
    white-space: nowrap;
    margin-bottom: 7px;
    transition: all .3s;
}

.header__phone-wrapper a:hover {
    color: var(--color-accent);
}

.header__phone-wrapper span {
    font-size: 13px;
    line-height: 16px;
    color: #2E2E2E;
    display: block;
}

.header__btn {
    text-transform: initial;
    max-width: 215px;
    min-width: 215px;
}

.header__btn svg {
    display: none;
    width: 18px;
    height: 18px;
}

@media (max-width: 992px) {
    .header__logo {
        padding-right: 70px;
    }

    .header__logo svg {
        width: 150px;
        height: 29px;
    }

    .header__btn {
        height: 40px;
        max-width: 190px;
        min-width: initial;
    }

    .header__phone-wrapper a {
        font-size: 13px;
        line-height: 15px;
        margin-bottom: 0;
    }

    .header__phone-wrapper span {
        font-size: 10px;
        line-height: 12px;
    }
}

@media (max-width: 750px) {
    .header > .container {
        height: 60px;
    }

    .header__phone-wrapper {
        display: none;
    }
}

@media (max-width: 568px) {
    .header__btn svg {
        display: block;
    }

    .header__btn span {
        display: none;
    }

    .header__btn {
        width: 30px;
        min-width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .header__logo svg {
        width: 120px;
        height: 23px;
    }

    .header__logo {
        padding-right: 25px;
    }

    .header__btn {
        margin-left: 10px;
    }
}

@media (max-width: 350px) {
    .socials.header__socials {
        display: none;
    }

    .header > .container {
        justify-content: space-between;
    }
}

/* \HEADER */

/* SOCIALS */

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

.socials__link {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-gray);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    transition: all .3s;
}

.socials__link svg path {
    transition: all .3s;
}

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

.socials__link:hover svg path {
    fill: var(--color-gray);
}

/* \SOCIALS */

/* FOOTER */

.footer {
    position: relative;
    overflow: hidden;
    padding-bottom: 49px;
}

.footer > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 15px 15px;
    border-top: 1px solid #BABABA;
}

.footer__policy:hover {
    text-decoration: underline;
}

.footer__bg {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.footer a {
    font-size: 13px;
    line-height: 16px;
    color: #A3A3A3;
}

@media (max-width: 1100px) {
    .footer__bg {
        width: initial;
    }
}

@media (max-width: 650px) {
    .footer > .container {
        flex-wrap: wrap;
        flex-direction: column;
    }

    .footer__copyright {
        order: 3;
    }

    .footer__logo {
        order: 1;
        margin: 0 auto;
    }

    .footer a:nth-child(3) {
        order: 2;
    }
}

/* \FOOTER */


/* MODAL */

.overlay {
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 50;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
}

.overlay.is-open {
    opacity: 1;
    pointer-events: initial;
}

.modal {
    padding: 30px;
    z-index: 55;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    overflow-y: auto;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
}

.modal.is-open {
    opacity: 1;
    pointer-events: initial;
}

/* \MODAL */

/* MODAL CALLBACK */

.modal--callback {
    background-color: var(--color-accent);
    padding: 40px;
    max-width: 500px;
}

.modal--callback h2 {
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.modal--callback p {
    margin-bottom: 20px;
}

.callback__btn {
    width: 100%;
    margin: 20px 0;
    height: 80px;
}

.modal__close {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.modal__close::after {
    content: '';
    position: absolute;
    top: 10px;
    width: 100%;
    height: 2px;
    background-color: var(--color-gray);
    display: block;
    transform: rotate(45deg);
}

.modal__close::before {
    content: '';
    position: absolute;
    top: 10px;
    width: 100%;
    height: 2px;
    background-color: var(--color-gray);
    display: block;
    transform: rotate(-45deg);
}

@media (max-width: 992px) {
    .callback__btn {
        height: 60px;
    }
}

@media (max-width: 850px) {
    .modal--callback {
        padding: 20px;
        min-width: 400px;
    }
}

@media (max-width: 450px) {
    .modal--callback {
        min-width: 320px;
    }
}

/* \MODAL CALLBACK */

/* \MODAL VIDEO */

.modal--videos {
    overflow: initial;
    width: 70%;
    height: 90%;
    /*max-height: 550px;*/
    /*max-width: 900px;*/
}

@media (max-width: 650px) {
    .modal--videos {
        max-height: 350px;
        padding: 15px;
    }
}

/* \MODAL VIDEO */

/* 404 */
.page_404 {
    padding: 40px 0;
    background: #fff;
    height: calc(100vh - 240px);
    min-height: 520px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page_404 img {
    width: 100%;
}

.four_zero_four_bg {
    background-image: url('https://cdn.dribbble.com/users/285475/screenshots/2083086/dribbble_1.gif');
    background-repeat: no-repeat;
    height: 400px;
    background-position: center;
}

.four_zero_four_bg h1 {
    font-size: 80px;
}

.four_zero_four_bg h3 {
    font-size: 80px;
}

.contant_box_404 {
    margin-top: -50px;
}

.page_404 .btn {
    margin: 10px auto 0;
    max-width: 250px;
}

/* \404 */

/* ADAPTIVE */

@media (max-width: 992px) {
    .title {
        font-size: 32px;
        line-height: 39px;
    }

    .form-wrapper input {
        height: 60px;
    }
}

@media (max-width: 650px) {
    .title {
        font-size: 28px;
        line-height: 40px;
    }
}

/* \ADAPTIVE */