/* ===================================================================================

* Theme Name: Tryesy Child
* Theme URI: https://wp.themepure.net/tryesy/
* Author: themepure
* Author URI: https://themeforest.net/user/themepure
* Description: Tryesy - Digital Agency Wordpress Theme
* Version: 1.0.0
* Template: tryesy
* License: GNU General Public License version 3.0
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
* Tags: one-column, right-sidebar, left-sidebar, custom-menu, featured-images, post-formats, sticky-post, translation-ready

* We encourage you to create Child theme for any modifications you will want to do.

* Why use Child theme?

* Because of future updates we may provide for this theme that will overwrite your
* modifications and all your custom work.

* If you are not familiar with Child Themes, you can read about it here:
* http://codex.wordpress.org/Child_Themes
* http://wp.tutsplus.com/tutorials/theme-development/child-themes-basics-and-creating-child-themes-in-wordpress/

====================================================================================== */
.c-contacts {
    position: absolute;
    right: 100%;         /* рівно зліва від кнопки */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
    /* margin-right: 20px;  відступ від кнопки */
    z-index: 1000;
    width: 270px;
}

.c-phone {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.2s ease;
}

.c-phone:hover {
    color: #60CB6F;
}

.c-ico img {
    width: 24px;
    height: 24px;
    display: block;
    transition: transform 0.2s ease;
}

.c-ico:hover img {
    transform: scale(1.1);
}
/* mob icons */
.socicons_mob_menu {
    display: flex;
    justify-content: center; /* по центру моб. меню */
    align-items: center;
    gap: 12px;               /* відстань між іконками */
    margin-top: 15px;        /* відступ зверху (якщо треба) */
}

.c-ico-mob img {
    width: 24px;
    height: 24px;
    max-width: 24px;   /* захист від SVG */
    max-height: 24px;  /* захист від SVG */
    display: block;
    transition: transform 0.2s ease;
}

.c-ico-mob:hover img {
    transform: scale(1.15);
}


#cases_contecst ul,
#cases_contecst ol {
  margin-left: 14px;
}
/* =====================================================
   HEADER: Logo + CTA + Hamburger (Desktop & Mobile)
   ===================================================== */

/* ---------- Desktop / Default ---------- */
.tp-header-logo {
    flex: 0 0 auto;
}

.tp-header-logo img {
    width: 200px;
    max-width: 100%;
    height: auto;
}

.tp-header-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ---------- Mobile ---------- */
@media (max-width: 767px) {

    /* ЛОГОТИП */
    .tp-header-logo img {
        width: 150px !important;
        height: auto;
    }

    /* CTA кнопка */
    .tp-header-btn a {
        min-height: 44px;
        padding: 0 14px;
        font-size: 13px;
        line-height: 1;
        white-space: nowrap;
        border-radius: 4px;
        color: #141820; /* явний колір, нічого не ховаємо */
    }

    /* ГАМБУРГЕР */
    .tp-header-bar button {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
