/*
Theme Name: Hayman
*/
@import "css/grid.css";
@import "css/initials.css";

/**
    Header
 */
.site {
    position: relative;
    min-height: 100%;
}
html,
body,
.site {
    min-height: 100%;
}
main {
    box-sizing: border-box;
    min-height: 100%;
    padding-bottom: 50px;
}
/*footer {
    height: 80px;
    margin-top: -80px;
}*/
header {
    height: 154px;
}

.top-link {
    font-size: 18px;
    font-weight: 500;
}

.top-link span {
    margin-left: 17px;
    transition: all ease 0.3s;
}

.top-link span:hover {
    opacity: 0.8;
}

body:not(.home) header {
    background: url(img/bg_header.jpg) no-repeat left center;
    background-size: cover;
}

body.home header .main-slide-tint {
    background: none;
}

.main-logo {
    width: 200px;
    margin: 30px auto 25px auto;
}

.main-menu {
    display: flex;
    justify-content: space-between;
}

.main-menu a {
    color: var(--inverse-text-color);
    font-size: 15px;
    position: relative;
    text-align: center;
    margin: auto 45px;
    transition: all ease .3s;
}

.main-menu a:hover {
    color: var(--inverse-text-70-color);
}

.main-menu a::after {
    content: '';
    height: 2px;
    background: var(--white-color);
    position: absolute;
    top: 25px;
    left: 0;
    right: 100%;
    transition: all ease .3s;
}

.main-menu .current_page_item a::after,
.main-menu a:hover::after {
    right: 0;
}

.fixed-header {
    position: fixed;
    top: -100px;
    left: 0;
    right: 0;
    padding: 15px 0 20px;
    background: var(--dark-blue-color);
    background-size: cover;
    z-index: 30;
    transition: all ease 0.3s;
}

.fixed-header.active {
    top: 0px;
}

.mobile-menu-btn {
    align-items: end;
}

.mobile-menu-container {
    position: fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background: var(--dark-blue-color);
    z-index: 40;
    padding: 15px 0;
}

/**
Главная страница
*/
.main-slide-1 {
    height: 750px;
    position: relative;
    background: url(img/bg_main_slide_1.jpg) no-repeat;
    background-size: cover;
    overflow: hidden;
}

.main-slide-tint {
    height: 100%;
}

body.home .h1 {
    color: var(--inverse-text-color);
    font-size: 48px;
    margin: 80px auto 90px auto;
    line-height: 1.2;
}

.main-slide--shape-1 {
    background: url(img/shape_triangle.svg) no-repeat;
    background-size: 150%;
    background-position-x: -200%; /*-67%;*/
    background-position-y: 100%;
    height: 100%;
}

.main-slide--shape-2 {
    background: url(img/shape_triangle.svg) no-repeat;
    background-size: 150%;
    background-position-x: -200%; /*-86%;*/
    background-position-y: 100%;
    height: 100%;
}

.main-slide--shape-3 {
    background: url(img/shape_triangle.svg) no-repeat;
    background-size: 150%;
    background-position-x: -200%; /*-105%;*/
    background-position-y: 100%;
    height: 100%;
}

.section-partners {
    padding: 30px 0 15px 0;
    position: relative;
    top: -2px;
}

.partners-slider-item {
    margin-top: 30px;
}

.partners-slider {
    margin-bottom: 30px;
}

.partners-slider img {
    max-width: 195px;
    width: auto;
    height: 50px;
    display: block;
}

.heading-section {
    font-size: 30px;
    font-weight: 700;
    display: block;
    margin: 48px auto auto;
    line-height: 1;
    text-align: center;
}

.heading-section::after {
    content: '';
    display: block;
    width: calc(100% - 25px);
    height: 4px;
    margin: 7px auto 14px auto;
    background: var(--green-color);
    opacity: 0;
}

.heading-section.inverse-color::after {
    background: var(--inverse-text-color);
}

.categories-cards {
    margin-top: 40px;
}

.categories-cards .card {
    padding: 25px;
}

.category-icon-wrapper:before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    min-width: 80px;
    margin: 0 18px 0 0;
    padding: 15px;
    background: var(--light-green-30-color);
    border-radius: 80px;
    transition: all ease 0.3s;
}

.category-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    min-width: 80px;
    margin: 0 18px 0 0;
    padding: 15px;
    /*background: var(--light-green-30-color);
    border-radius: 80px;*/
}

.category-icon {
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.category .category-title {
    font-size: 18px;
    font-weight: 700;
}

.category .text {
    margin-top: 17px;
    font-size: 16px;
    font-weight: 400;
}

.categories-cards .card .category-title {
    font-size: 16px;
}

.categories-cards .card:hover {
    background: linear-gradient(180.64deg, #0FABAF 0.39%, #3CA0D9 99.28%);
}

.categories-cards .card:hover .category-icon-wrapper:before {
    background: var(--white-20-color);
    transform: scale(2.5);
}

.categories-cards .card:hover .category-icon-wrapper svg,
.categories-cards .card:hover .category-icon-wrapper path,
.categories-cards .card:hover .category-icon-wrapper rect,
.categories-cards .card:hover .category-icon-wrapper circle {
    stroke: var(--inverse-text-color);
}

.categories-cards .card:hover .category-title,
.categories-cards .card:hover .text {
    color: var(--inverse-text-color);
}

.certificate-item {
    max-width: 250px;
    position: relative;
    margin-bottom:15px;
}

.bg-map {
    background: url(img/bg_map.png) no-repeat center center;
    background-size: cover;
    padding: 50px 0 80px 0;
}

.section-collaboration .heading-section {
    margin-bottom: 40px;
}

.section-collaboration .heading-section::after {
    max-width: 100%;
}

.section-collaboration {
    margin-top: 50px;
}

.bg-section-collaboration {
    background: var(--dark-blue-color) url(img/bg_section_collaboration.webp) no-repeat center center;
    background-size: cover;
}

.collaboration-item {
    padding: 15px;
}

.collaboration-icon {
    display: inline-block;
    width: 60px;
    min-width: 60px;
    height: 60px;
    margin-right: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.collaboration-item .text {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.collaboration-item .text strong {
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
}

.bg-home-page-form {
    background: url(img/bg_get_started_1.webp) no-repeat -101px -27px;
    background-size: 1098px;
}

.section-home-page-form {
    margin-bottom: 80px;
}

.section-home-page-form .heading-section {
    margin: 40px auto;
}

.section-home-page-form .text {
    font-size: 21px;
    margin-bottom: 25px;
}

.section-home-page-form .heading-section::after {
    display: none;
}

.section-video {
    margin: 80px auto;
}

.section-video .card {
    padding: 30px 45px;
}

.section-video .info-area {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
}

.section-video .text {
    color: var(--text-color);
    font-size: 16px;
}

.play-button {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.play-button-circle-1 {
    width: 188px;
    height: 188px;
    border-radius: 200px;
    background: var(--white-60-color);
    animation: pulse 2s infinite;
}

.play-button-circle-2 {
    width: 118px;
    height: 118px;
    border-radius: 200px;
    background: var(--white-60-color);
}

.play-button object {
    margin-left: 21px;
}

.play-button img {
    width: 45px!important;
    position: relative;
    left: 8px;
}

/**
    Оборудование
*/
.section-products {
    position: relative;
}

.decor-dots {
    display:none;
    width: 300px;
    height: 508px;
    background: url(img/ic_dot.svg) repeat;
    position: absolute;
    z-index: -1;
}

.decor-dots div {
    width: 100%;
    height: 100%;
}

.decor-dots-1 {
    top: 0;
    left: 0;
}

.decor-dots-2 {
    top: 500px;
    right: 0;
}

.decor-dots-3 {
    top: 720px;
    left: 0;
}

.decor-dots-4 {
    top: 200px;
    right: 0;
}

.section-products .heading-section {
    margin-left: 0;
    font-size: 26px;
}

.section-products .heading-section::after {
    content: '';
    display: block;
    height: 0px;
}

.form-search-products {
    position: relative;
    margin: 38px auto;
}

.form-search-products input[type='text'] {
    border: 3px solid var(--blue-20-color);
    width: 100%;
    transition: all ease 0.3s;
}

.form-search-products input[type='text']:focus, .form-search-products input[type='text']:active {
    border-color: var(--green-color);
}

.search-products-submit {
    background: var(--green-color) url(img/ic_search.svg) no-repeat center center;
    border-radius: 12px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 78px;
    transition: all ease 0.3s;
}

.search-products-submit:hover {
    background-color: var(--green-70-color);
}

.search-products-submit object {
    position: relative;
    top: 3px;
}

.category-desc {
    margin: 0 12px 30px 12px;
}
.category-desc li {
    margin-bottom: 5px;
}

.product-cards {
    margin-bottom: 50px;
}

.product-cards .card {
    padding: 25px;
}

.product-item {
    transition: all ease 0.3s;
}

.product-item:hover {
    transform: scale(1.05);
}

.product-cards .sidebar .card {
    padding: 10px 15px;
    margin-bottom: 15px;
}

.sidebar .category-icon-wrapper {
    width: 50px;
    height: 50px;
    min-width: 50px;
    margin: 0 10px 0 0;
    padding: 12px;
}

.sidebar .category-icon-wrapper::before {
    width: 50px;
    height: 50px;
    min-width: 50px;
}

.category-products-count {
    color: var(--smoke-color);
    font-size: 13px;
    position: absolute;
    top: 26px;
    right: 10px;
}

.product-cards .sidebar .card .category-title {
    font-size: 13px;
    margin-right: 15px;
}

.product-cards .sidebar .card:hover {
    background: linear-gradient(180.64deg, #0FABAF 0.39%, #3CA0D9 99.28%);
}

.product-cards .sidebar .card:hover .category-icon-wrapper:before {
    background: var(--white-20-color);
    transform: scale(2.5);
}

.product-cards .sidebar .card:hover .category-icon-wrapper svg,
.product-cards .sidebar .card:hover .category-icon-wrapper path,
.product-cards .sidebar .card:hover .category-icon-wrapper rect,
.product-cards .sidebar .card:hover .category-icon-wrapper circle {
    stroke: var(--inverse-text-color);
}

.product-cards .sidebar .card:hover .category-title,
.product-cards .sidebar .card:hover .text {
    color: var(--inverse-text-color);
}

.product-cards .sidebar .card:hover .category-products-count {
    color: var(--inverse-text-70-color);
}

.product-cards .no-image,
.product-cards .no-image object {
    width: 100%;
}

.product-image-container {
    display: flex;
    height: 150px;
}

.product-image-container img {
    object-fit: contain;
}

.product-title-area {
    min-height: 61px;
}

.product-title {
    font-size: 15px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.product-title a {
    color: var(--text-color);
    height: 55px;
    display: flex;
    align-items: center;
}

.product-price {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary-color);
    margin: 14px auto 20px auto;
}

.product-page-title {
    font-size: 25px;
    text-align: center;
}

.product-img-tabs a {
    font-size: 18px;
    color: var(--smoke-color);
    padding: 10px 15px;
    text-align: center;
    font-weight: 600;
    transition: all ease 0.3s;
}

.product-img-tabs a:hover,
.product-img-tabs a.active {
    color: var(--green-color);
}

.product-img-tabs a:first-child {
    margin-right: 15px;
}

.product-img-tabs a::after {
    content: '';
    width: 0;
    height: 3px;
    background: var(--green-color);
    position: relative;
    left: 50%;
    margin-left: -28px;
    transition: all ease 0.3s;
}

.product-img-tabs a.active::after {
    width: 55px;
}

.product-img-area {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 30px auto 30px auto;
}

.product-img-area.one-item {
    marginn-bottom:0px;
}

.product-img-area a {
    display: flex;
    width: 300px;
    justify-content: center;
    height: 250px;
}

.product-img-area a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: initial;
}

.product-img-area.one-item .slick-dots {
    display:none!important;
}

#product-img-2 {
    display: none;
}

.product-desc h3, .product-desc h4 {
    margin: 30px auto 15px auto;
}

.product-callback-message {
    background: var(--surface-color);/*rgba(181, 191,191,0.3)*//**/
    padding: 10px 15px;
    border-radius: 12px;
}

.product-callback-message object {
    width: 25px;
    margin-right: 15px;
}

.breadcrumbs {
    color: var(--smoke-color);
    font-size: 14px;
    text-align: center;
}

.product-content-subtitle {
    font-size: 30px;
    color: rgba(0, 0, 0, 0.3);
    margin: 15px auto;
    font-weight: 400;
}

.relation-products {
    position: relative;
    margin-bottom: 50px !important;
}

.relation-products img,
.relation-products no-image {
    width: 90%;
}

.wp-block-image img {
    max-width: 250px;
    margin: 15px auto;
    border-radius: 12px !important;
}

/**
    Pagination
 */
.pagination .item {
    color: var(--green-color);
    background-color: var(--light-green-30-color);
    margin: 15px;
    padding: 8px 8px;
    font-size: 12px;
    min-width: 30px;
    text-align: center;
    border-radius: 30px;
    transition: all ease 0.3s;
}
.pagination .item:hover {
    opacity: 0.7;
}
.pagination .item.active {
    color: var(--inverse-text-color);
    background-color: var(--green-color);
}
.pagination .item.long {
    padding: 8px 15px;
}

/**
    Slick slider
 */
.slick-slider {
    padding: 40px 0;
    margin-left: 32px !important;
    margin-right: 32px !important;
}

.slick-slide {
    margin: 0 10px;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    width: 48px;
    height: 48px;
    background: url(img/ic_chevron_bottom.svg) no-repeat center;
    color: transparent;
    z-index: 10;
}

.slick-prev {
    left: -48px;
    transform: rotate(90deg);

}

.slick-next {
    right: -48px;
    transform: rotate(-90deg);
}

.slick-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: revert;
    justify-content: center;
}

.slick-dots li {
    content: '';
    background: var(--smoke-color);
    border-radius: 50px;
    width: 8px;
    height: 8px;
    margin: 5px;
    color: transparent;
    transition: all ease 0.3s;
}

.slick-dots li button {
    opacity: 0;
}

.slick-dots li.slick-active {
    width: 20px;
    background: var(--green-color);
}

/**
    Объекты
*/
.section-objects {
    margin: 0px auto 50px auto;
}

.objects-list {
    margin-top: 30px;
}

.objects-list .card {
    height: 300px;
}

.object-img-area {
    display: block;
    widht: 100%;
    height: 100%;
}

.object-img-area img {
    widht: 100%;
    height: 100%;
    object-fit: cover;
}

.object-title {
    font-size: 18px;
    line-height: 1.3;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 100px 30px 30px 30px;
    color: var(--inverse-text-color);
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%,, rgba(0, 0, 0, 1) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#000000', GradientType=0);
}

/**
    Вакансии
 */

.section-vacancies {
    margin-bottom: 50px;
}

.vacancy-title {
    position: relative;
    border-radius: 12px;
    font-size: 21px;
    font-weight: 700;
}

.vacancy-title a {
    display: block;
    padding: 30px 40px;
    color: var(--text-color);
}

.vacancy-title .icon {
    position: absolute;
    top: 46px;
    right: 40px;
    transition: all ease 0.3s;
}

.item.active .vacancy-title .icon {
    transform: rotate(-180deg);
}

.vacancy-text {
    border-radius: 12px;
    font-size: 16px;
    padding: 40px;
    font-weight: 400;
}

.vacancy-slide-element {
    display: none;
}

.vacancy-form-title {
    font-size: 30px;
    font-weight: 600;
    padding: 40px;
}

.section-vacancies-form {
    margin-bottom: 50px;
}

.bg-vacancies-form {
    background: url(img/bg_vacancies_form.png) no-repeat center bottom;
    background-size: 55%;
}

.field-attachment {
    position: relative;
}

.field-attachment .icon {
    position: absolute;
    top: 40px;
    right: 24px;
    width: 24px;
    height: 25px;
    background: url(img/ic_clip.svg) no-repeat center center;
    cursor: pointer;
}

/**
    Contact form 7
 */
.wpcf7-form-control-wrap:has(.wpcf7-not-valid-tip) input,
.wpcf7-form-control-wrap:has(.wpcf7-not-valid-tip) textarea {
    border: 1px solid #dc3232;
}

.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 14px;
    font-weight: normal;
    display: block;
    position: absolute;
    top: 51px;
    left: 13px;
}

.wpcf7-form-control-wrap[class*='file'] {
    position: absolute;
    top: 40px;
    overflow: hidden;
    width: 48px;
    height: 24px;
    right: 14px;
    cursor: pointer;
    z-index: 5;
    opacity: 0;
}

.wpcf7-response-output {
    border-radius: 12px;
    border: none;
}

.wpcf7 form.sent .wpcf7-response-output {
    background: #46b450;
    color: #fff;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    background: #dc3232;
    color: #fff;
}

.wpcf7 form.spam .wpcf7-response-output {
    background: #f56e28;
    color: #000
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    background: #ffb900;
    color: #000;
}

.wpcf7 .ajax-loader {
    position: absolute;
    top: 70px;
    /*margin-left: 222px;*/
}

/**
    О компании
 */
.section-about {
    margin: 30px auto 50px auto;
}

.about-photos .row {
    margin-bottom: 15px;
}

.about-photos img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    overflow: hidden;
}


/**
    Контакты
 */
.contacts-area-wrapper {

}

.contacts-area:before {
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    content: ' ';
    background-image: url(img/bg_industrial_pattern.jpg);
    opacity: 0.08;
}

.contacts-area {
    margin: 0px 0px 30px 0px;
    padding: 45px 40px;
    position: relative;
    z-index: 1;
    background: var(--white-color);
    box-shadow: 0px 25px 40px 2px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
}

.contacts-item {
    margin:7px 0;
}

.contact-icon {
    width: 75px;
    min-width: 75px;
    height: 75px;
    background: linear-gradient(90deg, #3CA0D9 4.67%, #13A6AD 100%);
    border-radius: 75px;
    margin-right: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-item {
    font-size: 16px;
    font-weight: 600;
    margin-left: 12px;
}

.contact-item .wa-link {
    position: relative;
    top: 14px;
}

.widget-map {
    border-radius: 12px;
    margin-bottom: 50px;
}

.section-contact-form {
    margin-bottom: 50px;
}

.bg-contact-form {
    background: url(img/bg_contact_form.jpg) no-repeat right center;
    background-size: contain;
}

.contact-form .text {
    font-size: 24px;
    padding: 25px 0 25px 15px;
}

/**
Нижняя часть сайта
 */
.section-bottom {
    position: relative;
    background: url(img/bg_main_slide_1.webp) no-repeat center;
    background-size: cover;
}

.section-bottom .h3 {
    font-size: 24px;
    font-weight: 600;
}

.section-bottom .text {
    font-size: 18px;
    font-weight: 500;
}

.section-bottom input[type='text'] {
    width: 100%;
}

.section-bottom .overlay {
    padding: 55px 0 45px 0;
    background: var(--green-70-color);
}

.section-bottom > .container {
    z-index: 10;
}

.footer {
    background-image: url(img/bg_footer.svg);
    background-repeat: no-repeat;
    background-position: center center;
    padding: 30px 0 30px 0;
}

.footer-logo {
    display: block;
    height: auto;
    width: 170px;
    object-fit: contain;
}

.bottom-links-container {
    margin-top: 30px;
}

.bottom-link {
    display: block;
    font-size: 14px;
    color: var(--white-60-color);
    font-weight: 400;
}

.page-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--white-color);
    visibility: hidden;
    opacity: 0;
    transition: all ease 0.3s;
}

.page-overlay.active {
    visibility: visible;
    opacity: 1;
    z-index: 1000;
}

.wp-block-media-text {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}
.wp-block-media-text:first-child {
    margin-top:30px;
    background: red;
}
.wp-block-media-text:last-child {
    border: none;
}

@media (max-width:992px) {
    .bg-contact-form {
        background: none;
    }

    .subscribe-item {
        margin-bottom:15px;
    }
    .section-video .info-area {
        position: static;
    }
    .heading-section::after {
        opacity:0;
    }
    .main-logo {
        margin-left:0;
    }
    .main-menu {
        flex-direction: column;
        border-top: 2px solid rgba(255,255,255,0.7);
        margin-top: 15px!important;
        padding-top: 15px!important;
        overflow: auto;
    }
    .main-menu li {
        text-align: center;
    }
    .main-menu a {
        padding:15px;
        display:inline-block;
    }
    .main-menu a::after {
        top: 37px;
    }
}
@media (max-width:768px) {
    body.home .h1 {
        font-size:42px;
    }
}
@media (max-width:576px) {
    body.home .h1 {
        font-size:38px;
    }
}
@media (max-width:380px) {
    body.home .h1 {
        font-size:32px;
    }
}
