/*
Theme Name:         Webprogginew Wordpress Theme
Theme URI:          https://webproggi.com
Description:        Webprogginew Wordpress Theme by <a href="https://webproggi.com/">Webproggi</a>.
Version:            1.1
Author:             WEBPROGGI.COM
Author URI:         https://Webproggi.com
License:            GPL v2
License URI:        http://www.gnu.org/licenses/gpl-2.0.html
*/

/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../assets/fonts/inter-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('../assets/fonts/inter-v20-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('../assets/fonts/inter-v20-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('../assets/fonts/inter-v20-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


:root {
    --bg-base: #f8fafc;
    --bg-surface: rgba(255, 255, 255, 0.85);
    --bg-surface-pure: #ffffff;
    
    --accent-primary: #CA5048; /* Фирменный терракотово-красный */
    --accent-primary-gradient: linear-gradient(135deg, #CA5048 0%, #e2635a 100%);
    --accent-amber: #D97706; /* Элементы ИТ-акцентов */
    --accent-amber-gradient: linear-gradient(135deg, #D97706 0%, #f59e0b 100%);
    --accent-emerald: #10B981;
    
    --text-main: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    --border-glass: rgba(255, 255, 255, 0.7);
    --border-light: rgba(15, 23, 42, 0.06);
    --shadow-md: 0 10px 25px -3px rgba(15, 23, 42, 0.04), 0 4px 12px -2px rgba(15, 23, 42, 0.02);
    --shadow-lg: 0 20px 40px -4px rgba(15, 23, 42, 0.06);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-pill: 10px;
    
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 24px);
}

a {
    text-decoration: none;
    color: inherit;
}


/* Form Elements
*******************************/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
  font-size: 14px;
  background: transparent;
  letter-spacing: 1px;
  border: 1px;
  text-transform: uppercase;
  color: #ffffff;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  -moz-opacity: 0.75;
  -khtml-opacity: 0.75;
  -webkit-opacity: 0.75;
  opacity: 0.75;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

input.submit {
	width:100%;
	background-color: #c8c8f9;
	border-radius: 5px;
	color: #333;
	font-size: 14px;
	padding: 8px 15px;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 700;
}

input.submit:hover {
	opacity: .9;
	text-decoration: none;
	transition: 0.3s all ease 0s;
}

input[type=text],
input[type=email],
input[type=url],
input[type=search],
input[type=password],
textarea {
    padding: 10px;
    width: 100%;
    line-height: 1.5;
    border-radius: 5px;
    border: 1px solid #ccc;
	font-size:16px;
	box-sizing: border-box;	
	letter-spacing: .3px;
	font-family: 'Inter';
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password] focus,
textarea:focus {
	box-shadow: inset 0 1px 1px rgba(0,0,0,0), 0 0 8px rgba(149, 149, 144, 0.6);
}

textarea {
	resize:none;
	transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
	display: block;
    margin-left: auto;
    margin-right: auto;
	overflow: auto;
}


/* --- (HEADER) --- */
.header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    height: 34px;
    width: 140px;
    background: url('https://webproggi.com/wp-content/uploads/2022/07/logo.png') no-repeat left center;
    background-size: contain;
}

.header__nav {
	display: flex;
    justify-content: space-between; 
    align-items: center;            
    gap: 32px;
    list-style: none; 
    width: 100%;
}

.header__nav .logo img{
	margin-bottom: -10px;
}

.header__nav .logo {
	width:170px;
}

.header__nav .header-menu {
	width: 100%;
	text-align:center;
}

.header__nav .header__actions{
	width:140px;
}

.header__nav ul{
    list-style: none; 
}

.header__nav li{
    list-style: none; 
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
}

.header__nav li a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.header__link:hover, 
.header__link--active,
.header__nav li a:hover,
.header__nav li.current-menu-item a {
    color: var(--accent-primary);
}

/* Родительский пункт с подменю должен быть точкой отсчёта для дропдауна */
.header__nav li.menu-item-has-children {
    position: relative;
}

/* Сам дропдаун */
.header__nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    margin: 0;
    padding: 8px 0;
    background: var(--bg-surface-pure);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 100;
    list-style: none;
}

/* Показываем при наведении и при фокусе (клавиатура/доступность) */
.header__nav li.menu-item-has-children:hover > .sub-menu,
.header__nav li.menu-item-has-children:focus-within > .sub-menu {
    display: block;
}

/* Пункты внутри дропдауна - уже не flex-строка, а обычный блочный список */
.header__nav .sub-menu li {
    display: block;
    padding: 0;
}

.header__nav .sub-menu li a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    white-space: nowrap;
    color: var(--text-secondary);
}

.header__nav .sub-menu li a:hover {
    color: var(--accent-primary);
    background: var(--bg-surface);
}

.header__actions {
	display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto; 
}

.btn-lang {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid var(--border-light);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.btn-lang:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.btn-lang svg {
    width: 14px;
    height: 14px;
}

.btn-hire {
    display: inline-block;
    background: var(--text-main);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.btn-hire:hover {
    background: var(--accent-primary);
    transform: translateY(-1px);
}


/* --- ДИНАМИЧЕСКИЙ ПОИСК В ШАПКЕ --- */
.header__search {
    position: relative;
}

.btn-search-trigger {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.btn-search-trigger:hover {
    color: var(--accent-primary);
    background: rgba(15, 23, 42, 0.04);
}

.btn-search-trigger svg {
    width: 18px;
    height: 18px;
}

.header__search-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 12px;
    background: var(--bg-surface-pure);
    border: 1px solid var(--border-light);
    padding: 8px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1100;
}

/* Активация выпадающего меню поиска при ховере или фокусе */
.header__search:hover .header__search-dropdown,
.header__search-dropdown:focus-within {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-form {
    display: flex;
    align-items: center;
    background: var(--bg-base);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 2px 4px 2px 12px;
}

input.search-field {
    border: none;
    background: none;
    font-family: inherit;
    font-size: 13px;
    color: var(--text-main);
    width: 100%;
    outline: none;
	padding:0;
	line-height: auto;
}

.search-submit {
    background: var(--text-main);
    border: none;
    color: #fff;
    padding: 6px;
    border-radius: calc(var(--radius-sm) - 2px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.search-submit:hover {
    background: var(--accent-primary);
}

.search-submit svg {
    width: 14px;
    height: 14px;
}

/* --- ВЫПАДАЮЩИЙ ЯЗЫКОВОЙ СЕЛЕКТОР --- */
.lang-switcher {
    position: relative;
}

.btn-lang {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid var(--border-light);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.btn-lang:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.btn-lang svg {
    width: 14px;
    height: 14px;
}

.btn-lang .icon-chevron {
    width: 12px;
    height: 12px;
    margin-left: 2px;
    transition: var(--transition);
}

.lang-switcher:hover .icon-chevron {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--bg-surface-pure);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 6px 0;
    min-width: 80px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1100;
}

.lang-dropdown li{
	padding:0;
	display:block;
}

.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
	
}

.lang-dropdown li a {
    display: block;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}

.lang-dropdown li a:hover,
.lang-dropdown li a.active {
    color: var(--accent-primary);
    background: rgba(202, 80, 72, 0.04);
}

.btn-search-trigger .svg-icon {
    width: 18px;
    height: 18px;
}

.search-submit .svg-icon {
    width: 14px;
    height: 14px;
}

.btn-lang .svg-icon {
    width: 14px;
    height: 14px;
}

.btn-lang .icon-chevron {
    width: 12px;
    height: 12px;
    margin-left: 2px;
    transition: var(--transition);
}

.section__title .svg-icon {
    width: 22px;
    height: 22px;
}

.card-product__icon .svg-icon {
    width: 20px;
    height: 20px;
}
.header .drop-menu,
.header .drop-menu label {
    display: none;
}


/* --- Mobile Menu --- */
@media (max-width: 950px){
	.header-menu {
		display: none;
	}
	.header .drop-menu {
		display: block;
		margin-left: auto;
	}
	
	.header__nav .logo {
		padding-left:20px;
	}

	.drop-menu .customlogo img{
		width:125px;
	}

	.drop-menu .logo-repos {
		margin-left: 80px;
		padding-top: 8px;
		display: inline-block;
	}

    #menuToggle label {
        display: none; 
    }	

	#menuToggle {
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
	  position: relative;
	  z-index: 1001;
	  -webkit-user-select: none;
	  user-select: none;
	  width: 30px;
	  height: 30px;
	  margin-top: 4px;
	}

	#menuToggle input {
	  display: block;
	  width: 40px;
	  height: 32px;
	  position: absolute;
	  cursor: pointer;
	  opacity: 0;
	  z-index: 9999;
	  top: -6px;
	  left: -5px;
	}

	#menuToggle span {
        display: block;
        width: 33px;
        height: 2px;
        margin-bottom: 7px;
        position: relative;
        background: #475569; 
        border-radius: 3px;
        z-index: 1000;
        transform-origin: 4px 0px;
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                    background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                    opacity 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    }

    #menuToggle span:first-child {
        transform-origin: 0% 0%;
    }

    #menuToggle span:nth-last-child(2) {
        transform-origin: 0% 100%;
    }

	#menuToggle input:checked ~ span {
        opacity: 1;
        transform: rotate(45deg) translate(-2px, -1px);
        background: #232323;
    }

    #menuToggle input:checked ~ span:nth-last-child(3) {
        opacity: 0;
        transform: rotate(0deg) scale(0.2, 0.2);
    }

    #menuToggle input:checked ~ span:nth-last-child(2) {
        transform: rotate(-45deg) translate(0, -1px);
    }

	#menuToggle ul.menu {
		position: fixed;
		top: 0px;
		left: 0;
		width: 100%;
		height: 400px;
		max-width: none;
		overflow-y: auto;
		box-shadow: 0 10px 25px rgba(0,0,0,.15);
		margin-top: 0;
		padding: 90px 30px 30px 30px;
		background-color: #fff;
		-webkit-font-smoothing: antialiased;
		z-index: 999;
		transform: translateY(-100%);
		transition: transform 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
	}

	#menuToggle input:checked ~ ul.menu {
		transform: translateY(0);
	}

	#menuToggle ul.menu li {
	  padding: 10px 0;
	  border-bottom: 1px solid var(--border-light);
	  list-style: none;
	}

	#menuToggle ul.menu li span{
		width: 100%;
		background: none;
		font-size: 20px;
		height: auto;
	}

	#menuToggle ul.menu li a:hover {
		color: #CA5048;
	}
	
	.header__search.is-open .header__search-dropdown,
	.lang-switcher.is-open .lang-dropdown {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.lang-switcher.is-open .icon-chevron {
		transform: rotate(180deg);
	}
	
 }


/* --- ЭФФЕКТЫ AURORA BACKGROUND & PARTICLES --- */
.main-content {
    position: relative;
    z-index: 1;
}

.aurora-background {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.aurora-lens {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.aurora-lens--top-left {
    width: 450px;
    height: 450px;
    background: rgba(202, 80, 72, 0.08);
    top: -50px;
    left: -50px;
}

.aurora-lens--top-right {
    width: 400px;
    height: 400px;
    background: rgba(217, 119, 6, 0.06);
    top: 50px;
    right: -50px;
}

.aurora-lens--bottom-center {
    width: 600px;
    height: 600px;
    background: rgba(16, 185, 129, 0.04);
    bottom: 10%;
    left: 25%;
}

#particles {
    position: absolute;
    inset: 0;
}

.code-word {
    position: absolute;
    font-family: monospace;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    animation: floatUp linear infinite;
    font-weight: 500;
}

@keyframes floatUp {
    0% { transform: translateY(0); opacity: 0; }
    10% { opacity: 0.35; }
    90% { opacity: 0.35; }
    100% { transform: translateY(-80vh); opacity: 0; }
}

.floating-tag {
    position: absolute;
    font-size: 11px;
    font-weight: 600;
    background: #fff;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    z-index: 2;
    pointer-events: none;
}

.floating-tag--pos-1 { top: 120px; left: 8%; color: #0284c7; animation: floatShiftPos1 12s infinite ease-in-out;}
.floating-tag--pos-2 { top: 240px; right: 6%; color: #7c3aed; animation: floatShiftPos2 16s infinite ease-in-out;}
.floating-tag--pos-3 { top: 320px; left: 4%; color: var(--accent-primary); animation: floatShiftPos3 14s infinite ease-in-out;}
.floating-tag--pos-4 { top: 400px; right: 10%; color: #2563eb; animation: floatShiftPos4 18s infinite ease-in-out;}

/* Анимации без вращения (Только плавный подъем и спуск по оси Y) */
@keyframes floatShiftPos1 {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-15px); }
}

@keyframes floatShiftPos2 {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-25px); }
}

@keyframes floatShiftPos3 {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

@keyframes floatShiftPos4 {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-20px); }
}

@media (max-width: 1024px) { 
    .floating-tag { display: none; } 
}

/* --- ГЕРОЙ-БАННЕР (HERO) --- */
.hero {
    padding: 80px 0 60px 0;
    text-align: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(202, 80, 72, 0.06);
    color: var(--accent-primary);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
    border: 1px solid rgba(202, 80, 72, 0.1);
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-primary);
    border-radius: 50%;
    display: inline-block;
}

.hero__title {
    font-size: 46px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
    max-width: 850px;
    margin: 0 auto 20px auto;
}

.hero__title-gradient {
    background: var(--accent-primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 32px auto;
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

@media (max-width: 576px) { 
    .hero__actions { flex-direction: column; align-items: center; } 
}

.card-content-layout img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.05);
  background-color: var(--bg-surface-pure);
  padding: 10px;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.card-content-layout {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    flex: 1; /* Ключевое: заставляет контентную часть растягиваться, заполняя пустоту */
}

.card-content-layout > div:nth-child(2) {
    display: -webkit-box;
    -webkit-line-clamp: 9;      /* сколько строк оставить */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}



.card-content-layout .post-logo-preview + div {
    flex: 1;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    
    /* Элегантное ограничение текста вместо фиксированной высоты */
    display: -webkit-box;
    -webkit-line-clamp: 9; 
    -webkit-box-orient: vertical;  
    overflow: hidden;
    
    /* Если строк меньше 4, блок просто займет сколько нужно, не ломая соседа */
}

.card-article__meta svg {
  fill: none;
  stroke: currentColor;
  width: 16px;
  height: 16px;
}

.card-article__meta span {
  display: inline-flex;
  align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-primary-gradient);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 14px rgba(202, 80, 72, 0.25);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(202, 80, 72, 0.35);
}

.btn-primary svg { width: 16px; height: 16px; }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--text-main);
    color: var(--text-main);
}

.btn-secondary svg { width: 16px; height: 16px; }

.hero__features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    border-top: 1px solid var(--border-light);
    padding-top: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.hero__feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.hero__feature-item svg { width: 16px; height: 16px; color: var(--text-muted); }

.icon--emerald { color: var(--accent-emerald) !important; }
.icon--amber { color: var(--accent-amber) !important; }
.icon--primary { color: var(--accent-primary) !important; }

/* --- СЕКЦИИ И МНОГОКОЛОНОЧНЫЕ СЕТКИ (GRID) --- */
.section {
    padding: 60px 0;
}

.section__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
}

@media (max-width: 576px) { 
    .section__header { flex-direction: column; align-items: flex-start; gap: 16px; } 
	.header__nav .logo img{
		width: 90%;
	}
	
	.main-content .post-main .post-content div{
		width: 100%;
		float: none !important;
		text-align:center;
	}
}


@media (max-width: 450px) { 
	.main-content .card-article .card-content-layout {
		display:block;
	}
	.main-content .card-article .card-content-layout div{
		width: 100%;
		float: none !important;
		text-align:center;
	}
	

	
}

@media (max-width: 430px) { 
	.header .drop-menu {
		margin-left:-50px;
	}

}

@media (max-width: 390px) { 
	.header__nav .logo img{
		padding-top:10px;
	}
	
	.header__nav .header__actions {
		padding-right: 60px;
	}
}





.section__title {
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.section__title svg { color: var(--accent-primary); width: 22px; height: 22px; }

.section__subtitle {
    font-size: 14px;
    color: var(--text-secondary);
}

.btn-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-primary);
    transition: var(--transition);
}

.btn-more:hover {
    gap: 8px;
}

.btn-more svg { width: 16px; height: 16px; }

.grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.grid-layout-product {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 992px) { 
    .grid-layout-product { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .grid-layout { 
        grid-template-columns: repeat(1, 1fr); 
    } 
	.card-content-layout .post-logo-preview + div {
		height: auto;
	}
}

@media (max-width: 640px) { .grid-layout-product { grid-template-columns: 1fr; } }

/* --- КАРТОЧКИ БЛОГА / ТУТОРИАЛОВ --- */
.card-article {
background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    
    /* Управляем внутренним выравниванием */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Толкает футер строго вниз */
    height: 100%; /* Заставляет карточку занимать всю доступную высоту грида */
    transition: var(--transition);
}

.card-article:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(202, 80, 72, 0.2);
}

.card-article__preview {
    height: 48px;
    width: 48px;
    background: rgba(202, 80, 72, 0.06);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    margin-bottom: 20px;
    position: relative;
}

.card-article__preview svg { width: 22px; height: 22px; }
.icon-cpu { color: var(--accent-amber) !important; }
.card-article__preview .icon-cpu { background: rgba(217,119,6,0.06); }

.card-article__badge {
    position: absolute;
    left: 60px;
    white-space: nowrap;
    background: #fff;
    border: 1px solid var(--border-light);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    color: var(--text-secondary);
}

.card-article__meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.card-article__meta-icon {
    display: inline-flex;
    align-items: center;
    gap: 3px;
	
}

.edit_article_link {
	display:inline-flex;
	margin-left: auto;
}

.edit_article_link .card-article__meta-icon {
	padding-right: 3px;
}



.card-article__title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    transition: var(--transition);
}

.card-article:hover .card-article__title {
    color: var(--accent-primary);
}

.card-article__title--amber:hover { color: var(--accent-amber) !important; }

.card-article__excerpt {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 24px;
	margin-top:15px;
}

.card-article__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-primary);
    border-top: 1px solid rgba(15, 23, 42, 0.04);
    padding-top: 14px;
	margin-top:20px;
}

.card-article__footer svg { width: 14px; height: 14px; transition: var(--transition); }
.card-article:hover .card-article__footer svg { transform: translate(2px, -2px); }
.card-article__footer--amber { color: var(--accent-amber) !important; }


/* Флекс-контейнер шапки для распределения заголовка и хаба */
.section__header--hub {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 36px;
}

.hub-links {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hub-btn {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-surface-pure);
    border: 1px solid var(--border-light);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

/* Эффекты при наведении с акцентом на фирменный цвет */
.hub-btn:hover {
    color: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Мобильный адаптив: на маленьких экранах превращаем кнопки в удобную прокручиваемую ленту */
@media (max-width: 992px) {
    .section__header--hub {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section__header-navigation {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 6px;
        -ms-overflow-style: none;  
        scrollbar-width: none; 
    }
    
    .section__header-navigation::-webkit-scrollbar {
        display: none;
    }
    
    .hub-links {
        display: inline-flex;
        white-space: nowrap;
    }
}

/* --- КАРТОЧКИ МОДУЛЕЙ / МАРКЕТПЛЕЙСА --- */
.card-product {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.card-product:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(202, 80, 72, 0.2);
}

.card-product--amber:hover { border-color: rgba(217, 119, 6, 0.25); }

.card-product__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-product__icon {
    height: 44px;
    width: 44px;
    background: var(--accent-primary-gradient);
    color: #fff;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-product__icon svg { width: 20px; height: 20px; }
.card-product__icon--amber { background: var(--accent-amber-gradient); }
.card-product__icon--dark { background: var(--text-main); }

.card-product__version {
    font-size: 11px;
    font-weight: 600;
    background: #fff;
    border: 1px solid var(--border-light);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    color: var(--text-secondary);
}

.card-product__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-product__description {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
}

.card-product__tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.card-product__tag {
    font-size: 11px;
    font-weight: 500;
    background: rgba(15, 23, 42, 0.04);
    color: var(--text-secondary);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
}

.card-product__action-zone {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(15, 23, 42, 0.04);
    padding-top: 18px;
}

.card-product__price-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.card-product__price-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
}

.btn-view-product {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid var(--border-light);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.btn-view-product:hover {
    border-color: var(--text-main);
    background: var(--text-main);
    color: #fff;
}

.btn-view-product svg { width: 14px; height: 14px; }

/* Стилизация промо-карточки заказа */
.card-product--promo {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #fff;
    border: none;
}

.card-product--promo .card-product__title { color: #fff; }
.card-product--promo .card-product__description { color: var(--text-muted); }
.btn-promo { width: 100%; justify-content: center; padding: 12px; }

/* --- ФУТЕР (FOOTER) --- */
.footer {
    background: var(--bg-surface-pure);
    border-top: 1px solid var(--border-light);
    padding: 22px 0;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

/* Footer social
*******************************/
.footer-social-wrapper {
	display: inline-block;
	text-align: center;
	vertical-align: top;
}

.footer-social-wrapper ul li{
	display: inline-block;
}

.footer-social-wrapper ul li a {
	color: #3f444a;
	opacity: .8;
}

.footer-social-wrapper ul li a:hover {
	opacity: 1;
}

.footer-social-wrapper ul li a svg{
	width:35px;
	height:35px;
}

.footer-social-wrapper .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Arrow to Top --- */
/* --- Кнопка "наверх" со шкалой прогресса --- */
.back-top {
    position: fixed;
    right: max(16px, calc((100vw - 1200px) / 2 - 30px));
    bottom: 24px;
    width: 50px;
    height: 50px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.back-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-top a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--bg-surface-pure);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    transition: var(--transition); /* было без transition — теперь hover анимируется */
}

.back-top a:hover {
    background: var(--accent-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px) scale(1.05);
}

.back-top a:hover .back-top__ring-bg {
    stroke: rgba(255, 255, 255, 0.35);
}

.back-top a:hover .back-top__ring-progress {
    stroke: #ffffff;
}

.back-top a:hover .back-top__arrow {
    border-top-color: #ffffff;
    border-right-color: #ffffff;
}

.back-top__ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg); /* старт дуги сверху */
}

.back-top__ring-bg {
    fill: none;
    stroke: var(--border-light);
    stroke-width: 2;
}

.back-top__ring-progress {
    fill: none;
    stroke: var(--accent-primary);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 138.23;   /* 2*π*22 */
    stroke-dashoffset: 138.23; /* пусто в начале */
    transition: stroke-dashoffset 0.1s linear;
}

.back-top__arrow {
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--accent-primary);
    border-right: 2px solid var(--accent-primary);
    transform: rotate(-45deg);
    margin-top: 4px; /* оптическая центровка стрелки в круге */
}


/* =====================================================
   СТРАНИЦА КАТЕГОРИИ (CATEGORY / ARCHIVE) — РЯДЫ С КАРТИНКОЙ СЛЕВА
   ===================================================== */

.post-layout {
    display: grid;
    grid-template-columns: 1fr 320px; /* Контент + Сайдбар */
    gap: clamp(24px, 3vw, 32px);
    padding: 40px 0 80px 0;
}

.archive-main { min-width: 0; }

.list-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Карточка-полоска (переопределяет базовый .card-article под горизонтальный вид) */
.card-article.card-article--row {
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    height: auto;
    gap: 24px;
}

.card-article--row__image-wrapper {
    flex-shrink: 0;
    width: 240px;
    height: 160px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
    background: var(--bg-base);
}

.card-article--row__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.card-article--row:hover .card-article--row__image-wrapper img {
    transform: scale(1.03);
}

.card-article--row__image-wrapper--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    background: rgba(202, 80, 72, 0.06);
}

.card-article--row__image-wrapper--placeholder svg {
    width: 40px;
    height: 40px;
}

.card-article--row__main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-article--row .card-article__title {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 18px;
}

.card-article--row__excerpt {
    margin-top: 12px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-article--row__footer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Пагинация */
.archive-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination-list {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-surface-pure);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.pagination-link:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.pagination-link--current,
.pagination-link.current {
    background: var(--accent-primary-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(202, 80, 72, 0.25);
}

.pagination-link--current:hover,
.pagination-link.current:hover {
    color: #fff;
}

/* Сайдбар */
.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.widget {
    background: var(--bg-surface-pure);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
}

.widget-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-main);
    border-left: 3px solid var(--accent-primary);
    padding-left: 10px;
}

.widget-ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.widget-ul li a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.widget-ul li a:hover {
    color: var(--accent-primary);
}

.widget-ul li a.is-active {
    color: var(--accent-primary);
    font-weight: 600;
}

.category-empty {
    background: var(--bg-surface-pure);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    color: var(--text-secondary);
    box-shadow: var(--shadow-md);
}

/* Адаптивность */
@media (max-width: 992px) {
    .post-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .card-article.card-article--row {
        flex-direction: column;
        gap: 16px;
    }
    .card-article--row__image-wrapper {
        width: 100%;
        height: 180px;
    }
}


/* --- СТИЛИЗАЦИЯ БЛОКА RECENT COMMENTS В САЙДБАРЕ --- */

/* Контейнер виджета комментариев */
.widget-recent-comments .widget-ul.block-pad {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px; /* Расстояние между комментариями */
}

/* Элемент списка (один комментарий) */
.widget-recent-comments .widget-ul.block-pad li {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
    padding-bottom: 12px;
}

/* Удаляем подчеркивание у последнего элемента */
.widget-recent-comments .widget-ul.block-pad li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Имя автора комментария */
.widget-recent-comments .widget-ul.block-pad li strong {
    color: var(--text-main);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

/* Ссылка на комментарий (текст цитаты) */
.widget-recent-comments .widget-ul.block-pad li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    display: inline; /* Позволяет тексту естественно переноситься */
    position: relative;
}

/* Эффект при наведении на текст комментария */
.widget-recent-comments .widget-ul.block-pad li a:hover {
    color: var(--accent-primary);
}

/* Иконка стрелочки внутри ссылки */
.widget-recent-comments .widget-ul.block-pad li a svg {
    width: 14px !important;
    height: 14px !important;
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px;
    color: var(--text-muted);
    transition: var(--transition);
}

/* Анимация стрелочки при наведении */
.widget-recent-comments .widget-ul.block-pad li a:hover svg {
    color: var(--accent-primary);
    transform: translateX(3px); /* Легкий сдвиг вправо */
}

/* Если комментариев еще нет */
.widget-recent-comments .widget-ul.block-pad li:only-child:not(:has(a)) {
    font-style: italic;
    color: var(--text-muted);
    border-bottom: none;
    padding-bottom: 0;
}





/* single page */
/* --- СТИЛИ ДЛЯ СТРАНИЦЫ СТАТЬИ (SINGLE POST) --- */
.post-layout {
    display: grid;
    grid-template-columns: 1fr 320px; /* Статья + Сайдбар */
    gap: clamp(24px, 3vw, 32px);
    padding: 40px 0 80px 0;
}

/* Область статьи */
.post-main {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: clamp(20px, 4vw, 28px);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Шапка статьи */
.post-header {
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 24px;
}

.post-header .post-title {
    font-size: clamp(26px, 5vw, 36px);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
    color: var(--text-main);
}

.post-header .card-article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    font-size: 14px;
    color: var(--text-secondary);
}





/* Оформление контента из Gutenberg / Classic Editor */
.post-content {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content h2 {
    font-size: 24px;
    color: var(--text-main);
    margin: 36px 0 16px 0;
    font-weight: 700;
}

.post-content h3 {
    font-size: 20px;
    color: var(--text-main);
    margin: 28px 0 12px 0;
    font-weight: 700;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.post-content blockquote {
    margin: 30px 0;
    padding-left: 20px;
    border-left: 4px solid var(--accent-primary);
    font-style: italic;
    color: var(--text-main);
}

/* Теги внизу статьи */
.post-footer-tags {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.post-content .settings-wrapper-post {
    padding: 20px 30px;
    border: 1px dashed #ccc;
    margin-bottom: 20px;
    border-radius: 7px;
    background-color: #e7e7e0;
    background-image: linear-gradient(to right bottom, rgb(231, 231, 224), rgb(221, 221, 221));
}

.post-content .settings-wrapper-post:hover {
    transition: 0.3s all ease 0s;
    background-color: #f4f4f4;
    opacity: 0.9;
}

.post-content .settings-wrapper-post strong{
    font-size:16px;
}

.post-content p a {
  background-color: #eee;
  color: #333;
  padding: 3px 9px;
  vertical-align: baseline;
  border-radius: 5px;
  font-size: 14px;
}

.post-content p.download-link a {
	display: inline-flex;
}

.post-content p a:hover {
  color: #CA5048;
}


/* comments list */

.commentlist {
	padding: 0px 0px 25px 0px;
	text-align: left;
	font-size: 14px;
}

.commentlist li {
	margin: 15px 0 10px;
	padding: 15px;
	list-style: none;
	border-right: 1px solid #E9E9E1;
	border-top: 1px solid #E9E9E1;
	border-bottom: 1px solid #E9E9E1;
    border-left: 10px solid #CA5048;
    border-radius: 15px;
}

.commentlist li ul li { 
	margin-right: -5px;
	margin-left: 10px;
}

.commentlist li cite.fn, .commentlist li span.says{
	font-style: normal;
	font-weight: bold;
	font-size:16px;
}

.commentlist li div.comment-meta a{
	text-decoration:none;
}

.commentlist li div.reply {
	padding:5px 0px;
	margin-top:10px;
	margin-bottom: 5px;
}

.commentlist li div.reply a{
	background-color: #efa205;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
   	padding: 8px 15px;
    text-decoration: none;
    text-transform: uppercase;
	
}

.commentlist li div.reply a:hover{
	background-color: #fab423;
    text-decoration: none;
	transition: 0.3s all ease 0s;
}

.commentlist li ul.children li {
	border-radius: 5px 5px 5px 5px;
	border: 1px dashed #E9E9E1 !important;
	margin-right:10px;
	background-color:#F8F8F4;
}

.commentlist p {
	margin: 10px 5px 10px 0;
}
.children { padding: 0; }

#commentform p {
	margin: 5px 0;
	}

.nocomments {
	text-align: center;
	margin: 0;
	padding: 0 0 20px;
	}

.commentmetadata {
	margin: 0;
	display: block;
}

.comment-respond, .contact-form-wrapper form{
	margin: 30px 0 10px;
	padding: 15px;
    border: 10px solid #fab423;
    border-radius: 15px;
}

.comment-respond:hover, .contact-form-wrapper form:hover {
	border: 10px solid #efa205;
	transition: 0.3s all ease 0s;
}

#comments {
	padding:10px;
	margin-top: 10px;
}

#comments svg, .comment-respond svg, .contact-form-wrapper form h3 svg{
	vertical-align: bottom;
	padding-right: 5px;
}

.comment-respond h3, .contact-form-wrapper form h3{
	border-bottom: 1px dashed #E9E9E1;
	padding-bottom: 5px;
}

.hr-line {
	padding:0 25px;
	border: 1px solid #E9E9E1;
	margin: 0 25px;
}

.hr-line-ten {
	padding:0 25px;
	border: 1px solid #E9E9E1;
	margin: 0 10px;
}

#commentform .form-submit {
	margin-top:15px;
}

/* contact page form */

.contact-page-form h1{
	margin-bottom: 0;
}

.contact-page-form .post-header {
	padding-bottom: 12px;
	margin-bottom: 0;
}

.contact-page-form .contact-form {
	margin: 30px 0 10px;
	padding: 15px;
	border: 10px solid #fab423;
	border-radius: 15px;
}

.contact-page-form .contact-form:hover {
	border: 10px solid #efa205;
	transition: 0.3s all ease 0s;
}

.contact-page-form .contact-form h3 {
	border-bottom: 1px dashed #E9E9E1;
	padding-bottom: 5px;
	margin-bottom: 20px;
	display:flex;

}

.contact-page-form .contact-form h3 svg{
	margin-right: 10px;
}

.contact-page-form .contact-form .input-first-row {
	padding-left: 0px;
	padding-right: 0px;	
}

.contact-page-form .important-rule {
	text-decoration: underline;
    background-color: #FFD700;
    padding: 10px;
    border: 10px solid #0057B7;
}


@media (max-width: 1060px) {
  .contact-page-form .important-rule { 
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background-color: #FFD700;
    border: 5px solid #0057B7; 
    border-radius: 8px;
    padding: 12px 14px;
    margin: 15px 0 20px 0;
    font-size: 13.5px;
    line-height: 1.45;
    color: #434343;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  }
 
}

/* BASE - Grid System 12 Columns
/* ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## */
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11 {
	float:left;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left:15px;
    padding-right:15px;
}

.col-1 {
  width: 8.333333333333332%;
}
.col-2 {
  width: 16.666666666666664%;
}
.col-3 {
  width: 25%;
}
.col-4 {
  width: 33.33333333333333%;
}
.col-5 {
  width: 41.66666666666667%;
}
.col-6 {
  width: 50%;
}
.col-7 {
  width: 58.333333333333336%;
}
.col-8 {
  width: 66.66666666666666%;
}
.col-9 {
  width: 75%;
}
.col-10 {
  width: 83.33333333333334%;
}
.col-11 {
  width: 91.66666666666666%;
}
.col-12 {
  width: 100%;
}

.contact-page-form .contact-form .input-second-row input{
	margin-top:15px;
	margin-bottom:15px;
}

.contact-page-form .contact-form textarea {
	margin-bottom:15px;
}

.contact-page-form .contact-form .submit {
	height: 38px;
	font-size:16px;
}


/* -- buy block -- */
.buy-block-wrapper {
	padding: 40px;
	background-color: #a0d8ff;
	border-radius: 10px;
	margin-bottom: 30px;
	border: 5px dashed #2ca5e0;
	opacity: .9;
}

.buy-block-wrapper:hover {
    opacity: 1;
}

.buy-block-wrapper .buy-block-svg {
	display: inline-block;
	vertical-align: middle;
    width: 25%;
}


.buy-block-wrapper .buy-block-text {
    display: inline-block;
    vertical-align: middle;
    width: 73%;
}

.buy-block-wrapper svg {
	width: 100px;
	height: 100px;
	color: #2ca5e0;
}


/* Navigation on sides
*******************************/
.left_pos_prev_title, .right_pos_next_title {
    display: none;
    position: relative;
}

.left_pos_prev_link {
    bottom: 450px;
    left: 0%;
    margin-left: 0px;
    position: fixed;
}

.left_pos_prev_cont {
    background: url("../images/left_nav.png") no-repeat left top transparent;
    width: 35px;
    height: 73px;
}

.left_pos_prev_title div.left_text, .right_pos_next_title div.right_text {
    position: absolute;
    bottom: 17px;
    z-index: 999;
    height: 55px;
    text-align: center;
    vertical-align: middle;
    width: 350px;
}

.left_pos_prev_title div.left_text {
	left: 50px;
}

.right_pos_next_title div.right_text {
	right: 50px;
}
 
.left_pos_prev_cont:hover {
    background-position: -35px 0;
	transition: 0.3s all ease 0s;
}

.right_pos_next_cont:hover {
    background-position: 0px 0;
	transition: 0.3s all ease 0s;
}


.left_pos_prev_link a:hover .left_pos_prev_title, .right_pos_next_link a:hover .right_pos_next_title {
    display: block;
}

.left_pos_prev_title div.left_arrow {
    background: url("../images/left_arrow.png") no-repeat left top transparent;
    width: 10px;
    height: 10px;
    margin-right: -5px;
    z-index: 9999;
    position: relative;
}

.left_pos_prev_title div.left_text td.first_td, .right_pos_next_title div.right_text td.first_td {
    background-color: #FFFFFF;
    border: 2px solid #CA5048;
    color: #333;
	font-family: 'Inter',serif;
	font-weight: 700;
    font-size: 16px;
    width: 350px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    vertical-align: middle;
    height: 55px;
    box-shadow: rgba(0, 0, 0, 0.50) 0 0 13px;
	border-radius: 5px;
}

.right_pos_next_link {
    bottom: 450px;
    right: 0%;
    margin-left: 0px;
    position: fixed;
}

.right_pos_next_title div.right_arrow {
    background: url("../images/right_arrow.png") no-repeat left top transparent;
    width: 10px;
    height: 10px;
    margin-left: -5px;
    z-index: 9999;
    position: relative;
}

.right_pos_next_cont {
    background: url("../images/right_nav.png") no-repeat right top transparent;
    width: 35px;
    height: 73px;
}

/* --- Mobile version --- */
@media (max-width: 1000px) {
    .container {
        padding: 0 16px; 
    }

    .post-layout {
        display: flex;
        flex-direction: column; 
        gap: 40px;
    }

	.archive-main,
	.post-sidebar,
    .post-main, 
    .post-sidebar {
        width: 100% !important; 
        float: none !important;
    }

    .header__container {
        gap: 12px;
    }

    .header__actions {
        gap: 10px;
    }

    .header__search-dropdown {
        right: -50px; 
        min-width: 260px;
    }

    .hero__title {
        font-size: 28px; 
        line-height: 1.3;
    }

    .post-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .card-article__meta {
        display: flex;
        flex-wrap: wrap; 
        gap: 8px;
        font-size: 13px;
    }

    .post-content img {
        max-width: 100% !important;
        height: auto !important;
        float: none !important; 
        display: block;
        margin: 0 auto 15px auto; 
        padding-right: 0 !important;
    }

    .settings-wrapper-post {
        padding: 15px;
        font-size: 14px;
        line-height: 1.6;
    }

    .img_post_wrp {
        width: 100% !important; 
        height: auto !important;
    }

    .buy-block-wrapper {
        flex-direction: column; 
        text-align: center;
        padding: 20px 15px;
        gap: 12px;
    }

    .buy-block-text {
        font-size: 15px;
        word-break: break-word;
    }

    .archive-pagination {
        text-align: center;
    }

    .comment-form p input[type="text"],
    .comment-form p input[type="email"],
    .comment-form p textarea {
        font-size: 14px;
        padding: 12px; 
    }

    .widget {
        margin-bottom: 30px;
    }

    .widget-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
	
	.widget-recent-comments {
		display:none;
	}
}

@media (max-width: 770px){
	.pos_link_wr {
	    display: none;
	}
}

@media (max-width: 480px) {
    .hero__title,
    .post-title {
        font-size: 22px;
    }

    .btn-lang span {
        display: none; 
    }
}

/* -- sitemap -- */
.sitemap-content ul{
	list-style:none;
}

.sitemap-content h4 {
	padding-top: 10px;
	padding-bottom: 10px;
	vertical-align: middle;
	display: inline-flex;
}

.sitemap-content h4 svg {
	margin-right: 10px;
	color: var(--accent-primary);
}

.sitemap-content a:hover {
	color: var(--accent-primary);
}



/**
 **
 * prestashop development service page
 **
 **/

.img-prestashop-cat-desc {
    float:left;
    padding-right:10px; 
    height:180px;
    padding-top:15px;
}

@media (max-width: 1220px) {
    .img-prestashop-cat-desc img{
        width:105px;
        height:105px;
    }
}

@media (max-width: 400px) {
    .img-prestashop-cat-desc {
        height: unset;       
    }
}


body.development-service {
	background: none;
}

body.development-service .container{
	padding:0;
}

body.development-service .service-page-wrapper .presta-service-wrapper div {
	font-size: 18px;
	line-height: 1.5;
	text-align:center;
}

body.development-service .service-page-wrapper .wide-range {
  max-width: 850px;
}

body.development-service .service-page-wrapper .presta-service-wrapper div.postwrap {
	padding-left: 10px;
	padding-right: 10px;
}


body.development-service h1{
    padding: 10px;
    transition: 0.3;
	margin-bottom: 5px;
	margin-top: 20px;
	font-weight: 800;
	color: #4e4d4d;
	transition: all linear .10s;
}

.service-page-wrapper .positive-sides-wrapper, .service-page-wrapper .market-sides-wrapper, .service-page-wrapper .negative-sides-wrapper {
  border: 1px dashed #ccc;
  border-radius: 5px;
  padding: 15px;
  margin-top: 5px;
  margin-bottom: 25px;
  max-width: 750px;
  display: inline-block;
}

.service-page-wrapper .positive-sides-wrapper svg, .service-page-wrapper .negative-sides-wrapper svg {
  width: 70px;
  height: 70px;
}

.service-page-wrapper .positive-sides {
  display: block;
  height: 190px;
  padding: 25px;
}

.service-page-wrapper p {
  max-width: 750px;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight:100;
}

.service-page-wrapper .positive-sides-wrapper:hover, .service-page-wrapper .negative-sides-wrapper:hover {
  transition: 0.3s all ease 0s;
  background-color: #f4f4f4;
}

body.development-service .market-sides.partner, body.development-service .market-sides.superhero {
  min-width: 300px;
  text-align:right !important;
}

.service-page-wrapper .shop-wrapper img, .service-page-wrapper .positive-sides-wrapper .left-side, .market-sides-wrapper .partner, .development-service .obj-left .left-side {
  -webkit-animation-name: leftAnimate;
  animation-name: leftAnimate;
  animation-duration: 1s;
}

.market-sides.partner div {
  position: relative;
  background: url("../images/presta_partner_txt.png") no-repeat right top transparent;
  width: 188px;
  height: 97px;
  display: inline-block;
}

.market-sides.superhero div {
  position: relative;
  background: url("../images/presta_superhero_txt.png") no-repeat right top transparent;
  width: 188px;
  height: 97px;
  display: inline-block;
}

.market-sides div img {
  position: absolute;
  top: 10px;
  left: -95px;
}

body.development-service .cf::after {
  clear: both;
}

body.development-service .cf::before, body.development-service .cf::after {
  content: "";
  display: table;
}

body.development-service .service-page-wrapper .positive-sides-wrapper .positive-txt, body.development-service .service-page-wrapper .negative-sides-wrapper .negative-txt {
  font-size: 16px;
  line-height: 1.2;
  height: 60px;
}

body.development-service .service-page-wrapper div.market-sides-wrapper {
  margin-top: 0px;
  text-align: right;
}



.service-page-wrapper h1,
.single-404 h1 {
	background: none;
	border: none;
	font-size: 30px;
	line-height: 1.5;
	text-align:center;
}

.service-page-wrapper h1,
.service-page-wrapper .positive-sides.bottom-side {
	-webkit-animation-name: upAnimate;
	animation-name: upAnimate;
	animation-duration: 1s;
	animation-fill-mode: both;
}

.service-page-wrapper .popular-txt,
.service-page-wrapper .positive-sides.top-side,
.development-service .obj-left .bottom-side {
	-webkit-animation-name: downAnimate;
	animation-name: downAnimate;
	animation-duration: 1s;
	animation-fill-mode: both;
}



@keyframes leftAnimate {
	0% {
		opacity:0;
		-webkit-transform:translateX(-20px);
		-ms-transform:translateX(-20px);
		transform:translateX(-20px);
	}
	
	100% {
		opacity:1;
		-webkit-transform:translateX(0);
		-ms-transform:translateX(0);
		transform:translateX(0);
	}
}
	
@keyframes rightAnimate {
	0% {
		opacity:0;
		-webkit-transform:translateX(20px);
		-ms-transform:translateX(20px);
		transform:translateX(20px);
	}
	
	100% {
		opacity:1;
		-webkit-transform:translateX(0);
		-ms-transform:translateX(0);
		transform:translateX(0);
	}
}

@keyframes upAnimate {
	0% {
		opacity:0;
		-webkit-transform:translateY(20px);
		-ms-transform:translateY(20px);
		transform:translateY(20px);
	}
	
	100% {
		opacity:1;
		-webkit-transform:translateY(0);
		-ms-transform:translateY(0);
		transform:translateY(0);
	}
}
	
@keyframes downAnimate {
	0% {
		opacity:0;
		-webkit-transform:translateY(-20px);
		-ms-transform:translateY(-20px);
		transform:translateY(-20px);
	}
	
	100% {
		opacity:1;
		-webkit-transform:translateY(0);
		-ms-transform:translateY(0);
		transform:translateY(0);
	}
}



body.development-service.ru-version {
	background-image: url(../images/back_op77r-min.png);
    border-bottom: 1px solid #d6d4d4;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;	
}

body.development-service .center-part {
	box-shadow: none;
}

body.development-service.ru-version .breadcrumb-wrapper {
	padding-left: 20px;
	padding-top: 15px;
}

body.development-service.ru-version .center-part {
	box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.2);
	background-color: white;
}

body.development-service.ru-version .shop-wrapper {
	padding-bottom:20px;
}

body.development-service.ru-version .prestashop-comment-section .prestashop-comment-list li {
	height: 400px;
}

body.development-service.ru-version .prestashop-comment-section .prestashop-comment-list li .content-wrapper, 
body.development-service.ru-version .prestashop-comment-section .prestashop-comment-list li .content-wrapper div {
	height: 180px;
}

body.development-service .banner-section {
	background: url("../images/back-banner-png-min.png") 50% 50% no-repeat;
	background-size: cover;
	width: 100%;
	height: 460px;
	
	background-attachment: fixed;
	background-size: cover;
	border-bottom: 1px solid #ccc;
}

body.development-service .banner-section .obj-wrapper .obj-left {
	width:620px;
	padding-top:85px;	
	vertical-align: top;
}

body.development-service .banner-section .obj-wrapper .obj-right {
	width:570px;
	padding-top:85px;
}

body.development-service .banner-section .obj-wrapper .obj-left,
body.development-service .banner-section .obj-wrapper .obj-right {
	display: table-cell;
}

body.development-service .prestashop-logo {
	text-align:left;
	padding-right:35px;
}


body.development-service.ru-version .prestashop-logo {
	text-align: center;
	padding: 10px 0px 25px 0px;
}


body.development-service .dev-text {
	font-size: 32px;
	color: #fff;
	line-height: 44px;
	padding: 0 20px;
	text-align: center;
	margin-top: 10px;
}


body.development-service .prestashop-logo,
body.development-service .prestashop-logo-name {
	display: inline-block;
}

body.development-service.ru-version .prestashop-logo,
body.development-service.ru-version .prestashop-logo-name {
	display: block;
}

body.development-service .prestashop-logo img:hover {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: roundLogo;
}

body.development-service .obj-right .img-wrapper { 
	text-align: right;
	position: relative;
}



body.development-service .obj-right .img-wrapper .img-wrapper-back{ 
	background-image: url("../images/b4-min.webp");
	width: 435px;
	height: 435px;
	position: absolute;
	top: -75px;
	left: 120px;
	opacity: .5;
	animation: roundBack 18s infinite linear;
}


@keyframes roundBack {
0% {
    -webkit-transform:rotate(0deg);
    -ms-transform:rotate(0deg);
    transform:rotate(0deg);
}

100% {
    -webkit-transform:rotate(360deg);
    -ms-transform:rotate(360deg);
    transform: rotate(360deg);
}
}

body.development-service .presta-contact-order-section {
	background: url("../images/contact-us-back-min.webp") 50% 50% no-repeat;
	background-size: cover;
	width: 100%;
	height: 350px;
}

body.development-service .presta-contact-order-section .presta-contact-order {
	text-align: center;
	padding-top:165px;
}

body.development-service .presta-contact-order-section .presta-contact-order span{
	padding: 60px 55px;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 30px;
	color: #fff;
	border-radius: 20px;
	border: 10px solid;
}

body.development-service .presta-contact-order-section .presta-contact-order span:hover {
	background-color: #CA5048;
	text-decoration: none;
	color: #fff;
	transition: all 300ms ease-in-out;
}


body.development-service .prestashop-post-section h3{
	padding-top: 50px;
	padding-bottom: 20px;
}

body.development-service .prestashop-post .post-img-wrap {
	width: 470px;
	padding:20px 0px 20px 20px;
}

body.development-service .prestashop-post .post-img-wrap.ru-version {
	width: 430px;
}

body.development-service .prestashop-post .post-text-wrap {
	width: 640px;
	height:285px;
	padding:20px;
	font-size: 20px;
	line-height: 28px;
	overflow: hidden;
	text-align:left;
}

body.development-service .prestashop-post .post-text-wrap.ru-version {
	width: 630px;
}

body.development-service .prestashop-post .post-text-wrap .info{
	font-size: 18px;
}

body.development-service .prestashop-post .post-text-wrap svg{
	width: 22px;
	height: 22px;
	vertical-align: sub;
	padding-right: 5px;
}

body.development-service .prestashop-post .post-text-wrap .info{
	padding-bottom:15px;
}

body.development-service .prestashop-post .post-text-wrap .prestashop-title-post a:hover {
	color: #CA5048;
	transition: color 100ms linear;
}


body.development-service .prestashop-post .post-text-wrap .prestashop-title-post h4{
	font-size:28px;
	font-family: 'PT Sans';
	margin-bottom:15px;
	margin-top: 5px;
	line-height: 32px;
}

body.development-service .prestashop-post .post-img-wrap,
body.development-service .prestashop-post .post-text-wrap {
	display: inline-block;
	vertical-align: top;
}

body.development-service .prestashop-post .post-text-inner {
	height: 255px;
	overflow: hidden;
}

body.development-service .prestashop-post .service-readmorecontent {
	text-align:right;
}

body.development-service .prestashop-post .service-readmorecontent a {
	font-size: 16px;
	border-radius: 5px;
	padding: 12px 20px;
}

body.development-service .prestashop-post .service-readmorecontent a:hover {
	background-image: linear-gradient(to bottom right,#CA5048,#CA5048);
	color: #fff;
}

body.development-service .bx-wrapper .bx-pager.bx-default-pager a {
	width: 15px;
	height: 15px;
	border-radius: 15px;
	background: none;
	text-indent: -9999px;
	border: 2px solid #6a4a7d;
}

body.development-service .bx-wrapper .bx-pager .bx-pager-item a {
    margin-left: 2px;
    margin-right: 2px;
}

body.development-service .bx-wrapper .bx-pager.bx-default-pager a.active {
    border: 2px solid #6a4a7d;
    background: #6a4a7d;
}

body.development-service .bx-wrapper .bx-controls-auto, .bx-wrapper .bx-pager {
	bottom: -45px !important;
}

body.development-service .hor-line {
	border-bottom: 1px dashed #ccc;
}

body.development-service .rating-back {
	background-image: url(../images/back_op77r-min.png);
    border-bottom: 1px solid #d6d4d4;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;	
	border-top: 4px solid #C7C9C3;
}

body.development-service .rmp-rating-widget .rmp-icon--full-highlight {
	color: #6a4a7d;
}

body.development-service .rmp-rating-widget .rmp-icon--half-highlight {
	background: linear-gradient(to right,#6a4a7d 50%,#ccc 50%);
	-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.development-service .prestashop-post-section li.prestashop-post-static {
	width:29.3333333333%;
	display: inline-block;
	vertical-align:top;
	padding:0px 15px;
	border: 1px dashed #ccc;
	border-radius: 5px;
	margin: 0px 5px;
	height: 595px;
	overflow: hidden;
}

body.development-service .addons-wrapper {
	padding-bottom:30px;
}

body.development-service .prestashop-post-section .prestashop-post-static:hover {
	transition: 0.3s all ease 0s;
	background-color: #f4f4f4;
}


body.development-service .prestashop-post-section .prestashop-post-static .post-img-wrap img{
	width:100%;
	height:100%;
	padding-top: 15px;
}

body.development-service .prestashop-post-section .prestashop-post-static .prestashop-title-post {
	padding-top:15px;
	height:95px;
}

body.development-service .prestashop-post-section .prestashop-post-static .prestashop-title-post h4 {
	font-size: 18px;
	line-height: 28px;
}

body.development-service .prestashop-post-section .prestashop-post-static .post-text-inner {
	text-align: left;
	padding-bottom:15px;
}

body.development-service .prestashop-post-section .prestashop-post-static-list {
	padding-bottom:30px;
}

body.development-service .post-text-wrap{
	padding-top:15px;
}

/* faq list */
/*accordion short view*/
#qaList {
	padding-bottom:0px;
	margin-bottom:0px;
	font-size: 18px;
}

.faq-section .faq-wrapper-title {
	padding: 0px 15px 20px 15px;
}

#qaList h5{
    cursor: pointer;
    text-align: left;
    transition: 0.4s;
	color: #4D4D4D;
	padding: 5px 15px 5px 15px;
}

#qaList h5.active {
	display:block;
}

#qaList h5:hover, 
#qaList h5.active {
	color:#CA5048;
}

#qaList .question {
	padding:15px;
	border: 1px dashed #ccc;
    border-radius: 10px;
	margin:10px 0px;
}

#qaList .question:hover {
	transition: 0.3s all ease 0s;
	background-color: #f4f4f4;
}

#qaList .answer {
    padding: 0 25px;
    overflow: hidden;
    transition: 0.6s ease-in-out;
    opacity: 9;
    max-height: 0px;
}

#qaList .answer.show_content {
    opacity: 1;
    max-height: 500px;
	padding-bottom: 20px;
}


/* ### */



@media (max-width: 1250px){
	body.development-service .banner-section .obj-wrapper .obj-right {
		display: none;
	}
	
	body.development-service .banner-section .obj-wrapper .obj-left {
		width: 100%;
		display: block;
		padding-top: 50px;
	}
	
	body.development-service .prestashop-logo, 
	body.development-service .prestashop-logo-name {
		text-align: center;
		padding-right: 0px;
		display: block;
	}
}

@media (max-width: 1225px){
	
	body.development-service .prestashop-post .post-img-wrap {
		min-height: 250px;
		padding:10px;
	}
		
	body.development-service .prestashop-post .post-img-wrap img,
	body.development-service .prestashop-post .post-img-wrap,
	body.development-service .prestashop-post .post-img-wrap.ru-version img,
	body.development-service .prestashop-post .post-img-wrap.ru-version	{
		width:380px;
		height: auto;
	}
	
	body.development-service .prestashop-post .post-text-wrap,
	body.development-service .prestashop-post .post-text-wrap.ru-version {
		height: auto;
		width:380px;
		padding:0px 10px 10px 10px;
	}
	
	body.development-service .prestashop-post-section .obj-wrapper {
		width:820px;
	}
	
	body.development-service .prestashop-post-section .obj-wrapper.ru-version{
		display: inline-block;
	}
	
	body.development-service .prestashop-post-section .post-text-wrap .service-readmorecontent {
		display: none;
	}
	
	body.development-service .prestashop-post-section li.prestashop-post-static {
		width: 100%;
		display: block;
		height: auto;
		border-bottom: 1px dashed #ccc;
		border-radius:0;
		border-top: none;
		border-left: none;
		border-right: none;
		margin:0;
		padding:0;
		
	}
	
	body.development-service .prestashop-post-section .prestashop-post-static .post-img-wrap img {
		width: unset;
		height: unset;
	}
	
	body.development-service .addons-wrapper img {
		width:70%;
		height:70%;
	}
	
	body.development-service .prestashop-post-section .prestashop-post-static .prestashop-title-post {
		height: auto;
	}
	
}



@media (max-width: 990px){
	body.development-service .negative-sides-wrapper .negative-sides{
		width:100%;
		
	}
	
	body.development-service .presta-contact-order-section .presta-contact-order span {
		padding: 20px 10px;
		line-height: 40px;
		display: inline-block;
		margin: 50px;
	}
	
	body.development-service .presta-contact-order-section .presta-contact-order {
		text-align: center;
		padding-top: 65px;
	}
	
	body.development-service .prestashop-post .post-img-wrap.ru-version img,
	body.development-service .prestashop-post .post-img-wrap.ru-version {
		width:450px;
		height: auto;
		text-align: center;
	}
	
	body.development-service .prestashop-post .post-text-wrap.ru-version {
		height: auto;
		width:450px;
		padding:10px 0px 0px 0px;
	}
	
	body.development-service .prestashop-post-section .obj-wrapper.ru-version {
		width:475px;
	}
	
	
	
}

@media (max-width: 880px){
	
	body.development-service .prestashop-post .post-img-wrap {
		min-height: unset;
	}
	
	body.development-service .prestashop-post .post-img-wrap img,
	body.development-service .prestashop-post .post-img-wrap {
		width:450px;
		height: auto;
		text-align: center;
	}
	
	body.development-service .prestashop-post .post-text-wrap {
		height: auto;
		width:450px;
		padding:10px 0px 0px 0px;
	}
	
	body.development-service .prestashop-post-section .obj-wrapper{
		width:475px;
	}
	
	body.development-service .prestashop-post .post-text-inner {
		height: auto;
		padding: 10px;
	}
	
	.commentlist li .comment-body {
		overflow-x: scroll;
		overflow-y: hidden;
	}
	
}


@media (max-width: 610px){
	body.development-service .prestashop-logo img {
		width:70px;
		height:auto;
	}
	body.development-service .prestashop-logo-name img{
		width:210px;
		height:auto;
	}
	body.development-service .banner-section {
		height: 350px;
	}
	body.development-service .dev-text {
		font-size:28px;
	}
	#qaList .question {
		margin: 10px 20px;
	}
	
	body.development-service .prestashop-post .post-img-wrap.ru-version img,
	body.development-service .prestashop-post .post-img-wrap.ru-version {
		width:auto;
		height: auto;
		text-align: center;
	}
	
	body.development-service .prestashop-post .post-text-wrap.ru-version {
		height: auto;
		width:auto;
		padding:10px 0px 0px 0px;
	}
	
	body.development-service .prestashop-post-section .obj-wrapper.ru-version {
		width: calc(100% - 40px);
	}
	
	
	
	
}

@media (max-width: 500px){
	body.development-service .presta-contact-order-section .presta-contact-order {
		text-align: center;
		padding-top: 40px;
	}
	
	body.development-service .prestashop-post .post-img-wrap img,
	body.development-service .prestashop-post .post-img-wrap {
		width:auto;
		height: auto;
		text-align: center;
	}
	
	body.development-service .prestashop-post .post-text-wrap {
		height: auto;
		width:auto;
	}
	
	body.development-service .prestashop-post-section .obj-wrapper {
		width: calc(100% - 40px);
	}
	
	body.development-service .prestashop-post-section .prestashop-post-static .post-img-wrap img {
		width: 100%;
		height: 100%;
	}
	
}

@media (max-width: 450px){
	body.development-service .banner-section .obj-wrapper .obj-left {
		padding-top: 25px;
	}
	body.development-service .dev-text{
		font-size: 24px;
		line-height: 30px;
	}
	
	body.development-service .banner-section {
		height: 300px;
	}
	
	body.development-service .presta-contact-order-section .presta-contact-order span {
		margin: 15px;
	}
	
	body.development-service .presta-contact-order-section {
		height: 280px;
	}
	
	
}



