/*

Tooplate 2134 Gotto Job

https://www.tooplate.com/view/2134-gotto-job

*/


/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/

:root {
    --white-color: #ffffff;
    --primary-color: #333a49;
    --section_text_color: #282d3b;
    --secondary-color: #e19b04;
    --section-bg-color: #282d3b;
    --custom-btn-bg-color: #f65129;
    --social-icon-link-bg-color: #7f73eb;
    --dark-color: #000000;
    --p-color: #717275;
    --border-color: #e9eaeb;
    --body-font-family: 'Roboto', sans-serif;
    --h1-font-size: 62px;
    --h2-font-size: 48px;
    --h3-font-size: 36px;
    --h4-font-size: 32px;
    --h5-font-size: 24px;
    --h6-font-size: 22px;
    --p-font-size: 20px;
    --btn-font-size: 16px;
    --copyright-font-size: 14px;
    --border-radius-large: 100px;
    --border-radius-medium: 30px;
    --border-radius-small: 10px;
    --font-weight-thin: 100;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
}

html {
    height: 100%;
}

body {
    background-color: var(--white-color);
    font-family: var(--body-font-family);
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-color);
    font-weight: var(--font-weight-semibold);
    letter-spacing: -0.5px;
}

h1,
h2 {
    letter-spacing: -1.5px;
}

h1 {
    font-size: var(--h1-font-size);
    line-height: normal;
    font-weight: var(--font-weight-bold);
}

h2 {
    font-size: var(--h2-font-size);
}

h3 {
    font-size: var(--h3-font-size);
}

h4 {
    font-size: var(--h4-font-size);
}

h5 {
    font-size: var(--h5-font-size);
}

h6 {
    font-size: var(--h6-font-size);
}

p {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-light);
}

/* Exclude PrimeReact menus from global ul li styles */
ul:not([class*="p-"]) li:not([class*="p-"]),
main ul:not([class*="p-"]) li:not([class*="p-"]),
.site-footer ul li {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-light);
}

/* Override for PrimeReact menu items - ensure they don't inherit global styles */
.p-menu .p-menuitem,
.p-submenu-list .p-menuitem,
.p-menubar .p-menuitem {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

a:not([class*="p-"]),
button:not([class*="p-"]) {
    touch-action: manipulation;
    transition: all 0.3s;
}

a:not([class*="p-"]) {
    color: var(--section-bg-color);
    text-decoration: none;
}

a:not([class*="p-"]):hover {
    color: var(--custom-btn-bg-color);
}

/* Ensure PrimeReact links don't get underlined */
.p-menuitem-link,
.p-menuitem-link:hover,
.p-menu .p-menuitem-link,
.p-menubar .p-menuitem-link {
    text-decoration: none !important;
}

b,
strong {
    font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

.section-overlay {
    background: rgba(0, 0, 0, 0.85);
    background: #282D3B;
    opacity: 0.85;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

.section-overlay+.container,
.section-overlay+.grid {
    position: relative;
}

.back-top-icon {
    background: var(--secondary-color);
    width: 65px;
    color: var(--white-color);
    font-size: var(--h4-font-size);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    transition: all 0.5s;
}

.back-top-icon:hover {
    background: var(--custom-btn-bg-color);
    color: var(--white-color);
}

.custom-icon {
    color: var(--primary-color);
}

.instagram-block {
    position: relative;
    height: 100%;
}

.instagram-block-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

nav[aria-label="breadcrumb"] {
    background: var(--white-color);
    border-radius: var(--border-radius-large);
    display: inline-block;
    padding: 7px 16px 3px 16px;
}

.page-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    gap: 0.5rem;
}

.page-breadcrumb-item {
    display: flex;
    align-items: center;
}

.page-breadcrumb-item:not(:last-child)::after {
    content: "/";
    margin-left: 0.5rem;
    color: var(--p-color, #6c757d);
}

.page-breadcrumb-item.page-breadcrumb-current {
    color: var(--p-color, #6c757d);
}

/*---------------------------------------
  PAGINATION               
-----------------------------------------*/

.pagination {
    margin-top: 30px;
    margin-bottom: 0;
}

.page-link {
    border-color: var(--border-color);
    border-radius: var(--border-radius-large);
    color: var(--p-color);
    font-size: var(--copyright-font-size);
    padding: 0;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    margin-right: 10px;
    margin-left: 10px;
}

.page-item.active .page-link,
.page-link:hover {
    background: var(--secondary-color);
    border-color: transparent;
    color: var(--white-color);
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
    border: 0;
    border-radius: var(--border-radius-large);
}

.page-item:not(:first-child) .page-link {
    margin-left: 5px;
}

/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/

.custom-form .input-group {
    background-color: var(--white-color);
    border-radius: var(--border-radius-medium);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    padding-left: 10px;
}

.input-group-text {
    background: transparent;
    border: 0;
    padding-right: 0;
}

.custom-form label {
    margin-bottom: 5px;
}

.custom-form .form-control {
    display: block;
    width: 100%;
    background-color: var(--white-color);
    border: 2px solid transparent;
    border-radius: var(--border-radius-medium);
    box-shadow: none;
    color: var(--p-color);
    padding-top: 12px;
    padding-bottom: 12px;
    outline: none;
}

.custom-form button[type="submit"] {
    display: block;
    width: 100%;
    background: var(--primary-color);
    border: none;
    color: var(--white-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-normal);
    transition: all 0.3s;
    margin-bottom: 24px;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
    background: var(--secondary-color);
    border-color: transparent;
}

.custom-form.hero-form a.form-control:hover,
.custom-form.hero-form a.form-control:focus {
    background: var(--secondary-color);
    border-color: transparent;
}

.custom-form.hero-form a.form-control {
    font-size: var(--p-font-size);
    display: inline-block;
    padding: 10px 20px;
    background-color: #282d3b;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    opacity: 130%;
}

.discord_link {
    font-size: var(--h3-font-size);
}

/*---------------------------------------
  CUSTOM TEXT BLOCK               
-----------------------------------------*/

.custom-text-block {
    background: var(--primary-color);
    padding: 80px 60px;
    height: 100%;
}

.custom-text-blocks {
    background: var(--primary-color);
    padding: 80px 60px;
    height: 100%;
    border-radius: 0 var(--border-radius-medium) var(--border-radius-medium) 0;
}

.custom-text-blocks2 {
    background: var(--primary-color);
    padding: 80px 60px;
    height: 100%;
    border-radius: var(--border-radius-medium) 0 0 var(--border-radius-medium);
}

.counter-thumb {
    margin: 20px;
    margin-bottom: 0;
}

.counter-number,
.counter-text {
    color: var(--secondary-color);
    display: block;
}

.counter-number,
.counter-number-text {
    color: var(--dark-color);
    font-size: var(--h1-font-size);
    line-height: normal;
}

.custom-text-block .counter-number,
.custom-text-block .counter-number-text {
    color: var(--white-color);
}

/*---------------------------------------
  CUSTOM LINK               
-----------------------------------------*/

.custom-link {
    color: var(--p-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
    vertical-align: middle;
    transition: all .3s cubic-bezier(.645, .045, .355, 1);
    padding-bottom: 2px;
}

.custom-link::after {
    content: "";
    width: 0;
    height: 2px;
    bottom: 0;
    position: absolute;
    left: auto;
    right: 0;
    z-index: -1;
    transition: width .6s cubic-bezier(.25, .8, .25, 1) 0s;
    background: currentColor;
}

.custom-link:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

.custom-link:hover {
    color: var(--primary-color);
}

.custom-link:hover::after {
    background: var(--custom-btn-bg-color);
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/

.custom-btn {
    /* background: #282d3b; */
    border: 2px solid transparent;
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-size: var(--btn-font-size);
    font-weight: var(--font-weight-normal);
    line-height: normal;
    padding: 15px 15px;
}

.custom-btn:hover,
.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover {
    /* background: var(); */
    color: var(--custom-btn-bg-color);
}

.custom-border-btn-wrap .custom-border-btn {
    border-color: var(--white-color);
    color: var(--white-color);
}

.custom-border-btn-wrap .custom-border-btn:hover,
.cta-section .custom-border-btn:hover {
    background: var(--white-color);
    color: var(--custom-btn-bg-color);
}

.custom-border-btn-wrap .custom-link {
    color: var(--white-color);
}

.custom-border-btn-wrap .custom-link:hover::after {
    background: var(--white-color);
}

.custom-border-btn {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
    background: var(--custom-btn-bg-color);
    border-color: transparent;
    color: var(--white-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn {
    /* padding: 12px 22px; */
    color: var(--white-color);
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/

.navbar {
    background: var(--white-color);
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand {
    font-size: var(--h4-font-size);
    font-weight: var(--font-weight-bold);
}

.dropdown-menu li:last-child .dropdown-item {
    border-bottom: 0;
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:hover {
    background: transparent;
    color: var(--custom-btn-bg-color);
}

.dropdown-toggle::after {
    content: "\f282";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-size: var(--copyright-font-size);
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    left: 2px;
    border: 0;
}

@media screen and (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.navbar-nav.text-links {
    margin-right: auto;
}

.navbar-nav.icon-links {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    width: auto; /* Явно указываем auto */
    justify-content: flex-end; /* Выравниваем элементы справа */
}

@media screen and (max-width: 991px) {
    .navbar-content {
        flex-direction: column;
        align-items: start;
    }

    .navbar-nav.text-links {
        width: 100%;
        margin: 10px 0;
    }

    .navbar-nav.icon-links {
        width: 100%;
        margin: 10px 0;
        flex-direction: row !important; /* Принудительно в строку */
        justify-content: center;
        gap: 20px;
    }

    .navbar-nav.icon-links .nav-item {
        display: inline-flex; /* Иконки в строку */
        align-items: center;
    }
}

/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/

.site-header {
    background-image: url('/static/images/close-up-young-business-team-working.webp');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    position: relative;
    padding-top: 150px;
    padding-bottom: 150px;
}

.site-header .section-overlay {
    background: #282D3B;
}

/*---------------------------------------
  HERO              
-----------------------------------------*/

.hero-section {
    background-image: url('/static/images/close-up-young-business-team-working.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    position: relative;
    padding-top: 90px;
    padding-bottom: 50px;
}

.hero-section .section-overlay {
    background: #282D3B;
}

.hero-section .custom-border-btn {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.hero-section .custom-border-btn:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

.hero-form .form-control {
    text-align: center;
}

.hero-form .input-group-text i {
    position: relative;
    top: 2px;
}

.hero-section .badge {
    background: transparent;
    color: var(--white-color);
}

.hero-section .badge:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

.badge {
    background: var(--section-bg-color);
    border: 3px solid var(--white-color);
    border-radius: var(--border-radius-medium);
    color: var(--white-color);
    font-weight: var(--font-weight-normal);
    line-height: normal;
    margin-right: 5px;
    margin-left: 5px;
    padding: 8px 12px;
    padding-bottom: 6px;
}

.badge:hover {
    background: var(--custom-btn-bg-color);
    color: var(--white-color);
}

/*---------------------------------------
  HERO 2              
-----------------------------------------*/

.section-overlay2 {
    background: rgba(0, 0, 0, 0.85);
    background: var(--custom-btn-bg-color);
    opacity: 0.7;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

.section-overlay2+.container,
.section-overlay2+.grid {
    position: relative;
}

.hero-section .section-overlay2 {
    background: var(--primary-color);
}

.b2b_b2c-section2 .section-overlay2 {
    background: white;
}

.hero-section3 .section-overlay3 {
    background: var(--primary-color);
}

.b2b_b2c-section2 .section-overlay3 {
    background: white;
}

.b2b_b2c-section2 {
    background-image: url('/static/images/111f0-8bd4-5e7b0aa7e0b1.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    position: relative;
    padding-top: 90px;
    padding-bottom: 50px;
}

.hero-title.text-right {
    text-align: right;
}

.b2b_b2c-section2 .custom-border-btn {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.b2b_b2c-section2 .custom-border-btn:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

.b2b_b2c-section2 .badge2 {
    background: transparent;
    color: var(--section_text_color);
}

.b2b_b2c-section2 .badge2:hover {
    background: var(--section_text_color);
    color: var(--white-color);
}

.badge2 {
    background: var(--section_text_color);
    border: 3px solid var(--section_text_color);
    border-radius: var(--border-radius-medium);
    color: var(--section_text_color);
    font-weight: var(--font-weight-normal);
    line-height: normal;
    margin-right: 5px;
    margin-left: 5px;
    padding: 8px 12px;
    padding-bottom: 6px;
}

.badge2:hover {
    background: var(--custom-btn-bg-color);
    color: var(--section_text_color);
}

b2b_b2c-section2 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.hero-section3 {
    background-image: url('/static/images/1337-bb5a7f66-3d3eda4eee46d9e7.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    position: relative;
    padding-top: 90px;
    padding-bottom: 50px;
}

.hero-section3 .section-overlay {
    background: var(--section_text_color);
}

/*---------------------------------------
  ABOUT              
-----------------------------------------*/

.about-section {
    padding-top: 100px;
    padding-bottom: 0;
}

.about-section .custom-text-block {
    background: var(--secondary-color);
}

.about-image-wrap,
.video-thumb {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.about-info {
    background: var(--primary-color);
    border-radius: var(--border-radius-medium);
    border-top: 30px solid var(--secondary-color);
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 16px 20px;
    text-align: center;
    min-width: 140px;
}

.about-info h4 {
    font-size: 1.75rem;
    line-height: 1;
}

.about-info p {
    font-size: 0.8125rem;
    opacity: 0.9;
}

.about-info-text h4 {
    font-weight: var(--font-weight-normal);
}

.about-image-border-radius {
    border-radius: var(--border-radius-medium);
}

.about-image {
    display: block;
    object-fit: cover;
    height: 100%;
}

.custom-border-radius-start {
    border-radius: var(--border-radius-medium) 0 0 var(--border-radius-medium);
}

.custom-border-radius-end {
    border-radius: 0 var(--border-radius-medium) var(--border-radius-medium) 0;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}

/*---------------------------------------
  SERVICES              
-----------------------------------------*/

.services-block {
    border-top: 25px solid transparent;
    border-radius: var(--border-radius-medium);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
    padding: 40px;
}

.services-block:hover,
.services-section .services-block-wrap:nth-of-type(odd) .services-block {
    background: var(--section-bg-color);
    border-top-color: var(--secondary-color);
}

.services-block-icon {
    background: var(--white-color);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
    border-radius: var(--border-radius-large);
    display: block;
    color: var(--secondary-color);
    font-size: var(--h2-font-size);
    line-height: normal;
    width: 120px;
    height: 120px;
    line-height: 135px;
    margin: auto;
    margin-bottom: 24px;
    text-align: center;
    position: relative;
    transition: all 0.5s;
}

.services-block-body p {
    margin-bottom: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/*---------------------------------------
  CATEGORIES              
-----------------------------------------*/

.categories-block {
    background: var(--primary-color);
    border-radius: var(--border-radius-large);
    border: 8px solid var(--social-icon-link-bg-color);
    width: 150px;
    height: 150px;
    margin: auto;
    margin-bottom: 24px;
    text-align: center;
    position: relative;
    transition: all 0.5s;
}

/*---------------------------------------
  REVIEWS              
-----------------------------------------*/

.reviews-section {
    background: var(--section-bg-color);
}

.reviews-carousel .owl-item img,
.avatar-image {
    border: 5px solid var(--section-bg-color);
    border-radius: var(--border-radius-large);
    width: 65px;
    height: 65px;
    object-fit: cover;
}

.reviews-carousel .owl-dots .owl-dot span {
    background: var(--white-color);
    border: 5px solid transparent;
    padding: 5px;
    transition: all 0.5s;
}

.reviews-carousel .owl-dots .owl-dot.active span,
.reviews-carousel .owl-dots .owl-dot:hover span {
    background: var(--white-color);
    border-color: var(--custom-btn-bg-color);
}

.reviews-thumb {
    background: var(--white-color);
    border-radius: var(--border-radius-medium);
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
}

.reviews-body {
    position: relative;
    padding: 30px 40px 30px 70px;
}

.reviews-info {
    position: relative;
    padding: 40px 40px 20px 40px;
}

.reviews-title {
    color: var(--p-color);
}

.reviews-info strong,
.reviews-info small {
    display: block;
}

.reviews-info strong {
    color: var(--dark-color);
    line-height: normal;
}

.bi-star-fill {
    color: var(--custom-btn-bg-color);
}

.quote-icon {
    position: absolute;
    top: 0;
    left: 30px;
    opacity: 0.05;
}

/*---------------------------------------
  JOB              
-----------------------------------------*/

.recent-jobs-bottom .custom-btn {
    font-size: var(--h5-font-size);
    padding: 25px 50px;
}

.job-listings-page .hero-form .badge:hover {
    background: var(--primary-color);
}

.job-thumb .badge {
    border: 0;
}

.job-thumb-box .job-body .job-image-wrap {
    width: 50px;
    min-width: 50px;
    height: 50px;
}

.job-image-box-wrap .badge-level:hover,
.job-image-box-wrap .badge:hover {
    background: var(--custom-btn-bg-color);
    border-color: transparent;
}

.job-image-wrap {
    border-radius: var(--border-radius-large);
    width: 80px;
    min-width: 80px;
    height: 80px;
}

.dropdown-sorting .dropdown-menu {
    border-radius: var(--border-radius-small);
    border-top: 0;
    padding-top: 8px;
    padding-bottom: 8px;
}

.dropdown-sorting .dropdown-item {
    font-size: var(--copyright-font-size);
    border-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}

#dropdownSortingButton {
    background: transparent;
    color: var(--dark-color);
    border: 0;
    padding: 0;
}

.sorting-icon.active {
    color: var(--primary-color);
}

/*---------------------------------------
  CTA               
-----------------------------------------*/

.cta-section {
    background-image: url('/static/images/event_background.webp');
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    position: relative;
    padding-top: 150px;
    padding-bottom: 75px;
}

/*---------------------------------------
  CONTACT               
-----------------------------------------*/

.contact-info-wrap {
    padding-top: 20px;
    padding-bottom: 20px;
}

.contact-info {
    padding: 20px 30px;
}

.contact-info:nth-of-type(even) {
    background-color: var(--section-bg-color);
    border-radius: var(--border-radius-large);
}

.contact-info .custom-icon {
    font-size: var(--h2-font-size);
    margin-right: 20px;
}

.contact-info-small-title {
    color: var(--secondary-color);
    display: block;
    font-size: var(--copyright-font-size);
    font-weight: var(--font-weight-semibold);
    line-height: normal;
}

.contact-form {
    margin-top: 20px;
}

.contact-form .form-control {
    background-color: var(--section-bg-color);
    margin-bottom: 24px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
}

.contact-form .form-control:hover {
    background-color: var(--white-color);
    border-color: var(--primary-color);
}

.contact-form button[type="submit"] {
    margin-bottom: 0;
}

.google-map {
    display: block;
    border-radius: var(--border-radius-medium);
    filter: grayscale(100%);
}

/*---------------------------------------
  NEWSLETTER FORM              
-----------------------------------------*/

.newsletter-form {
    background: var(--section-bg-color);
    border-radius: var(--border-radius-small);
    padding: 30px;
}

.newsletter-form .input-group {
    margin-bottom: 0;
    padding: 10px;
}

.newsletter-form .form-control {
    margin-right: 42px;
    padding-top: 7px;
    padding-bottom: 7px;
}

.newsletter-form button[type="submit"] {
    display: flex;
    justify-content: center;
    align-content: center;
    position: absolute;
    top: 0;
    right: 0;
    margin: 10px;
    padding-top: 10px;
    padding-bottom: 8px;
    width: 42px;
    height: 42px;
}

.newsletter-form button[type="submit"] i {
    height: 100%;
}

.newsletter-form .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: 0;
    border-radius: var(--border-radius-large);
}

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/

.site-footer {
    padding-top: 0;
    padding-bottom: 0;
    flex-shrink: 0;
}

.site-footer-link {
    color: var(--p-color);
}

.site-footer-bottom {
    background: var(--section-bg-color);
    margin-top: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
    flex-shrink: 0;
}

.site-footer-bottom .footer-menu-link {
    color: var(--white-color);
    font-size: var(--copyright-font-size);
    margin-right: 5px;
    margin-left: 5px;
}

.site-footer-title {
    margin-bottom: 15px;
}

.site-footer-bottom p {
    color: var(--white-color);
    font-size: var(--copyright-font-size);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Ensure grid layout works properly in site-footer */
.site-footer .grid {
    display: flex;
    flex-wrap: wrap;
}

/* Footer bottom specific styles - only for horizontal alignment in footer-bottom */
.site-footer-bottom > .container [class*="col-"],
.site-footer-bottom > [class*="col-"] {
    display: flex;
    align-items: center;
}

.site-footer-bottom [class*="col-"] p {
    margin-bottom: 0;
    line-height: 1.5;
    vertical-align: middle;
}

.site-footer-bottom [class*="col-"] .footer-menu {
    vertical-align: middle;
}

.footer-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer .footer-menu {
    display: block;
}

.site-footer .footer-menu-item {
    list-style: none;
    display: block;
    margin: 0;
    padding: 0;
    margin-bottom: 8px;
}

.site-footer .footer-menu-link {
    color: var(--p-color);
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s;
}

.site-footer .footer-menu-link:hover {
    color: var(--custom-btn-bg-color);
}

/* Horizontal menu for footer bottom */
.site-footer-bottom .footer-menu {
    display: flex;
    justify-content: end;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.site-footer-bottom .footer-menu-item {
    list-style: none;
    display: inline-block;
    margin: 0;
    padding: 0;
    margin-right: 10px;
}

.site-footer-bottom .footer-menu-link {
    color: var(--white-color);
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    margin-left: 5px;
    margin-bottom: 0;
    line-height: 1.5;
    text-decoration: none;
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/

.social-icon {
    margin: 0;
    padding: 0;
}

.social-icon-link {
    background: var(--social-icon-link-bg-color);
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-size: var(--btn-font-size);
    display: block;
    margin-right: 5px;
    text-align: center;
    width: 35px;
    height: 35px;
    line-height: 40px;
    transition: all 0.5s;
}

.social-icon-link:hover {
    background: var(--secondary-color);
    color: var(--white-color);
    transform: scale(1.15);
}

/* YouTube icon white style */
.social-icon-link.youtube-icon-white {
    background: transparent;
    border: none !important;
    color: var(--white-color);
    box-sizing: content-box !important;
    padding: 0;
    width: 50px !important;
    height: 50px !important;
    line-height: 50px !important;
    font-size: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.social-icon-link.youtube-icon-white:hover {
    background: transparent !important;
    color: var(--white-color);
    border: none !important;
    box-sizing: content-box !important;
    opacity: 0.8;
}

/* Footer bottom simplified layout */
.site-footer-bottom .container > .flex {
    gap: 1rem;
    width: 100%;
}

.site-footer-bottom .footer-menu-link {
    white-space: nowrap;
    text-decoration: none;
    color: var(--white-color);
    transition: all 0.3s;
}

.site-footer-bottom .footer-menu-link:hover {
    color: var(--custom-btn-bg-color);
}

.site-footer-bottom .youtube-icon-white {
    flex-shrink: 0;
}

/* Mobile responsive styles for footer bottom */
@media screen and (max-width: 991px) {
    .site-footer-bottom .container > .flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .site-footer-bottom .container > .flex > div:first-child {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .site-footer-bottom .container > .flex > div:last-child {
        width: 100%;
        justify-content: flex-end;
    }
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/

@media screen and (min-width: 1025px) {
    .job-featured-section .job-thumb {
        max-width: 1120px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media screen and (min-width: 991px) {
    .google-map {
        height: 100%;
    }
}

@media screen and (max-width: 991px) {
    .navbar-content {
        flex-direction: column;
        align-items: start;
    }

    .navbar-nav.text-links {
        width: 100%;
        margin: 10px 0;
    }

    .navbar-nav.icon-links {
        width: 100%;
        margin: 10px 0;
        flex-direction: row !important; /* Принудительно в строку */
        justify-content: center;
        gap: 20px;
    }

    .navbar-nav.icon-links .nav-item {
        display: inline-flex; /* Иконки в строку */
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 40px;
    }
    h2 {
        font-size: 28px;
    }
    h3 {
        font-size: 26px;
    }
    h4 {
        font-size: 22px;
    }
    h5 {
        font-size: 20px;
    }
    .badge {
        margin: 10px 10px 5px 0;
    }
    .page-link {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
    .counter-thumb {
        margin: 10px;
    }
    .counter-number,
    .counter-number-text {
        font-size: var(--h3-font-size);
    }
    .job-date {
        margin-top: 5px;
    }
    .job-detail-share {
        margin: 20px auto 0 auto;
    }
}

.card_service {
    background-color: #fff;
    border: 3px solid #ccc;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card_service h2 {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.image_card-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 10px;
    width: 100%;
    aspect-ratio: 4/3;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image_card-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tags-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.tags-scrollable {
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    max-height: 90%;
    overflow-y: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    scrollbar-width: none;
}

.tags-scrollable::-webkit-scrollbar {
    display: none;
}

.tag_service {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.7);
    color: #333;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    width: max-content;
    align-self: flex-start;
    transition: background-color 0.2s ease;
    pointer-events: auto;
}

.tag_service:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.watch-more {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
    display: block;
    text-align: right;
}

/* 
Таймер обратного отсчета */

.lead {
    font-size: 25px;
    margin: 0;
    color: #76808f
}

/* Remove underline from PrimeReact badges and buttons */
.p-badge,
.p-badge:hover,
.p-button,
.p-button:hover,
.job-title-link,
.job-title-link:hover {
    text-decoration: none !important;
}